Fix bugzilla # 1208
[ddiss/samba.git] / source3 / include / ads.h
1 /*
2   header for ads (active directory) library routines
3
4   basically this is a wrapper around ldap
5 */
6
7 typedef struct {
8         void *ld; /* the active ldap structure */
9         struct in_addr ldap_ip; /* the ip of the active connection, if any */
10         time_t last_attempt; /* last attempt to reconnect */
11         int ldap_port;
12         
13         int is_mine;    /* do I own this structure's memory? */
14         
15         /* info needed to find the server */
16         struct {
17                 char *realm;
18                 char *workgroup;
19                 char *ldap_server;
20                 char *ldap_uri;
21                 int foreign; /* set to 1 if connecting to a foreign realm */
22         } server;
23
24         /* info needed to authenticate */
25         struct {
26                 char *realm;
27                 char *password;
28                 char *user_name;
29                 char *kdc_server;
30                 unsigned flags;
31                 int time_offset;
32                 time_t expire;
33         } auth;
34
35         /* info derived from the servers config */
36         struct {
37                 char *realm;
38                 char *bind_path;
39                 char *ldap_server_name;
40                 time_t current_time;
41         } config;
42 } ADS_STRUCT;
43
44 /* there are 5 possible types of errors the ads subsystem can produce */
45 enum ads_error_type {ENUM_ADS_ERROR_KRB5, ENUM_ADS_ERROR_GSS, 
46                      ENUM_ADS_ERROR_LDAP, ENUM_ADS_ERROR_SYSTEM, ENUM_ADS_ERROR_NT};
47
48 typedef struct {
49         enum ads_error_type error_type;
50         union err_state{                
51                 int rc;
52                 NTSTATUS nt_status;
53         } err;
54         /* For error_type = ENUM_ADS_ERROR_GSS minor_status describe GSS API error */
55         /* Where rc represents major_status of GSS API error */
56         int minor_status;
57 } ADS_STATUS;
58
59 #ifdef HAVE_ADS
60 typedef LDAPMod **ADS_MODLIST;
61 #else
62 typedef void **ADS_MODLIST;
63 #endif
64
65 /* macros to simplify error returning */
66 #define ADS_ERROR(rc) ADS_ERROR_LDAP(rc)
67 #define ADS_ERROR_LDAP(rc) ads_build_error(ENUM_ADS_ERROR_LDAP, rc, 0)
68 #define ADS_ERROR_SYSTEM(rc) ads_build_error(ENUM_ADS_ERROR_SYSTEM, rc?rc:EINVAL, 0)
69 #define ADS_ERROR_KRB5(rc) ads_build_error(ENUM_ADS_ERROR_KRB5, rc, 0)
70 #define ADS_ERROR_GSS(rc, minor) ads_build_error(ENUM_ADS_ERROR_GSS, rc, minor)
71 #define ADS_ERROR_NT(rc) ads_build_nt_error(ENUM_ADS_ERROR_NT,rc)
72
73 #define ADS_ERR_OK(status) ((status.error_type == ENUM_ADS_ERROR_NT) ? NT_STATUS_IS_OK(status.err.nt_status):(status.err.rc == 0))
74 #define ADS_SUCCESS ADS_ERROR(0)
75
76 /* time between reconnect attempts */
77 #define ADS_RECONNECT_TIME 5
78
79 /* timeout on searches */
80 #define ADS_SEARCH_TIMEOUT 10
81
82 /* ldap control oids */
83 #define ADS_PAGE_CTL_OID "1.2.840.113556.1.4.319"
84 #define ADS_NO_REFERRALS_OID "1.2.840.113556.1.4.1339"
85 #define ADS_SERVER_SORT_OID "1.2.840.113556.1.4.473"
86 #define ADS_PERMIT_MODIFY_OID "1.2.840.113556.1.4.1413"
87
88 /* UserFlags for userAccountControl */
89 #define UF_SCRIPT                               0x00000001
90 #define UF_ACCOUNTDISABLE                       0x00000002
91 #define UF_UNUSED_1                             0x00000004
92 #define UF_HOMEDIR_REQUIRED                     0x00000008
93
94 #define UF_LOCKOUT                              0x00000010
95 #define UF_PASSWD_NOTREQD                       0x00000020
96 #define UF_PASSWD_CANT_CHANGE                   0x00000040
97 #define UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED      0x00000080
98
99 #define UF_TEMP_DUPLICATE_ACCOUNT               0x00000100
100 #define UF_NORMAL_ACCOUNT                       0x00000200
101 #define UF_UNUSED_2                             0x00000400
102 #define UF_INTERDOMAIN_TRUST_ACCOUNT            0x00000800
103
104 #define UF_WORKSTATION_TRUST_ACCOUNT            0x00001000
105 #define UF_SERVER_TRUST_ACCOUNT                 0x00002000
106 #define UF_UNUSED_3                             0x00004000
107 #define UF_UNUSED_4                             0x00008000
108
109 #define UF_DONT_EXPIRE_PASSWD                   0x00010000
110 #define UF_MNS_LOGON_ACCOUNT                    0x00020000
111 #define UF_SMARTCARD_REQUIRED                   0x00040000
112 #define UF_TRUSTED_FOR_DELEGATION               0x00080000
113
114 #define UF_NOT_DELEGATED                        0x00100000
115 #define UF_USE_DES_KEY_ONLY                     0x00200000
116 #define UF_DONT_REQUIRE_PREAUTH                 0x00400000
117 #define UF_UNUSED_5                             0x00800000
118
119 #define UF_UNUSED_6                             0x01000000
120 #define UF_UNUSED_7                             0x02000000
121 #define UF_UNUSED_8                             0x04000000
122 #define UF_UNUSED_9                             0x08000000
123
124 #define UF_UNUSED_10                            0x10000000
125 #define UF_UNUSED_11                            0x20000000
126 #define UF_UNUSED_12                            0x40000000
127 #define UF_UNUSED_13                            0x80000000
128
129 #define UF_MACHINE_ACCOUNT_MASK (\
130                 UF_INTERDOMAIN_TRUST_ACCOUNT |\
131                 UF_WORKSTATION_TRUST_ACCOUNT |\
132                 UF_SERVER_TRUST_ACCOUNT \
133                 )
134
135 #define UF_ACCOUNT_TYPE_MASK (\
136                 UF_TEMP_DUPLICATE_ACCOUNT |\
137                 UF_NORMAL_ACCOUNT |\
138                 UF_INTERDOMAIN_TRUST_ACCOUNT |\
139                 UF_WORKSTATION_TRUST_ACCOUNT |\
140                 UF_SERVER_TRUST_ACCOUNT \
141                 )
142
143 #define UF_SETTABLE_BITS (\
144                 UF_SCRIPT |\
145                 UF_ACCOUNTDISABLE |\
146                 UF_HOMEDIR_REQUIRED  |\
147                 UF_LOCKOUT |\
148                 UF_PASSWD_NOTREQD |\
149                 UF_PASSWD_CANT_CHANGE |\
150                 UF_ACCOUNT_TYPE_MASK | \
151                 UF_DONT_EXPIRE_PASSWD | \
152                 UF_MNS_LOGON_ACCOUNT |\
153                 UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED |\
154                 UF_SMARTCARD_REQUIRED |\
155                 UF_TRUSTED_FOR_DELEGATION |\
156                 UF_NOT_DELEGATED |\
157                 UF_USE_DES_KEY_ONLY  |\
158                 UF_DONT_REQUIRE_PREAUTH \
159                 )
160
161 /* sAMAccountType */
162 #define ATYPE_NORMAL_ACCOUNT                    0x30000000 /* 805306368 */
163 #define ATYPE_WORKSTATION_TRUST                 0x30000001 /* 805306369 */
164 #define ATYPE_INTERDOMAIN_TRUST                 0x30000002 /* 805306370 */ 
165 #define ATYPE_SECURITY_GLOBAL_GROUP             0x10000000 /* 268435456 */
166 #define ATYPE_DISTRIBUTION_GLOBAL_GROUP         0x10000001 /* 268435457 */
167 #define ATYPE_DISTRIBUTION_UNIVERSAL_GROUP      ATYPE_DISTRIBUTION_GLOBAL_GROUP
168 #define ATYPE_SECURITY_LOCAL_GROUP              0x20000000 /* 536870912 */
169 #define ATYPE_DISTRIBUTION_LOCAL_GROUP          0x20000001 /* 536870913 */
170
171 #define ATYPE_ACCOUNT           ATYPE_NORMAL_ACCOUNT            /* 0x30000000 805306368 */
172 #define ATYPE_GLOBAL_GROUP      ATYPE_SECURITY_GLOBAL_GROUP     /* 0x10000000 268435456 */
173 #define ATYPE_LOCAL_GROUP       ATYPE_SECURITY_LOCAL_GROUP      /* 0x20000000 536870912 */
174
175 /* groupType */
176 #define GTYPE_SECURITY_BUILTIN_LOCAL_GROUP      0x80000005      /* -2147483643 */
177 #define GTYPE_SECURITY_DOMAIN_LOCAL_GROUP       0x80000004      /* -2147483644 */
178 #define GTYPE_SECURITY_GLOBAL_GROUP             0x80000002      /* -2147483646 */
179 #define GTYPE_DISTRIBUTION_GLOBAL_GROUP         0x00000002      /* 2 */
180 #define GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP   0x00000004      /* 4 */
181 #define GTYPE_DISTRIBUTION_UNIVERSAL_GROUP      0x00000008      /* 8 */
182
183 /* Mailslot or cldap getdcname response flags */
184 #define ADS_PDC            0x00000001  /* DC is PDC */
185 #define ADS_GC             0x00000004  /* DC is a GC of forest */
186 #define ADS_LDAP           0x00000008  /* DC is an LDAP server */
187 #define ADS_DS             0x00000010  /* DC supports DS */
188 #define ADS_KDC            0x00000020  /* DC is running KDC */
189 #define ADS_TIMESERV       0x00000040  /* DC is running time services */
190 #define ADS_CLOSEST        0x00000080  /* DC is closest to client */
191 #define ADS_WRITABLE       0x00000100  /* DC has writable DS */
192 #define ADS_GOOD_TIMESERV  0x00000200  /* DC has hardware clock
193                                          (and running time) */
194 #define ADS_NDNC           0x00000400  /* DomainName is non-domain NC serviced
195                                          by LDAP server */
196 #define ADS_PINGS          0x0000FFFF  /* Ping response */
197 #define ADS_DNS_CONTROLLER 0x20000000  /* DomainControllerName is a DNS name*/
198 #define ADS_DNS_DOMAIN     0x40000000  /* DomainName is a DNS name */
199 #define ADS_DNS_FOREST     0x80000000  /* DnsForestName is a DNS name */
200
201 /* DomainCntrollerAddressType */
202 #define ADS_INET_ADDRESS      0x00000001
203 #define ADS_NETBIOS_ADDRESS   0x00000002
204
205
206 /* ads auth control flags */
207 #define ADS_AUTH_DISABLE_KERBEROS 0x01
208 #define ADS_AUTH_NO_BIND          0x02
209 #define ADS_AUTH_ANON_BIND        0x04
210 #define ADS_AUTH_SIMPLE_BIND      0x08
211 #define ADS_AUTH_ALLOW_NTLMSSP    0x10
212
213 /* Kerberos environment variable names */
214 #define KRB5_ENV_CCNAME "KRB5CCNAME"
215
216 /* Heimdal uses a slightly different name */
217 #if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5)
218 #define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
219 #endif
220
221 /* The older versions of heimdal that don't have this
222    define don't seem to use it anyway.  I'm told they
223    always use a subkey */
224 #ifndef HAVE_AP_OPTS_USE_SUBKEY
225 #define AP_OPTS_USE_SUBKEY 0
226 #endif