This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.
[tprouty/samba.git] / source / include / idmap.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Idmap headers
5
6    Copyright (C) Anthony Liguori 2003
7    Copyright (C) Simo Sorce 2003
8    
9    This library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Library General Public
11    License as published by the Free Software Foundation; either
12    version 2 of the License, or (at your option) any later version.
13    
14    This library is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    Library General Public License for more details.
18    
19    You should have received a copy of the GNU Library General Public
20    License along with this library; if not, write to the
21    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA  02111-1307, USA.   
23 */
24
25 #define SMB_IDMAP_INTERFACE_VERSION     1
26
27
28 #define ID_EMPTY        0x00
29 #define ID_USERID       0x01
30 #define ID_GROUPID      0x02
31 #define ID_OTHER        0x04
32
33 #define ID_TYPEMASK     0x0f
34
35 #define ID_NOMAP        0x10
36 #define ID_CACHE        0x20
37
38 /* Filled out by IDMAP backends */
39 struct idmap_methods {
40
41         /* Called when backend is first loaded */
42         NTSTATUS (*init)(void);
43
44         NTSTATUS (*get_sid_from_id)(DOM_SID *sid, unid_t id, int id_type);
45         NTSTATUS (*get_id_from_sid)(unid_t *id, int *id_type, const DOM_SID *sid);
46         NTSTATUS (*set_mapping)(const DOM_SID *sid, unid_t id, int id_type);
47
48         /* Called when backend is unloaded */
49         NTSTATUS (*close)(void);
50
51         /* Called to dump backend status */
52         void (*status)(void);
53 };
54