build: Remove --extra-python
[samba.git] / source3 / include / tldap.h
1 /*
2    Unix SMB/CIFS implementation.
3    Infrastructure for async ldap client requests
4    Copyright (C) Volker Lendecke 2009
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef __TLDAP_H__
21 #define __TLDAP_H__
22
23 #include "replace.h"
24 #include <talloc.h>
25 #include <tevent.h>
26 #include "lib/util/data_blob.h"
27
28 struct tldap_context;
29 struct tldap_message;
30
31 struct tldap_control {
32         const char *oid;
33         DATA_BLOB value;
34         bool critical;
35 };
36
37 struct tldap_attribute {
38         char *name;
39         int num_values;
40         DATA_BLOB *values;
41 };
42
43 struct tldap_mod {
44         int mod_op;
45         char *attribute;
46         int num_values;
47         DATA_BLOB *values;
48 };
49
50 #if defined(HAVE_IMMEDIATE_STRUCTURES)
51 typedef struct { uint8_t rc; } TLDAPRC;
52 #define TLDAP_RC(x) ((TLDAPRC){.rc = x})
53 #define TLDAP_RC_V(x) ((x).rc)
54 #else
55 typedef uint8_t TLDAPRC;
56 #define TLDAP_RC(x) (x)
57 #define TLDAP_RC_V(x) (x)
58 #endif
59
60 #define TLDAP_RC_EQUAL(x,y) (TLDAP_RC_V(x)==TLDAP_RC_V(y))
61 #define TLDAP_RC_IS_SUCCESS(x) TLDAP_RC_EQUAL(x,TLDAP_SUCCESS)
62
63 #define TLDAP_SUCCESS TLDAP_RC(0x00)
64 #define TLDAP_OPERATIONS_ERROR TLDAP_RC(0x01)
65 #define TLDAP_PROTOCOL_ERROR TLDAP_RC(0x02)
66 #define TLDAP_TIMELIMIT_EXCEEDED TLDAP_RC(0x03)
67 #define TLDAP_SIZELIMIT_EXCEEDED TLDAP_RC(0x04)
68 #define TLDAP_COMPARE_FALSE TLDAP_RC(0x05)
69 #define TLDAP_COMPARE_TRUE TLDAP_RC(0x06)
70 #define TLDAP_STRONG_AUTH_NOT_SUPPORTED TLDAP_RC(0x07)
71 #define TLDAP_STRONG_AUTH_REQUIRED TLDAP_RC(0x08)
72 #define TLDAP_REFERRAL TLDAP_RC(0x0a)
73 #define TLDAP_ADMINLIMIT_EXCEEDED TLDAP_RC(0x0b)
74 #define TLDAP_UNAVAILABLE_CRITICAL_EXTENSION TLDAP_RC(0x0c)
75 #define TLDAP_CONFIDENTIALITY_REQUIRED TLDAP_RC(0x0d)
76 #define TLDAP_SASL_BIND_IN_PROGRESS TLDAP_RC(0x0e)
77 #define TLDAP_NO_SUCH_ATTRIBUTE TLDAP_RC(0x10)
78 #define TLDAP_UNDEFINED_TYPE TLDAP_RC(0x11)
79 #define TLDAP_INAPPROPRIATE_MATCHING TLDAP_RC(0x12)
80 #define TLDAP_CONSTRAINT_VIOLATION TLDAP_RC(0x13)
81 #define TLDAP_TYPE_OR_VALUE_EXISTS TLDAP_RC(0x14)
82 #define TLDAP_INVALID_SYNTAX TLDAP_RC(0x15)
83 #define TLDAP_NO_SUCH_OBJECT TLDAP_RC(0x20)
84 #define TLDAP_ALIAS_PROBLEM TLDAP_RC(0x21)
85 #define TLDAP_INVALID_DN_SYNTAX TLDAP_RC(0x22)
86 #define TLDAP_IS_LEAF TLDAP_RC(0x23)
87 #define TLDAP_ALIAS_DEREF_PROBLEM TLDAP_RC(0x24)
88 #define TLDAP_INAPPROPRIATE_AUTH TLDAP_RC(0x30)
89 #define TLDAP_INVALID_CREDENTIALS TLDAP_RC(0x31)
90 #define TLDAP_INSUFFICIENT_ACCESS TLDAP_RC(0x32)
91 #define TLDAP_BUSY TLDAP_RC(0x33)
92 #define TLDAP_UNAVAILABLE TLDAP_RC(0x34)
93 #define TLDAP_UNWILLING_TO_PERFORM TLDAP_RC(0x35)
94 #define TLDAP_LOOP_DETECT TLDAP_RC(0x36)
95 #define TLDAP_NAMING_VIOLATION TLDAP_RC(0x40)
96 #define TLDAP_OBJECT_CLASS_VIOLATION TLDAP_RC(0x41)
97 #define TLDAP_NOT_ALLOWED_ON_NONLEAF TLDAP_RC(0x42)
98 #define TLDAP_NOT_ALLOWED_ON_RDN TLDAP_RC(0x43)
99 #define TLDAP_ALREADY_EXISTS TLDAP_RC(0x44)
100 #define TLDAP_NO_OBJECT_CLASS_MODS TLDAP_RC(0x45)
101 #define TLDAP_RESULTS_TOO_LARGE TLDAP_RC(0x46)
102 #define TLDAP_AFFECTS_MULTIPLE_DSAS TLDAP_RC(0x47)
103 #define TLDAP_OTHER TLDAP_RC(0x50)
104 #define TLDAP_SERVER_DOWN TLDAP_RC(0x51)
105 #define TLDAP_LOCAL_ERROR TLDAP_RC(0x52)
106 #define TLDAP_ENCODING_ERROR TLDAP_RC(0x53)
107 #define TLDAP_DECODING_ERROR TLDAP_RC(0x54)
108 #define TLDAP_TIMEOUT TLDAP_RC(0x55)
109 #define TLDAP_AUTH_UNKNOWN TLDAP_RC(0x56)
110 #define TLDAP_FILTER_ERROR TLDAP_RC(0x57)
111 #define TLDAP_USER_CANCELLED TLDAP_RC(0x58)
112 #define TLDAP_PARAM_ERROR TLDAP_RC(0x59)
113 #define TLDAP_NO_MEMORY TLDAP_RC(0x5a)
114 #define TLDAP_CONNECT_ERROR TLDAP_RC(0x5b)
115 #define TLDAP_NOT_SUPPORTED TLDAP_RC(0x5c)
116 #define TLDAP_CONTROL_NOT_FOUND TLDAP_RC(0x5d)
117 #define TLDAP_NO_RESULTS_RETURNED TLDAP_RC(0x5e)
118 #define TLDAP_MORE_RESULTS_TO_RETURN TLDAP_RC(0x5f)
119 #define TLDAP_CLIENT_LOOP TLDAP_RC(0x60)
120 #define TLDAP_REFERRAL_LIMIT_EXCEEDED TLDAP_RC(0x61)
121
122 bool tevent_req_ldap_error(struct tevent_req *req, TLDAPRC rc);
123 bool tevent_req_is_ldap_error(struct tevent_req *req, TLDAPRC *perr);
124
125 struct tldap_context *tldap_context_create(TALLOC_CTX *mem_ctx, int fd);
126 struct tstream_context *tldap_get_tstream(struct tldap_context *ld);
127 void tldap_set_tstream(struct tldap_context *ld,
128                        struct tstream_context *stream);
129
130 bool tldap_connection_ok(struct tldap_context *ld);
131 bool tldap_context_setattr(struct tldap_context *ld,
132                            const char *name, const void *pptr);
133 void *tldap_context_getattr(struct tldap_context *ld, const char *name);
134
135 struct tevent_req *tldap_sasl_bind_send(TALLOC_CTX *mem_ctx,
136                                         struct tevent_context *ev,
137                                         struct tldap_context *ld,
138                                         const char *dn,
139                                         const char *mechanism,
140                                         DATA_BLOB *creds,
141                                         struct tldap_control *sctrls,
142                                         int num_sctrls,
143                                         struct tldap_control *cctrls,
144                                         int num_cctrls);
145 TLDAPRC tldap_sasl_bind_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
146                              DATA_BLOB *serverSaslCreds);
147 TLDAPRC tldap_sasl_bind(struct tldap_context *ldap,
148                         const char *dn,
149                         const char *mechanism,
150                         DATA_BLOB *creds,
151                         struct tldap_control *sctrls,
152                         int num_sctrls,
153                         struct tldap_control *cctrls,
154                         int num_cctrls,
155                         TALLOC_CTX *mem_ctx,
156                         DATA_BLOB *serverSaslCreds);
157
158 struct tevent_req *tldap_simple_bind_send(TALLOC_CTX *mem_ctx,
159                                           struct tevent_context *ev,
160                                           struct tldap_context *ldap,
161                                           const char *dn,
162                                           const char *passwd);
163 TLDAPRC tldap_simple_bind_recv(struct tevent_req *req);
164 TLDAPRC tldap_simple_bind(struct tldap_context *ldap, const char *dn,
165                           const char *passwd);
166
167 struct tevent_req *tldap_search_send(TALLOC_CTX *mem_ctx,
168                                      struct tevent_context *ev,
169                                      struct tldap_context *ld,
170                                      const char *base, int scope,
171                                      const char *filter,
172                                      const char **attrs,
173                                      int num_attrs,
174                                      int attrsonly,
175                                      struct tldap_control *sctrls,
176                                      int num_sctrls,
177                                      struct tldap_control *cctrls,
178                                      int num_cctrls,
179                                      int timelimit,
180                                      int sizelimit,
181                                      int deref);
182 TLDAPRC tldap_search_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
183                           struct tldap_message **pmsg);
184
185 struct tevent_req *tldap_search_all_send(
186         TALLOC_CTX *mem_ctx, struct tevent_context *ev,
187         struct tldap_context *ld, const char *base, int scope,
188         const char *filter, const char **attrs, int num_attrs, int attrsonly,
189         struct tldap_control *sctrls, int num_sctrls,
190         struct tldap_control *cctrls, int num_cctrls,
191         int timelimit, int sizelimit, int deref);
192 TLDAPRC tldap_search_all_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
193                               struct tldap_message ***msgs,
194                               struct tldap_message **result);
195
196 TLDAPRC tldap_search(struct tldap_context *ld,
197                      const char *base, int scope, const char *filter,
198                      const char **attrs, int num_attrs, int attrsonly,
199                      struct tldap_control *sctrls, int num_sctrls,
200                      struct tldap_control *cctrls, int num_cctrls,
201                      int timelimit, int sizelimit, int deref,
202                      TALLOC_CTX *mem_ctx, struct tldap_message ***pmsgs);
203
204 bool tldap_entry_dn(struct tldap_message *msg, char **dn);
205 bool tldap_entry_attributes(struct tldap_message *msg,
206                             struct tldap_attribute **attributes,
207                             int *num_attributes);
208
209 struct tevent_req *tldap_add_send(TALLOC_CTX *mem_ctx,
210                                   struct tevent_context *ev,
211                                   struct tldap_context *ld,
212                                   const char *dn,
213                                   struct tldap_mod *attributes,
214                                   int num_attributes,
215                                   struct tldap_control *sctrls,
216                                   int num_sctrls,
217                                   struct tldap_control *cctrls,
218                                   int num_cctrls);
219 TLDAPRC tldap_add_recv(struct tevent_req *req);
220 TLDAPRC tldap_add(struct tldap_context *ld, const char *dn,
221                   struct tldap_mod *attributes, int num_attributes,
222                   struct tldap_control *sctrls, int num_sctrls,
223                   struct tldap_control *cctrls, int num_cctrls);
224
225 struct tevent_req *tldap_modify_send(TALLOC_CTX *mem_ctx,
226                                      struct tevent_context *ev,
227                                      struct tldap_context *ld,
228                                      const char *dn,
229                                      struct tldap_mod *mods, int num_mods,
230                                      struct tldap_control *sctrls,
231                                      int num_sctrls,
232                                      struct tldap_control *cctrls,
233                                      int num_cctrls);
234 TLDAPRC tldap_modify_recv(struct tevent_req *req);
235 TLDAPRC tldap_modify(struct tldap_context *ld, const char *dn,
236                      struct tldap_mod *mods, int num_mods,
237                      struct tldap_control *sctrls, int num_sctrls,
238                      struct tldap_control *cctrls, int num_cctrls);
239
240 struct tevent_req *tldap_delete_send(TALLOC_CTX *mem_ctx,
241                                      struct tevent_context *ev,
242                                      struct tldap_context *ld,
243                                      const char *dn,
244                                      struct tldap_control *sctrls,
245                                      int num_sctrls,
246                                      struct tldap_control *cctrls,
247                                      int num_cctrls);
248 TLDAPRC tldap_delete_recv(struct tevent_req *req);
249 TLDAPRC tldap_delete(struct tldap_context *ld, const char *dn,
250                      struct tldap_control *sctrls, int num_sctrls,
251                      struct tldap_control *cctrls, int num_cctrls);
252
253 int tldap_msg_id(const struct tldap_message *msg);
254 int tldap_msg_type(const struct tldap_message *msg);
255 const char *tldap_msg_matcheddn(struct tldap_message *msg);
256 const char *tldap_msg_diagnosticmessage(struct tldap_message *msg);
257 const char *tldap_msg_referral(struct tldap_message *msg);
258 void tldap_msg_sctrls(struct tldap_message *msg, int *num_sctrls,
259                       struct tldap_control **sctrls);
260 struct tldap_message *tldap_ctx_lastmsg(struct tldap_context *ld);
261 const char *tldap_rc2string(TLDAPRC rc);
262
263 /* DEBUG */
264 enum tldap_debug_level {
265         TLDAP_DEBUG_FATAL,
266         TLDAP_DEBUG_ERROR,
267         TLDAP_DEBUG_WARNING,
268         TLDAP_DEBUG_TRACE
269 };
270
271 void tldap_set_debug(struct tldap_context *ld,
272                      void (*log_fn)(void *log_private,
273                                     enum tldap_debug_level level,
274                                     const char *fmt,
275                                     va_list ap) PRINTF_ATTRIBUTE(3,0),
276                      void *log_private);
277
278 /*
279  * "+ 0x60" is from ASN1_APPLICATION
280  */
281 #define TLDAP_REQ_BIND (0 + 0x60)
282 #define TLDAP_RES_BIND (1 + 0x60)
283 #define TLDAP_REQ_UNBIND (2 + 0x60)
284 #define TLDAP_REQ_SEARCH (3 + 0x60)
285 #define TLDAP_RES_SEARCH_ENTRY (4 + 0x60)
286 #define TLDAP_RES_SEARCH_RESULT (5 + 0x60)
287 #define TLDAP_REQ_MODIFY (6 + 0x60)
288 #define TLDAP_RES_MODIFY (7 + 0x60)
289 #define TLDAP_REQ_ADD (8 + 0x60)
290 #define TLDAP_RES_ADD (9 + 0x60)
291 /* ASN1_APPLICATION_SIMPLE instead of ASN1_APPLICATION */
292 #define TLDAP_REQ_DELETE (10 + 0x40)
293 #define TLDAP_RES_DELETE (11 + 0x60)
294 #define TLDAP_REQ_MODDN (12 + 0x60)
295 #define TLDAP_RES_MODDN (13 + 0x60)
296 #define TLDAP_REQ_COMPARE (14 + 0x60)
297 #define TLDAP_RES_COMPARE (15 + 0x60)
298 /* ASN1_APPLICATION_SIMPLE instead of ASN1_APPLICATION */
299 #define TLDAP_REQ_ABANDON (16 + 0x40)
300 #define TLDAP_RES_SEARCH_REFERENCE (19 + 0x60)
301 #define TLDAP_REQ_EXTENDED (23 + 0x60)
302 #define TLDAP_RES_EXTENDED (24 + 0x60)
303 #define TLDAP_RES_INTERMEDIATE (25 + 0x60)
304
305 #define TLDAP_MOD_ADD (0)
306 #define TLDAP_MOD_DELETE (1)
307 #define TLDAP_MOD_REPLACE (2)
308
309 #define TLDAP_SCOPE_BASE (0)
310 #define TLDAP_SCOPE_ONE (1)
311 #define TLDAP_SCOPE_SUB (2)
312
313 #define TLDAP_CONTROL_PAGEDRESULTS "1.2.840.113556.1.4.319"
314
315 #endif