Add tldap_entry_has_attrvalue
[samba.git] / source3 / lib / tldap_util.c
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 #include "includes.h"
21
22 bool tldap_entry_values(struct tldap_message *msg, const char *attribute,
23                         int *num_values, DATA_BLOB **values)
24 {
25         struct tldap_attribute *attributes;
26         int i, num_attributes;
27
28         if (!tldap_entry_attributes(msg, &num_attributes, &attributes)) {
29                 return false;
30         }
31
32         for (i=0; i<num_attributes; i++) {
33                 if (strequal(attribute, attributes[i].name)) {
34                         break;
35                 }
36         }
37         if (i == num_attributes) {
38                 return false;
39         }
40         *num_values = attributes[i].num_values;
41         *values = attributes[i].values;
42         return true;
43 }
44
45 bool tldap_get_single_valueblob(struct tldap_message *msg,
46                                 const char *attribute, DATA_BLOB *blob)
47 {
48         int num_values;
49         DATA_BLOB *values;
50
51         if (attribute == NULL) {
52                 return NULL;
53         }
54         if (!tldap_entry_values(msg, attribute, &num_values, &values)) {
55                 return NULL;
56         }
57         if (num_values != 1) {
58                 return NULL;
59         }
60         *blob = values[0];
61         return true;
62 }
63
64 char *tldap_talloc_single_attribute(struct tldap_message *msg,
65                                     const char *attribute,
66                                     TALLOC_CTX *mem_ctx)
67 {
68         DATA_BLOB val;
69         char *result;
70         size_t len;
71
72         if (!tldap_get_single_valueblob(msg, attribute, &val)) {
73                 return false;
74         }
75         if (!convert_string_talloc(mem_ctx, CH_UTF8, CH_UNIX,
76                                    val.data, val.length,
77                                    &result, &len, false)) {
78                 return NULL;
79         }
80         return result;
81 }
82
83 bool tldap_pull_binsid(struct tldap_message *msg, const char *attribute,
84                        struct dom_sid *sid)
85 {
86         DATA_BLOB val;
87
88         if (!tldap_get_single_valueblob(msg, attribute, &val)) {
89                 return false;
90         }
91         return sid_parse((char *)val.data, val.length, sid);
92 }
93
94 static bool tldap_add_blob_vals(TALLOC_CTX *mem_ctx, struct tldap_mod *mod,
95                                 int num_newvals, DATA_BLOB *newvals)
96 {
97         int num_values = talloc_array_length(mod->values);
98         int i;
99         DATA_BLOB *tmp;
100
101         tmp = talloc_realloc(mem_ctx, mod->values, DATA_BLOB,
102                              num_values + num_newvals);
103         if (tmp == NULL) {
104                 return false;
105         }
106         mod->values = tmp;
107
108         for (i=0; i<num_newvals; i++) {
109                 mod->values[i+num_values].data = (uint8_t *)talloc_memdup(
110                         mod->values, newvals[i].data, newvals[i].length);
111                 if (mod->values[i+num_values].data == NULL) {
112                         return false;
113                 }
114                 mod->values[i+num_values].length = newvals[i].length;
115         }
116         mod->num_values = num_values + num_newvals;
117         return true;
118 }
119
120 bool tldap_add_mod_blobs(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods,
121                          int mod_op, const char *attrib,
122                          int num_newvals, DATA_BLOB *newvals)
123 {
124         struct tldap_mod new_mod;
125         struct tldap_mod *mods = *pmods;
126         struct tldap_mod *mod = NULL;
127         int i, num_mods;
128
129         if (mods == NULL) {
130                 mods = talloc_array(mem_ctx, struct tldap_mod, 0);
131         }
132         if (mods == NULL) {
133                 return false;
134         }
135
136         num_mods = talloc_array_length(mods);
137
138         for (i=0; i<num_mods; i++) {
139                 if ((mods[i].mod_op == mod_op)
140                     && strequal(mods[i].attribute, attrib)) {
141                         mod = &mods[i];
142                         break;
143                 }
144         }
145
146         if (mod == NULL) {
147                 new_mod.mod_op = mod_op;
148                 new_mod.attribute = talloc_strdup(mods, attrib);
149                 if (new_mod.attribute == NULL) {
150                         return false;
151                 }
152                 new_mod.num_values = 0;
153                 new_mod.values = NULL;
154                 mod = &new_mod;
155         }
156
157         if ((num_newvals != 0)
158             && !tldap_add_blob_vals(mods, mod, num_newvals, newvals)) {
159                 return false;
160         }
161
162         if (i == num_mods) {
163                 mods = talloc_realloc(talloc_tos(), mods, struct tldap_mod,
164                                       num_mods+1);
165                 if (mods == NULL) {
166                         return false;
167                 }
168                 mods[num_mods] = *mod;
169         }
170
171         *pmods = mods;
172         return true;
173 }
174
175 bool tldap_add_mod_str(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods,
176                        int mod_op, const char *attrib, const char *str)
177 {
178         DATA_BLOB utf8;
179         bool ret;
180
181         if (!convert_string_talloc(talloc_tos(), CH_UNIX, CH_UTF8, str,
182                                    strlen(str), &utf8.data, &utf8.length,
183                                    false)) {
184                 return false;
185         }
186
187         ret = tldap_add_mod_blobs(mem_ctx, pmods, mod_op, attrib, 1, &utf8);
188         TALLOC_FREE(utf8.data);
189         return ret;
190 }
191
192 static bool tldap_make_mod_blob_int(struct tldap_message *existing,
193                                     TALLOC_CTX *mem_ctx,
194                                     int *pnum_mods, struct tldap_mod **pmods,
195                                     const char *attrib, DATA_BLOB newval,
196                                     int (*comparison)(const DATA_BLOB *d1,
197                                                       const DATA_BLOB *d2))
198 {
199         int num_values = 0;
200         DATA_BLOB *values = NULL;
201         DATA_BLOB oldval = data_blob_null;
202
203         if ((existing != NULL)
204             && tldap_entry_values(existing, attrib, &num_values, &values)) {
205
206                 if (num_values > 1) {
207                         /* can't change multivalue attributes atm */
208                         return false;
209                 }
210                 if (num_values == 1) {
211                         oldval = values[0];
212                 }
213         }
214
215         if ((oldval.data != NULL) && (newval.data != NULL)
216             && (comparison(&oldval, &newval) == 0)) {
217                 /* Believe it or not, but LDAP will deny a delete and
218                    an add at the same time if the values are the
219                    same... */
220                 DEBUG(10,("smbldap_make_mod_blob: attribute |%s| not "
221                           "changed.\n", attrib));
222                 return true;
223         }
224
225         if (oldval.data != NULL) {
226                 /* By deleting exactly the value we found in the entry this
227                  * should be race-free in the sense that the LDAP-Server will
228                  * deny the complete operation if somebody changed the
229                  * attribute behind our back. */
230                 /* This will also allow modifying single valued attributes in
231                  * Novell NDS. In NDS you have to first remove attribute and
232                  * then you could add new value */
233
234                 DEBUG(10, ("smbldap_make_mod_blob: deleting attribute |%s|\n",
235                            attrib));
236                 if (!tldap_add_mod_blobs(mem_ctx, pmods, TLDAP_MOD_DELETE,
237                                          attrib, 1, &oldval)) {
238                         return false;
239                 }
240         }
241
242         /* Regardless of the real operation (add or modify)
243            we add the new value here. We rely on deleting
244            the old value, should it exist. */
245
246         if (newval.data != NULL) {
247                 DEBUG(10, ("smbldap_make_mod: adding attribute |%s| value len "
248                            "%d\n", attrib, (int)newval.length));
249                 if (!tldap_add_mod_blobs(mem_ctx, pmods, TLDAP_MOD_ADD,
250                                          attrib, 1, &newval)) {
251                         return false;
252                 }
253         }
254         *pnum_mods = talloc_array_length(*pmods);
255         return true;
256 }
257
258 bool tldap_make_mod_blob(struct tldap_message *existing, TALLOC_CTX *mem_ctx,
259                          int *pnum_mods, struct tldap_mod **pmods,
260                          const char *attrib, DATA_BLOB newval)
261 {
262         return tldap_make_mod_blob_int(existing, mem_ctx, pnum_mods, pmods,
263                                        attrib, newval, data_blob_cmp);
264 }
265
266 static int compare_utf8_blobs(const DATA_BLOB *d1, const DATA_BLOB *d2)
267 {
268         char *s1, *s2;
269         size_t s1len, s2len;
270         int ret;
271
272         if (!convert_string_talloc(talloc_tos(), CH_UTF8, CH_UNIX, d1->data,
273                                    d1->length, &s1, &s1len, false)) {
274                 /* can't do much here */
275                 return 0;
276         }
277         if (!convert_string_talloc(talloc_tos(), CH_UTF8, CH_UNIX, d2->data,
278                                    d2->length, &s2, &s2len, false)) {
279                 /* can't do much here */
280                 TALLOC_FREE(s1);
281                 return 0;
282         }
283         ret = StrCaseCmp(s1, s2);
284         TALLOC_FREE(s2);
285         TALLOC_FREE(s1);
286         return ret;
287 }
288
289 bool tldap_make_mod_fmt(struct tldap_message *existing, TALLOC_CTX *mem_ctx,
290                         int *pnum_mods, struct tldap_mod **pmods,
291                         const char *attrib, const char *fmt, ...)
292 {
293         va_list ap;
294         char *newval;
295         bool ret;
296         DATA_BLOB blob = data_blob_null;
297
298         va_start(ap, fmt);
299         newval = talloc_vasprintf(talloc_tos(), fmt, ap);
300         va_end(ap);
301
302         if (newval == NULL) {
303                 return false;
304         }
305
306         blob.length = strlen(newval);
307         if (blob.length != 0) {
308                 blob.data = CONST_DISCARD(uint8_t *, newval);
309         }
310         ret = tldap_make_mod_blob_int(existing, mem_ctx, pnum_mods, pmods,
311                                       attrib, blob, compare_utf8_blobs);
312         TALLOC_FREE(newval);
313         return ret;
314 }
315
316 const char *tldap_errstr(TALLOC_CTX *mem_ctx, struct tldap_context *ld, int rc)
317 {
318         const char *ld_error = NULL;
319         char *res;
320
321         ld_error = tldap_ctx_diagnosticmessage(ld);
322         res = talloc_asprintf(mem_ctx, "LDAP error %d (%s), %s", rc,
323                               tldap_err2string(rc),
324                               ld_error ? ld_error : "unknown");
325         return res;
326 }
327
328 int tldap_search_fmt(struct tldap_context *ld, const char *base, int scope,
329                      const char *attrs[], int num_attrs, int attrsonly,
330                      TALLOC_CTX *mem_ctx, struct tldap_message ***res,
331                      const char *fmt, ...)
332 {
333         va_list ap;
334         char *filter;
335         int ret;
336
337         va_start(ap, fmt);
338         filter = talloc_vasprintf(talloc_tos(), fmt, ap);
339         va_end(ap);
340
341         if (filter == NULL) {
342                 return TLDAP_NO_MEMORY;
343         }
344         ret = tldap_search(ld, base, scope, filter,
345                            attrs, num_attrs, attrsonly,
346                            NULL /*sctrls*/, 0, NULL /*cctrls*/, 0,
347                            0 /*timelimit*/, 0 /*sizelimit*/, 0 /*deref*/,
348                            mem_ctx, res, NULL);
349         TALLOC_FREE(filter);
350         return ret;
351 }
352
353 bool tldap_pull_uint64(struct tldap_message *msg, const char *attr,
354                        uint64_t *presult)
355 {
356         char *str;
357         uint64_t result;
358
359         str = tldap_talloc_single_attribute(msg, attr, talloc_tos());
360         if (str == NULL) {
361                 DEBUG(10, ("Could not find attribute %s\n", attr));
362                 return false;
363         }
364         result = strtoull(str, NULL, 10);
365         TALLOC_FREE(str);
366         *presult = result;
367         return true;
368 }
369
370 bool tldap_pull_uint32(struct tldap_message *msg, const char *attr,
371                        uint32_t *presult)
372 {
373         uint64_t result;
374
375         if (!tldap_pull_uint64(msg, attr, &result)) {
376                 return false;
377         }
378         *presult = (uint32_t)result;
379         return true;
380 }
381
382 struct tldap_fetch_rootdse_state {
383         struct tldap_context *ld;
384         struct tldap_message *rootdse;
385 };
386
387 static void tldap_fetch_rootdse_done(struct tevent_req *subreq);
388
389 struct tevent_req *tldap_fetch_rootdse_send(TALLOC_CTX *mem_ctx,
390                                             struct tevent_context *ev,
391                                             struct tldap_context *ld)
392 {
393         struct tevent_req *req, *subreq;
394         struct tldap_fetch_rootdse_state *state;
395         static const char *attrs[2] = { "*", "+" };
396
397         req = tevent_req_create(mem_ctx, &state,
398                                 struct tldap_fetch_rootdse_state);
399         if (req == NULL) {
400                 return NULL;
401         }
402         state->ld = ld;
403         state->rootdse = NULL;
404
405         subreq = tldap_search_send(
406                 mem_ctx, ev, ld, "", TLDAP_SCOPE_BASE, "(objectclass=*)",
407                 attrs, ARRAY_SIZE(attrs), 0, NULL, 0, NULL, 0, 0, 0, 0);
408         if (tevent_req_nomem(subreq, req)) {
409                 return tevent_req_post(req, ev);
410         }
411         tevent_req_set_callback(subreq, tldap_fetch_rootdse_done, req);
412         return req;
413 }
414
415 static void tldap_fetch_rootdse_done(struct tevent_req *subreq)
416 {
417         struct tevent_req *req = tevent_req_callback_data(
418                 subreq, struct tevent_req);
419         struct tldap_fetch_rootdse_state *state = tevent_req_data(
420                 req, struct tldap_fetch_rootdse_state);
421         struct tldap_message *msg;
422         int rc;
423
424         rc = tldap_search_recv(subreq, state, &msg);
425         if (rc != TLDAP_SUCCESS) {
426                 TALLOC_FREE(subreq);
427                 tevent_req_error(req, rc);
428                 return;
429         }
430
431         switch (tldap_msg_type(msg)) {
432         case TLDAP_RES_SEARCH_ENTRY:
433                 if (state->rootdse != NULL) {
434                         goto protocol_error;
435                 }
436                 state->rootdse = msg;
437                 break;
438         case TLDAP_RES_SEARCH_RESULT:
439                 TALLOC_FREE(subreq);
440                 if (state->rootdse == NULL) {
441                         goto protocol_error;
442                 }
443                 tevent_req_done(req);
444                 break;
445         default:
446                 goto protocol_error;
447         }
448         tevent_req_done(req);
449         return;
450
451 protocol_error:
452         tevent_req_error(req, TLDAP_PROTOCOL_ERROR);
453         return;
454 }
455
456 int tldap_fetch_rootdse_recv(struct tevent_req *req)
457 {
458         struct tldap_fetch_rootdse_state *state = tevent_req_data(
459                 req, struct tldap_fetch_rootdse_state);
460         int err;
461         char *dn;
462
463         if (tevent_req_is_ldap_error(req, &err)) {
464                 return err;
465         }
466         /* Trigger parsing the dn, just to make sure it's ok */
467         if (!tldap_entry_dn(state->rootdse, &dn)) {
468                 return TLDAP_DECODING_ERROR;
469         }
470         if (!tldap_context_setattr(state->ld, "tldap:rootdse",
471                                    &state->rootdse)) {
472                 return TLDAP_NO_MEMORY;
473         }
474         return 0;
475 }
476
477 int tldap_fetch_rootdse(struct tldap_context *ld)
478 {
479         TALLOC_CTX *frame = talloc_stackframe();
480         struct tevent_context *ev;
481         struct tevent_req *req;
482         int result;
483
484         ev = event_context_init(frame);
485         if (ev == NULL) {
486                 result = TLDAP_NO_MEMORY;
487                 goto fail;
488         }
489
490         req = tldap_fetch_rootdse_send(frame, ev, ld);
491         if (req == NULL) {
492                 result = TLDAP_NO_MEMORY;
493                 goto fail;
494         }
495
496         if (!tevent_req_poll(req, ev)) {
497                 result = TLDAP_OPERATIONS_ERROR;
498                 goto fail;
499         }
500
501         result = tldap_fetch_rootdse_recv(req);
502  fail:
503         TALLOC_FREE(frame);
504         return result;
505 }
506
507 struct tldap_message *tldap_rootdse(struct tldap_context *ld)
508 {
509         return talloc_get_type(tldap_context_getattr(ld, "tldap:rootdse"),
510                                struct tldap_message);
511 }
512
513 bool tldap_entry_has_attrvalue(struct tldap_message *msg,
514                                const char *attribute,
515                                const DATA_BLOB blob)
516 {
517         int i, num_values;
518         DATA_BLOB *values;
519
520         if (!tldap_entry_values(msg, attribute, &num_values, &values)) {
521                 return false;
522         }
523         for (i=0; i<num_values; i++) {
524                 if (data_blob_cmp(&values[i], &blob) == 0) {
525                         return true;
526                 }
527         }
528         return false;
529 }