s3:smbd: in sys_disk_free(), improve a debug message
[Samba/gebeck_regimport.git] / librpc / idl / security.idl
blob33085c4e149a35bf580e33d9fef34ec78c0b60ca
1 #include "idl_types.h"
3 /*
4 security IDL structures
5 */
7 import "misc.idl";
9 /*
10 use the same structure for dom_sid2 as dom_sid. A dom_sid2 is really
11 just a dom sid, but with the sub_auths represented as a conformant
12 array. As with all in-structure conformant arrays, the array length
13 is placed before the start of the structure. That's what gives rise
14 to the extra num_auths elemenent. We don't want the Samba code to
15 have to bother with such esoteric NDR details, so its easier to just
16 define it as a dom_sid and use pidl magic to make it all work. It
17 just means you need to mark a sid as a "dom_sid2" in the IDL when you
18 know it is of the conformant array variety
20 cpp_quote("#define dom_sid2 dom_sid")
22 /* same struct as dom_sid but inside a 28 bytes fixed buffer in NDR */
23 cpp_quote("#define dom_sid28 dom_sid")
25 /* same struct as dom_sid but in a variable byte buffer, which is maybe empty in NDR */
26 cpp_quote("#define dom_sid0 dom_sid")
29 pyhelper("librpc/ndr/py_security.c"),
30 pointer_default(unique)
32 interface security
35 typedef bitmap lsa_SystemAccessModeFlags lsa_SystemAccessModeFlags;
37 typedef [public,gensize,noprint,nosize,nopull,nopush] struct {
38 uint8 sid_rev_num; /**< SID revision number */
39 [range(0,15)] int8 num_auths; /**< Number of sub-authorities */
40 uint8 id_auth[6]; /**< Identifier Authority */
41 uint32 sub_auths[15];
42 } dom_sid;
44 access masks are divided up like this:
45 0xabccdddd
46 where
47 a = generic rights bits SEC_GENERIC_
48 b = flags SEC_FLAG_
49 c = standard rights bits SEC_STD_
50 d = object type specific bits SEC_{FILE,DIR,REG,xxx}_
52 common combinations of bits are prefixed with SEC_RIGHTS_
54 const int SEC_MASK_GENERIC = 0xF0000000;
55 const int SEC_MASK_FLAGS = 0x0F000000;
56 const int SEC_MASK_STANDARD = 0x00FF0000;
57 const int SEC_MASK_SPECIFIC = 0x0000FFFF;
59 /* generic bits */
60 const int SEC_GENERIC_ALL = 0x10000000;
61 const int SEC_GENERIC_EXECUTE = 0x20000000;
62 const int SEC_GENERIC_WRITE = 0x40000000;
63 const int SEC_GENERIC_READ = 0x80000000;
65 /* flag bits */
66 const int SEC_FLAG_SYSTEM_SECURITY = 0x01000000;
67 const int SEC_FLAG_MAXIMUM_ALLOWED = 0x02000000;
69 /* standard bits */
70 const int SEC_STD_DELETE = 0x00010000;
71 const int SEC_STD_READ_CONTROL = 0x00020000;
72 const int SEC_STD_WRITE_DAC = 0x00040000;
73 const int SEC_STD_WRITE_OWNER = 0x00080000;
74 const int SEC_STD_SYNCHRONIZE = 0x00100000;
75 const int SEC_STD_REQUIRED = 0x000F0000;
76 const int SEC_STD_ALL = 0x001F0000;
78 /* file specific bits */
79 const int SEC_FILE_READ_DATA = 0x00000001;
80 const int SEC_FILE_WRITE_DATA = 0x00000002;
81 const int SEC_FILE_APPEND_DATA = 0x00000004;
82 const int SEC_FILE_READ_EA = 0x00000008;
83 const int SEC_FILE_WRITE_EA = 0x00000010;
84 const int SEC_FILE_EXECUTE = 0x00000020;
85 const int SEC_FILE_READ_ATTRIBUTE = 0x00000080;
86 const int SEC_FILE_WRITE_ATTRIBUTE = 0x00000100;
87 const int SEC_FILE_ALL = 0x000001ff;
89 /* directory specific bits */
90 const int SEC_DIR_LIST = 0x00000001;
91 const int SEC_DIR_ADD_FILE = 0x00000002;
92 const int SEC_DIR_ADD_SUBDIR = 0x00000004;
93 const int SEC_DIR_READ_EA = 0x00000008;
94 const int SEC_DIR_WRITE_EA = 0x00000010;
95 const int SEC_DIR_TRAVERSE = 0x00000020;
96 const int SEC_DIR_DELETE_CHILD = 0x00000040;
97 const int SEC_DIR_READ_ATTRIBUTE = 0x00000080;
98 const int SEC_DIR_WRITE_ATTRIBUTE = 0x00000100;
100 /* registry entry specific bits */
101 const int SEC_REG_QUERY_VALUE = 0x00000001;
102 const int SEC_REG_SET_VALUE = 0x00000002;
103 const int SEC_REG_CREATE_SUBKEY = 0x00000004;
104 const int SEC_REG_ENUM_SUBKEYS = 0x00000008;
105 const int SEC_REG_NOTIFY = 0x00000010;
106 const int SEC_REG_CREATE_LINK = 0x00000020;
108 /* ldap specific access bits */
109 const int SEC_ADS_CREATE_CHILD = 0x00000001;
110 const int SEC_ADS_DELETE_CHILD = 0x00000002;
111 const int SEC_ADS_LIST = 0x00000004;
112 const int SEC_ADS_SELF_WRITE = 0x00000008;
113 const int SEC_ADS_READ_PROP = 0x00000010;
114 const int SEC_ADS_WRITE_PROP = 0x00000020;
115 const int SEC_ADS_DELETE_TREE = 0x00000040;
116 const int SEC_ADS_LIST_OBJECT = 0x00000080;
117 const int SEC_ADS_CONTROL_ACCESS = 0x00000100;
119 /* invalid bits */
120 const int SEC_MASK_INVALID = 0x0ce0fe00;
122 /* generic->specific mappings for files */
123 const int SEC_RIGHTS_FILE_READ = SEC_STD_READ_CONTROL |
124 SEC_STD_SYNCHRONIZE |
125 SEC_FILE_READ_DATA |
126 SEC_FILE_READ_ATTRIBUTE |
127 SEC_FILE_READ_EA;
129 const int SEC_RIGHTS_FILE_WRITE = SEC_STD_READ_CONTROL |
130 SEC_STD_SYNCHRONIZE |
131 SEC_FILE_WRITE_DATA |
132 SEC_FILE_WRITE_ATTRIBUTE |
133 SEC_FILE_WRITE_EA |
134 SEC_FILE_APPEND_DATA;
136 const int SEC_RIGHTS_FILE_EXECUTE = SEC_STD_SYNCHRONIZE |
137 SEC_STD_READ_CONTROL |
138 SEC_FILE_READ_ATTRIBUTE |
139 SEC_FILE_EXECUTE;
141 const int SEC_RIGHTS_FILE_ALL = SEC_STD_ALL | SEC_FILE_ALL;
143 /* generic->specific mappings for directories (same as files) */
144 const int SEC_RIGHTS_DIR_READ = SEC_RIGHTS_FILE_READ;
145 const int SEC_RIGHTS_DIR_WRITE = SEC_RIGHTS_FILE_WRITE;
146 const int SEC_RIGHTS_DIR_EXECUTE = SEC_RIGHTS_FILE_EXECUTE;
147 const int SEC_RIGHTS_DIR_ALL = SEC_RIGHTS_FILE_ALL;
149 /* rights granted by some specific privileges */
150 const int SEC_RIGHTS_PRIV_BACKUP = SEC_STD_READ_CONTROL |
151 SEC_FLAG_SYSTEM_SECURITY |
152 SEC_RIGHTS_FILE_READ |
153 SEC_DIR_TRAVERSE;
155 const int SEC_RIGHTS_PRIV_RESTORE = SEC_STD_WRITE_DAC |
156 SEC_STD_WRITE_OWNER |
157 SEC_FLAG_SYSTEM_SECURITY |
158 SEC_RIGHTS_FILE_WRITE |
159 SEC_DIR_ADD_FILE |
160 SEC_DIR_ADD_SUBDIR |
161 SEC_STD_DELETE;
163 /* combinations of standard masks. */
164 const int STANDARD_RIGHTS_ALL_ACCESS = SEC_STD_ALL; /* 0x001f0000 */
165 const int STANDARD_RIGHTS_MODIFY_ACCESS = SEC_STD_READ_CONTROL; /* 0x00020000 */
166 const int STANDARD_RIGHTS_EXECUTE_ACCESS = SEC_STD_READ_CONTROL; /* 0x00020000 */
167 const int STANDARD_RIGHTS_READ_ACCESS = SEC_STD_READ_CONTROL; /* 0x00020000 */
168 const int STANDARD_RIGHTS_WRITE_ACCESS =
169 (SEC_STD_WRITE_OWNER |
170 SEC_STD_WRITE_DAC |
171 SEC_STD_DELETE); /* 0x000d0000 */
172 const int STANDARD_RIGHTS_REQUIRED_ACCESS =
173 (SEC_STD_DELETE |
174 SEC_STD_READ_CONTROL |
175 SEC_STD_WRITE_DAC |
176 SEC_STD_WRITE_OWNER); /* 0x000f0000 */
178 /* generic->specific mappings for Directory Service objects */
179 /* directory specific part of GENERIC_ALL */
180 const int SEC_ADS_GENERIC_ALL_DS =
181 (SEC_STD_DELETE |
182 SEC_STD_WRITE_DAC |
183 SEC_STD_WRITE_OWNER |
184 SEC_ADS_CREATE_CHILD |
185 SEC_ADS_DELETE_CHILD |
186 SEC_ADS_DELETE_TREE |
187 SEC_ADS_CONTROL_ACCESS);
188 const int SEC_ADS_GENERIC_EXECUTE = SEC_STD_READ_CONTROL | SEC_ADS_LIST;
189 const int SEC_ADS_GENERIC_WRITE =
190 (SEC_STD_READ_CONTROL |
191 SEC_ADS_SELF_WRITE |
192 SEC_ADS_WRITE_PROP);
193 const int SEC_ADS_GENERIC_READ =
194 (SEC_STD_READ_CONTROL |
195 SEC_ADS_LIST |
196 SEC_ADS_READ_PROP |
197 SEC_ADS_LIST_OBJECT);
198 const int SEC_ADS_GENERIC_ALL =
199 (SEC_ADS_GENERIC_EXECUTE |
200 SEC_ADS_GENERIC_WRITE |
201 SEC_ADS_GENERIC_READ |
202 SEC_ADS_GENERIC_ALL_DS);
204 /***************************************************************/
205 /* WELL KNOWN SIDS */
207 /* a NULL sid */
208 const string SID_NULL = "S-1-0-0";
210 /* the world domain */
211 const string NAME_WORLD = "WORLD";
213 const string SID_WORLD_DOMAIN = "S-1-1";
214 const string SID_WORLD = "S-1-1-0";
216 /* SECURITY_CREATOR_SID_AUTHORITY */
217 const string SID_CREATOR_OWNER_DOMAIN = "S-1-3";
218 const string SID_CREATOR_OWNER = "S-1-3-0";
219 const string SID_CREATOR_GROUP = "S-1-3-1";
220 const string SID_OWNER_RIGHTS = "S-1-3-4";
222 /* SECURITY_NT_AUTHORITY */
223 const string NAME_NT_AUTHORITY = "NT AUTHORITY";
225 const string SID_NT_AUTHORITY = "S-1-5";
226 const string SID_NT_DIALUP = "S-1-5-1";
227 const string SID_NT_NETWORK = "S-1-5-2";
228 const string SID_NT_BATCH = "S-1-5-3";
229 const string SID_NT_INTERACTIVE = "S-1-5-4";
230 const string SID_NT_SERVICE = "S-1-5-6";
231 const string SID_NT_ANONYMOUS = "S-1-5-7";
232 const string SID_NT_PROXY = "S-1-5-8";
233 const string SID_NT_ENTERPRISE_DCS = "S-1-5-9";
234 const string SID_NT_SELF = "S-1-5-10";
235 const string SID_NT_AUTHENTICATED_USERS = "S-1-5-11";
236 const string SID_NT_RESTRICTED = "S-1-5-12";
237 const string SID_NT_TERMINAL_SERVER_USERS = "S-1-5-13";
238 const string SID_NT_REMOTE_INTERACTIVE = "S-1-5-14";
239 const string SID_NT_THIS_ORGANISATION = "S-1-5-15";
240 const string SID_NT_IUSR = "S-1-5-17";
241 const string SID_NT_SYSTEM = "S-1-5-18";
242 const string SID_NT_LOCAL_SERVICE = "S-1-5-19";
243 const string SID_NT_NETWORK_SERVICE = "S-1-5-20";
244 const string SID_NT_DIGEST_AUTHENTICATION = "S-1-5-64-21";
245 const string SID_NT_NTLM_AUTHENTICATION = "S-1-5-64-10";
246 const string SID_NT_SCHANNEL_AUTHENTICATION = "S-1-5-64-14";
247 const string SID_NT_OTHER_ORGANISATION = "S-1-5-1000";
249 /* SECURITY_BUILTIN_DOMAIN_RID */
250 const string NAME_BUILTIN = "BUILTIN";
252 const string SID_BUILTIN = "S-1-5-32";
253 const string SID_BUILTIN_ADMINISTRATORS = "S-1-5-32-544";
254 const string SID_BUILTIN_USERS = "S-1-5-32-545";
255 const string SID_BUILTIN_GUESTS = "S-1-5-32-546";
256 const string SID_BUILTIN_POWER_USERS = "S-1-5-32-547";
257 const string SID_BUILTIN_ACCOUNT_OPERATORS = "S-1-5-32-548";
258 const string SID_BUILTIN_SERVER_OPERATORS = "S-1-5-32-549";
259 const string SID_BUILTIN_PRINT_OPERATORS = "S-1-5-32-550";
260 const string SID_BUILTIN_BACKUP_OPERATORS = "S-1-5-32-551";
261 const string SID_BUILTIN_REPLICATOR = "S-1-5-32-552";
262 const string SID_BUILTIN_RAS_SERVERS = "S-1-5-32-553";
263 const string SID_BUILTIN_PREW2K = "S-1-5-32-554";
264 const string SID_BUILTIN_REMOTE_DESKTOP_USERS = "S-1-5-32-555";
265 const string SID_BUILTIN_NETWORK_CONF_OPERATORS = "S-1-5-32-556";
266 const string SID_BUILTIN_INCOMING_FOREST_TRUST = "S-1-5-32-557";
267 const string SID_BUILTIN_PERFMON_USERS = "S-1-5-32-558";
268 const string SID_BUILTIN_PERFLOG_USERS = "S-1-5-32-559";
269 const string SID_BUILTIN_AUTH_ACCESS = "S-1-5-32-560";
270 const string SID_BUILTIN_TS_LICENSE_SERVERS = "S-1-5-32-561";
271 const string SID_BUILTIN_DISTRIBUTED_COM_USERS = "S-1-5-32-562";
272 const string SID_BUILTIN_CRYPTO_OPERATORS = "S-1-5-32-569";
273 const string SID_BUILTIN_EVENT_LOG_READERS = "S-1-5-32-573";
274 const string SID_BUILTIN_CERT_SERV_DCOM_ACCESS = "S-1-5-32-574";
276 /* SECURITY_NT_SERVICE */
277 const string NAME_NT_SERVICE = "NT SERVICE";
279 const string SID_NT_NT_SERVICE = "S-1-5-80";
280 const string SID_NT_TRUSTED_INSTALLER =
281 "S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464";
283 /* well-known domain RIDs */
284 const int DOMAIN_RID_LOGON = 9;
285 const int DOMAIN_RID_ENTERPRISE_READONLY_DCS = 498;
286 const int DOMAIN_RID_ADMINISTRATOR = 500;
287 const int DOMAIN_RID_GUEST = 501;
288 const int DOMAIN_RID_KRBTGT = 502;
289 const int DOMAIN_RID_ADMINS = 512;
290 const int DOMAIN_RID_USERS = 513;
291 const int DOMAIN_RID_GUESTS = 514;
292 const int DOMAIN_RID_DOMAIN_MEMBERS = 515;
293 const int DOMAIN_RID_DCS = 516;
294 const int DOMAIN_RID_CERT_ADMINS = 517;
295 const int DOMAIN_RID_SCHEMA_ADMINS = 518;
296 const int DOMAIN_RID_ENTERPRISE_ADMINS = 519;
297 const int DOMAIN_RID_POLICY_ADMINS = 520;
298 const int DOMAIN_RID_READONLY_DCS = 521;
299 const int DOMAIN_RID_RAS_SERVERS = 553;
300 const int DOMAIN_RID_RODC_ALLOW = 571;
301 const int DOMAIN_RID_RODC_DENY = 572;
303 /* well-known builtin RIDs */
304 const int BUILTIN_RID_ADMINISTRATORS = 544;
305 const int BUILTIN_RID_USERS = 545;
306 const int BUILTIN_RID_GUESTS = 546;
307 const int BUILTIN_RID_POWER_USERS = 547;
308 const int BUILTIN_RID_ACCOUNT_OPERATORS = 548;
309 const int BUILTIN_RID_SERVER_OPERATORS = 549;
310 const int BUILTIN_RID_PRINT_OPERATORS = 550;
311 const int BUILTIN_RID_BACKUP_OPERATORS = 551;
312 const int BUILTIN_RID_REPLICATOR = 552;
313 const int BUILTIN_RID_RAS_SERVERS = 553;
314 const int BUILTIN_RID_PRE_2K_ACCESS = 554;
315 const int BUILTIN_RID_REMOTE_DESKTOP_USERS = 555;
316 const int BUILTIN_RID_NETWORK_CONF_OPERATORS = 556;
317 const int BUILTIN_RID_INCOMING_FOREST_TRUST = 557;
318 const int BUILTIN_RID_PERFMON_USERS = 558;
319 const int BUILTIN_RID_PERFLOG_USERS = 559;
320 const int BUILTIN_RID_AUTH_ACCESS = 560;
321 const int BUILTIN_RID_TS_LICENSE_SERVERS = 561;
322 const int BUILTIN_RID_DISTRIBUTED_COM_USERS = 562;
323 const int BUILTIN_RID_CRYPTO_OPERATORS = 569;
324 const int BUILTIN_RID_EVENT_LOG_READERS = 573;
325 const int BUILTIN_RID_CERT_SERV_DCOM_ACCESS = 574;
327 /********************************************************************
328 This is a list of privileges reported by a WIndows 2008 R2 DC
329 just for reference purposes (and I know the LUID is not guaranteed
330 across reboots):
332 0x00000002 SeCreateTokenPrivilege "Create a token object"
333 0x00000003 SeAssignPrimaryTokenPrivilege "Replace a process level token"
334 0x00000004 SeLockMemoryPrivilege "Lock pages in memory"
335 0x00000005 SeIncreaseQuotaPrivilege "Adjust memory quotas for a process"
336 0x00000006 SeMachineAccountPrivilege "Add workstations to domain"
337 0x00000007 SeTcbPrivilege "Act as part of the operating system"
338 0x00000008 SeSecurityPrivilege "Manage auditing and security log"
339 0x00000009 SeTakeOwnershipPrivilege "Take ownership of files or other objects"
340 0x0000000a SeLoadDriverPrivilege "Load and unload device drivers"
341 0x0000000b SeSystemProfilePrivilege "Profile system performance"
342 0x0000000c SeSystemtimePrivilege "Change the system time"
343 0x0000000d SeProfileSingleProcessPrivilege "Profile single process"
344 0x0000000e SeIncreaseBasePriorityPrivilege "Increase scheduling priority"
345 0x0000000f SeCreatePagefilePrivilege "Create a pagefile"
346 0x00000010 SeCreatePermanentPrivilege "Create permanent shared objects"
347 0x00000011 SeBackupPrivilege "Back up files and directories"
348 0x00000012 SeRestorePrivilege "Restore files and directories"
349 0x00000013 SeShutdownPrivilege "Shut down the system"
350 0x00000014 SeDebugPrivilege "Debug programs"
351 0x00000015 SeAuditPrivilege "Generate security audits"
352 0x00000016 SeSystemEnvironmentPrivilege "Modify firmware environment values"
353 0x00000017 SeChangeNotifyPrivilege "Bypass traverse checking"
354 0x00000018 SeRemoteShutdownPrivilege "Force shutdown from a remote system"
355 0x00000019 SeUndockPrivilege "Remove computer from docking station"
356 0x0000001a SeSyncAgentPrivilege "Synchronize directory service data"
357 0x0000001b SeEnableDelegationPrivilege "Enable computer and user accounts to be trusted for delegation"
358 0x0000001c SeManageVolumePrivilege "Perform volume maintenance tasks"
359 0x0000001d SeImpersonatePrivilege "Impersonate a client after authentication"
360 0x0000001e SeCreateGlobalPrivilege "Create global objects"
361 0x0000001f SeTrustedCredManAccessPrivilege "Access Credential Manager as a trusted caller"
362 0x00000020 SeRelabelPrivilege "Modify an object label"
363 0x00000021 SeIncreaseWorkingSetPrivilege "Increase a process working set"
364 0x00000022 SeTimeZonePrivilege "Change the time zone"
365 0x00000023 SeCreateSymbolicLinkPrivilege "Create symbolic links"
367 ********************************************************************/
369 /* LUID values for privileges known about by Samba (bottom 32 bits of enum, top bits are 0) */
371 /* we have to define the LUID here due to a horrible check by printmig.exe
372 that requires the SeBackupPrivilege match what is in Windows. So match
373 those that we implement and start Samba privileges at 0x1001 */
375 typedef enum {
376 SEC_PRIV_INVALID = 0x0,
377 SEC_PRIV_INCREASE_QUOTA = 0x5,
378 SEC_PRIV_MACHINE_ACCOUNT = 0x6,
379 SEC_PRIV_SECURITY = 0x8,
380 SEC_PRIV_TAKE_OWNERSHIP = 0x09,
381 SEC_PRIV_LOAD_DRIVER = 0x0a,
382 SEC_PRIV_SYSTEM_PROFILE = 0x0b,
383 SEC_PRIV_SYSTEMTIME = 0x0c,
384 SEC_PRIV_PROFILE_SINGLE_PROCESS = 0x0d,
385 SEC_PRIV_INCREASE_BASE_PRIORITY = 0x0e,
386 SEC_PRIV_CREATE_PAGEFILE = 0x0f,
387 SEC_PRIV_BACKUP = 0x11,
388 SEC_PRIV_RESTORE = 0x12,
389 SEC_PRIV_SHUTDOWN = 0x13,
390 SEC_PRIV_DEBUG = 0x14,
391 SEC_PRIV_SYSTEM_ENVIRONMENT = 0x16,
392 SEC_PRIV_CHANGE_NOTIFY = 0x17,
393 SEC_PRIV_REMOTE_SHUTDOWN = 0x18,
394 SEC_PRIV_UNDOCK = 0x19,
395 SEC_PRIV_ENABLE_DELEGATION = 0x1b,
396 SEC_PRIV_MANAGE_VOLUME = 0x1c,
397 SEC_PRIV_IMPERSONATE = 0x1d,
398 SEC_PRIV_CREATE_GLOBAL = 0x1e,
399 /* Samba-specific privs */
400 SEC_PRIV_PRINT_OPERATOR = 0x1001,
401 SEC_PRIV_ADD_USERS = 0x1002,
402 SEC_PRIV_DISK_OPERATOR = 0x1003
403 } sec_privilege;
406 /* Bitmap of privilege values for internal use only. We need
407 * our own bitmap here as privilages.tdb records these values
408 * as a bitmap (privilages.ldb uses the string forms).
410 typedef [bitmap64bit] bitmap {
411 SEC_PRIV_MACHINE_ACCOUNT_BIT = 0x00000010,
413 /* Samba-specific privs */
414 SEC_PRIV_PRINT_OPERATOR_BIT = 0x00000020,
415 SEC_PRIV_ADD_USERS_BIT = 0x00000040,
416 SEC_PRIV_DISK_OPERATOR_BIT = 0x00000080,
418 SEC_PRIV_REMOTE_SHUTDOWN_BIT = 0x00000100,
419 SEC_PRIV_BACKUP_BIT = 0x00000200,
420 SEC_PRIV_RESTORE_BIT = 0x00000400,
421 SEC_PRIV_TAKE_OWNERSHIP_BIT = 0x00000800,
422 /* End of privilages implemented before merge to common code */
424 SEC_PRIV_INCREASE_QUOTA_BIT = 0x00001000,
425 SEC_PRIV_SECURITY_BIT = 0x00002000,
426 SEC_PRIV_LOAD_DRIVER_BIT = 0x00004000,
427 SEC_PRIV_SYSTEM_PROFILE_BIT = 0x00008000,
428 SEC_PRIV_SYSTEMTIME_BIT = 0x00010000,
429 SEC_PRIV_PROFILE_SINGLE_PROCESS_BIT = 0x00020000,
430 SEC_PRIV_INCREASE_BASE_PRIORITY_BIT = 0x00040000,
431 SEC_PRIV_CREATE_PAGEFILE_BIT = 0x00080000,
432 SEC_PRIV_SHUTDOWN_BIT = 0x00100000,
433 SEC_PRIV_DEBUG_BIT = 0x00200000,
434 SEC_PRIV_SYSTEM_ENVIRONMENT_BIT = 0x00400000,
435 SEC_PRIV_CHANGE_NOTIFY_BIT = 0x00800000,
436 SEC_PRIV_UNDOCK_BIT = 0x01000000,
437 SEC_PRIV_ENABLE_DELEGATION_BIT = 0x02000000,
438 SEC_PRIV_MANAGE_VOLUME_BIT = 0x04000000,
439 SEC_PRIV_IMPERSONATE_BIT = 0x08000000,
440 SEC_PRIV_CREATE_GLOBAL_BIT = 0x10000000
441 } se_privilege;
443 typedef [bitmap32bit] bitmap {
444 LSA_POLICY_MODE_INTERACTIVE = 0x00000001,
445 LSA_POLICY_MODE_NETWORK = 0x00000002,
446 LSA_POLICY_MODE_BATCH = 0x00000004,
447 LSA_POLICY_MODE_SERVICE = 0x00000010,
448 LSA_POLICY_MODE_PROXY = 0x00000020,
449 LSA_POLICY_MODE_DENY_INTERACTIVE = 0x00000040,
450 LSA_POLICY_MODE_DENY_NETWORK = 0x00000080,
451 LSA_POLICY_MODE_DENY_BATCH = 0x00000100,
452 LSA_POLICY_MODE_DENY_SERVICE = 0x00000200,
453 LSA_POLICY_MODE_REMOTE_INTERACTIVE = 0x00000400,
454 LSA_POLICY_MODE_DENY_REMOTE_INTERACTIVE = 0x00000800,
455 LSA_POLICY_MODE_ALL = 0x00000FF7,
456 LSA_POLICY_MODE_ALL_NT4 = 0x00000037
457 } lsa_SystemAccessModeFlags;
459 typedef [public,bitmap8bit] bitmap {
460 SEC_ACE_FLAG_OBJECT_INHERIT = 0x01,
461 SEC_ACE_FLAG_CONTAINER_INHERIT = 0x02,
462 SEC_ACE_FLAG_NO_PROPAGATE_INHERIT = 0x04,
463 SEC_ACE_FLAG_INHERIT_ONLY = 0x08,
464 SEC_ACE_FLAG_INHERITED_ACE = 0x10,
465 SEC_ACE_FLAG_VALID_INHERIT = 0x0f,
466 SEC_ACE_FLAG_SUCCESSFUL_ACCESS = 0x40,
467 SEC_ACE_FLAG_FAILED_ACCESS = 0x80
468 } security_ace_flags;
470 typedef [public,enum8bit] enum {
471 SEC_ACE_TYPE_ACCESS_ALLOWED = 0,
472 SEC_ACE_TYPE_ACCESS_DENIED = 1,
473 SEC_ACE_TYPE_SYSTEM_AUDIT = 2,
474 SEC_ACE_TYPE_SYSTEM_ALARM = 3,
475 SEC_ACE_TYPE_ALLOWED_COMPOUND = 4,
476 SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT = 5,
477 SEC_ACE_TYPE_ACCESS_DENIED_OBJECT = 6,
478 SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT = 7,
479 SEC_ACE_TYPE_SYSTEM_ALARM_OBJECT = 8
480 } security_ace_type;
482 typedef [bitmap32bit] bitmap {
483 SEC_ACE_OBJECT_TYPE_PRESENT = 0x00000001,
484 SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT = 0x00000002
485 } security_ace_object_flags;
487 typedef [nodiscriminant] union {
488 /* this is the 'schemaIDGUID' attribute of the attribute object in the schema naming context */
489 [case(SEC_ACE_OBJECT_TYPE_PRESENT)] GUID type;
490 [default];
491 } security_ace_object_type;
493 typedef [nodiscriminant] union {
494 /* this is the 'schemaIDGUID' attribute of the objectclass object in the schema naming context
495 * (of the parent container)
497 [case(SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT)] GUID inherited_type;
498 [default];
499 } security_ace_object_inherited_type;
501 typedef struct {
502 security_ace_object_flags flags;
503 [switch_is(flags & SEC_ACE_OBJECT_TYPE_PRESENT)] security_ace_object_type type;
504 [switch_is(flags & SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT)] security_ace_object_inherited_type inherited_type;
505 } security_ace_object;
507 typedef [public,nodiscriminant] union {
508 [case(SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT)] security_ace_object object;
509 [case(SEC_ACE_TYPE_ACCESS_DENIED_OBJECT)] security_ace_object object;
510 [case(SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT)] security_ace_object object;
511 [case(SEC_ACE_TYPE_SYSTEM_ALARM_OBJECT)] security_ace_object object;
512 [default];
513 } security_ace_object_ctr;
515 typedef [public,nopull,gensize,nosize] struct {
516 security_ace_type type; /* SEC_ACE_TYPE_* */
517 security_ace_flags flags; /* SEC_ACE_FLAG_* */
518 [value(ndr_size_security_ace(r,ndr->flags))] uint16 size;
519 uint32 access_mask;
520 [switch_is(type)] security_ace_object_ctr object;
521 dom_sid trustee;
522 } security_ace;
524 typedef enum {
525 SECURITY_ACL_REVISION_NT4 = 2,
526 SECURITY_ACL_REVISION_ADS = 4
527 } security_acl_revision;
529 const uint NT4_ACL_REVISION = SECURITY_ACL_REVISION_NT4;
531 typedef [public,gensize,nosize] struct {
532 security_acl_revision revision;
533 [value(ndr_size_security_acl(r,ndr->flags))] uint16 size;
534 [range(0,1000)] uint32 num_aces;
535 security_ace aces[num_aces];
536 } security_acl;
538 /* default revision for new ACLs */
539 typedef [public,enum8bit] enum {
540 SECURITY_DESCRIPTOR_REVISION_1 = 1
541 } security_descriptor_revision;
543 const int SD_REVISION = SECURITY_DESCRIPTOR_REVISION_1;
545 /* security_descriptor->type bits */
546 typedef [public,bitmap16bit] bitmap {
547 SEC_DESC_OWNER_DEFAULTED = 0x0001,
548 SEC_DESC_GROUP_DEFAULTED = 0x0002,
549 SEC_DESC_DACL_PRESENT = 0x0004,
550 SEC_DESC_DACL_DEFAULTED = 0x0008,
551 SEC_DESC_SACL_PRESENT = 0x0010,
552 SEC_DESC_SACL_DEFAULTED = 0x0020,
553 SEC_DESC_DACL_TRUSTED = 0x0040,
554 SEC_DESC_SERVER_SECURITY = 0x0080,
555 SEC_DESC_DACL_AUTO_INHERIT_REQ = 0x0100,
556 SEC_DESC_SACL_AUTO_INHERIT_REQ = 0x0200,
557 SEC_DESC_DACL_AUTO_INHERITED = 0x0400,
558 SEC_DESC_SACL_AUTO_INHERITED = 0x0800,
559 SEC_DESC_DACL_PROTECTED = 0x1000,
560 SEC_DESC_SACL_PROTECTED = 0x2000,
561 SEC_DESC_RM_CONTROL_VALID = 0x4000,
562 SEC_DESC_SELF_RELATIVE = 0x8000
563 } security_descriptor_type;
565 typedef [gensize,nosize,public,flag(NDR_LITTLE_ENDIAN)] struct {
566 security_descriptor_revision revision;
567 security_descriptor_type type; /* SEC_DESC_xxxx flags */
568 [relative] dom_sid *owner_sid;
569 [relative] dom_sid *group_sid;
570 [relative] security_acl *sacl; /* system ACL */
571 [relative] security_acl *dacl; /* user (discretionary) ACL */
572 } security_descriptor;
574 typedef [public] struct {
575 [range(0,0x40000),value(ndr_size_security_descriptor(sd,ndr->flags))] uint32 sd_size;
576 [subcontext(4)] security_descriptor *sd;
577 } sec_desc_buf;
579 /* This is not yet sent over the network, but is simply defined in IDL */
580 typedef [public] struct {
581 uint32 num_sids;
582 [size_is(num_sids)] dom_sid sids[*];
583 se_privilege privilege_mask;
584 lsa_SystemAccessModeFlags rights_mask;
585 } security_token;
587 /* This is not yet sent over the network, but is simply defined in IDL */
588 typedef [public] struct {
589 uid_t uid;
590 gid_t gid;
591 uint32 ngroups;
592 [size_is(ngroups)] gid_t groups[*];
593 } security_unix_token;
595 /* bits that determine which parts of a security descriptor
596 are being queried/set */
597 typedef [public,bitmap32bit] bitmap {
598 SECINFO_OWNER = 0x00000001,
599 SECINFO_GROUP = 0x00000002,
600 SECINFO_DACL = 0x00000004,
601 SECINFO_SACL = 0x00000008,
602 SECINFO_LABEL = 0x00000010,
603 SECINFO_UNPROTECTED_SACL = 0x10000000,
604 SECINFO_UNPROTECTED_DACL = 0x20000000,
605 SECINFO_PROTECTED_SACL = 0x40000000,
606 SECINFO_PROTECTED_DACL = 0x80000000
607 } security_secinfo;
609 typedef [public,bitmap32bit] bitmap {
610 KERB_ENCTYPE_DES_CBC_CRC = 0x00000001,
611 KERB_ENCTYPE_DES_CBC_MD5 = 0x00000002,
612 KERB_ENCTYPE_RC4_HMAC_MD5 = 0x00000004,
613 KERB_ENCTYPE_AES128_CTS_HMAC_SHA1_96 = 0x00000008,
614 KERB_ENCTYPE_AES256_CTS_HMAC_SHA1_96 = 0x00000010
615 } kerb_EncTypes;
617 typedef [public,bitmap32bit] bitmap {
618 SEC_DACL_AUTO_INHERIT = 0x00000001,
619 SEC_SACL_AUTO_INHERIT = 0x00000002,
620 SEC_DEFAULT_DESCRIPTOR = 0x00000004,
621 SEC_OWNER_FROM_PARENT = 0x00000008,
622 SEC_GROUP_FROM_PARENT = 0x00000010
623 } security_autoinherit;
625 /***************************************************************/
626 /* Extended right guids */
628 const string GUID_DRS_ALLOCATE_RIDS = "1abd7cf8-0a99-11d1-adbb-00c04fd8d5cd";
629 const string GUID_DRS_CHANGE_DOMAIN_MASTER = "014bf69c-7b3b-11d1-85f6-08002be74fab";
630 const string GUID_DRS_CHANGE_INFR_MASTER = "cc17b1fb-33d9-11d2-97d4-00c04fd8d5cd";
631 const string GUID_DRS_CHANGE_PDC = "bae50096-4752-11d1-9052-00c04fc2d4cf";
632 const string GUID_DRS_CHANGE_RID_MASTER = "d58d5f36-0a98-11d1-adbb-00c04fd8d5cd";
633 const string GUID_DRS_CHANGE_SCHEMA_MASTER = "e12b56b6-0a95-11d1-adbb-00c04fd8d5cd";
634 const string GUID_DRS_GET_CHANGES = "1131f6aa-9c07-11d1-f79f-00c04fc2dcd2";
635 const string GUID_DRS_GET_ALL_CHANGES = "1131f6ad-9c07-11d1-f79f-00c04fc2dcd2";
636 const string GUID_DRS_GET_FILTERED_ATTRIBUTES = "89e95b76-444d-4c62-991a-0facbeda640c";
637 const string GUID_DRS_MANAGE_TOPOLOGY = "1131f6ac-9c07-11d1-f79f-00c04fc2dcd2";
638 const string GUID_DRS_MONITOR_TOPOLOGY = "f98340fb-7c5b-4cdb-a00b-2ebdfa115a96";
639 const string GUID_DRS_REPL_SYNCRONIZE = "1131f6ab-9c07-11d1-f79f-00c04fc2dcd2";
640 const string GUID_DRS_RO_REPL_SECRET_SYNC = "1131f6ae-9c07-11d1-f79f-00c04fc2dcd2";
641 const string GUID_DRS_USER_CHANGE_PASSWORD = "ab721a53-1e2f-11d0-9819-00aa0040529b";
642 const string GUID_DRS_FORCE_CHANGE_PASSWORD = "00299570-246d-11d0-a768-00aa006e0529";
644 /***************************************************************/
645 /* validated writes guids */
646 const string GUID_DRS_VALIDATE_SPN = "f3a64788-5306-11d1-a9c5-0000f80367c1";
647 const string GUID_DRS_SELF_MEMBERSHIP = "bf9679c0-0de6-11d0-a285-00aa003049e2";
648 const string GUID_DRS_DNS_HOST_NAME = "72e39547-7b18-11d1-adef-00c04fd8d5cd";
649 const string GUID_DRS_ADD_DNS_HOST_NAME = "80863791-dbe9-4eb8-837e-7f0ab55d9ac7";
650 const string GUID_DRS_BEHAVIOR_VERSION = "d31a8757-2447-4545-8081-3bb610cacbf2";
652 /* A type to describe the mapping of generic access rights to object
653 specific access rights. */
655 typedef struct {
656 uint32 generic_read;
657 uint32 generic_write;
658 uint32 generic_execute;
659 uint32 generic_all;
660 } generic_mapping;
662 typedef struct {
663 uint32 std_read;
664 uint32 std_write;
665 uint32 std_execute;
666 uint32 std_all;
667 } standard_mapping;