more merging
[amitay/samba.git] / source3 / include / rpc_secdes.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1997
6    Copyright (C) Luke Kenneth Casson Leighton 1996-1997
7    Copyright (C) Paul Ashton 1997
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program 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
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef _RPC_SECDES_H /* _RPC_SECDES_H */
25 #define _RPC_SECDES_H 
26
27 #define SEC_RIGHTS_QUERY_VALUE    0x00000001
28 #define SEC_RIGHTS_SET_VALUE      0x00000002
29 #define SEC_RIGHTS_CREATE_SUBKEY  0x00000004
30 #define SEC_RIGHTS_ENUM_SUBKEYS   0x00000008
31 #define SEC_RIGHTS_NOTIFY         0x00000010
32 #define SEC_RIGHTS_CREATE_LINK    0x00000020
33 #define SEC_RIGHTS_DELETE         0x00010000
34 #define SEC_RIGHTS_READ_CONTROL   0x00020000
35 #define SEC_RIGHTS_WRITE_DAC      0x00040000
36 #define SEC_RIGHTS_WRITE_OWNER    0x00080000
37
38 #define SEC_RIGHTS_READ           0x00020019
39 #define SEC_RIGHTS_FULL_CONTROL   0x000f003f
40 #define SEC_RIGHTS_MAXIMUM_ALLOWED 0x02000000
41
42
43 #define SEC_ACE_TYPE_ACCESS_ALLOWED     0x0
44 #define SEC_ACE_TYPE_ACCESS_DENIED      0x1
45 #define SEC_ACE_TYPE_SYSTEM_AUDIT       0x2
46 #define SEC_ACE_TYPE_SYSTEM_ALARM       0x3
47
48 #define SEC_ACE_FLAG_OBJECT_INHERIT     0x1
49 #define SEC_ACE_FLAG_CONTAINER_INHERIT  0x2
50 #define SEC_ACE_FLAG_NO_PROPAGATE_INHERIT       0x4
51 #define SEC_ACE_FLAG_INHERIT_ONLY       0x8
52 #define SEC_ACE_FLAG_INHERITED_ACE      0x10 /* New for Windows 2000 */
53 #define SEC_ACE_FLAG_VALID_INHERIT      0xf
54 #define SEC_ACE_FLAG_SUCCESSFUL_ACCESS  0x40
55 #define SEC_ACE_FLAG_FAILED_ACCESS      0x80
56
57 #define SEC_DESC_OWNER_DEFAULTED        0x0001
58 #define SEC_DESC_GROUP_DEFAULTED        0x0002
59 #define SEC_DESC_DACL_PRESENT           0x0004
60 #define SEC_DESC_DACL_DEFAULTED         0x0008
61 #define SEC_DESC_SACL_PRESENT           0x0010
62 #define SEC_DESC_SACL_DEFAULTED         0x0020
63 /*
64  * New Windows 2000 bits.
65  */
66 #define SE_DESC_DACL_AUTO_INHERIT_REQ 0x0100
67 #define SE_DESC_SACL_AUTO_INHERIT_REQ 0x0200
68 #define SE_DESC_DACL_AUTO_INHERITED 0x0400
69 #define SE_DESC_SACL_AUTO_INHERITED 0x0800
70 #define SE_DESC_DACL_PROTECTED          0x1000
71 #define SE_DESC_SACL_PROTECTED          0x2000
72
73 #define SEC_DESC_SELF_RELATIVE          0x8000
74
75 /* security information */
76
77 #define OWNER_SECURITY_INFORMATION 0x00000001
78 #define GROUP_SECURITY_INFORMATION 0x00000002
79 #define DACL_SECURITY_INFORMATION  0x00000004
80 #define SACL_SECURITY_INFORMATION  0x00000008
81
82
83
84 /* SEC_ACCESS */
85 typedef struct security_info_info
86 {
87         uint32 mask;
88
89 } SEC_ACCESS;
90
91 /* SEC_ACE */
92 typedef struct security_ace_info
93 {
94         uint8 type;  /* xxxx_xxxx_ACE_TYPE - e.g allowed / denied etc */
95         uint8 flags; /* xxxx_INHERIT_xxxx - e.g OBJECT_INHERIT_ACE */
96         uint16 size;
97
98         SEC_ACCESS info;
99         DOM_SID sid;
100
101 } SEC_ACE;
102
103
104 #define MAX_SEC_ACES 16
105
106 /* SEC_ACL */
107 typedef struct security_acl_info
108 {
109         uint16 revision; /* 0x0002 */
110         uint16 size; /* size in bytes of the entire ACL structure */
111         uint32 num_aces; /* number of Access Control Entries */
112
113         SEC_ACE *ace;
114
115 } SEC_ACL;
116
117 /* SEC_DESC */
118 typedef struct security_descriptor_info
119 {
120         uint16 revision; /* 0x0001 */
121         uint16 type;     /* SEC_DESC_xxxx flags */
122
123         uint32 off_owner_sid; /* offset to owner sid */
124         uint32 off_grp_sid  ; /* offset to group sid */
125         uint32 off_sacl     ; /* offset to system list of permissions */
126         uint32 off_dacl     ; /* offset to list of permissions */
127
128         SEC_ACL *dacl; /* user ACL */
129         SEC_ACL *sacl; /* system ACL */
130         DOM_SID *owner_sid; 
131         DOM_SID *grp_sid;
132
133 } SEC_DESC;
134
135 /* SEC_DESC_BUF */
136 typedef struct sec_desc_buf_info
137 {
138         uint32 max_len;
139         uint32 undoc;
140         uint32 len;
141
142         SEC_DESC *sec;
143
144 } SEC_DESC_BUF;
145
146 #endif /* _RPC_SECDES_H */