tldap: Do not do a return before we got the search_result
[ira/wip.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_msg_diagnosticmessage(tldap_ctx_lastmsg(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_va(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, va_list ap)
332 {
333         char *filter;
334         int ret;
335
336         filter = talloc_vasprintf(talloc_tos(), fmt, ap);
337         if (filter == NULL) {
338                 return TLDAP_NO_MEMORY;
339         }
340
341         ret = tldap_search(ld, base, scope, filter,
342                            attrs, num_attrs, attrsonly,
343                            NULL /*sctrls*/, 0, NULL /*cctrls*/, 0,
344                            0 /*timelimit*/, 0 /*sizelimit*/, 0 /*deref*/,
345                            mem_ctx, res, NULL);
346         TALLOC_FREE(filter);
347         return ret;
348 }
349
350 int tldap_search_fmt(struct tldap_context *ld, const char *base, int scope,
351                      const char *attrs[], int num_attrs, int attrsonly,
352                      TALLOC_CTX *mem_ctx, struct tldap_message ***res,
353                      const char *fmt, ...)
354 {
355         va_list ap;
356         int ret;
357
358         va_start(ap, fmt);
359         ret = tldap_search_va(ld, base, scope, attrs, num_attrs, attrsonly,
360                               mem_ctx, res, fmt, ap);
361         va_end(ap);
362         return ret;
363 }
364
365 bool tldap_pull_uint64(struct tldap_message *msg, const char *attr,
366                        uint64_t *presult)
367 {
368         char *str;
369         uint64_t result;
370
371         str = tldap_talloc_single_attribute(msg, attr, talloc_tos());
372         if (str == NULL) {
373                 DEBUG(10, ("Could not find attribute %s\n", attr));
374                 return false;
375         }
376         result = strtoull(str, NULL, 10);
377         TALLOC_FREE(str);
378         *presult = result;
379         return true;
380 }
381
382 bool tldap_pull_uint32(struct tldap_message *msg, const char *attr,
383                        uint32_t *presult)
384 {
385         uint64_t result;
386
387         if (!tldap_pull_uint64(msg, attr, &result)) {
388                 return false;
389         }
390         *presult = (uint32_t)result;
391         return true;
392 }
393
394 struct tldap_fetch_rootdse_state {
395         struct tldap_context *ld;
396         struct tldap_message *rootdse;
397 };
398
399 static void tldap_fetch_rootdse_done(struct tevent_req *subreq);
400
401 struct tevent_req *tldap_fetch_rootdse_send(TALLOC_CTX *mem_ctx,
402                                             struct tevent_context *ev,
403                                             struct tldap_context *ld)
404 {
405         struct tevent_req *req, *subreq;
406         struct tldap_fetch_rootdse_state *state;
407         static const char *attrs[2] = { "*", "+" };
408
409         req = tevent_req_create(mem_ctx, &state,
410                                 struct tldap_fetch_rootdse_state);
411         if (req == NULL) {
412                 return NULL;
413         }
414         state->ld = ld;
415         state->rootdse = NULL;
416
417         subreq = tldap_search_send(
418                 mem_ctx, ev, ld, "", TLDAP_SCOPE_BASE, "(objectclass=*)",
419                 attrs, ARRAY_SIZE(attrs), 0, NULL, 0, NULL, 0, 0, 0, 0);
420         if (tevent_req_nomem(subreq, req)) {
421                 return tevent_req_post(req, ev);
422         }
423         tevent_req_set_callback(subreq, tldap_fetch_rootdse_done, req);
424         return req;
425 }
426
427 static void tldap_fetch_rootdse_done(struct tevent_req *subreq)
428 {
429         struct tevent_req *req = tevent_req_callback_data(
430                 subreq, struct tevent_req);
431         struct tldap_fetch_rootdse_state *state = tevent_req_data(
432                 req, struct tldap_fetch_rootdse_state);
433         struct tldap_message *msg;
434         int rc;
435
436         rc = tldap_search_recv(subreq, state, &msg);
437         if (rc != TLDAP_SUCCESS) {
438                 TALLOC_FREE(subreq);
439                 tevent_req_error(req, rc);
440                 return;
441         }
442
443         switch (tldap_msg_type(msg)) {
444         case TLDAP_RES_SEARCH_ENTRY:
445                 if (state->rootdse != NULL) {
446                         goto protocol_error;
447                 }
448                 state->rootdse = msg;
449                 break;
450         case TLDAP_RES_SEARCH_RESULT:
451                 TALLOC_FREE(subreq);
452                 if (state->rootdse == NULL) {
453                         goto protocol_error;
454                 }
455                 tevent_req_done(req);
456                 break;
457         default:
458                 goto protocol_error;
459         }
460         return;
461
462 protocol_error:
463         tevent_req_error(req, TLDAP_PROTOCOL_ERROR);
464         return;
465 }
466
467 int tldap_fetch_rootdse_recv(struct tevent_req *req)
468 {
469         struct tldap_fetch_rootdse_state *state = tevent_req_data(
470                 req, struct tldap_fetch_rootdse_state);
471         int err;
472         char *dn;
473
474         if (tevent_req_is_ldap_error(req, &err)) {
475                 return err;
476         }
477         /* Trigger parsing the dn, just to make sure it's ok */
478         if (!tldap_entry_dn(state->rootdse, &dn)) {
479                 return TLDAP_DECODING_ERROR;
480         }
481         if (!tldap_context_setattr(state->ld, "tldap:rootdse",
482                                    &state->rootdse)) {
483                 return TLDAP_NO_MEMORY;
484         }
485         return 0;
486 }
487
488 int tldap_fetch_rootdse(struct tldap_context *ld)
489 {
490         TALLOC_CTX *frame = talloc_stackframe();
491         struct tevent_context *ev;
492         struct tevent_req *req;
493         int result;
494
495         ev = event_context_init(frame);
496         if (ev == NULL) {
497                 result = TLDAP_NO_MEMORY;
498                 goto fail;
499         }
500
501         req = tldap_fetch_rootdse_send(frame, ev, ld);
502         if (req == NULL) {
503                 result = TLDAP_NO_MEMORY;
504                 goto fail;
505         }
506
507         if (!tevent_req_poll(req, ev)) {
508                 result = TLDAP_OPERATIONS_ERROR;
509                 goto fail;
510         }
511
512         result = tldap_fetch_rootdse_recv(req);
513  fail:
514         TALLOC_FREE(frame);
515         return result;
516 }
517
518 struct tldap_message *tldap_rootdse(struct tldap_context *ld)
519 {
520         return talloc_get_type(tldap_context_getattr(ld, "tldap:rootdse"),
521                                struct tldap_message);
522 }
523
524 bool tldap_entry_has_attrvalue(struct tldap_message *msg,
525                                const char *attribute,
526                                const DATA_BLOB blob)
527 {
528         int i, num_values;
529         DATA_BLOB *values;
530
531         if (!tldap_entry_values(msg, attribute, &num_values, &values)) {
532                 return false;
533         }
534         for (i=0; i<num_values; i++) {
535                 if (data_blob_cmp(&values[i], &blob) == 0) {
536                         return true;
537                 }
538         }
539         return false;
540 }
541
542 bool tldap_supports_control(struct tldap_context *ld, const char *oid)
543 {
544         struct tldap_message *rootdse = tldap_rootdse(ld);
545
546         if (rootdse == NULL) {
547                 return false;
548         }
549         return tldap_entry_has_attrvalue(rootdse, "supportedControl",
550                                          data_blob_const(oid, strlen(oid)));
551 }
552
553 struct tldap_control *tldap_add_control(TALLOC_CTX *mem_ctx,
554                                         struct tldap_control *ctrls,
555                                         int num_ctrls,
556                                         struct tldap_control *ctrl)
557 {
558         struct tldap_control *result;
559
560         result = talloc_array(mem_ctx, struct tldap_control, num_ctrls+1);
561         if (result == NULL) {
562                 return NULL;
563         }
564         memcpy(result, ctrls, sizeof(struct tldap_control) * num_ctrls);
565         result[num_ctrls] = *ctrl;
566         return result;
567 }
568
569 /*
570  * Find a control returned by the server
571  */
572 struct tldap_control *tldap_msg_findcontrol(struct tldap_message *msg,
573                                             const char *oid)
574 {
575         struct tldap_control *controls;
576         int i, num_controls;
577
578         tldap_msg_sctrls(msg, &num_controls, &controls);
579
580         for (i=0; i<num_controls; i++) {
581                 if (strcmp(controls[i].oid, oid) == 0) {
582                         return &controls[i];
583                 }
584         }
585         return NULL;
586 }
587
588 struct tldap_search_paged_state {
589         struct tevent_context *ev;
590         struct tldap_context *ld;
591         const char *base;
592         const char *filter;
593         int scope;
594         const char **attrs;
595         int num_attrs;
596         int attrsonly;
597         struct tldap_control *sctrls;
598         int num_sctrls;
599         struct tldap_control *cctrls;
600         int num_cctrls;
601         int timelimit;
602         int sizelimit;
603         int deref;
604
605         int page_size;
606         struct asn1_data *asn1;
607         DATA_BLOB cookie;
608         struct tldap_message *result;
609 };
610
611 static struct tevent_req *tldap_ship_paged_search(
612         TALLOC_CTX *mem_ctx,
613         struct tldap_search_paged_state *state)
614 {
615         struct tldap_control *pgctrl;
616         struct asn1_data *asn1;
617
618         asn1 = asn1_init(state);
619         if (asn1 == NULL) {
620                 return NULL;
621         }
622         asn1_push_tag(asn1, ASN1_SEQUENCE(0));
623         asn1_write_Integer(asn1, state->page_size);
624         asn1_write_OctetString(asn1, state->cookie.data, state->cookie.length);
625         asn1_pop_tag(asn1);
626         if (asn1->has_error) {
627                 TALLOC_FREE(asn1);
628                 return NULL;
629         }
630         state->asn1 = asn1;
631
632         pgctrl = &state->sctrls[state->num_sctrls-1];
633         pgctrl->oid = TLDAP_CONTROL_PAGEDRESULTS;
634         pgctrl->critical = true;
635         if (!asn1_blob(state->asn1, &pgctrl->value)) {
636                 TALLOC_FREE(asn1);
637                 return NULL;
638         }
639         return tldap_search_send(mem_ctx, state->ev, state->ld, state->base,
640                                  state->scope, state->filter, state->attrs,
641                                  state->num_attrs, state->attrsonly,
642                                  state->sctrls, state->num_sctrls,
643                                  state->cctrls, state->num_cctrls,
644                                  state->timelimit, state->sizelimit,
645                                  state->deref);
646 }
647
648 static void tldap_search_paged_done(struct tevent_req *subreq);
649
650 struct tevent_req *tldap_search_paged_send(TALLOC_CTX *mem_ctx,
651                                            struct tevent_context *ev,
652                                            struct tldap_context *ld,
653                                            const char *base, int scope,
654                                            const char *filter,
655                                            const char **attrs,
656                                            int num_attrs,
657                                            int attrsonly,
658                                            struct tldap_control *sctrls,
659                                            int num_sctrls,
660                                            struct tldap_control *cctrls,
661                                            int num_cctrls,
662                                            int timelimit,
663                                            int sizelimit,
664                                            int deref,
665                                            int page_size)
666 {
667         struct tevent_req *req, *subreq;
668         struct tldap_search_paged_state *state;
669         struct tldap_control empty_control;
670
671         req = tevent_req_create(mem_ctx, &state,
672                                 struct tldap_search_paged_state);
673         if (req == NULL) {
674                 return NULL;
675         }
676         state->ev = ev;
677         state->ld = ld;
678         state->base = base;
679         state->filter = filter;
680         state->scope = scope;
681         state->attrs = attrs;
682         state->num_attrs = num_attrs;
683         state->attrsonly = attrsonly;
684         state->cctrls = cctrls;
685         state->num_cctrls = num_cctrls;
686         state->timelimit = timelimit;
687         state->sizelimit = sizelimit;
688         state->deref = deref;
689
690         state->page_size = page_size;
691         state->asn1 = NULL;
692         state->cookie = data_blob_null;
693
694         ZERO_STRUCT(empty_control);
695
696         state->sctrls = tldap_add_control(state, sctrls, num_sctrls,
697                                           &empty_control);
698         if (tevent_req_nomem(state->sctrls, req)) {
699                 return tevent_req_post(req, ev);
700         }
701         state->num_sctrls = num_sctrls+1;
702
703         subreq = tldap_ship_paged_search(state, state);
704         if (tevent_req_nomem(subreq, req)) {
705                 return tevent_req_post(req, ev);
706         }
707         tevent_req_set_callback(subreq, tldap_search_paged_done, req);
708
709         return req;
710 }
711
712 static void tldap_search_paged_done(struct tevent_req *subreq)
713 {
714         struct tevent_req *req = tevent_req_callback_data(
715                 subreq, struct tevent_req);
716         struct tldap_search_paged_state *state = tevent_req_data(
717                 req, struct tldap_search_paged_state);
718         struct asn1_data *asn1;
719         struct tldap_control *pgctrl;
720         int rc, size;
721
722         rc = tldap_search_recv(subreq, state, &state->result);
723         if (rc != TLDAP_SUCCESS) {
724                 TALLOC_FREE(subreq);
725                 tevent_req_error(req, rc);
726                 return;
727         }
728
729         TALLOC_FREE(state->asn1);
730
731         switch (tldap_msg_type(state->result)) {
732         case TLDAP_RES_SEARCH_ENTRY:
733         case TLDAP_RES_SEARCH_REFERENCE:
734                 tevent_req_notify_callback(req);
735                 return;
736         case TLDAP_RES_SEARCH_RESULT:
737                 break;
738         default:
739                 TALLOC_FREE(subreq);
740                 tevent_req_error(req, TLDAP_PROTOCOL_ERROR);
741                 return;
742         }
743
744         TALLOC_FREE(subreq);
745
746         /* We've finished one paged search, fire the next */
747
748         pgctrl = tldap_msg_findcontrol(state->result,
749                                        TLDAP_CONTROL_PAGEDRESULTS);
750         if (pgctrl == NULL) {
751                 /* RFC2696 requires the server to return the control */
752                 tevent_req_error(req, TLDAP_PROTOCOL_ERROR);
753                 return;
754         }
755
756         TALLOC_FREE(state->cookie.data);
757
758         asn1 = asn1_init(talloc_tos());
759         if (asn1 == NULL) {
760                 tevent_req_error(req, TLDAP_NO_MEMORY);
761                 return;
762         }
763
764         asn1_load_nocopy(asn1, pgctrl->value.data, pgctrl->value.length);
765         asn1_start_tag(asn1, ASN1_SEQUENCE(0));
766         asn1_read_Integer(asn1, &size);
767         asn1_read_OctetString(asn1, state, &state->cookie);
768         asn1_end_tag(asn1);
769         if (asn1->has_error) {
770                 tevent_req_error(req, TLDAP_DECODING_ERROR);
771                 return;
772         }
773         TALLOC_FREE(asn1);
774
775         if (state->cookie.length == 0) {
776                 /* We're done, no cookie anymore */
777                 tevent_req_done(req);
778                 return;
779         }
780
781         TALLOC_FREE(state->result);
782
783         subreq = tldap_ship_paged_search(state, state);
784         if (tevent_req_nomem(subreq, req)) {
785                 return;
786         }
787         tevent_req_set_callback(subreq, tldap_search_paged_done, req);
788 }
789
790 int tldap_search_paged_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
791                             struct tldap_message **pmsg)
792 {
793         struct tldap_search_paged_state *state = tevent_req_data(
794                 req, struct tldap_search_paged_state);
795         int err;
796
797         if (!tevent_req_is_in_progress(req)
798             && tevent_req_is_ldap_error(req, &err)) {
799                 return err;
800         }
801         if (tevent_req_is_in_progress(req)) {
802                 switch (tldap_msg_type(state->result)) {
803                 case TLDAP_RES_SEARCH_ENTRY:
804                 case TLDAP_RES_SEARCH_REFERENCE:
805                         break;
806                 default:
807                         return TLDAP_PROTOCOL_ERROR;
808                 }
809         }
810         *pmsg = talloc_move(mem_ctx, &state->result);
811         return TLDAP_SUCCESS;
812 }