r23792: convert Samba4 to GPLv3
[ira/wip.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 3 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, see <http://www.gnu.org/licenses/>.
20 */
21
22 /*
23   this type allows us to distinguish handle types
24 */
25 enum samr_handle {
26         SAMR_HANDLE_CONNECT,
27         SAMR_HANDLE_DOMAIN,
28         SAMR_HANDLE_USER,
29         SAMR_HANDLE_GROUP,
30         SAMR_HANDLE_ALIAS
31 };
32
33
34 /*
35   state asscoiated with a samr_Connect*() operation
36 */
37 struct samr_connect_state {
38         void *sam_ctx;
39         uint32_t access_mask;
40 };
41
42 /*
43   state associated with a samr_OpenDomain() operation
44 */
45 struct samr_domain_state {
46         struct samr_connect_state *connect_state;
47         void *sam_ctx;
48         uint32_t access_mask;
49         struct dom_sid *domain_sid;
50         const char *domain_name;
51         struct ldb_dn *domain_dn;
52 };
53
54 /*
55   state associated with a open account handle
56 */
57 struct samr_account_state {
58         struct samr_domain_state *domain_state;
59         void *sam_ctx;
60         uint32_t access_mask;
61         struct dom_sid *account_sid;
62         const char *account_name;
63         struct ldb_dn *account_dn;
64 };