idl: Update IDL for eventlog, misc, netlogon and security from Samba 4.
[samba.git] / source / librpc / idl / security.idl
1 #include "idl_types.h"
2
3 /*
4   security IDL structures
5 */
6
7 [
8         pointer_default(unique),
9         depends(misc,security)
10 ]
11 interface security
12 {
13         /*
14           access masks are divided up like this:
15                 0xabccdddd
16                 where 
17                    a = generic rights bits        SEC_GENERIC_
18                    b = flags                      SEC_FLAG_
19                    c = standard rights bits       SEC_STD_
20                    d = object type specific bits  SEC_{FILE,DIR,REG,xxx}_
21                    
22           common combinations of bits are prefixed with SEC_RIGHTS_
23         */
24         const int SEC_MASK_GENERIC         = 0xF0000000;
25         const int SEC_MASK_FLAGS           = 0x0F000000;
26         const int SEC_MASK_STANDARD        = 0x00FF0000;
27         const int SEC_MASK_SPECIFIC        = 0x0000FFFF;
28
29         /* generic bits */
30         const int SEC_GENERIC_ALL          = 0x10000000;
31         const int SEC_GENERIC_EXECUTE      = 0x20000000;
32         const int SEC_GENERIC_WRITE        = 0x40000000;
33         const int SEC_GENERIC_READ         = 0x80000000;
34
35         /* flag bits */
36         const int SEC_FLAG_SYSTEM_SECURITY = 0x01000000;
37         const int SEC_FLAG_MAXIMUM_ALLOWED = 0x02000000;
38
39         /* standard bits */
40         const int SEC_STD_DELETE           = 0x00010000;
41         const int SEC_STD_READ_CONTROL     = 0x00020000;
42         const int SEC_STD_WRITE_DAC        = 0x00040000;
43         const int SEC_STD_WRITE_OWNER      = 0x00080000;
44         const int SEC_STD_SYNCHRONIZE      = 0x00100000;
45         const int SEC_STD_REQUIRED         = 0x000F0000;
46         const int SEC_STD_ALL              = 0x001F0000;
47
48         /* file specific bits */
49         const int SEC_FILE_READ_DATA       = 0x00000001;
50         const int SEC_FILE_WRITE_DATA      = 0x00000002;
51         const int SEC_FILE_APPEND_DATA     = 0x00000004;
52         const int SEC_FILE_READ_EA         = 0x00000008;
53         const int SEC_FILE_WRITE_EA        = 0x00000010;
54         const int SEC_FILE_EXECUTE         = 0x00000020;
55         const int SEC_FILE_READ_ATTRIBUTE  = 0x00000080;
56         const int SEC_FILE_WRITE_ATTRIBUTE = 0x00000100;
57         const int SEC_FILE_ALL             = 0x000001ff;
58
59         /* directory specific bits */
60         const int SEC_DIR_LIST             = 0x00000001;
61         const int SEC_DIR_ADD_FILE         = 0x00000002;
62         const int SEC_DIR_ADD_SUBDIR       = 0x00000004;
63         const int SEC_DIR_READ_EA          = 0x00000008;
64         const int SEC_DIR_WRITE_EA         = 0x00000010;
65         const int SEC_DIR_TRAVERSE         = 0x00000020;
66         const int SEC_DIR_DELETE_CHILD     = 0x00000040;
67         const int SEC_DIR_READ_ATTRIBUTE   = 0x00000080;
68         const int SEC_DIR_WRITE_ATTRIBUTE  = 0x00000100;
69
70         /* registry entry specific bits */
71         const int SEC_REG_QUERY_VALUE      = 0x00000001;
72         const int SEC_REG_SET_VALUE        = 0x00000002;
73         const int SEC_REG_CREATE_SUBKEY    = 0x00000004;
74         const int SEC_REG_ENUM_SUBKEYS     = 0x00000008;
75         const int SEC_REG_NOTIFY           = 0x00000010;
76         const int SEC_REG_CREATE_LINK      = 0x00000020;
77
78         /* ldap specific access bits */
79         const int SEC_ADS_CREATE_CHILD     = 0x00000001;
80         const int SEC_ADS_DELETE_CHILD     = 0x00000002;
81         const int SEC_ADS_LIST             = 0x00000004;
82         const int SEC_ADS_SELF_WRITE       = 0x00000008;
83         const int SEC_ADS_READ_PROP        = 0x00000010;
84         const int SEC_ADS_WRITE_PROP       = 0x00000020;
85         const int SEC_ADS_DELETE_TREE      = 0x00000040;
86         const int SEC_ADS_LIST_OBJECT      = 0x00000080;
87         const int SEC_ADS_CONTROL_ACCESS   = 0x00000100;
88
89         /* generic->specific mappings for files */
90         const int SEC_RIGHTS_FILE_READ    = SEC_STD_READ_CONTROL | 
91                                             SEC_STD_SYNCHRONIZE | 
92                                             SEC_FILE_READ_DATA | 
93                                             SEC_FILE_READ_ATTRIBUTE | 
94                                             SEC_FILE_READ_EA;
95
96         const int SEC_RIGHTS_FILE_WRITE   = SEC_STD_READ_CONTROL | 
97                                             SEC_STD_SYNCHRONIZE | 
98                                             SEC_FILE_WRITE_DATA | 
99                                             SEC_FILE_WRITE_ATTRIBUTE | 
100                                             SEC_FILE_WRITE_EA |
101                                             SEC_FILE_APPEND_DATA;
102         
103         const int SEC_RIGHTS_FILE_EXECUTE = SEC_STD_SYNCHRONIZE | 
104                                             SEC_STD_READ_CONTROL | 
105                                             SEC_FILE_READ_ATTRIBUTE | 
106                                             SEC_FILE_EXECUTE;
107
108         const int SEC_RIGHTS_FILE_ALL     = SEC_STD_ALL | SEC_FILE_ALL;
109
110         /* generic->specific mappings for directories (same as files) */
111         const int SEC_RIGHTS_DIR_READ     = SEC_RIGHTS_FILE_READ;
112         const int SEC_RIGHTS_DIR_WRITE    = SEC_RIGHTS_FILE_WRITE;
113         const int SEC_RIGHTS_DIR_EXECUTE  = SEC_RIGHTS_FILE_EXECUTE;
114         const int SEC_RIGHTS_DIR_ALL      = SEC_RIGHTS_FILE_ALL;
115
116
117         /***************************************************************/
118         /* WELL KNOWN SIDS */
119
120         /* a NULL sid */
121         const string SID_NULL = "S-1-0-0";
122
123         /* the world domain */
124         const string NAME_WORLD       = "WORLD";
125
126         const string SID_WORLD_DOMAIN = "S-1-1";
127         const string SID_WORLD        = "S-1-1-0";
128
129         /* SECURITY_CREATOR_SID_AUTHORITY */
130         const string SID_CREATOR_OWNER_DOMAIN = "S-1-3";
131         const string SID_CREATOR_OWNER        = "S-1-3-0";
132         const string SID_CREATOR_GROUP        = "S-1-3-1";
133
134         /* SECURITY_NT_AUTHORITY */
135         const string NAME_NT_AUTHORITY            = "NT AUTHORITY";
136
137         const string SID_NT_AUTHORITY             = "S-1-5";
138         const string SID_NT_DIALUP                = "S-1-5-1";
139         const string SID_NT_NETWORK               = "S-1-5-2";
140         const string SID_NT_BATCH                 = "S-1-5-3";
141         const string SID_NT_INTERACTIVE           = "S-1-5-4";
142         const string SID_NT_SERVICE               = "S-1-5-6";
143         const string SID_NT_ANONYMOUS             = "S-1-5-7";
144         const string SID_NT_PROXY                 = "S-1-5-8";
145         const string SID_NT_ENTERPRISE_DCS        = "S-1-5-9";
146         const string SID_NT_SELF                  = "S-1-5-10";
147         const string SID_NT_AUTHENTICATED_USERS   = "S-1-5-11";
148         const string SID_NT_RESTRICTED            = "S-1-5-12";
149         const string SID_NT_TERMINAL_SERVER_USERS = "S-1-5-13";
150         const string SID_NT_REMOTE_INTERACTIVE    = "S-1-5-14";
151         const string SID_NT_THIS_ORGANISATION     = "S-1-5-15";
152         const string SID_NT_SYSTEM                = "S-1-5-18";
153         const string SID_NT_LOCAL_SERVICE         = "S-1-5-19";
154         const string SID_NT_NETWORK_SERVICE       = "S-1-5-20";
155
156         /* SECURITY_BUILTIN_DOMAIN_RID */
157         const string NAME_BUILTIN                  = "BUILTIN";
158
159         const string SID_BUILTIN                   = "S-1-5-32";
160         const string SID_BUILTIN_ADMINISTRATORS    = "S-1-5-32-544";
161         const string SID_BUILTIN_USERS             = "S-1-5-32-545";
162         const string SID_BUILTIN_GUESTS            = "S-1-5-32-546";
163         const string SID_BUILTIN_POWER_USERS       = "S-1-5-32-547";
164         const string SID_BUILTIN_ACCOUNT_OPERATORS = "S-1-5-32-548";
165         const string SID_BUILTIN_SERVER_OPERATORS  = "S-1-5-32-549";
166         const string SID_BUILTIN_PRINT_OPERATORS   = "S-1-5-32-550";
167         const string SID_BUILTIN_BACKUP_OPERATORS  = "S-1-5-32-551";
168         const string SID_BUILTIN_REPLICATOR        = "S-1-5-32-552";
169         const string SID_BUILTIN_RAS_SERVERS       = "S-1-5-32-553";
170         const string SID_BUILTIN_PREW2K            = "S-1-5-32-554";
171
172         /* well-known domain RIDs */
173         const int DOMAIN_RID_LOGON                 = 9;
174         const int DOMAIN_RID_ADMINISTRATOR         = 500;
175         const int DOMAIN_RID_GUEST                 = 501;
176         const int DOMAIN_RID_ADMINS                = 512;
177         const int DOMAIN_RID_USERS                 = 513;
178         const int DOMAIN_RID_DOMAIN_MEMBERS        = 515;
179         const int DOMAIN_RID_DCS                   = 516;
180         const int DOMAIN_RID_CERT_ADMINS           = 517;
181         const int DOMAIN_RID_SCHEMA_ADMINS         = 518;
182         const int DOMAIN_RID_ENTERPRISE_ADMINS     = 519;
183
184
185         /*
186           privilege IDs. Please keep the IDs below 64. If we get more
187           than 64 then we need to change security_token
188         */
189         typedef enum {
190                 SEC_PRIV_SECURITY                  = 1,
191                 SEC_PRIV_BACKUP                    = 2,
192                 SEC_PRIV_RESTORE                   = 3,
193                 SEC_PRIV_SYSTEMTIME                = 4,
194                 SEC_PRIV_SHUTDOWN                  = 5,
195                 SEC_PRIV_REMOTE_SHUTDOWN           = 6,
196                 SEC_PRIV_TAKE_OWNERSHIP            = 7,
197                 SEC_PRIV_DEBUG                     = 8,
198                 SEC_PRIV_SYSTEM_ENVIRONMENT        = 9,
199                 SEC_PRIV_SYSTEM_PROFILE            = 10,
200                 SEC_PRIV_PROFILE_SINGLE_PROCESS    = 11,
201                 SEC_PRIV_INCREASE_BASE_PRIORITY    = 12,
202                 SEC_PRIV_LOAD_DRIVER               = 13,
203                 SEC_PRIV_CREATE_PAGEFILE           = 14,
204                 SEC_PRIV_INCREASE_QUOTA            = 15,
205                 SEC_PRIV_CHANGE_NOTIFY             = 16,
206                 SEC_PRIV_UNDOCK                    = 17,
207                 SEC_PRIV_MANAGE_VOLUME             = 18,
208                 SEC_PRIV_IMPERSONATE               = 19,
209                 SEC_PRIV_CREATE_GLOBAL             = 20,
210                 SEC_PRIV_ENABLE_DELEGATION         = 21,
211                 SEC_PRIV_INTERACTIVE_LOGON         = 22,
212                 SEC_PRIV_NETWORK_LOGON             = 23,
213                 SEC_PRIV_REMOTE_INTERACTIVE_LOGON  = 24
214         } sec_privilege;
215
216
217         /* a domain SID. Note that unlike Samba3 this contains a pointer,
218            so you can't copy them using assignment */
219         typedef [public,gensize,noprint,noejs,nosize] struct {
220                 uint8  sid_rev_num;             /**< SID revision number */
221                 [range(0,15)] int8  num_auths;  /**< Number of sub-authorities */
222                 uint8  id_auth[6];              /**< Identifier Authority */
223                 uint32 sub_auths[num_auths];
224         } dom_sid;
225
226         typedef [bitmap8bit] bitmap {
227                 SEC_ACE_FLAG_OBJECT_INHERIT             = 0x01,
228                 SEC_ACE_FLAG_CONTAINER_INHERIT          = 0x02,
229                 SEC_ACE_FLAG_NO_PROPAGATE_INHERIT       = 0x04,
230                 SEC_ACE_FLAG_INHERIT_ONLY               = 0x08,
231                 SEC_ACE_FLAG_INHERITED_ACE              = 0x10,
232                 SEC_ACE_FLAG_VALID_INHERIT              = 0x0f,
233                 SEC_ACE_FLAG_SUCCESSFUL_ACCESS          = 0x40,
234                 SEC_ACE_FLAG_FAILED_ACCESS              = 0x80
235         } security_ace_flags;
236
237         typedef [enum8bit] enum {
238                 SEC_ACE_TYPE_ACCESS_ALLOWED             = 0,
239                 SEC_ACE_TYPE_ACCESS_DENIED              = 1,
240                 SEC_ACE_TYPE_SYSTEM_AUDIT               = 2,
241                 SEC_ACE_TYPE_SYSTEM_ALARM               = 3,
242                 SEC_ACE_TYPE_ALLOWED_COMPOUND           = 4,
243                 SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT      = 5,
244                 SEC_ACE_TYPE_ACCESS_DENIED_OBJECT       = 6,
245                 SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT        = 7,
246                 SEC_ACE_TYPE_SYSTEM_ALARM_OBJECT        = 8
247         } security_ace_type;
248
249         typedef [bitmap32bit] bitmap {
250                 SEC_ACE_OBJECT_TYPE_PRESENT             = 0x00000001,
251                 SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT   = 0x00000002
252         } security_ace_object_flags;
253
254         typedef [nodiscriminant] union {
255                 /* this is the 'schemaIDGUID' attribute of the attribute object in the schema naming context */
256                 [case(SEC_ACE_OBJECT_TYPE_PRESENT)] GUID type;
257                 [default];
258         } security_ace_object_type;
259
260         typedef [nodiscriminant] union {
261                 /* this is the 'schemaIDGUID' attribute of the objectclass object in the schema naming context
262                  * (of the parent container)
263                  */
264                 [case(SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT)] GUID inherited_type;
265                 [default];
266         } security_ace_object_inherited_type;
267
268         typedef struct {
269                 security_ace_object_flags flags;
270                 [switch_is(flags & SEC_ACE_OBJECT_TYPE_PRESENT)] security_ace_object_type type;
271                 [switch_is(flags & SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT)] security_ace_object_inherited_type inherited_type;
272         } security_ace_object;
273
274         typedef [nodiscriminant] union {
275                 [case(SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT)] security_ace_object object;
276                 [case(SEC_ACE_TYPE_ACCESS_DENIED_OBJECT)] security_ace_object object;
277                 [case(SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT)] security_ace_object object;
278                 [case(SEC_ACE_TYPE_SYSTEM_ALARM_OBJECT)] security_ace_object object;
279                 [default];
280         } security_ace_object_ctr;
281
282         typedef [public,gensize,nosize] struct {
283                 security_ace_type type;  /* SEC_ACE_TYPE_* */
284                 security_ace_flags flags; /* SEC_ACE_FLAG_* */
285                 [value(ndr_size_security_ace(r,ndr->flags))] uint16 size;
286                 uint32 access_mask;
287                 [switch_is(type)] security_ace_object_ctr object;
288                 dom_sid trustee;
289         } security_ace;
290
291         typedef enum {
292                 SECURITY_ACL_REVISION_NT4       = 2,
293                 SECURITY_ACL_REVISION_ADS       = 4
294         } security_acl_revision;
295
296         const uint NT4_ACL_REVISION     = SECURITY_ACL_REVISION_NT4;
297
298         typedef [public,gensize,nosize] struct {
299                 security_acl_revision revision;
300                 [value(ndr_size_security_acl(r,ndr->flags))] uint16 size;
301                 [range(0,1000)] uint32 num_aces;
302                 security_ace aces[num_aces];
303         } security_acl;
304
305         /* default revision for new ACLs */
306         typedef [enum8bit] enum {
307                 SECURITY_DESCRIPTOR_REVISION_1 = 1
308         } security_descriptor_revision;
309
310         const int SD_REVISION                    = SECURITY_DESCRIPTOR_REVISION_1;
311
312         /* security_descriptor->type bits */
313         typedef [bitmap16bit] bitmap {
314                 SEC_DESC_OWNER_DEFAULTED        = 0x0001,
315                 SEC_DESC_GROUP_DEFAULTED        = 0x0002,
316                 SEC_DESC_DACL_PRESENT           = 0x0004,
317                 SEC_DESC_DACL_DEFAULTED         = 0x0008,
318                 SEC_DESC_SACL_PRESENT           = 0x0010,
319                 SEC_DESC_SACL_DEFAULTED         = 0x0020,
320                 SEC_DESC_DACL_TRUSTED           = 0x0040,
321                 SEC_DESC_SERVER_SECURITY        = 0x0080,
322                 SEC_DESC_DACL_AUTO_INHERIT_REQ  = 0x0100,
323                 SEC_DESC_SACL_AUTO_INHERIT_REQ  = 0x0200,
324                 SEC_DESC_DACL_AUTO_INHERITED    = 0x0400,
325                 SEC_DESC_SACL_AUTO_INHERITED    = 0x0800,
326                 SEC_DESC_DACL_PROTECTED         = 0x1000,
327                 SEC_DESC_SACL_PROTECTED         = 0x2000,
328                 SEC_DESC_RM_CONTROL_VALID       = 0x4000,
329                 SEC_DESC_SELF_RELATIVE          = 0x8000
330         } security_descriptor_type;
331
332         typedef [gensize,nosize,public,flag(NDR_LITTLE_ENDIAN)] struct {
333                 security_descriptor_revision revision;
334                 security_descriptor_type type;     /* SEC_DESC_xxxx flags */
335                 [relative] dom_sid *owner_sid; 
336                 [relative] dom_sid *group_sid;
337                 [relative] security_acl *sacl; /* system ACL */
338                 [relative] security_acl *dacl; /* user (discretionary) ACL */
339         } security_descriptor;
340
341         typedef [public] struct {
342                 [range(0,0x40000),value(ndr_size_security_descriptor(sd,ndr->flags))] uint32 sd_size;
343                 [subcontext(4)] security_descriptor *sd;
344         } sec_desc_buf;
345
346         typedef [public] struct {
347                 dom_sid *user_sid;
348                 dom_sid *group_sid;
349                 uint32 num_sids;
350                 [size_is(num_sids)] dom_sid *sids[*];
351                 udlong privilege_mask;
352         } security_token;
353
354         /* bits that determine which parts of a security descriptor
355            are being queried/set */
356         typedef [public,bitmap32bit] bitmap {
357                 SECINFO_OWNER                = 0x00000001,
358                 SECINFO_GROUP                = 0x00000002,
359                 SECINFO_DACL                 = 0x00000004,
360                 SECINFO_SACL                 = 0x00000008,
361                 SECINFO_UNPROTECTED_SACL     = 0x10000000,
362                 SECINFO_UNPROTECTED_DACL     = 0x20000000,
363                 SECINFO_PROTECTED_SACL       = 0x40000000,
364                 SECINFO_PROTECTED_DACL       = 0x80000000
365         } security_secinfo;
366 }