Revert Fedrora DS backend to use extensibleObject.
[samba.git] / source4 / dsdb / samdb / ldb_modules / simple_ldap_map.c
1 /* 
2    ldb database module
3
4    LDAP semantics mapping module
5
6    Copyright (C) Jelmer Vernooij 2005
7    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 /* 
24    This module relies on ldb_map to do all the real work, but performs
25    some of the trivial mappings between AD semantics and that provided
26    by OpenLDAP and similar servers.
27 */
28
29 #include "includes.h"
30 #include "ldb/include/ldb.h"
31 #include "ldb/include/ldb_private.h"
32 #include "ldb/include/ldb_errors.h"
33 #include "ldb/ldb_map/ldb_map.h"
34
35 #include "librpc/gen_ndr/ndr_misc.h"
36 #include "librpc/ndr/libndr.h"
37
38 struct entryuuid_private {
39         struct ldb_dn **base_dns;
40 };
41
42 static struct ldb_val encode_guid(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
43 {
44         struct GUID guid;
45         NTSTATUS status = GUID_from_string((char *)val->data, &guid);
46         enum ndr_err_code ndr_err;
47         struct ldb_val out = data_blob(NULL, 0);
48
49         if (!NT_STATUS_IS_OK(status)) {
50                 return out;
51         }
52         ndr_err = ndr_push_struct_blob(&out, ctx, NULL, &guid,
53                                        (ndr_push_flags_fn_t)ndr_push_GUID);
54         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
55                 return out;
56         }
57
58         return out;
59 }
60
61 static struct ldb_val guid_always_string(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
62 {
63         struct GUID *guid;
64         struct ldb_val out = data_blob(NULL, 0);
65         if (val->length >= 32 && val->data[val->length] == '\0') {
66                 ldb_handler_copy(module->ldb, ctx, val, &out);
67         } else {
68                 enum ndr_err_code ndr_err;
69
70                 guid = talloc(ctx, struct GUID);
71                 if (guid == NULL) {
72                         return out;
73                 }
74                 ndr_err = ndr_pull_struct_blob(val, guid, NULL, guid,
75                                                (ndr_pull_flags_fn_t)ndr_pull_GUID);
76                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
77                         talloc_free(guid);
78                         return out;
79                 }
80                 out = data_blob_string_const(GUID_string(ctx, guid));
81                 talloc_free(guid);
82         }
83         return out;
84 }
85
86 static struct ldb_val encode_ns_guid(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
87 {
88         struct GUID guid;
89         NTSTATUS status = NS_GUID_from_string((char *)val->data, &guid);
90         enum ndr_err_code ndr_err;
91         struct ldb_val out = data_blob(NULL, 0);
92
93         if (!NT_STATUS_IS_OK(status)) {
94                 return out;
95         }
96         ndr_err = ndr_push_struct_blob(&out, ctx, NULL, &guid,
97                                        (ndr_push_flags_fn_t)ndr_push_GUID);
98         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
99                 return out;
100         }
101
102         return out;
103 }
104
105 static struct ldb_val guid_ns_string(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
106 {
107         struct ldb_val out = data_blob(NULL, 0);
108         if (val->length >= 32 && val->data[val->length] == '\0') {
109                 struct GUID guid;
110                 GUID_from_string((char *)val->data, &guid);
111                 out = data_blob_string_const(NS_GUID_string(ctx, &guid));
112         } else {
113                 enum ndr_err_code ndr_err;
114                 struct GUID *guid_p;
115                 guid_p = talloc(ctx, struct GUID);
116                 if (guid_p == NULL) {
117                         return out;
118                 }
119                 ndr_err = ndr_pull_struct_blob(val, guid_p, NULL, guid_p,
120                                                (ndr_pull_flags_fn_t)ndr_pull_GUID);
121                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
122                         talloc_free(guid_p);
123                         return out;
124                 }
125                 out = data_blob_string_const(NS_GUID_string(ctx, guid_p));
126                 talloc_free(guid_p);
127         }
128         return out;
129 }
130
131 /* The backend holds binary sids, so just copy them back */
132 static struct ldb_val val_copy(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
133 {
134         struct ldb_val out = data_blob(NULL, 0);
135         ldb_handler_copy(module->ldb, ctx, val, &out);
136
137         return out;
138 }
139
140 /* Ensure we always convert sids into binary, so the backend doesn't have to know about both forms */
141 static struct ldb_val sid_always_binary(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
142 {
143         struct ldb_val out = data_blob(NULL, 0);
144         const struct ldb_schema_attribute *a = ldb_schema_attribute_by_name(module->ldb, "objectSid");
145
146         if (a->syntax->canonicalise_fn(module->ldb, ctx, val, &out) != LDB_SUCCESS) {
147                 return data_blob(NULL, 0);
148         }
149
150         return out;
151 }
152
153 /* Ensure we always convert objectCategory into a DN */
154 static struct ldb_val objectCategory_always_dn(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
155 {
156         struct ldb_dn *dn;
157         struct ldb_val out = data_blob(NULL, 0);
158         const struct ldb_schema_attribute *a = ldb_schema_attribute_by_name(module->ldb, "objectCategory");
159
160         dn = ldb_dn_new(ctx, module->ldb, val->data);
161         if (dn && ldb_dn_validate(dn)) {
162                 talloc_free(dn);
163                 return val_copy(module, ctx, val);
164         }
165         talloc_free(dn);
166
167         if (a->syntax->canonicalise_fn(module->ldb, ctx, val, &out) != LDB_SUCCESS) {
168                 return data_blob(NULL, 0);
169         }
170
171         return out;
172 }
173
174 static struct ldb_val normalise_to_signed32(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
175 {
176         long long int signed_ll = strtoll((const char *)val->data, NULL, 10);
177         if (signed_ll >= 0x80000000LL) {
178                 union {
179                         int32_t signed_int;
180                         uint32_t unsigned_int;
181                 } u = {
182                         .unsigned_int = strtoul((const char *)val->data, NULL, 10)
183                 };
184
185                 struct ldb_val out = data_blob_string_const(talloc_asprintf(ctx, "%d", u.signed_int));
186                 return out;
187         }
188         return val_copy(module, ctx, val);
189 }
190
191 static struct ldb_val usn_to_entryCSN(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
192 {
193         struct ldb_val out;
194         unsigned long long usn = strtoull((const char *)val->data, NULL, 10);
195         time_t t = (usn >> 24);
196         out = data_blob_string_const(talloc_asprintf(ctx, "%s#%06x#00#000000", ldb_timestring(ctx, t), (unsigned int)(usn & 0xFFFFFF)));
197         return out;
198 }
199
200 static unsigned long long entryCSN_to_usn_int(TALLOC_CTX *ctx, const struct ldb_val *val) 
201 {
202         char *entryCSN = talloc_strdup(ctx, (const char *)val->data);
203         char *mod_per_sec;
204         time_t t;
205         unsigned long long usn;
206         char *p;
207         if (!entryCSN) {
208                 return 0;
209         }
210         p = strchr(entryCSN, '#');
211         if (!p) {
212                 return 0;
213         }
214         p[0] = '\0';
215         p++;
216         mod_per_sec = p;
217
218         p = strchr(p, '#');
219         if (!p) {
220                 return 0;
221         }
222         p[0] = '\0';
223         p++;
224
225         usn = strtol(mod_per_sec, NULL, 16);
226
227         t = ldb_string_to_time(entryCSN);
228         
229         usn = usn | ((unsigned long long)t <<24);
230         return usn;
231 }
232
233 static struct ldb_val entryCSN_to_usn(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
234 {
235         struct ldb_val out;
236         unsigned long long usn = entryCSN_to_usn_int(ctx, val);
237         out = data_blob_string_const(talloc_asprintf(ctx, "%lld", usn));
238         return out;
239 }
240
241 static struct ldb_val usn_to_timestamp(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
242 {
243         struct ldb_val out;
244         unsigned long long usn = strtoull((const char *)val->data, NULL, 10);
245         time_t t = (usn >> 24);
246         out = data_blob_string_const(ldb_timestring(ctx, t));
247         return out;
248 }
249
250 static struct ldb_val timestamp_to_usn(struct ldb_module *module, TALLOC_CTX *ctx, const struct ldb_val *val)
251 {
252         struct ldb_val out;
253         time_t t;
254         unsigned long long usn;
255
256         t = ldb_string_to_time((const char *)val->data);
257         
258         usn = ((unsigned long long)t <<24);
259
260         out = data_blob_string_const(talloc_asprintf(ctx, "%lld", usn));
261         return out;
262 }
263
264
265 static const struct ldb_map_attribute entryuuid_attributes[] = 
266 {
267         /* objectGUID */
268         {
269                 .local_name = "objectGUID",
270                 .type = MAP_CONVERT,
271                 .u = {
272                         .convert = {
273                                 .remote_name = "entryUUID", 
274                                 .convert_local = guid_always_string,
275                                 .convert_remote = encode_guid,
276                         },
277                 },
278         },
279         /* invocationId */
280         {
281                 .local_name = "invocationId",
282                 .type = MAP_CONVERT,
283                 .u = {
284                         .convert = {
285                                 .remote_name = "invocationId", 
286                                 .convert_local = guid_always_string,
287                                 .convert_remote = encode_guid,
288                         },
289                 },
290         },
291         /* objectSid */
292         {
293                 .local_name = "objectSid",
294                 .type = MAP_CONVERT,
295                 .u = {
296                         .convert = {
297                                 .remote_name = "objectSid", 
298                                 .convert_local = sid_always_binary,
299                                 .convert_remote = val_copy,
300                         },
301                 },
302         },
303         {
304                 .local_name = "name",
305                 .type = MAP_RENAME,
306                 .u = {
307                         .rename = {
308                                  .remote_name = "samba4RDN"
309                          }
310                 }
311         },
312         {
313                 .local_name = "whenCreated",
314                 .type = MAP_RENAME,
315                 .u = {
316                         .rename = {
317                                  .remote_name = "createTimestamp"
318                          }
319                 }
320         },
321         {
322                 .local_name = "whenChanged",
323                 .type = MAP_RENAME,
324                 .u = {
325                         .rename = {
326                                  .remote_name = "modifyTimestamp"
327                          }
328                 }
329         },
330         {
331                 .local_name = "objectClasses",
332                 .type = MAP_RENAME,
333                 .u = {
334                         .rename = {
335                                  .remote_name = "samba4ObjectClasses"
336                          }
337                 }
338         },
339         {
340                 .local_name = "dITContentRules",
341                 .type = MAP_RENAME,
342                 .u = {
343                         .rename = {
344                                  .remote_name = "samba4DITContentRules"
345                          }
346                 }
347         },
348         {
349                 .local_name = "attributeTypes",
350                 .type = MAP_RENAME,
351                 .u = {
352                         .rename = {
353                                  .remote_name = "samba4AttributeTypes"
354                          }
355                 }
356         },
357         {
358                 .local_name = "objectCategory",
359                 .type = MAP_CONVERT,
360                 .u = {
361                         .convert = {
362                                 .remote_name = "objectCategory", 
363                                 .convert_local = objectCategory_always_dn,
364                                 .convert_remote = val_copy,
365                         },
366                 },
367         },
368         {
369                 .local_name = "distinguishedName",
370                 .type = MAP_RENAME,
371                 .u = {
372                         .rename = {
373                                  .remote_name = "entryDN"
374                          }
375                 }
376         },
377         {
378                 .local_name = "groupType",
379                 .type = MAP_CONVERT,
380                 .u = {
381                         .convert = {
382                                  .remote_name = "groupType",
383                                  .convert_local = normalise_to_signed32,
384                                  .convert_remote = val_copy,
385                          },
386                 }
387         },
388         {
389                 .local_name = "sAMAccountType",
390                 .type = MAP_CONVERT,
391                 .u = {
392                         .convert = {
393                                  .remote_name = "sAMAccountType",
394                                  .convert_local = normalise_to_signed32,
395                                  .convert_remote = val_copy,
396                          },
397                 }
398         },
399         {
400                 .local_name = "usnChanged",
401                 .type = MAP_CONVERT,
402                 .u = {
403                         .convert = {
404                                  .remote_name = "entryCSN",
405                                  .convert_local = usn_to_entryCSN,
406                                  .convert_remote = entryCSN_to_usn
407                          },
408                 },
409         },
410         {
411                 .local_name = "usnCreated",
412                 .type = MAP_CONVERT,
413                 .u = {
414                         .convert = {
415                                  .remote_name = "createTimestamp",
416                                  .convert_local = usn_to_timestamp,
417                                  .convert_remote = timestamp_to_usn,
418                          },
419                 },
420         },
421         {
422                 .local_name = "*",
423                 .type = MAP_KEEP,
424         },
425         {
426                 .local_name = NULL,
427         }
428 };
429
430 /* This objectClass conflicts with builtin classes on OpenLDAP */
431 const struct ldb_map_objectclass entryuuid_objectclasses[] =
432 {
433         {
434                 .local_name = "subSchema",
435                 .remote_name = "samba4SubSchema"
436         },
437         {
438                 .local_name = NULL
439         }
440 };
441
442 /* These things do not show up in wildcard searches in OpenLDAP, but
443  * we need them to show up in the AD-like view */
444 static const char * const entryuuid_wildcard_attributes[] = {
445         "objectGUID", 
446         "whenCreated", 
447         "whenChanged",
448         "usnCreated",
449         "usnChanged",
450         "memberOf",
451         NULL
452 };
453
454 static const struct ldb_map_attribute nsuniqueid_attributes[] = 
455 {
456         /* objectGUID */
457         {
458                 .local_name = "objectGUID",
459                 .type = MAP_CONVERT,
460                 .u = {
461                         .convert = {
462                                 .remote_name = "nsuniqueid", 
463                                 .convert_local = guid_ns_string,
464                                 .convert_remote = encode_ns_guid,
465                         },
466                 },
467         },
468         /* objectSid */ 
469         {
470                 .local_name = "objectSid",
471                 .type = MAP_CONVERT,
472                 .u = {
473                         .convert = {
474                                 .remote_name = "objectSid", 
475                                 .convert_local = sid_always_binary,
476                                 .convert_remote = val_copy,
477                         },
478                 },
479         },
480         {
481                 .local_name = "whenCreated",
482                 .type = MAP_RENAME,
483                 .u = {
484                         .rename = {
485                                  .remote_name = "createTimestamp"
486                          }
487                 }
488         },
489         {
490                 .local_name = "whenChanged",
491                 .type = MAP_RENAME,
492                 .u = {
493                         .rename = {
494                                  .remote_name = "modifyTimestamp"
495                          }
496                 }
497         },
498         {
499                 .local_name = "objectCategory",
500                 .type = MAP_CONVERT,
501                 .u = {
502                         .convert = {
503                                 .remote_name = "objectCategory", 
504                                 .convert_local = objectCategory_always_dn,
505                                 .convert_remote = val_copy,
506                         },
507                 },
508         },
509         {
510                 .local_name = "distinguishedName",
511                 .type = MAP_RENAME,
512                 .u = {
513                         .rename = {
514                                  .remote_name = "entryDN"
515                          }
516                 }
517         },
518         {
519                 .local_name = "groupType",
520                 .type = MAP_CONVERT,
521                 .u = {
522                         .convert = {
523                                  .remote_name = "groupType",
524                                  .convert_local = normalise_to_signed32,
525                                  .convert_remote = val_copy,
526                          },
527                 }
528         },
529         {
530                 .local_name = "sAMAccountType",
531                 .type = MAP_CONVERT,
532                 .u = {
533                         .convert = {
534                                  .remote_name = "sAMAccountType",
535                                  .convert_local = normalise_to_signed32,
536                                  .convert_remote = val_copy,
537                          },
538                 }
539         },
540         {
541                 .local_name = "usnChanged",
542                 .type = MAP_CONVERT,
543                 .u = {
544                         .convert = {
545                                  .remote_name = "modifyTimestamp",
546                                  .convert_local = usn_to_timestamp,
547                                  .convert_remote = timestamp_to_usn,
548                          },
549                 },
550         },
551         {
552                 .local_name = "usnCreated",
553                 .type = MAP_CONVERT,
554                 .u = {
555                         .convert = {
556                                  .remote_name = "createTimestamp",
557                                  .convert_local = usn_to_timestamp,
558                                  .convert_remote = timestamp_to_usn,
559                          },
560                 },
561         },
562         {
563                 .local_name = "*",
564                 .type = MAP_KEEP,
565         },
566         {
567                 .local_name = NULL,
568         }
569 };
570
571 /* These things do not show up in wildcard searches in OpenLDAP, but
572  * we need them to show up in the AD-like view */
573 static const char * const nsuniqueid_wildcard_attributes[] = {
574         "objectGUID", 
575         "whenCreated", 
576         "whenChanged",
577         "usnCreated",
578         "usnChanged",
579         NULL
580 };
581
582 static int get_remote_rootdse(struct ldb_context *ldb, void *context, 
583                        struct ldb_reply *ares) 
584 {
585         struct entryuuid_private *entryuuid_private;
586         entryuuid_private = talloc_get_type(context,
587                                             struct entryuuid_private);
588         if (ares->type == LDB_REPLY_ENTRY) {
589                 int i;
590                 struct ldb_message_element *el = ldb_msg_find_element(ares->message, "namingContexts");
591                 entryuuid_private->base_dns = talloc_realloc(entryuuid_private, entryuuid_private->base_dns, struct ldb_dn *, 
592                                                              el->num_values + 1);
593                 for (i=0; i < el->num_values; i++) {
594                         if (!entryuuid_private->base_dns) {
595                                 return LDB_ERR_OPERATIONS_ERROR;
596                         }
597                         entryuuid_private->base_dns[i] = ldb_dn_new(entryuuid_private->base_dns, ldb, (const char *)el->values[i].data);
598                         if ( ! ldb_dn_validate(entryuuid_private->base_dns[i])) {
599                                 return LDB_ERR_OPERATIONS_ERROR;
600                         }
601                 }
602                 entryuuid_private->base_dns[i] = NULL;
603         }
604
605         return LDB_SUCCESS;
606 }
607
608 static int find_base_dns(struct ldb_module *module, 
609                           struct entryuuid_private *entryuuid_private) 
610 {
611         int ret;
612         struct ldb_request *req;
613         const char *naming_context_attr[] = {
614                 "namingContexts",
615                 NULL
616         };
617         req = talloc(entryuuid_private, struct ldb_request);
618         if (req == NULL) {
619                 ldb_set_errstring(module->ldb, "Out of Memory");
620                 return LDB_ERR_OPERATIONS_ERROR;
621         }
622
623         req->operation = LDB_SEARCH;
624         req->op.search.base = ldb_dn_new(req, module->ldb, NULL);
625         req->op.search.scope = LDB_SCOPE_BASE;
626
627         req->op.search.tree = ldb_parse_tree(req, "objectClass=*");
628         if (req->op.search.tree == NULL) {
629                 ldb_set_errstring(module->ldb, "Unable to parse search expression");
630                 talloc_free(req);
631                 return LDB_ERR_OPERATIONS_ERROR;
632         }
633
634         req->op.search.attrs = naming_context_attr;
635         req->controls = NULL;
636         req->context = entryuuid_private;
637         req->callback = get_remote_rootdse;
638         ldb_set_timeout(module->ldb, req, 0); /* use default timeout */
639
640         ret = ldb_next_request(module, req);
641         
642         if (ret == LDB_SUCCESS) {
643                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
644         }
645         
646         talloc_free(req);
647         if (ret != LDB_SUCCESS) {
648                 return ret;
649         }
650
651         return LDB_SUCCESS;
652 }
653
654 /* the context init function */
655 static int entryuuid_init(struct ldb_module *module)
656 {
657         int ret;
658         struct map_private *map_private;
659         struct entryuuid_private *entryuuid_private;
660
661         ret = ldb_map_init(module, entryuuid_attributes, entryuuid_objectclasses, entryuuid_wildcard_attributes, "samba4Top", NULL);
662         if (ret != LDB_SUCCESS)
663                 return ret;
664
665         map_private = talloc_get_type(module->private_data, struct map_private);
666
667         entryuuid_private = talloc_zero(map_private, struct entryuuid_private);
668         map_private->caller_private = entryuuid_private;
669
670         ret = find_base_dns(module, entryuuid_private);
671
672         return ldb_next_init(module);
673 }
674
675 /* the context init function */
676 static int nsuniqueid_init(struct ldb_module *module)
677 {
678         int ret;
679         struct map_private *map_private;
680         struct entryuuid_private *entryuuid_private;
681
682         ret = ldb_map_init(module, nsuniqueid_attributes, NULL, nsuniqueid_wildcard_attributes, "extensibleObject", NULL);
683         if (ret != LDB_SUCCESS)
684                 return ret;
685
686         map_private = talloc_get_type(module->private_data, struct map_private);
687
688         entryuuid_private = talloc_zero(map_private, struct entryuuid_private);
689         map_private->caller_private = entryuuid_private;
690
691         ret = find_base_dns(module, entryuuid_private);
692
693         return ldb_next_init(module);
694 }
695
696 static int get_seq(struct ldb_context *ldb, void *context, 
697                    struct ldb_reply *ares) 
698 {
699         unsigned long long *max_seq = (unsigned long long *)context;
700         unsigned long long seq;
701         if (ares->type == LDB_REPLY_ENTRY) {
702                 struct ldb_message_element *el = ldb_msg_find_element(ares->message, "contextCSN");
703                 if (el) {
704                         seq = entryCSN_to_usn_int(ares, &el->values[0]);
705                         *max_seq = MAX(seq, *max_seq);
706                 }
707         }
708
709         return LDB_SUCCESS;
710 }
711
712 static int entryuuid_sequence_number(struct ldb_module *module, struct ldb_request *req)
713 {
714         int i, ret;
715         struct map_private *map_private;
716         struct entryuuid_private *entryuuid_private;
717         unsigned long long max_seq = 0;
718         struct ldb_request *search_req;
719         map_private = talloc_get_type(module->private_data, struct map_private);
720
721         entryuuid_private = talloc_get_type(map_private->caller_private, struct entryuuid_private);
722
723         /* Search the baseDNs for a sequence number */
724         for (i=0; entryuuid_private && 
725                      entryuuid_private->base_dns && 
726                      entryuuid_private->base_dns[i];
727                 i++) {
728                 static const char *contextCSN_attr[] = {
729                         "contextCSN", NULL
730                 };
731                 search_req = talloc(req, struct ldb_request);
732                 if (search_req == NULL) {
733                         ldb_set_errstring(module->ldb, "Out of Memory");
734                         return LDB_ERR_OPERATIONS_ERROR;
735                 }
736                 
737                 search_req->operation = LDB_SEARCH;
738                 search_req->op.search.base = entryuuid_private->base_dns[i];
739                 search_req->op.search.scope = LDB_SCOPE_BASE;
740                 
741                 search_req->op.search.tree = ldb_parse_tree(search_req, "objectClass=*");
742                 if (search_req->op.search.tree == NULL) {
743                         ldb_set_errstring(module->ldb, "Unable to parse search expression");
744                         talloc_free(search_req);
745                         return LDB_ERR_OPERATIONS_ERROR;
746                 }
747                 
748                 search_req->op.search.attrs = contextCSN_attr;
749                 search_req->controls = NULL;
750                 search_req->context = &max_seq;
751                 search_req->callback = get_seq;
752                 ldb_set_timeout(module->ldb, search_req, 0); /* use default timeout */
753                 
754                 ret = ldb_next_request(module, search_req);
755                 
756                 if (ret == LDB_SUCCESS) {
757                         ret = ldb_wait(search_req->handle, LDB_WAIT_ALL);
758                 }
759                 
760                 talloc_free(search_req);
761                 if (ret != LDB_SUCCESS) {
762                         return ret;
763                 }
764         }
765
766         switch (req->op.seq_num.type) {
767         case LDB_SEQ_HIGHEST_SEQ:
768                 req->op.seq_num.seq_num = max_seq;
769                 break;
770         case LDB_SEQ_NEXT:
771                 req->op.seq_num.seq_num = max_seq;
772                 req->op.seq_num.seq_num++;
773                 break;
774         case LDB_SEQ_HIGHEST_TIMESTAMP:
775         {
776                 req->op.seq_num.seq_num = (max_seq >> 24);
777                 break;
778         }
779         }
780         req->op.seq_num.flags = 0;
781         req->op.seq_num.flags |= LDB_SEQ_TIMESTAMP_SEQUENCE;
782         req->op.seq_num.flags |= LDB_SEQ_GLOBAL_SEQUENCE;
783         return LDB_SUCCESS;
784 }
785
786 _PUBLIC_ const struct ldb_module_ops ldb_entryuuid_module_ops = {
787         .name              = "entryuuid",
788         .init_context      = entryuuid_init,
789         .sequence_number   = entryuuid_sequence_number,
790         LDB_MAP_OPS
791 };
792
793 _PUBLIC_ const struct ldb_module_ops ldb_nsuniqueid_module_ops = {
794         .name              = "nsuniqueid",
795         .init_context      = nsuniqueid_init,
796         .sequence_number   = entryuuid_sequence_number,
797         LDB_MAP_OPS
798 };