r18410: Reduce noise in the ldb_ildap backend. We regularly search for things
[amitay/samba.git] / source4 / lib / ldb / ldb_ildap / ldb_ildap.c
1 /* 
2    ldb database library - ildap backend
3
4    Copyright (C) Andrew Tridgell  2005
5    Copyright (C) Simo Sorce       2006
6
7      ** NOTE! The following LGPL license applies to the ldb
8      ** library. This does NOT imply that all of Samba is released
9      ** under the LGPL
10    
11    This library is free software; you can redistribute it and/or
12    modify it under the terms of the GNU Lesser General Public
13    License as published by the Free Software Foundation; either
14    version 2 of the License, or (at your option) any later version.
15
16    This library is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    Lesser General Public License for more details.
20
21    You should have received a copy of the GNU Lesser General Public
22    License along with this library; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 */
25
26 /*
27  *  Name: ldb_ildap
28  *
29  *  Component: ldb ildap backend
30  *
31  *  Description: This is a ldb backend for the internal ldap
32  *  client library in Samba4. By using this backend we are
33  *  independent of a system ldap library
34  *
35  *  Author: Andrew Tridgell
36  *
37  *  Modifications:
38  *
39  *  - description: make the module use asyncronous calls
40  *    date: Feb 2006
41  *    author: Simo Sorce
42  */
43
44
45 #include "includes.h"
46 #include "ldb/include/includes.h"
47
48 #include "lib/events/events.h"
49 #include "libcli/ldap/ldap.h"
50 #include "libcli/ldap/ldap_client.h"
51 #include "auth/auth.h"
52
53 struct ildb_private {
54         struct ldap_connection *ldap;
55         struct ldb_context *ldb;
56 };
57
58 struct ildb_context {
59         struct ldb_module *module;
60         struct ldap_request *req;
61         void *context;
62         int (*callback)(struct ldb_context *, void *, struct ldb_reply *);
63 };
64
65 /*
66   convert a ldb_message structure to a list of ldap_mod structures
67   ready for ildap_add() or ildap_modify()
68 */
69 static struct ldap_mod **ildb_msg_to_mods(void *mem_ctx, int *num_mods,
70                                           const struct ldb_message *msg, int use_flags)
71 {
72         struct ldap_mod **mods;
73         unsigned int i;
74         int n = 0;
75
76         /* allocate maximum number of elements needed */
77         mods = talloc_array(mem_ctx, struct ldap_mod *, msg->num_elements+1);
78         if (!mods) {
79                 errno = ENOMEM;
80                 return NULL;
81         }
82         mods[0] = NULL;
83
84         for (i = 0; i < msg->num_elements; i++) {
85                 const struct ldb_message_element *el = &msg->elements[i];
86
87                 mods[n] = talloc(mods, struct ldap_mod);
88                 if (!mods[n]) {
89                         goto failed;
90                 }
91                 mods[n + 1] = NULL;
92                 mods[n]->type = 0;
93                 mods[n]->attrib = *el;
94                 if (use_flags) {
95                         switch (el->flags & LDB_FLAG_MOD_MASK) {
96                         case LDB_FLAG_MOD_ADD:
97                                 mods[n]->type = LDAP_MODIFY_ADD;
98                                 break;
99                         case LDB_FLAG_MOD_DELETE:
100                                 mods[n]->type = LDAP_MODIFY_DELETE;
101                                 break;
102                         case LDB_FLAG_MOD_REPLACE:
103                                 mods[n]->type = LDAP_MODIFY_REPLACE;
104                                 break;
105                         }
106                 }
107                 n++;
108         }
109
110         *num_mods = n;
111         return mods;
112
113 failed:
114         talloc_free(mods);
115         return NULL;
116 }
117
118
119 /*
120   map an ildap NTSTATUS to a ldb error code
121 */
122 static int ildb_map_error(struct ildb_private *ildb, NTSTATUS status)
123 {
124         if (NT_STATUS_IS_OK(status)) {
125                 return LDB_SUCCESS;
126         }
127         ldb_set_errstring(ildb->ldb, ldap_errstr(ildb->ldap, status));
128         if (NT_STATUS_IS_LDAP(status)) {
129                 return NT_STATUS_LDAP_CODE(status);
130         }
131         return LDB_ERR_OPERATIONS_ERROR;
132 }
133
134 static void ildb_request_timeout(struct event_context *ev, struct timed_event *te,
135                                  struct timeval t, void *private_data)
136 {
137         struct ldb_handle *handle = talloc_get_type(private_data, struct ldb_handle);
138         struct ildb_context *ac = talloc_get_type(handle->private_data, struct ildb_context);
139
140         if (ac->req->state == LDAP_REQUEST_PENDING) {
141                 DLIST_REMOVE(ac->req->conn->pending, ac->req);
142         }
143
144         handle->status = LDB_ERR_TIME_LIMIT_EXCEEDED;
145
146         return;
147 }
148
149 static void ildb_callback(struct ldap_request *req)
150 {
151         struct ldb_handle *handle = talloc_get_type(req->async.private_data, struct ldb_handle);
152         struct ildb_context *ac = talloc_get_type(handle->private_data, struct ildb_context);
153         struct ildb_private *ildb = talloc_get_type(ac->module->private_data, struct ildb_private);
154         NTSTATUS status;
155         int i;
156
157         handle->status = LDB_SUCCESS;
158
159         if (!NT_STATUS_IS_OK(req->status)) {
160                 handle->status = ildb_map_error(ildb, req->status);
161                 return;
162         }
163
164         if (req->num_replies < 1) {
165                 handle->status = LDB_ERR_OPERATIONS_ERROR;
166                 return;
167         } 
168                 
169         switch (req->type) {
170
171         case LDAP_TAG_ModifyRequest:
172                 if (req->replies[0]->type != LDAP_TAG_ModifyResponse) {
173                         handle->status = LDB_ERR_PROTOCOL_ERROR;
174                         return;
175                 }
176                 status = ldap_check_response(req->conn, &req->replies[0]->r.GeneralResult);
177                 handle->status = ildb_map_error(ildb, status);
178                 if (ac->callback && handle->status == LDB_SUCCESS) {
179                         /* FIXME: build a corresponding ares to pass on */
180                         handle->status = ac->callback(ac->module->ldb, ac->context, NULL);
181                 }
182                 handle->state = LDB_ASYNC_DONE;
183                 break;
184
185         case LDAP_TAG_AddRequest:
186                 if (req->replies[0]->type != LDAP_TAG_AddResponse) {
187                         handle->status = LDB_ERR_PROTOCOL_ERROR;
188                         return;
189                 }
190                 status = ldap_check_response(req->conn, &req->replies[0]->r.GeneralResult);
191                 handle->status = ildb_map_error(ildb, status);
192                 if (ac->callback && handle->status == LDB_SUCCESS) {
193                         /* FIXME: build a corresponding ares to pass on */
194                         handle->status = ac->callback(ac->module->ldb, ac->context, NULL);
195                 }
196                 handle->state = LDB_ASYNC_DONE;
197                 break;
198
199         case LDAP_TAG_DelRequest:
200                 if (req->replies[0]->type != LDAP_TAG_DelResponse) {
201                         handle->status = LDB_ERR_PROTOCOL_ERROR;
202                         return;
203                 }
204                 status = ldap_check_response(req->conn, &req->replies[0]->r.GeneralResult);
205                 handle->status = ildb_map_error(ildb, status);
206                 if (ac->callback && handle->status == LDB_SUCCESS) {
207                         /* FIXME: build a corresponding ares to pass on */
208                         handle->status = ac->callback(ac->module->ldb, ac->context, NULL);
209                 }
210                 handle->state = LDB_ASYNC_DONE;
211                 break;
212
213         case LDAP_TAG_ModifyDNRequest:
214                 if (req->replies[0]->type != LDAP_TAG_ModifyDNResponse) {
215                         handle->status = LDB_ERR_PROTOCOL_ERROR;
216                         return;
217                 }
218                 status = ldap_check_response(req->conn, &req->replies[0]->r.GeneralResult);
219                 handle->status = ildb_map_error(ildb, status);
220                 if (ac->callback && handle->status == LDB_SUCCESS) {
221                         /* FIXME: build a corresponding ares to pass on */
222                         handle->status = ac->callback(ac->module->ldb, ac->context, NULL);
223                 }
224                 handle->state = LDB_ASYNC_DONE;
225                 break;
226
227         case LDAP_TAG_SearchRequest:
228                 /* loop over all messages */
229                 for (i = 0; i < req->num_replies; i++) {
230                         struct ldap_SearchResEntry *search;
231                         struct ldb_reply *ares = NULL;
232                         struct ldap_message *msg;
233                         int ret;
234
235                         ares = talloc_zero(ac, struct ldb_reply);
236                         if (!ares) {
237                                 handle->status = LDB_ERR_OPERATIONS_ERROR;
238                                 return;
239                         }
240
241                         msg = req->replies[i];
242                         switch (msg->type) {
243
244                         case LDAP_TAG_SearchResultDone:
245
246                                 status = ldap_check_response(req->conn, &msg->r.GeneralResult);
247                                 if (!NT_STATUS_IS_OK(status)) {
248                                         handle->status = ildb_map_error(ildb, status);
249                                         return;
250                                 }
251                                 
252                                 if (msg->controls) {
253                                         ares->controls = talloc_steal(ares, msg->controls);
254                                 }
255                                 if (msg->r.SearchResultDone.resultcode) {
256                                         if (msg->r.SearchResultDone.errormessage) {
257                                                 ldb_set_errstring(ac->module->ldb, msg->r.SearchResultDone.errormessage);
258                                         }
259                                 }
260
261                                 handle->status = msg->r.SearchResultDone.resultcode;
262                                 handle->state = LDB_ASYNC_DONE;
263                                 ares->type = LDB_REPLY_DONE;
264                                 break;
265
266                         case LDAP_TAG_SearchResultEntry:
267
268
269                                 ares->message = ldb_msg_new(ares);
270                                 if (!ares->message) {
271                                         handle->status = LDB_ERR_OPERATIONS_ERROR;
272                                         return;
273                                 }
274
275                                 search = &(msg->r.SearchResultEntry);
276                 
277                                 ares->message->dn = ldb_dn_explode_or_special(ares->message, search->dn);
278                                 if (ares->message->dn == NULL) {
279                                         handle->status = LDB_ERR_OPERATIONS_ERROR;
280                                         return;
281                                 }
282                                 ares->message->num_elements = search->num_attributes;
283                                 ares->message->elements = talloc_steal(ares->message, search->attributes);
284
285                                 handle->status = LDB_SUCCESS;
286                                 handle->state = LDB_ASYNC_PENDING;
287                                 ares->type = LDB_REPLY_ENTRY;
288                                 break;
289
290                         case LDAP_TAG_SearchResultReference:
291
292                                 ares->referral = talloc_strdup(ares, msg->r.SearchResultReference.referral);
293                                 
294                                 handle->status = LDB_SUCCESS;
295                                 handle->state = LDB_ASYNC_PENDING;
296                                 ares->type = LDB_REPLY_REFERRAL;
297                                 break;
298
299                         default:
300                                 /* TAG not handled, fail ! */
301                                 handle->status = LDB_ERR_PROTOCOL_ERROR;
302                                 return;
303                         }
304
305                         ret = ac->callback(ac->module->ldb, ac->context, ares);
306                         if (ret) {
307                                 handle->status = ret;
308                         }
309                 }
310
311                 talloc_free(req->replies);
312                 req->replies = NULL;
313                 req->num_replies = 0;
314
315                 break;
316                 
317         default:
318                 handle->status = LDB_ERR_PROTOCOL_ERROR;
319                 return;
320         }
321 }
322
323 static struct ldb_handle *init_ildb_handle(struct ldb_module *module, 
324                                            void *context,
325                                            int (*callback)(struct ldb_context *, void *, struct ldb_reply *))
326 {
327         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
328         struct ildb_context *ildb_ac;
329         struct ldb_handle *h;
330
331         h = talloc_zero(ildb->ldap, struct ldb_handle);
332         if (h == NULL) {
333                 ldb_set_errstring(module->ldb, "Out of Memory");
334                 return NULL;
335         }
336
337         h->module = module;
338
339         ildb_ac = talloc(h, struct ildb_context);
340         if (ildb_ac == NULL) {
341                 ldb_set_errstring(module->ldb, "Out of Memory");
342                 talloc_free(h);
343                 return NULL;
344         }
345
346         h->private_data = (void *)ildb_ac;
347
348         h->state = LDB_ASYNC_INIT;
349         h->status = LDB_SUCCESS;
350
351         ildb_ac->module = module;
352         ildb_ac->context = context;
353         ildb_ac->callback = callback;
354
355         return h;
356 }
357
358 static int ildb_request_send(struct ldb_module *module, struct ldap_message *msg,
359                              void *context,
360                              int (*callback)(struct ldb_context *, void *, struct ldb_reply *),
361                              int timeout,
362                              struct ldb_handle **handle)
363 {
364         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
365         struct ldb_handle *h = init_ildb_handle(module, context, callback);
366         struct ildb_context *ildb_ac;
367         struct ldap_request *req;
368
369         if (!h) {
370                 return LDB_ERR_OPERATIONS_ERROR;                
371         }
372
373         ildb_ac = talloc_get_type(h->private_data, struct ildb_context);
374
375         req = ldap_request_send(ildb->ldap, msg);
376         if (req == NULL) {
377                 ldb_set_errstring(module->ldb, "async send request failed");
378                 return LDB_ERR_OPERATIONS_ERROR;
379         }
380
381         if (!req->conn) {
382                 ldb_set_errstring(module->ldb, "connection to remote LDAP server dropped?");
383                 return LDB_ERR_OPERATIONS_ERROR;
384         }
385
386         ildb_ac->req = talloc_steal(ildb_ac, req);
387         talloc_free(req->time_event);
388         req->time_event = NULL;
389         if (timeout) {
390                 req->time_event = event_add_timed(req->conn->event.event_ctx, h, 
391                                                   timeval_current_ofs(timeout, 0),
392                                                   ildb_request_timeout, h);
393         }
394
395         req->async.fn = ildb_callback;
396         req->async.private_data = (void *)h;
397
398         *handle = h;
399         return LDB_SUCCESS;
400 }
401
402 static int ildb_request_noop(struct ldb_module *module, struct ldb_request *req) 
403 {
404         struct ldb_handle *h = init_ildb_handle(module, req->context, req->callback);
405         struct ildb_context *ildb_ac;
406         int ret = LDB_SUCCESS;
407
408         if (!h) {
409                 return LDB_ERR_OPERATIONS_ERROR;                
410         }
411
412         ildb_ac = talloc_get_type(h->private_data, struct ildb_context);
413         
414         req->handle = h;
415
416         if (ildb_ac->callback) {
417                 ret = ildb_ac->callback(module->ldb, ildb_ac->context, NULL);
418         }
419         req->handle->state = LDB_ASYNC_DONE;
420         return ret;
421 }
422
423 /*
424   search for matching records using an asynchronous function
425  */
426 static int ildb_search(struct ldb_module *module, struct ldb_request *req)
427 {
428         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
429         struct ldap_message *msg;
430         int n;
431
432         req->handle = NULL;
433
434         if (!req->callback || !req->context) {
435                 ldb_set_errstring(module->ldb, "Async interface called with NULL callback function or NULL context");
436                 return LDB_ERR_OPERATIONS_ERROR;
437         }
438         
439         if (req->op.search.tree == NULL) {
440                 ldb_set_errstring(module->ldb, "Invalid expression parse tree");
441                 return LDB_ERR_OPERATIONS_ERROR;
442         }
443
444         msg = new_ldap_message(ildb);
445         if (msg == NULL) {
446                 ldb_set_errstring(module->ldb, "Out of Memory");
447                 return LDB_ERR_OPERATIONS_ERROR;
448         }
449
450         msg->type = LDAP_TAG_SearchRequest;
451
452         if (req->op.search.base == NULL) {
453                 msg->r.SearchRequest.basedn = talloc_strdup(msg, "");
454         } else {
455                 msg->r.SearchRequest.basedn  = ldb_dn_linearize(msg, req->op.search.base);
456         }
457         if (msg->r.SearchRequest.basedn == NULL) {
458                 ldb_set_errstring(module->ldb, "Unable to determine baseDN");
459                 talloc_free(msg);
460                 return LDB_ERR_OPERATIONS_ERROR;
461         }
462
463         if (req->op.search.scope == LDB_SCOPE_DEFAULT) {
464                 msg->r.SearchRequest.scope = LDB_SCOPE_SUBTREE;
465         } else {
466                 msg->r.SearchRequest.scope = req->op.search.scope;
467         }
468         
469         msg->r.SearchRequest.deref  = LDAP_DEREFERENCE_NEVER;
470         msg->r.SearchRequest.timelimit = 0;
471         msg->r.SearchRequest.sizelimit = 0;
472         msg->r.SearchRequest.attributesonly = 0;
473         msg->r.SearchRequest.tree = discard_const(req->op.search.tree);
474         
475         for (n = 0; req->op.search.attrs && req->op.search.attrs[n]; n++) /* noop */ ;
476         msg->r.SearchRequest.num_attributes = n;
477         msg->r.SearchRequest.attributes = discard_const(req->op.search.attrs);
478         msg->controls = req->controls;
479
480         return ildb_request_send(module, msg, req->context, req->callback, req->timeout, &(req->handle));
481 }
482
483 /*
484   add a record
485 */
486 static int ildb_add(struct ldb_module *module, struct ldb_request *req)
487 {
488         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
489         struct ldap_message *msg;
490         struct ldap_mod **mods;
491         int i,n;
492
493         req->handle = NULL;
494
495         /* ignore ltdb specials */
496         if (ldb_dn_is_special(req->op.add.message->dn)) {
497                 return ildb_request_noop(module, req);
498         }
499
500         msg = new_ldap_message(ildb->ldap);
501         if (msg == NULL) {
502                 return LDB_ERR_OPERATIONS_ERROR;
503         }
504
505         msg->type = LDAP_TAG_AddRequest;
506
507         msg->r.AddRequest.dn = ldb_dn_linearize(msg, req->op.add.message->dn);
508         if (msg->r.AddRequest.dn == NULL) {
509                 talloc_free(msg);
510                 return LDB_ERR_INVALID_DN_SYNTAX;
511         }
512
513         mods = ildb_msg_to_mods(msg, &n, req->op.add.message, 0);
514         if (mods == NULL) {
515                 talloc_free(msg);
516                 return LDB_ERR_OPERATIONS_ERROR;
517         }
518
519         msg->r.AddRequest.num_attributes = n;
520         msg->r.AddRequest.attributes = talloc_array(msg, struct ldb_message_element, n);
521         if (msg->r.AddRequest.attributes == NULL) {
522                 talloc_free(msg);
523                 return LDB_ERR_OPERATIONS_ERROR;
524         }
525
526         for (i = 0; i < n; i++) {
527                 msg->r.AddRequest.attributes[i] = mods[i]->attrib;
528         }
529
530         return ildb_request_send(module, msg, req->context, req->callback, req->timeout, &(req->handle));
531 }
532
533 /*
534   modify a record
535 */
536 static int ildb_modify(struct ldb_module *module, struct ldb_request *req)
537 {
538         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
539         struct ldap_message *msg;
540         struct ldap_mod **mods;
541         int i,n;
542
543         req->handle = NULL;
544
545         /* ignore ltdb specials */
546         if (ldb_dn_is_special(req->op.mod.message->dn)) {
547                 return ildb_request_noop(module, req);
548         }
549
550         msg = new_ldap_message(ildb->ldap);
551         if (msg == NULL) {
552                 return LDB_ERR_OPERATIONS_ERROR;
553         }
554
555         msg->type = LDAP_TAG_ModifyRequest;
556
557         msg->r.ModifyRequest.dn = ldb_dn_linearize(msg, req->op.mod.message->dn);
558         if (msg->r.ModifyRequest.dn == NULL) {
559                 talloc_free(msg);
560                 return LDB_ERR_INVALID_DN_SYNTAX;
561         }
562
563         mods = ildb_msg_to_mods(msg, &n, req->op.mod.message, 1);
564         if (mods == NULL) {
565                 talloc_free(msg);
566                 return LDB_ERR_OPERATIONS_ERROR;
567         }
568
569         msg->r.ModifyRequest.num_mods = n;
570         msg->r.ModifyRequest.mods = talloc_array(msg, struct ldap_mod, n);
571         if (msg->r.ModifyRequest.mods == NULL) {
572                 talloc_free(msg);
573                 return LDB_ERR_OPERATIONS_ERROR;
574         }
575
576         for (i = 0; i < n; i++) {
577                 msg->r.ModifyRequest.mods[i] = *mods[i];
578         }
579
580         return ildb_request_send(module, msg, req->context, req->callback, req->timeout, &(req->handle));
581 }
582
583 /*
584   delete a record
585 */
586 static int ildb_delete(struct ldb_module *module, struct ldb_request *req)
587 {
588         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
589         struct ldap_message *msg;
590
591         req->handle = NULL;
592
593         /* ignore ltdb specials */
594         if (ldb_dn_is_special(req->op.del.dn)) {
595                 return ildb_request_noop(module, req);
596         }
597
598         msg = new_ldap_message(ildb->ldap);
599         if (msg == NULL) {
600                 return LDB_ERR_OPERATIONS_ERROR;
601         }
602
603         msg->type = LDAP_TAG_DelRequest;
604         
605         msg->r.DelRequest.dn = ldb_dn_linearize(msg, req->op.del.dn);
606         if (msg->r.DelRequest.dn == NULL) {
607                 talloc_free(msg);
608                 return LDB_ERR_INVALID_DN_SYNTAX;
609         }
610
611         return ildb_request_send(module, msg, req->context, req->callback, req->timeout, &(req->handle));
612 }
613
614 /*
615   rename a record
616 */
617 static int ildb_rename(struct ldb_module *module, struct ldb_request *req)
618 {
619         struct ildb_private *ildb = talloc_get_type(module->private_data, struct ildb_private);
620         struct ldap_message *msg;
621
622         req->handle = NULL;
623
624         /* ignore ltdb specials */
625         if (ldb_dn_is_special(req->op.rename.olddn) || ldb_dn_is_special(req->op.rename.newdn)) {
626                 return ildb_request_noop(module, req);
627         }
628
629         msg = new_ldap_message(ildb->ldap);
630         if (msg == NULL) {
631                 return LDB_ERR_OPERATIONS_ERROR;
632         }
633
634         msg->type = LDAP_TAG_ModifyDNRequest;
635         msg->r.ModifyDNRequest.dn = ldb_dn_linearize(msg, req->op.rename.olddn);
636         if (msg->r.ModifyDNRequest.dn == NULL) {
637                 talloc_free(msg);
638                 return LDB_ERR_INVALID_DN_SYNTAX;
639         }
640
641         msg->r.ModifyDNRequest.newrdn = 
642                 talloc_asprintf(msg, "%s=%s",
643                                 req->op.rename.newdn->components[0].name,
644                                 ldb_dn_escape_value(msg, req->op.rename.newdn->components[0].value));
645         if (msg->r.ModifyDNRequest.newrdn == NULL) {
646                 talloc_free(msg);
647                 return LDB_ERR_OPERATIONS_ERROR;
648         }
649
650         msg->r.ModifyDNRequest.newsuperior =
651                 ldb_dn_linearize(msg,
652                                  ldb_dn_get_parent(msg, req->op.rename.newdn));
653         if (msg->r.ModifyDNRequest.newsuperior == NULL) {
654                 talloc_free(msg);
655                 return LDB_ERR_INVALID_DN_SYNTAX;
656         }
657
658         msg->r.ModifyDNRequest.deleteolddn = True;
659
660         return ildb_request_send(module, msg, req->context, req->callback, req->timeout, &(req->handle));
661 }
662
663 static int ildb_start_trans(struct ldb_module *module)
664 {
665         /* TODO implement a local locking mechanism here */
666
667         return LDB_SUCCESS;
668 }
669
670 static int ildb_end_trans(struct ldb_module *module)
671 {
672         /* TODO implement a local transaction mechanism here */
673
674         return LDB_SUCCESS;
675 }
676
677 static int ildb_del_trans(struct ldb_module *module)
678 {
679         /* TODO implement a local locking mechanism here */
680
681         return LDB_SUCCESS;
682 }
683
684 static int ildb_request(struct ldb_module *module, struct ldb_request *req)
685 {
686         return LDB_ERR_OPERATIONS_ERROR;
687 }
688
689 static int ildb_wait(struct ldb_handle *handle, enum ldb_wait_type type)
690 {
691         struct ildb_context *ac = talloc_get_type(handle->private_data, struct ildb_context);
692
693         if (handle->state == LDB_ASYNC_DONE) {
694                 return handle->status;
695         }
696
697         if (!ac) {
698                 return LDB_ERR_OPERATIONS_ERROR;
699         }
700
701         handle->state = LDB_ASYNC_INIT;
702
703         switch(type) {
704         case LDB_WAIT_NONE:
705                 if (event_loop_once(ac->req->conn->event.event_ctx) != 0) {
706                         return LDB_ERR_OTHER;
707                 }
708                 break;
709         case LDB_WAIT_ALL:
710                 while (handle->status == LDB_SUCCESS && handle->state != LDB_ASYNC_DONE) {
711                         if (event_loop_once(ac->req->conn->event.event_ctx) != 0) {
712                                 return LDB_ERR_OTHER;
713                         }
714                 }
715                 break;
716         default:
717                 return LDB_ERR_OPERATIONS_ERROR;
718         }
719         
720         return handle->status;
721 }
722
723 static const struct ldb_module_ops ildb_ops = {
724         .name              = "ldap",
725         .search            = ildb_search,
726         .add               = ildb_add,
727         .modify            = ildb_modify,
728         .del               = ildb_delete,
729         .rename            = ildb_rename,
730         .request           = ildb_request,
731         .start_transaction = ildb_start_trans,
732         .end_transaction   = ildb_end_trans,
733         .del_transaction   = ildb_del_trans,
734         .wait              = ildb_wait
735 };
736
737 /*
738   connect to the database
739 */
740 static int ildb_connect(struct ldb_context *ldb, const char *url, 
741                         unsigned int flags, const char *options[],
742                         struct ldb_module **module)
743 {
744         struct ildb_private *ildb = NULL;
745         NTSTATUS status;
746         struct cli_credentials *creds;
747
748         ildb = talloc(ldb, struct ildb_private);
749         if (!ildb) {
750                 ldb_oom(ldb);
751                 goto failed;
752         }
753
754         ildb->ldb     = ldb;
755
756         ildb->ldap = ldap4_new_connection(ildb, ldb_get_opaque(ldb, "EventContext"));
757         if (!ildb->ldap) {
758                 ldb_oom(ldb);
759                 goto failed;
760         }
761
762         if (flags & LDB_FLG_RECONNECT) {
763                 ldap_set_reconn_params(ildb->ldap, 10);
764         }
765
766         status = ldap_connect(ildb->ldap, url);
767         if (!NT_STATUS_IS_OK(status)) {
768                 ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to connect to ldap URL '%s' - %s\n",
769                           url, ldap_errstr(ildb->ldap, status));
770                 goto failed;
771         }
772
773
774         *module = talloc(ldb, struct ldb_module);
775         if (!module) {
776                 ldb_oom(ldb);
777                 talloc_free(ildb);
778                 return -1;
779         }
780         (*module)->ldb = ldb;
781         (*module)->prev = (*module)->next = NULL;
782         (*module)->private_data = ildb;
783         (*module)->ops = &ildb_ops;
784
785         /* caller can optionally setup credentials using the opaque token 'credentials' */
786         creds = talloc_get_type(ldb_get_opaque(ldb, "credentials"), struct cli_credentials);
787         if (creds == NULL) {
788                 struct auth_session_info *session_info = talloc_get_type(ldb_get_opaque(ldb, "sessionInfo"), struct auth_session_info);
789                 if (session_info) {
790                         creds = session_info->credentials;
791                 }
792         }
793
794         if (creds != NULL && cli_credentials_authentication_requested(creds)) {
795                 const char *bind_dn = cli_credentials_get_bind_dn(creds);
796                 if (bind_dn) {
797                         const char *password = cli_credentials_get_password(creds);
798                         status = ldap_bind_simple(ildb->ldap, bind_dn, password);
799                         if (!NT_STATUS_IS_OK(status)) {
800                                 ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to bind - %s\n",
801                                           ldap_errstr(ildb->ldap, status));
802                                 goto failed;
803                         }
804                 } else {
805                         status = ldap_bind_sasl(ildb->ldap, creds);
806                         if (!NT_STATUS_IS_OK(status)) {
807                                 ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to bind - %s\n",
808                                           ldap_errstr(ildb->ldap, status));
809                                 goto failed;
810                         }
811                 }
812         }
813
814         return 0;
815
816 failed:
817         talloc_free(ildb);
818         return -1;
819 }
820
821 int ldb_ildap_init(void)
822 {
823         return ldb_register_backend("ldap", ildb_connect) + 
824                    ldb_register_backend("ldapi", ildb_connect) + 
825                    ldb_register_backend("ldaps", ildb_connect);
826 }