r7860: switch our ldb storage format to use a NDR encoded objectSid. This is
[amitay/samba.git] / source4 / rpc_server / samr / dcesrv_samr.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    endpoint server for the samr pipe - definitions
5
6    Copyright (C) Andrew Tridgell 2004
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 /*
24   this type allows us to distinguish handle types
25 */
26 enum samr_handle {
27         SAMR_HANDLE_CONNECT,
28         SAMR_HANDLE_DOMAIN,
29         SAMR_HANDLE_USER,
30         SAMR_HANDLE_GROUP,
31         SAMR_HANDLE_ALIAS
32 };
33
34
35 /*
36   state asscoiated with a samr_Connect*() operation
37 */
38 struct samr_connect_state {
39         void *sam_ctx;
40         uint32_t access_mask;
41 };
42
43 /*
44   state associated with a samr_OpenDomain() operation
45 */
46 struct samr_domain_state {
47         struct samr_connect_state *connect_state;
48         void *sam_ctx;
49         uint32_t access_mask;
50         struct dom_sid *domain_sid;
51         const char *domain_name;
52         const char *domain_dn;
53 };
54
55 /*
56   state associated with a open account handle
57 */
58 struct samr_account_state {
59         struct samr_domain_state *domain_state;
60         void *sam_ctx;
61         uint32_t access_mask;
62         struct dom_sid *account_sid;
63         const char *account_name;
64         const char *account_dn;
65 };