s3 net: Remove uid==0 check from net groupmap
[Samba/gebeck_regimport.git] / libds / common / flags.h
blob2b342af8d6a1e137ae2e9e5514888f11cb5b2d8d
1 /*
2 Unix SMB/CIFS implementation.
3 User/Group specific flags
5 Copyright (C) Andrew Tridgell 2001-2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 /* UserFlags for userAccountControl */
22 #define UF_SCRIPT 0x00000001 /* NT or Lan Manager Login script must be executed */
23 #define UF_ACCOUNTDISABLE 0x00000002
24 #define UF_00000004 0x00000004
25 #define UF_HOMEDIR_REQUIRED 0x00000008
27 #define UF_LOCKOUT 0x00000010
28 #define UF_PASSWD_NOTREQD 0x00000020
29 #define UF_PASSWD_CANT_CHANGE 0x00000040
30 #define UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED 0x00000080
32 #define UF_TEMP_DUPLICATE_ACCOUNT 0x00000100 /* Local user account in usrmgr */
33 #define UF_NORMAL_ACCOUNT 0x00000200
34 #define UF_00000400 0x00000400
35 #define UF_INTERDOMAIN_TRUST_ACCOUNT 0x00000800
37 #define UF_WORKSTATION_TRUST_ACCOUNT 0x00001000
38 #define UF_SERVER_TRUST_ACCOUNT 0x00002000
39 #define UF_00004000 0x00004000
40 #define UF_00008000 0x00008000
42 #define UF_DONT_EXPIRE_PASSWD 0x00010000
43 #define UF_MNS_LOGON_ACCOUNT 0x00020000
44 #define UF_SMARTCARD_REQUIRED 0x00040000
45 #define UF_TRUSTED_FOR_DELEGATION 0x00080000
47 #define UF_NOT_DELEGATED 0x00100000
48 #define UF_USE_DES_KEY_ONLY 0x00200000
49 #define UF_DONT_REQUIRE_PREAUTH 0x00400000
50 #define UF_PASSWORD_EXPIRED 0x00800000
52 #define UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION 0x01000000
53 #define UF_NO_AUTH_DATA_REQUIRED 0x02000000
55 #define UF_MACHINE_ACCOUNT_MASK (\
56 UF_INTERDOMAIN_TRUST_ACCOUNT |\
57 UF_WORKSTATION_TRUST_ACCOUNT |\
58 UF_SERVER_TRUST_ACCOUNT \
61 #define UF_ACCOUNT_TYPE_MASK (\
62 UF_TEMP_DUPLICATE_ACCOUNT |\
63 UF_NORMAL_ACCOUNT |\
64 UF_INTERDOMAIN_TRUST_ACCOUNT |\
65 UF_WORKSTATION_TRUST_ACCOUNT |\
66 UF_SERVER_TRUST_ACCOUNT \
69 #define UF_SETTABLE_BITS (\
70 UF_SCRIPT |\
71 UF_ACCOUNTDISABLE |\
72 UF_HOMEDIR_REQUIRED |\
73 UF_LOCKOUT |\
74 UF_PASSWD_NOTREQD |\
75 UF_PASSWD_CANT_CHANGE |\
76 UF_ACCOUNT_TYPE_MASK | \
77 UF_DONT_EXPIRE_PASSWD | \
78 UF_MNS_LOGON_ACCOUNT |\
79 UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED |\
80 UF_SMARTCARD_REQUIRED |\
81 UF_TRUSTED_FOR_DELEGATION |\
82 UF_NOT_DELEGATED |\
83 UF_USE_DES_KEY_ONLY |\
84 UF_DONT_REQUIRE_PREAUTH \
87 /* sAMAccountType */
88 #define ATYPE_NORMAL_ACCOUNT 0x30000000 /* 805306368 */
89 #define ATYPE_WORKSTATION_TRUST 0x30000001 /* 805306369 */
90 #define ATYPE_INTERDOMAIN_TRUST 0x30000002 /* 805306370 */
91 #define ATYPE_SECURITY_GLOBAL_GROUP 0x10000000 /* 268435456 */
92 #define ATYPE_DISTRIBUTION_GLOBAL_GROUP 0x10000001 /* 268435457 */
93 #define ATYPE_DISTRIBUTION_UNIVERSAL_GROUP ATYPE_DISTRIBUTION_GLOBAL_GROUP
94 #define ATYPE_SECURITY_LOCAL_GROUP 0x20000000 /* 536870912 */
95 #define ATYPE_DISTRIBUTION_LOCAL_GROUP 0x20000001 /* 536870913 */
97 #define ATYPE_ACCOUNT ATYPE_NORMAL_ACCOUNT /* 0x30000000 805306368 */
98 #define ATYPE_GLOBAL_GROUP ATYPE_SECURITY_GLOBAL_GROUP /* 0x10000000 268435456 */
99 #define ATYPE_LOCAL_GROUP ATYPE_SECURITY_LOCAL_GROUP /* 0x20000000 536870912 */
101 /* groupType */
102 #define GROUP_TYPE_BUILTIN_LOCAL_GROUP 0x00000001
103 #define GROUP_TYPE_ACCOUNT_GROUP 0x00000002
104 #define GROUP_TYPE_RESOURCE_GROUP 0x00000004
105 #define GROUP_TYPE_UNIVERSAL_GROUP 0x00000008
106 #define GROUP_TYPE_APP_BASIC_GROUP 0x00000010
107 #define GROUP_TYPE_APP_QUERY_GROUP 0x00000020
108 #define GROUP_TYPE_SECURITY_ENABLED 0x80000000
110 #define GTYPE_SECURITY_BUILTIN_LOCAL_GROUP ( \
111 /* 0x80000005 -2147483643 */ \
112 GROUP_TYPE_BUILTIN_LOCAL_GROUP| \
113 GROUP_TYPE_RESOURCE_GROUP| \
114 GROUP_TYPE_SECURITY_ENABLED \
116 #define GTYPE_SECURITY_DOMAIN_LOCAL_GROUP ( \
117 /* 0x80000004 -2147483644 */ \
118 GROUP_TYPE_RESOURCE_GROUP| \
119 GROUP_TYPE_SECURITY_ENABLED \
121 #define GTYPE_SECURITY_GLOBAL_GROUP ( \
122 /* 0x80000002 -2147483646 */ \
123 GROUP_TYPE_ACCOUNT_GROUP| \
124 GROUP_TYPE_SECURITY_ENABLED \
126 #define GTYPE_SECURITY_UNIVERSAL_GROUP ( \
127 /* 0x80000008 -2147483656 */ \
128 GROUP_TYPE_UNIVERSAL_GROUP| \
129 GROUP_TYPE_SECURITY_ENABLED \
131 #define GTYPE_DISTRIBUTION_GLOBAL_GROUP 0x00000002 /* 2 */
132 #define GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP 0x00000004 /* 4 */
133 #define GTYPE_DISTRIBUTION_UNIVERSAL_GROUP 0x00000008 /* 8 */
135 #define INSTANCE_TYPE_IS_NC_HEAD 0x00000001
136 #define INSTANCE_TYPE_UNINSTANT 0x00000002
137 #define INSTANCE_TYPE_WRITE 0x00000004
138 #define INSTANCE_TYPE_NC_ABOVE 0x00000008
139 #define INSTANCE_TYPE_NC_COMING 0x00000010
140 #define INSTANCE_TYPE_NC_GOING 0x00000020
142 #define SYSTEM_FLAG_CR_NTDS_NC 0x00000001
143 #define SYSTEM_FLAG_CR_NTDS_DOMAIN 0x00000002
144 #define SYSTEM_FLAG_CR_NTDS_NOT_GC_REPLICATED 0x00000004
145 #define SYSTEM_FLAG_SCHEMA_BASE_OBJECT 0x00000010
146 #define SYSTEM_FLAG_ATTR_IS_RDN 0x00000020
147 #define SYSTEM_FLAG_DISALLOW_MOVE_ON_DELETE 0x02000000
148 #define SYSTEM_FLAG_DOMAIN_DISALLOW_MOVE 0x04000000
149 #define SYSTEM_FLAG_DOMAIN_DISALLOW_RENAME 0x08000000
150 #define SYSTEM_FLAG_CONFIG_ALLOW_LIMITED_MOVE 0x10000000
151 #define SYSTEM_FLAG_CONFIG_ALLOW_MOVE 0x20000000
152 #define SYSTEM_FLAG_CONFIG_ALLOW_RENAME 0x40000000
153 #define SYSTEM_FLAG_DISALLOW_DELTE 0x80000000
155 #define SEARCH_FLAG_ATTINDEX 0x0000001
156 #define SEARCH_FLAG_PDNTATTINDEX 0x0000002
157 #define SEARCH_FLAG_ANR 0x0000004
158 #define SEARCH_FLAG_PRESERVEONDELETE 0x0000008
159 #define SEARCH_FLAG_COPY 0x0000010
160 #define SEARCH_FLAG_TUPLEINDEX 0x0000020
161 #define SEARCH_FLAG_SUBTREEATTRINDEX 0x0000040
162 #define SEARCH_FLAG_CONFIDENTIAL 0x0000080
163 #define SEARCH_FLAG_NEVERVALUEAUDIT 0x0000100
164 #define SEARCH_FLAG_RODC_ATTRIBUTE 0x0000200
166 #define DS_BEHAVIOR_WIN2000 0
167 #define DS_BEHAVIOR_WIN2003_INTERIM 1
168 #define DS_BEHAVIOR_WIN2003 2
169 #define DS_BEHAVIOR_WIN2008 3
171 /* Settings for the domainFunctionality attribute in the rootDSE */
173 #define DS_DOMAIN_FUNCTION_2000 0
174 #define DS_DOMAIN_FUCNTION_2003_MIXED 1
175 #define DS_DOMAIN_FUNCTION_2003 2
176 #define DS_DOMAIN_FUNCTION_2008 3