f3ec1ed606d47066eac74944648e82f47e754ea4
[samba.git] / source4 / lib / ldb / include / ldb.h
1 /* 
2    ldb database library
3
4    Copyright (C) Andrew Tridgell  2004
5    Copyright (C) Stefan Metzmacher  2004
6    Copyright (C) Simo Sorce  2005-2006
7
8      ** NOTE! The following LGPL license applies to the ldb
9      ** library. This does NOT imply that all of Samba is released
10      ** under the LGPL
11    
12    This library is free software; you can redistribute it and/or
13    modify it under the terms of the GNU Lesser General Public
14    License as published by the Free Software Foundation; either
15    version 3 of the License, or (at your option) any later version.
16
17    This library is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20    Lesser General Public License for more details.
21
22    You should have received a copy of the GNU Lesser General Public
23    License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 */
25
26 /*
27  *  Name: ldb
28  *
29  *  Component: ldb header
30  *
31  *  Description: defines for base ldb API
32  *
33  *  Author: Andrew Tridgell
34  *  Author: Stefan Metzmacher
35  */
36
37 /**
38    \file ldb.h Samba's ldb database
39
40    This header file provides the main API for ldb.
41 */
42
43 #ifndef _LDB_H_
44
45 /*! \cond DOXYGEN_IGNORE */
46 #define _LDB_H_ 1
47 /*! \endcond */
48
49 #include <stdbool.h>
50 #include <talloc.h>
51 #include <tevent.h>
52 #include "ldb_errors.h"
53
54 /*
55   major restrictions as compared to normal LDAP:
56
57      - each record must have a unique key field
58      - the key must be representable as a NULL terminated C string and may not 
59        contain a comma or braces
60
61   major restrictions as compared to tdb:
62
63      - no explicit locking calls, but we have transactions when using ldb_tdb
64
65 */
66
67 #ifndef ldb_val
68 /**
69    Result value
70
71    An individual lump of data in a result comes in this format. The
72    pointer will usually be to a UTF-8 string if the application is
73    sensible, but it can be to anything you like, including binary data
74    blobs of arbitrary size.
75
76    \note the data is null (0x00) terminated, but the length does not
77    include the terminator. 
78 */
79 struct ldb_val {
80         uint8_t *data; /*!< result data */
81         size_t length; /*!< length of data */
82 };
83 #endif
84
85 /*! \cond DOXYGEN_IGNORE */
86 #ifndef PRINTF_ATTRIBUTE
87 #define PRINTF_ATTRIBUTE(a,b)
88 #endif
89
90 #ifndef _DEPRECATED_
91 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
92 #define _DEPRECATED_ __attribute__ ((deprecated))
93 #else
94 #define _DEPRECATED_
95 #endif
96 #endif
97 /*! \endcond */
98
99 /* opaque ldb_dn structures, see ldb_dn.c for internals */
100 struct ldb_dn_component;
101 struct ldb_dn;
102
103 /**
104  There are a number of flags that are used with ldap_modify() in
105  ldb_message_element.flags fields. The LDB_FLAGS_MOD_ADD,
106  LDB_FLAGS_MOD_DELETE and LDB_FLAGS_MOD_REPLACE flags are used in
107  ldap_modify() calls to specify whether attributes are being added,
108  deleted or modified respectively.
109 */
110 #define LDB_FLAG_MOD_MASK  0x3
111
112 /**
113    Flag value used in ldap_modify() to indicate that attributes are
114    being added.
115
116    \sa LDB_FLAG_MOD_MASK
117 */
118 #define LDB_FLAG_MOD_ADD     1
119
120 /**
121    Flag value used in ldap_modify() to indicate that attributes are
122    being replaced.
123
124    \sa LDB_FLAG_MOD_MASK
125 */
126 #define LDB_FLAG_MOD_REPLACE 2
127
128 /**
129    Flag value used in ldap_modify() to indicate that attributes are
130    being deleted.
131
132    \sa LDB_FLAG_MOD_MASK
133 */
134 #define LDB_FLAG_MOD_DELETE  3
135
136 /**
137   OID for logic AND comaprison.
138
139   This is the well known object ID for a logical AND comparitor.
140 */
141 #define LDB_OID_COMPARATOR_AND  "1.2.840.113556.1.4.803"
142
143 /**
144   OID for logic OR comparison.
145
146   This is the well known object ID for a logical OR comparitor.
147 */
148 #define LDB_OID_COMPARATOR_OR   "1.2.840.113556.1.4.804"
149
150 /**
151   results are given back as arrays of ldb_message_element
152 */
153 struct ldb_message_element {
154         unsigned int flags;
155         const char *name;
156         unsigned int num_values;
157         struct ldb_val *values;
158 };
159
160
161 /**
162   a ldb_message represents all or part of a record. It can contain an arbitrary
163   number of elements. 
164 */
165 struct ldb_message {
166         struct ldb_dn *dn;
167         unsigned int num_elements;
168         struct ldb_message_element *elements;
169 };
170
171 enum ldb_changetype {
172         LDB_CHANGETYPE_NONE=0,
173         LDB_CHANGETYPE_ADD,
174         LDB_CHANGETYPE_DELETE,
175         LDB_CHANGETYPE_MODIFY
176 };
177
178 /**
179   LDIF record
180
181   This structure contains a LDIF record, as returned from ldif_read()
182   and equivalent functions.
183 */
184 struct ldb_ldif {
185         enum ldb_changetype changetype; /*!< The type of change */
186         struct ldb_message *msg;  /*!< The changes */
187 };
188
189 enum ldb_scope {LDB_SCOPE_DEFAULT=-1, 
190                 LDB_SCOPE_BASE=0, 
191                 LDB_SCOPE_ONELEVEL=1,
192                 LDB_SCOPE_SUBTREE=2};
193
194 struct ldb_context;
195 struct tevent_context;
196
197 /* debugging uses one of the following levels */
198 enum ldb_debug_level {LDB_DEBUG_FATAL, LDB_DEBUG_ERROR, 
199                       LDB_DEBUG_WARNING, LDB_DEBUG_TRACE};
200
201 /**
202   the user can optionally supply a debug function. The function
203   is based on the vfprintf() style of interface, but with the addition
204   of a severity level
205 */
206 struct ldb_debug_ops {
207         void (*debug)(void *context, enum ldb_debug_level level, 
208                       const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
209         void *context;
210 };
211
212 /**
213   The user can optionally supply a custom utf8 functions,
214   to handle comparisons and casefolding.
215 */
216 struct ldb_utf8_fns {
217         void *context;
218         char *(*casefold)(void *context, TALLOC_CTX *mem_ctx, const char *s, size_t n);
219 };
220
221 /**
222    Flag value for database connection mode.
223
224    If LDB_FLG_RDONLY is used in ldb_connect, then the database will be
225    opened read-only, if possible.
226 */
227 #define LDB_FLG_RDONLY 1
228
229 /**
230    Flag value for database connection mode.
231
232    If LDB_FLG_NOSYNC is used in ldb_connect, then the database will be
233    opened without synchronous operations, if possible.
234 */
235 #define LDB_FLG_NOSYNC 2
236
237 /**
238    Flag value to specify autoreconnect mode.
239
240    If LDB_FLG_RECONNECT is used in ldb_connect, then the backend will
241    be opened in a way that makes it try to auto reconnect if the
242    connection is dropped (actually make sense only with ldap).
243 */
244 #define LDB_FLG_RECONNECT 4
245
246 /**
247    Flag to tell backends not to use mmap
248 */
249 #define LDB_FLG_NOMMAP 8
250
251 /**
252    Flag to tell ldif handlers not to force encoding of binary
253    structures in base64   
254 */
255 #define LDB_FLG_SHOW_BINARY 16
256
257 /**
258    Flags to enable ldb tracing
259 */
260 #define LDB_FLG_ENABLE_TRACING 32
261
262 /*
263    structures for ldb_parse_tree handling code
264 */
265 enum ldb_parse_op { LDB_OP_AND=1, LDB_OP_OR=2, LDB_OP_NOT=3,
266                     LDB_OP_EQUALITY=4, LDB_OP_SUBSTRING=5,
267                     LDB_OP_GREATER=6, LDB_OP_LESS=7, LDB_OP_PRESENT=8,
268                     LDB_OP_APPROX=9, LDB_OP_EXTENDED=10 };
269
270 struct ldb_parse_tree {
271         enum ldb_parse_op operation;
272         union {
273                 struct {
274                         struct ldb_parse_tree *child;
275                 } isnot;
276                 struct {
277                         const char *attr;
278                         struct ldb_val value;
279                 } equality;
280                 struct {
281                         const char *attr;
282                         int start_with_wildcard;
283                         int end_with_wildcard;
284                         struct ldb_val **chunks;
285                 } substring;
286                 struct {
287                         const char *attr;
288                 } present;
289                 struct {
290                         const char *attr;
291                         struct ldb_val value;
292                 } comparison;
293                 struct {
294                         const char *attr;
295                         int dnAttributes;
296                         char *rule_id;
297                         struct ldb_val value;
298                 } extended;
299                 struct {
300                         unsigned int num_elements;
301                         struct ldb_parse_tree **elements;
302                 } list;
303         } u;
304 };
305
306 struct ldb_parse_tree *ldb_parse_tree(TALLOC_CTX *mem_ctx, const char *s);
307 char *ldb_filter_from_tree(TALLOC_CTX *mem_ctx, struct ldb_parse_tree *tree);
308
309 /**
310    Encode a binary blob
311
312    This function encodes a binary blob using the encoding rules in RFC
313    2254 (Section 4). This function also escapes any non-printable
314    characters.
315
316    \param mem_ctx the memory context to allocate the return string in.
317    \param val the (potentially) binary data to be encoded
318
319    \return the encoded data as a null terminated string
320
321    \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
322 */
323 char *ldb_binary_encode(TALLOC_CTX *mem_ctx, struct ldb_val val);
324
325 /**
326    Encode a string
327
328    This function encodes a string using the encoding rules in RFC 2254
329    (Section 4). This function also escapes any non-printable
330    characters.
331
332    \param mem_ctx the memory context to allocate the return string in.
333    \param string the string to be encoded
334
335    \return the encoded data as a null terminated string
336
337    \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
338 */
339 char *ldb_binary_encode_string(TALLOC_CTX *mem_ctx, const char *string);
340
341 /*
342   functions for controlling attribute handling
343 */
344 typedef int (*ldb_attr_handler_t)(struct ldb_context *, TALLOC_CTX *mem_ctx, const struct ldb_val *, struct ldb_val *);
345 typedef int (*ldb_attr_comparison_t)(struct ldb_context *, TALLOC_CTX *mem_ctx, const struct ldb_val *, const struct ldb_val *);
346
347 /*
348   attribute handler structure
349
350   attr                  -> The attribute name
351   ldif_read_fn          -> convert from ldif to binary format
352   ldif_write_fn         -> convert from binary to ldif format
353   canonicalise_fn       -> canonicalise a value, for use by indexing and dn construction
354   comparison_fn         -> compare two values
355 */
356
357 struct ldb_schema_syntax {
358         const char *name;
359         ldb_attr_handler_t ldif_read_fn;
360         ldb_attr_handler_t ldif_write_fn;
361         ldb_attr_handler_t canonicalise_fn;
362         ldb_attr_comparison_t comparison_fn;
363 };
364
365 struct ldb_schema_attribute {
366         const char *name;
367         unsigned flags;
368         const struct ldb_schema_syntax *syntax;
369 };
370
371 const struct ldb_schema_attribute *ldb_schema_attribute_by_name(struct ldb_context *ldb,
372                                                                 const char *name);
373
374 struct ldb_dn_extended_syntax {
375         const char *name;
376         ldb_attr_handler_t read_fn;
377         ldb_attr_handler_t write_clear_fn;
378         ldb_attr_handler_t write_hex_fn;
379 };
380
381 const struct ldb_dn_extended_syntax *ldb_dn_extended_syntax_by_name(struct ldb_context *ldb,
382                                                                     const char *name);
383
384 /**
385    The attribute is not returned by default
386 */
387 #define LDB_ATTR_FLAG_HIDDEN       (1<<0) 
388
389 /* the attribute handler name should be freed when released */
390 #define LDB_ATTR_FLAG_ALLOCATED    (1<<1) 
391
392 /**
393    The attribute is supplied by the application and should not be removed
394 */
395 #define LDB_ATTR_FLAG_FIXED        (1<<2) 
396
397 /*
398   when this is set, attempts to create two records which have the same
399   value for this attribute will return LDB_ERR_ENTRY_ALREADY_EXISTS
400  */
401 #define LDB_ATTR_FLAG_UNIQUE_INDEX (1<<3)
402
403 /*
404   when this is set, attempts to create two attribute values for this attribute on a single DN will return LDB_ERR_CONSTRAINT_VIOLATION
405  */
406 #define LDB_ATTR_FLAG_SINGLE_VALUE (1<<4)
407
408 /**
409   LDAP attribute syntax for a DN
410
411   This is the well-known LDAP attribute syntax for a DN.
412
413   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
414 */
415 #define LDB_SYNTAX_DN                   "1.3.6.1.4.1.1466.115.121.1.12"
416
417 /**
418   LDAP attribute syntax for a Directory String
419
420   This is the well-known LDAP attribute syntax for a Directory String.
421
422   \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
423 */
424 #define LDB_SYNTAX_DIRECTORY_STRING     "1.3.6.1.4.1.1466.115.121.1.15"
425
426 /**
427   LDAP attribute syntax for an integer
428
429   This is the well-known LDAP attribute syntax for an integer.
430
431   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
432 */
433 #define LDB_SYNTAX_INTEGER              "1.3.6.1.4.1.1466.115.121.1.27"
434
435 /**
436   LDAP attribute syntax for a boolean
437
438   This is the well-known LDAP attribute syntax for a boolean.
439
440   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
441 */
442 #define LDB_SYNTAX_BOOLEAN              "1.3.6.1.4.1.1466.115.121.1.7"
443
444 /**
445   LDAP attribute syntax for an octet string
446
447   This is the well-known LDAP attribute syntax for an octet string.
448
449   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
450 */
451 #define LDB_SYNTAX_OCTET_STRING         "1.3.6.1.4.1.1466.115.121.1.40"
452
453 /**
454   LDAP attribute syntax for UTC time.
455
456   This is the well-known LDAP attribute syntax for a UTC time.
457
458   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
459 */
460 #define LDB_SYNTAX_UTC_TIME             "1.3.6.1.4.1.1466.115.121.1.53"
461
462 #define LDB_SYNTAX_OBJECTCLASS          "LDB_SYNTAX_OBJECTCLASS"
463
464 /* sorting helpers */
465 typedef int (*ldb_qsort_cmp_fn_t) (void *v1, void *v2, void *opaque);
466
467 /* Individual controls */
468
469 /**
470   OID for getting and manipulating attributes from the ldb
471   without interception in the operational module.
472   It can be used to access attribute that used to be stored in the sam 
473   and that are now calculated.
474 */
475 #define LDB_CONTROL_BYPASSOPERATIONAL_OID "1.3.6.1.4.1.7165.4.3.13"
476
477 /**
478   OID for recalculate SD control. This control force the
479   dsdb code to recalculate the SD of the object as if the
480   object was just created.
481
482 */
483 #define LDB_CONTROL_RECALCULATE_SD_OID "1.3.6.1.4.1.7165.4.3.5"
484
485 /**
486    REVEAL_INTERNALS is used to reveal internal attributes and DN
487    components which are not normally shown to the user
488 */
489 #define LDB_CONTROL_REVEAL_INTERNALS "1.3.6.1.4.1.7165.4.3.6"
490
491 /**
492    LDB_CONTROL_AS_SYSTEM is used to skip access checks on operations
493    that are performed by the system, but with a user's credentials, e.g.
494    updating prefix map
495 */
496 #define LDB_CONTROL_AS_SYSTEM_OID "1.3.6.1.4.1.7165.4.3.7"
497
498 /* AD controls */
499
500 /**
501    OID for the paged results control. This control is included in the
502    searchRequest and searchResultDone messages as part of the controls
503    field of the LDAPMessage, as defined in Section 4.1.12 of
504    LDAP v3. 
505
506    \sa <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
507 */
508 #define LDB_CONTROL_PAGED_RESULTS_OID   "1.2.840.113556.1.4.319"
509
510 /**
511    OID for specifying the returned elements of the ntSecurityDescriptor
512
513    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_sd_flags_oid.asp">Microsoft documentation of this OID</a>
514 */
515 #define LDB_CONTROL_SD_FLAGS_OID        "1.2.840.113556.1.4.801"
516
517 /**
518    OID for specifying an advanced scope for the search (one partition)
519
520    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_domain_scope_oid.asp">Microsoft documentation of this OID</a>
521 */
522 #define LDB_CONTROL_DOMAIN_SCOPE_OID    "1.2.840.113556.1.4.1339"
523
524 /**
525    OID for specifying an advanced scope for a search
526
527    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_search_options_oid.asp">Microsoft documentation of this OID</a>
528 */
529 #define LDB_CONTROL_SEARCH_OPTIONS_OID  "1.2.840.113556.1.4.1340"
530
531 /**
532    OID for notification
533
534    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_notification_oid.asp">Microsoft documentation of this OID</a>
535 */
536 #define LDB_CONTROL_NOTIFICATION_OID    "1.2.840.113556.1.4.528"
537
538 /**
539    OID for performing subtree deletes
540
541    \sa <a href="http://msdn.microsoft.com/en-us/library/aa366991(v=VS.85).aspx">Microsoft documentation of this OID</a>
542 */
543 #define LDB_CONTROL_TREE_DELETE_OID     "1.2.840.113556.1.4.805"
544
545 /**
546    OID for getting deleted objects
547
548    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_show_deleted_oid.asp">Microsoft documentation of this OID</a>
549 */
550 #define LDB_CONTROL_SHOW_DELETED_OID    "1.2.840.113556.1.4.417"
551
552 /**
553    OID for getting recycled objects
554
555    \sa <a href="http://msdn.microsoft.com/en-us/library/dd304621(PROT.13).aspx">Microsoft documentation of this OID</a>
556 */
557 #define LDB_CONTROL_SHOW_RECYCLED_OID         "1.2.840.113556.1.4.2064"
558
559 /**
560    OID for getting deactivated linked attributes
561
562    \sa <a href="http://msdn.microsoft.com/en-us/library/dd302781(PROT.13).aspx">Microsoft documentation of this OID</a>
563 */
564 #define LDB_CONTROL_SHOW_DEACTIVATED_LINK_OID "1.2.840.113556.1.4.2065"
565
566 /**
567    OID for extended DN
568
569    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_extended_dn_oid.asp">Microsoft documentation of this OID</a>
570 */
571 #define LDB_CONTROL_EXTENDED_DN_OID     "1.2.840.113556.1.4.529"
572
573 /**
574    OID for LDAP server sort result extension.
575
576    This control is included in the searchRequest message as part of
577    the controls field of the LDAPMessage, as defined in Section 4.1.12
578    of LDAP v3. The controlType is set to
579    "1.2.840.113556.1.4.473". The criticality MAY be either TRUE or
580    FALSE (where absent is also equivalent to FALSE) at the client's
581    option.
582
583    \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
584 */
585 #define LDB_CONTROL_SERVER_SORT_OID     "1.2.840.113556.1.4.473"
586
587 /**
588    OID for LDAP server sort result response extension.
589
590    This control is included in the searchResultDone message as part of
591    the controls field of the LDAPMessage, as defined in Section 4.1.12 of
592    LDAP v3.
593
594    \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
595 */
596 #define LDB_CONTROL_SORT_RESP_OID       "1.2.840.113556.1.4.474"
597
598 /**
599    OID for LDAP Attribute Scoped Query extension.
600
601    This control is included in SearchRequest or SearchResponse
602    messages as part of the controls field of the LDAPMessage.
603 */
604 #define LDB_CONTROL_ASQ_OID             "1.2.840.113556.1.4.1504"
605
606 /**
607    OID for LDAP Directory Sync extension. 
608
609    This control is included in SearchRequest or SearchResponse
610    messages as part of the controls field of the LDAPMessage.
611 */
612 #define LDB_CONTROL_DIRSYNC_OID         "1.2.840.113556.1.4.841"
613
614
615 /**
616    OID for LDAP Virtual List View Request extension.
617
618    This control is included in SearchRequest messages
619    as part of the controls field of the LDAPMessage.
620 */
621 #define LDB_CONTROL_VLV_REQ_OID         "2.16.840.1.113730.3.4.9"
622
623 /**
624    OID for LDAP Virtual List View Response extension.
625
626    This control is included in SearchResponse messages
627    as part of the controls field of the LDAPMessage.
628 */
629 #define LDB_CONTROL_VLV_RESP_OID        "2.16.840.1.113730.3.4.10"
630
631 /**
632    OID to let modifies don't give an error when adding an existing
633    attribute with the same value or deleting an nonexisting one attribute
634
635    \sa <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ldap/ldap/ldap_server_permissive_modify_oid.asp">Microsoft documentation of this OID</a>
636 */
637 #define LDB_CONTROL_PERMISSIVE_MODIFY_OID       "1.2.840.113556.1.4.1413"
638
639 /** 
640     OID to allow the server to be more 'fast and loose' with the data being added.  
641
642     \sa 
643
644 */
645 #define LDB_CONTROL_SERVER_LAZY_COMMIT   "1.2.840.113556.1.4.619"
646
647 /**
648    OID for LDAP Extended Operation FAST_BIND
649
650    This Extended operations is used to perform a fast bind.
651 */
652 #define LDB_EXTENDED_FAST_BIND_OID      "1.2.840.113556.1.4.1781"
653
654 /**
655    OID for LDAP Extended Operation START_TLS.
656
657    This Extended operation is used to start a new TLS channel on top of a clear
658    text channel.
659 */
660 #define LDB_EXTENDED_START_TLS_OID      "1.3.6.1.4.1.1466.20037"
661
662 /**
663    OID for LDAP Extended Operation DYNAMIC_REFRESH.
664
665    This Extended operation is used to create and maintain objects which exist
666    only a specific time, e.g. when a certain client or a certain person is
667    logged in. Data refreshes have to be periodically sent in a specific
668    interval. Otherwise the entry is going to be removed.
669 */
670 #define LDB_EXTENDED_DYNAMIC_OID        "1.3.6.1.4.1.1466.101.119.1"
671
672 /* Other standardised controls */
673
674 /**
675    OID for the allowing client to request temporary relaxed
676    enforcement of constraints of the x.500 model.
677
678    \sa <a href="http://opends.dev.java.net/public/standards/draft-zeilenga-ldap-managedit.txt">draft managedit</a>.
679 */
680 #define LDB_CONTROL_RELAX_OID "1.3.6.1.4.1.4203.666.5.12"
681
682 /**
683    control for RODC join
684    See [MS-ADTS] section 3.1.1.3.4.1.23
685 */
686 #define LDB_CONTROL_RODC_DCPROMO_OID "1.2.840.113556.1.4.1341"
687
688 /*
689    OID for LDAP Extended Operation PASSWORD_CHANGE.
690
691    This Extended operation is used to allow user password changes by the user
692    itself.
693 */
694 #define LDB_EXTENDED_PASSWORD_CHANGE_OID        "1.3.6.1.4.1.4203.1.11.1"
695
696
697 struct ldb_sd_flags_control {
698         /*
699          * request the owner    0x00000001
700          * request the group    0x00000002
701          * request the DACL     0x00000004
702          * request the SACL     0x00000008
703          */
704         unsigned secinfo_flags;
705 };
706
707 /*
708  * DOMAIN_SCOPE         0x00000001
709  * this limits the search to one partition,
710  * and no referrals will be returned.
711  * (Note this doesn't limit the entries by there
712  *  objectSid belonging to a domain! Builtin and Foreign Sids
713  *  are still returned)
714  *
715  * PHANTOM_ROOT         0x00000002
716  * this search on the whole tree on a domain controller
717  * over multiple partitions without referrals.
718  * (This is the default behavior on the Global Catalog Port)
719  */
720
721 #define LDB_SEARCH_OPTION_DOMAIN_SCOPE 0x00000001
722 #define LDB_SEARCH_OPTION_PHANTOM_ROOT 0x00000002
723
724 struct ldb_search_options_control {
725         unsigned search_options;
726 };
727
728 struct ldb_paged_control {
729         int size;
730         int cookie_len;
731         char *cookie;
732 };
733
734 struct ldb_extended_dn_control {
735         int type;
736 };
737
738 struct ldb_server_sort_control {
739         const char *attributeName;
740         const char *orderingRule;
741         int reverse;
742 };
743
744 struct ldb_sort_resp_control {
745         int result;
746         char *attr_desc;
747 };
748
749 struct ldb_asq_control {
750         int request;
751         char *source_attribute;
752         int src_attr_len;
753         int result;
754 };
755
756 struct ldb_dirsync_control {
757         int flags;
758         int max_attributes;
759         int cookie_len;
760         char *cookie;
761 };
762
763 struct ldb_vlv_req_control {
764         int beforeCount;
765         int afterCount;
766         int type;
767         union {
768                 struct {
769                         int offset;
770                         int contentCount;
771                 } byOffset;
772                 struct {
773                         int value_len;
774                         char *value;
775                 } gtOrEq;
776         } match;
777         int ctxid_len;
778         char *contextId;
779 };
780
781 struct ldb_vlv_resp_control {
782         int targetPosition;
783         int contentCount;
784         int vlv_result;
785         int ctxid_len;
786         char *contextId;
787 };
788
789 struct ldb_control {
790         const char *oid;
791         int critical;
792         void *data;
793 };
794
795 enum ldb_request_type {
796         LDB_SEARCH,
797         LDB_ADD,
798         LDB_MODIFY,
799         LDB_DELETE,
800         LDB_RENAME,
801         LDB_EXTENDED,
802         LDB_REQ_REGISTER_CONTROL,
803         LDB_REQ_REGISTER_PARTITION
804 };
805
806 enum ldb_reply_type {
807         LDB_REPLY_ENTRY,
808         LDB_REPLY_REFERRAL,
809         LDB_REPLY_DONE
810 };
811
812 enum ldb_wait_type {
813         LDB_WAIT_ALL,
814         LDB_WAIT_NONE
815 };
816
817 enum ldb_state {
818         LDB_ASYNC_INIT,
819         LDB_ASYNC_PENDING,
820         LDB_ASYNC_DONE
821 };
822
823 struct ldb_extended {
824         const char *oid;
825         void *data; /* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
826 };
827
828 #define LDB_EXTENDED_SEQUENCE_NUMBER    "1.3.6.1.4.1.7165.4.4.3"
829
830 enum ldb_sequence_type {
831         LDB_SEQ_HIGHEST_SEQ,
832         LDB_SEQ_HIGHEST_TIMESTAMP,
833         LDB_SEQ_NEXT
834 };
835
836 #define LDB_SEQ_GLOBAL_SEQUENCE    0x01
837 #define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02
838
839 struct ldb_seqnum_request {
840         enum ldb_sequence_type type;
841 };
842
843 struct ldb_seqnum_result {
844         uint64_t seq_num;
845         uint32_t flags;
846 };
847
848 struct ldb_result {
849         unsigned int count;
850         struct ldb_message **msgs;
851         struct ldb_extended *extended;
852         struct ldb_control **controls;
853         char **refs;
854 };
855
856 struct ldb_reply {
857         int error;
858         enum ldb_reply_type type;
859         struct ldb_message *message;
860         struct ldb_extended *response;
861         struct ldb_control **controls;
862         char *referral;
863 };
864
865 struct ldb_request;
866 struct ldb_handle;
867
868 struct ldb_search {
869         struct ldb_dn *base;
870         enum ldb_scope scope;
871         struct ldb_parse_tree *tree;
872         const char * const *attrs;
873         struct ldb_result *res;
874 };
875
876 struct ldb_add {
877         const struct ldb_message *message;
878 };
879
880 struct ldb_modify {
881         const struct ldb_message *message;
882 };
883
884 struct ldb_delete {
885         struct ldb_dn *dn;
886 };
887
888 struct ldb_rename {
889         struct ldb_dn *olddn;
890         struct ldb_dn *newdn;
891 };
892
893 struct ldb_register_control {
894         const char *oid;
895 };
896
897 struct ldb_register_partition {
898         struct ldb_dn *dn;
899 };
900
901 typedef int (*ldb_request_callback_t)(struct ldb_request *, struct ldb_reply *);
902
903 struct ldb_request {
904
905         enum ldb_request_type operation;
906
907         union {
908                 struct ldb_search search;
909                 struct ldb_add    add;
910                 struct ldb_modify mod;
911                 struct ldb_delete del;
912                 struct ldb_rename rename;
913                 struct ldb_extended extended;
914                 struct ldb_register_control reg_control;
915                 struct ldb_register_partition reg_partition;
916         } op;
917
918         struct ldb_control **controls;
919
920         void *context;
921         ldb_request_callback_t callback;
922
923         int timeout;
924         time_t starttime;
925         struct ldb_handle *handle;
926 };
927
928 int ldb_request(struct ldb_context *ldb, struct ldb_request *request);
929 int ldb_request_done(struct ldb_request *req, int status);
930 bool ldb_request_is_done(struct ldb_request *req);
931
932 int ldb_modules_wait(struct ldb_handle *handle);
933 int ldb_wait(struct ldb_handle *handle, enum ldb_wait_type type);
934
935 int ldb_set_timeout(struct ldb_context *ldb, struct ldb_request *req, int timeout);
936 int ldb_set_timeout_from_prev_req(struct ldb_context *ldb, struct ldb_request *oldreq, struct ldb_request *newreq);
937 void ldb_set_create_perms(struct ldb_context *ldb, unsigned int perms);
938 void ldb_set_modules_dir(struct ldb_context *ldb, const char *path);
939 struct tevent_context;
940 void ldb_set_event_context(struct ldb_context *ldb, struct tevent_context *ev);
941 struct tevent_context * ldb_get_event_context(struct ldb_context *ldb);
942
943 /**
944   Initialise ldbs' global information
945
946   This is required before any other LDB call
947
948   \return 0 if initialisation succeeded, -1 otherwise
949 */
950 int ldb_global_init(void);
951
952 /**
953   Initialise an ldb context
954
955   This is required before any other LDB call.
956
957   \param mem_ctx pointer to a talloc memory context. Pass NULL if there is
958   no suitable context available.
959
960   \return pointer to ldb_context that should be free'd (using talloc_free())
961   at the end of the program.
962 */
963 struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx);
964
965 /**
966    Connect to a database.
967
968    This is typically called soon after ldb_init(), and is required prior to
969    any search or database modification operations.
970
971    The URL can be one of the following forms:
972     - tdb://path
973     - ldapi://path
974     - ldap://host
975     - sqlite://path
976
977    \param ldb the context associated with the database (from ldb_init())
978    \param url the URL of the database to connect to, as noted above
979    \param flags a combination of LDB_FLG_* to modify the connection behaviour
980    \param options backend specific options - passed uninterpreted to the backend
981
982    \return result code (LDB_SUCCESS on success, or a failure code)
983
984    \note It is an error to connect to a database that does not exist in readonly mode
985    (that is, with LDB_FLG_RDONLY). However in read-write mode, the database will be
986    created if it does not exist.
987 */
988
989 typedef void (*ldb_async_timeout_fn) (void *);
990 typedef bool (*ldb_async_callback_fn) (void *);
991 typedef int (*ldb_async_ctx_add_op_fn)(void *, time_t, void *, ldb_async_timeout_fn, ldb_async_callback_fn);
992 typedef int (*ldb_async_ctx_wait_op_fn)(void *);
993
994 void ldb_async_ctx_set_private_data(struct ldb_context *ldb,
995                                         void *private_data);
996 void ldb_async_ctx_set_add_op(struct ldb_context *ldb,
997                                 ldb_async_ctx_add_op_fn add_op);
998 void ldb_async_ctx_set_wait_op(struct ldb_context *ldb,
999                                 ldb_async_ctx_wait_op_fn wait_op);
1000
1001 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
1002
1003 /*
1004   return an automatic basedn from the rootDomainNamingContext of the rootDSE
1005   This value have been set in an opaque pointer at connection time
1006 */
1007 struct ldb_dn *ldb_get_root_basedn(struct ldb_context *ldb);
1008
1009 /*
1010   return an automatic basedn from the configurationNamingContext of the rootDSE
1011   This value have been set in an opaque pointer at connection time
1012 */
1013 struct ldb_dn *ldb_get_config_basedn(struct ldb_context *ldb);
1014
1015 /*
1016   return an automatic basedn from the schemaNamingContext of the rootDSE
1017   This value have been set in an opaque pointer at connection time
1018 */
1019 struct ldb_dn *ldb_get_schema_basedn(struct ldb_context *ldb);
1020
1021 /*
1022   return an automatic baseDN from the defaultNamingContext of the rootDSE
1023   This value have been set in an opaque pointer at connection time
1024 */
1025 struct ldb_dn *ldb_get_default_basedn(struct ldb_context *ldb);
1026
1027 /**
1028   The default async search callback function 
1029
1030   \param req the request we are callback of
1031   \param ares a single reply from the async core
1032
1033   \return result code (LDB_SUCCESS on success, or a failure code)
1034
1035   \note this function expects req->context to always be an struct ldb_result pointer
1036   AND a talloc context, this function will steal on the context each message
1037   from the ares reply passed on by the async core so that in the end all the
1038   messages will be in the context (ldb_result)  memory tree.
1039   Freeing the passed context (ldb_result tree) will free all the resources
1040   (the request need to be freed separately and the result doe not depend on the
1041   request that can be freed as sson as the search request is finished)
1042 */
1043
1044 int ldb_search_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1045
1046 /**
1047   The default async extended operation callback function
1048
1049   \param req the request we are callback of
1050   \param ares a single reply from the async core
1051
1052   \return result code (LDB_SUCCESS on success, or a failure code)
1053 */
1054 int ldb_op_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1055
1056 int ldb_modify_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1057
1058 /**
1059   Helper function to build a search request
1060
1061   \param ret_req the request structure is returned here (talloced on mem_ctx)
1062   \param ldb the context associated with the database (from ldb_init())
1063   \param mem_ctx a talloc memory context (used as parent of ret_req)
1064   \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1065   \param scope the search scope for the query
1066   \param expression the search expression to use for this query
1067   \param attrs the search attributes for the query (pass NULL if none required)
1068   \param controls an array of controls
1069   \param context the callback function context
1070   \param the callback function to handle the async replies
1071   \param the parent request if any
1072
1073   \return result code (LDB_SUCCESS on success, or a failure code)
1074 */
1075
1076 int ldb_build_search_req(struct ldb_request **ret_req,
1077                         struct ldb_context *ldb,
1078                         TALLOC_CTX *mem_ctx,
1079                         struct ldb_dn *base,
1080                         enum ldb_scope scope,
1081                         const char *expression,
1082                         const char * const *attrs,
1083                         struct ldb_control **controls,
1084                         void *context,
1085                         ldb_request_callback_t callback,
1086                         struct ldb_request *parent);
1087
1088 int ldb_build_search_req_ex(struct ldb_request **ret_req,
1089                         struct ldb_context *ldb,
1090                         TALLOC_CTX *mem_ctx,
1091                         struct ldb_dn *base,
1092                         enum ldb_scope scope,
1093                         struct ldb_parse_tree *tree,
1094                         const char * const *attrs,
1095                         struct ldb_control **controls,
1096                         void *context,
1097                         ldb_request_callback_t callback,
1098                         struct ldb_request *parent);
1099
1100 /**
1101   Helper function to build an add request
1102
1103   \param ret_req the request structure is returned here (talloced on mem_ctx)
1104   \param ldb the context associated with the database (from ldb_init())
1105   \param mem_ctx a talloc memory context (used as parent of ret_req)
1106   \param message contains the entry to be added 
1107   \param controls an array of controls
1108   \param context the callback function context
1109   \param the callback function to handle the async replies
1110   \param the parent request if any
1111
1112   \return result code (LDB_SUCCESS on success, or a failure code)
1113 */
1114
1115 int ldb_build_add_req(struct ldb_request **ret_req,
1116                         struct ldb_context *ldb,
1117                         TALLOC_CTX *mem_ctx,
1118                         const struct ldb_message *message,
1119                         struct ldb_control **controls,
1120                         void *context,
1121                         ldb_request_callback_t callback,
1122                         struct ldb_request *parent);
1123
1124 /**
1125   Helper function to build a modify request
1126
1127   \param ret_req the request structure is returned here (talloced on mem_ctx)
1128   \param ldb the context associated with the database (from ldb_init())
1129   \param mem_ctx a talloc memory context (used as parent of ret_req)
1130   \param message contains the entry to be modified
1131   \param controls an array of controls
1132   \param context the callback function context
1133   \param the callback function to handle the async replies
1134   \param the parent request if any
1135
1136   \return result code (LDB_SUCCESS on success, or a failure code)
1137 */
1138
1139 int ldb_build_mod_req(struct ldb_request **ret_req,
1140                         struct ldb_context *ldb,
1141                         TALLOC_CTX *mem_ctx,
1142                         const struct ldb_message *message,
1143                         struct ldb_control **controls,
1144                         void *context,
1145                         ldb_request_callback_t callback,
1146                         struct ldb_request *parent);
1147
1148 /**
1149   Helper function to build a delete request
1150
1151   \param ret_req the request structure is returned here (talloced on mem_ctx)
1152   \param ldb the context associated with the database (from ldb_init())
1153   \param mem_ctx a talloc memory context (used as parent of ret_req)
1154   \param dn the DN to be deleted
1155   \param controls an array of controls
1156   \param context the callback function context
1157   \param the callback function to handle the async replies
1158   \param the parent request if any
1159
1160   \return result code (LDB_SUCCESS on success, or a failure code)
1161 */
1162
1163 int ldb_build_del_req(struct ldb_request **ret_req,
1164                         struct ldb_context *ldb,
1165                         TALLOC_CTX *mem_ctx,
1166                         struct ldb_dn *dn,
1167                         struct ldb_control **controls,
1168                         void *context,
1169                         ldb_request_callback_t callback,
1170                         struct ldb_request *parent);
1171
1172 /**
1173   Helper function to build a rename request
1174
1175   \param ret_req the request structure is returned here (talloced on mem_ctx)
1176   \param ldb the context associated with the database (from ldb_init())
1177   \param mem_ctx a talloc memory context (used as parent of ret_req)
1178   \param olddn the old DN
1179   \param newdn the new DN
1180   \param controls an array of controls
1181   \param context the callback function context
1182   \param the callback function to handle the async replies
1183   \param the parent request if any
1184
1185   \return result code (LDB_SUCCESS on success, or a failure code)
1186 */
1187
1188 int ldb_build_rename_req(struct ldb_request **ret_req,
1189                         struct ldb_context *ldb,
1190                         TALLOC_CTX *mem_ctx,
1191                         struct ldb_dn *olddn,
1192                         struct ldb_dn *newdn,
1193                         struct ldb_control **controls,
1194                         void *context,
1195                         ldb_request_callback_t callback,
1196                         struct ldb_request *parent);
1197
1198 /**
1199   Add a ldb_control to a ldb_request
1200
1201   \param req the request struct where to add the control
1202   \param oid the object identifier of the control as string
1203   \param critical whether the control should be critical or not
1204   \param data a talloc pointer to the control specific data
1205
1206   \return result code (LDB_SUCCESS on success, or a failure code)
1207 */
1208 int ldb_request_add_control(struct ldb_request *req, const char *oid, bool critical, void *data);
1209
1210 /**
1211    check if a control with the specified "oid" exist and return it 
1212   \param req the request struct where to add the control
1213   \param oid the object identifier of the control as string
1214
1215   \return the control, NULL if not found 
1216 */
1217 struct ldb_control *ldb_request_get_control(struct ldb_request *req, const char *oid);
1218
1219 /**
1220    check if a control with the specified "oid" exist and return it 
1221   \param rep the reply struct where to add the control
1222   \param oid the object identifier of the control as string
1223
1224   \return the control, NULL if not found 
1225 */
1226 struct ldb_control *ldb_reply_get_control(struct ldb_reply *rep, const char *oid);
1227
1228 /**
1229   Search the database
1230
1231   This function searches the database, and returns 
1232   records that match an LDAP-like search expression
1233
1234   \param ldb the context associated with the database (from ldb_init())
1235   \param mem_ctx the memory context to use for the request and the results
1236   \param result the return result
1237   \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1238   \param scope the search scope for the query
1239   \param attrs the search attributes for the query (pass NULL if none required)
1240   \param exp_fmt the search expression to use for this query (printf like)
1241
1242   \return result code (LDB_SUCCESS on success, or a failure code)
1243
1244   \note use talloc_free() to free the ldb_result returned
1245 */
1246 int ldb_search(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1247                struct ldb_result **result, struct ldb_dn *base,
1248                enum ldb_scope scope, const char * const *attrs,
1249                const char *exp_fmt, ...) PRINTF_ATTRIBUTE(7,8);
1250
1251 /**
1252   Add a record to the database.
1253
1254   This function adds a record to the database. This function will fail
1255   if a record with the specified class and key already exists in the
1256   database. 
1257
1258   \param ldb the context associated with the database (from
1259   ldb_init())
1260   \param message the message containing the record to add.
1261
1262   \return result code (LDB_SUCCESS if the record was added, otherwise
1263   a failure code)
1264 */
1265 int ldb_add(struct ldb_context *ldb, 
1266             const struct ldb_message *message);
1267
1268 /**
1269   Modify the specified attributes of a record
1270
1271   This function modifies a record that is in the database.
1272
1273   \param ldb the context associated with the database (from
1274   ldb_init())
1275   \param message the message containing the changes required.
1276
1277   \return result code (LDB_SUCCESS if the record was modified as
1278   requested, otherwise a failure code)
1279 */
1280 int ldb_modify(struct ldb_context *ldb, 
1281                const struct ldb_message *message);
1282
1283 /**
1284   Rename a record in the database
1285
1286   This function renames a record in the database.
1287
1288   \param ldb the context associated with the database (from
1289   ldb_init())
1290   \param olddn the DN for the record to be renamed.
1291   \param newdn the new DN 
1292
1293   \return result code (LDB_SUCCESS if the record was renamed as
1294   requested, otherwise a failure code)
1295 */
1296 int ldb_rename(struct ldb_context *ldb, struct ldb_dn *olddn, struct ldb_dn *newdn);
1297
1298 /**
1299   Delete a record from the database
1300
1301   This function deletes a record from the database.
1302
1303   \param ldb the context associated with the database (from
1304   ldb_init())
1305   \param dn the DN for the record to be deleted.
1306
1307   \return result code (LDB_SUCCESS if the record was deleted,
1308   otherwise a failure code)
1309 */
1310 int ldb_delete(struct ldb_context *ldb, struct ldb_dn *dn);
1311
1312 /**
1313   The default async extended operation callback function 
1314
1315   \param req the request we are callback of
1316   \param ares a single reply from the async core
1317
1318   \return result code (LDB_SUCCESS on success, or a failure code)
1319
1320   \note this function expects req->context to always be an struct ldb_result pointer
1321   AND a talloc context, this function will steal on the context each message
1322   from the ares reply passed on by the async core so that in the end all the
1323   messages will be in the context (ldb_result)  memory tree.
1324   Freeing the passed context (ldb_result tree) will free all the resources
1325   (the request need to be freed separately and the result doe not depend on the
1326   request that can be freed as sson as the search request is finished)
1327 */
1328
1329 int ldb_extended_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1330
1331
1332 /**
1333   Helper function to build a extended request
1334
1335   \param ret_req the request structure is returned here (talloced on mem_ctx)
1336   \param ldb the context associated with the database (from ldb_init())
1337   \param mem_ctx a talloc memory context (used as parent of ret_req)
1338   \param oid the OID of the extended operation.
1339   \param data a void pointer a the extended operation specific parameters,
1340   it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it  
1341   \param controls an array of controls
1342   \param context the callback function context
1343   \param the callback function to handle the async replies
1344   \param the parent request if any
1345
1346   \return result code (LDB_SUCCESS on success, or a failure code)
1347 */
1348 int ldb_build_extended_req(struct ldb_request **ret_req,
1349                            struct ldb_context *ldb,
1350                            TALLOC_CTX *mem_ctx,
1351                            const char *oid,
1352                            void *data,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1353                            struct ldb_control **controls,
1354                            void *context,
1355                            ldb_request_callback_t callback,
1356                            struct ldb_request *parent);
1357
1358 /**
1359   call an extended operation
1360
1361   This function deletes a record from the database.
1362
1363   \param ldb the context associated with the database (from ldb_init())
1364   \param oid the OID of the extended operation.
1365   \param data a void pointer a the extended operation specific parameters,
1366   it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it  
1367   \param res the result of the extended operation
1368
1369   \return result code (LDB_SUCCESS if the extended operation returned fine,
1370   otherwise a failure code)
1371 */
1372 int ldb_extended(struct ldb_context *ldb, 
1373                  const char *oid,
1374                  void *data,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1375                  struct ldb_result **res);
1376
1377 /**
1378   Obtain current/next database sequence number
1379 */
1380 int ldb_sequence_number(struct ldb_context *ldb, enum ldb_sequence_type type, uint64_t *seq_num);
1381
1382 /**
1383   start a transaction
1384 */
1385 int ldb_transaction_start(struct ldb_context *ldb);
1386
1387 /**
1388    first phase of two phase commit
1389  */
1390 int ldb_transaction_prepare_commit(struct ldb_context *ldb);
1391
1392 /**
1393   commit a transaction
1394 */
1395 int ldb_transaction_commit(struct ldb_context *ldb);
1396
1397 /**
1398   cancel a transaction
1399 */
1400 int ldb_transaction_cancel(struct ldb_context *ldb);
1401
1402 /*
1403   cancel a transaction with no error if no transaction is pending
1404   used when we fork() to clear any parent transactions
1405 */
1406 int ldb_transaction_cancel_noerr(struct ldb_context *ldb);
1407
1408
1409 /**
1410   return extended error information from the last call
1411 */
1412 const char *ldb_errstring(struct ldb_context *ldb);
1413
1414 /**
1415   return a string explaining what a ldb error constant meancs
1416 */
1417 const char *ldb_strerror(int ldb_err);
1418
1419 /**
1420   setup the default utf8 functions
1421   FIXME: these functions do not yet handle utf8
1422 */
1423 void ldb_set_utf8_default(struct ldb_context *ldb);
1424
1425 /**
1426    Casefold a string
1427
1428    \param ldb the ldb context
1429    \param mem_ctx the memory context to allocate the result string
1430    memory from. 
1431    \param s the string that is to be folded
1432    \return a copy of the string, converted to upper case
1433
1434    \note The default function is not yet UTF8 aware. Provide your own
1435          set of functions through ldb_set_utf8_fns()
1436 */
1437 char *ldb_casefold(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *s, size_t n);
1438
1439 /**
1440    Check the attribute name is valid according to rfc2251
1441    \param s the string to check
1442
1443    \return 1 if the name is ok
1444 */
1445 int ldb_valid_attr_name(const char *s);
1446
1447 /*
1448   ldif manipulation functions
1449 */
1450
1451 /**
1452    Write an LDIF message
1453
1454    This function writes an LDIF message using a caller supplied  write
1455    function.
1456
1457    \param ldb the ldb context (from ldb_init())
1458    \param fprintf_fn a function pointer for the write function. This must take
1459    a private data pointer, followed by a format string, and then a variable argument
1460    list. 
1461    \param private_data pointer that will be provided back to the write
1462    function. This is useful for maintaining state or context.
1463    \param ldif the message to write out
1464
1465    \return the total number of bytes written, or an error code as returned
1466    from the write function.
1467
1468    \sa ldb_ldif_write_file for a more convenient way to write to a
1469    file stream.
1470
1471    \sa ldb_ldif_read for the reader equivalent to this function.
1472 */
1473 int ldb_ldif_write(struct ldb_context *ldb,
1474                    int (*fprintf_fn)(void *, const char *, ...) PRINTF_ATTRIBUTE(2,3), 
1475                    void *private_data,
1476                    const struct ldb_ldif *ldif);
1477
1478 /**
1479    Clean up an LDIF message
1480
1481    This function cleans up a LDIF message read using ldb_ldif_read()
1482    or related functions (such as ldb_ldif_read_string() and
1483    ldb_ldif_read_file().
1484
1485    \param ldb the ldb context (from ldb_init())
1486    \param msg the message to clean up and free
1487
1488 */
1489 void ldb_ldif_read_free(struct ldb_context *ldb, struct ldb_ldif *msg);
1490
1491 /**
1492    Read an LDIF message
1493
1494    This function creates an LDIF message using a caller supplied read
1495    function. 
1496
1497    \param ldb the ldb context (from ldb_init())
1498    \param fgetc_fn a function pointer for the read function. This must
1499    take a private data pointer, and must return a pointer to an
1500    integer corresponding to the next byte read (or EOF if there is no
1501    more data to be read).
1502    \param private_data pointer that will be provided back to the read
1503    function. This is udeful for maintaining state or context.
1504
1505    \return the LDIF message that has been read in
1506
1507    \note You must free the LDIF message when no longer required, using
1508    ldb_ldif_read_free().
1509
1510    \sa ldb_ldif_read_file for a more convenient way to read from a
1511    file stream.
1512
1513    \sa ldb_ldif_read_string for a more convenient way to read from a
1514    string (char array).
1515
1516    \sa ldb_ldif_write for the writer equivalent to this function.
1517 */
1518 struct ldb_ldif *ldb_ldif_read(struct ldb_context *ldb, 
1519                                int (*fgetc_fn)(void *), void *private_data);
1520
1521 /**
1522    Read an LDIF message from a file
1523
1524    This function reads the next LDIF message from the contents of a
1525    file stream. If you want to get all of the LDIF messages, you will
1526    need to repeatedly call this function, until it returns NULL.
1527
1528    \param ldb the ldb context (from ldb_init())
1529    \param f the file stream to read from (typically from fdopen())
1530
1531    \sa ldb_ldif_read_string for an equivalent function that will read
1532    from a string (char array).
1533
1534    \sa ldb_ldif_write_file for the writer equivalent to this function.
1535
1536 */
1537 struct ldb_ldif *ldb_ldif_read_file(struct ldb_context *ldb, FILE *f);
1538
1539 /**
1540    Read an LDIF message from a string
1541
1542    This function reads the next LDIF message from the contents of a char
1543    array. If you want to get all of the LDIF messages, you will need
1544    to repeatedly call this function, until it returns NULL.
1545
1546    \param ldb the ldb context (from ldb_init())
1547    \param s pointer to the char array to read from
1548
1549    \sa ldb_ldif_read_file for an equivalent function that will read
1550    from a file stream.
1551
1552    \sa ldb_ldif_write for a more general (arbitrary read function)
1553    version of this function.
1554 */
1555 struct ldb_ldif *ldb_ldif_read_string(struct ldb_context *ldb, const char **s);
1556
1557 /**
1558    Write an LDIF message to a file
1559
1560    \param ldb the ldb context (from ldb_init())
1561    \param f the file stream to write to (typically from fdopen())
1562    \param msg the message to write out
1563
1564    \return the total number of bytes written, or a negative error code
1565
1566    \sa ldb_ldif_read_file for the reader equivalent to this function.
1567 */
1568 int ldb_ldif_write_file(struct ldb_context *ldb, FILE *f, const struct ldb_ldif *msg);
1569
1570 /**
1571    Write an LDIF message to a string
1572
1573    \param ldb the ldb context (from ldb_init())
1574    \param mem_ctx the talloc context on which to attach the string)
1575    \param msg the message to write out
1576
1577    \return the string containing the LDIF, or NULL on error
1578
1579    \sa ldb_ldif_read_string for the reader equivalent to this function.
1580 */
1581 char * ldb_ldif_write_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, 
1582                           const struct ldb_ldif *msg);
1583
1584
1585 /*
1586    Produce a string form of an ldb message
1587
1588    convenient function to turn a ldb_message into a string. Useful for
1589    debugging
1590  */
1591 char *ldb_ldif_message_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, 
1592                               enum ldb_changetype changetype,
1593                               const struct ldb_message *msg);
1594
1595
1596 /**
1597    Base64 encode a buffer
1598
1599    \param mem_ctx the memory context that the result is allocated
1600    from. 
1601    \param buf pointer to the array that is to be encoded
1602    \param len the number of elements in the array to be encoded
1603
1604    \return pointer to an array containing the encoded data
1605
1606    \note The caller is responsible for freeing the result
1607 */
1608 char *ldb_base64_encode(TALLOC_CTX *mem_ctx, const char *buf, int len);
1609
1610 /**
1611    Base64 decode a buffer
1612
1613    This function decodes a base64 encoded string in place.
1614
1615    \param s the string to decode.
1616
1617    \return the length of the returned (decoded) string.
1618
1619    \note the string is null terminated, but the null terminator is not
1620    included in the length.
1621 */
1622 int ldb_base64_decode(char *s);
1623
1624 /* The following definitions come from lib/ldb/common/ldb_dn.c  */
1625
1626 /**
1627   Get the linear form of a DN (without any extended components)
1628   
1629   \param dn The DN to linearize
1630 */
1631
1632 const char *ldb_dn_get_linearized(struct ldb_dn *dn);
1633
1634 /**
1635   Allocate a copy of the linear form of a DN (without any extended components) onto the supplied memory context 
1636   
1637   \param dn The DN to linearize
1638   \param mem_ctx TALLOC context to return result on
1639 */
1640
1641 char *ldb_dn_alloc_linearized(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1642
1643 /**
1644   Get the linear form of a DN (with any extended components)
1645   
1646   \param mem_ctx TALLOC context to return result on
1647   \param dn The DN to linearize
1648   \param mode Style of extended DN to return (0 is HEX representation of binary form, 1 is a string form)
1649 */
1650 char *ldb_dn_get_extended_linearized(TALLOC_CTX *mem_ctx, struct ldb_dn *dn, int mode);
1651 const struct ldb_val *ldb_dn_get_extended_component(struct ldb_dn *dn, const char *name);
1652 int ldb_dn_set_extended_component(struct ldb_dn *dn, const char *name, const struct ldb_val *val);
1653 void ldb_dn_extended_filter(struct ldb_dn *dn, const char * const *accept);
1654 void ldb_dn_remove_extended_components(struct ldb_dn *dn);
1655 bool ldb_dn_has_extended(struct ldb_dn *dn);
1656
1657 int ldb_dn_extended_add_syntax(struct ldb_context *ldb, 
1658                                unsigned flags,
1659                                const struct ldb_dn_extended_syntax *syntax);
1660
1661 /** 
1662   Allocate a new DN from a string
1663
1664   \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1665   \param dn The new DN 
1666
1667   \note The DN will not be parsed at this time.  Use ldb_dn_validate to tell if the DN is syntacticly correct
1668 */
1669
1670 struct ldb_dn *ldb_dn_new(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, const char *dn);
1671 /** 
1672   Allocate a new DN from a printf style format string and arguments
1673
1674   \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1675   \param new_fms The new DN as a format string (plus arguments)
1676
1677   \note The DN will not be parsed at this time.  Use ldb_dn_validate to tell if the DN is syntacticly correct
1678 */
1679
1680 struct ldb_dn *ldb_dn_new_fmt(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, const char *new_fmt, ...) PRINTF_ATTRIBUTE(3,4);
1681 /** 
1682   Allocate a new DN from a struct ldb_val (useful to avoid buffer overrun)
1683
1684   \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1685   \param dn The new DN 
1686
1687   \note The DN will not be parsed at this time.  Use ldb_dn_validate to tell if the DN is syntacticly correct
1688 */
1689
1690 struct ldb_dn *ldb_dn_from_ldb_val(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, const struct ldb_val *strdn);
1691
1692 /**
1693   Determine if this DN is syntactically valid 
1694
1695   \param dn The DN to validate
1696 */
1697
1698 bool ldb_dn_validate(struct ldb_dn *dn);
1699
1700 char *ldb_dn_escape_value(TALLOC_CTX *mem_ctx, struct ldb_val value);
1701 const char *ldb_dn_get_casefold(struct ldb_dn *dn);
1702 char *ldb_dn_alloc_casefold(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1703
1704 int ldb_dn_compare_base(struct ldb_dn *base, struct ldb_dn *dn);
1705 int ldb_dn_compare(struct ldb_dn *edn0, struct ldb_dn *edn1);
1706
1707 bool ldb_dn_add_base(struct ldb_dn *dn, struct ldb_dn *base);
1708 bool ldb_dn_add_base_fmt(struct ldb_dn *dn, const char *base_fmt, ...) PRINTF_ATTRIBUTE(2,3);
1709 bool ldb_dn_add_child(struct ldb_dn *dn, struct ldb_dn *child);
1710 bool ldb_dn_add_child_fmt(struct ldb_dn *dn, const char *child_fmt, ...) PRINTF_ATTRIBUTE(2,3);
1711 bool ldb_dn_remove_base_components(struct ldb_dn *dn, unsigned int num);
1712 bool ldb_dn_remove_child_components(struct ldb_dn *dn, unsigned int num);
1713
1714 struct ldb_dn *ldb_dn_copy(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1715 struct ldb_dn *ldb_dn_get_parent(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1716 char *ldb_dn_canonical_string(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1717 char *ldb_dn_canonical_ex_string(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1718 int ldb_dn_get_comp_num(struct ldb_dn *dn);
1719 const char *ldb_dn_get_component_name(struct ldb_dn *dn, unsigned int num);
1720 const struct ldb_val *ldb_dn_get_component_val(struct ldb_dn *dn, unsigned int num);
1721 const char *ldb_dn_get_rdn_name(struct ldb_dn *dn);
1722 const struct ldb_val *ldb_dn_get_rdn_val(struct ldb_dn *dn);
1723 int ldb_dn_set_component(struct ldb_dn *dn, int num, const char *name, const struct ldb_val val);
1724
1725 bool ldb_dn_is_valid(struct ldb_dn *dn);
1726 bool ldb_dn_is_special(struct ldb_dn *dn);
1727 bool ldb_dn_check_special(struct ldb_dn *dn, const char *check);
1728 bool ldb_dn_is_null(struct ldb_dn *dn);
1729 int ldb_dn_update_components(struct ldb_dn *dn, const struct ldb_dn *ref_dn);
1730
1731
1732 /**
1733    Compare two attributes
1734
1735    This function compares to attribute names. Note that this is a
1736    case-insensitive comparison.
1737
1738    \param a the first attribute name to compare
1739    \param b the second attribute name to compare
1740
1741    \return 0 if the attribute names are the same, or only differ in
1742    case; non-zero if there are any differences
1743
1744   attribute names are restricted by rfc2251 so using
1745   strcasecmp and toupper here is ok.
1746   return 0 for match
1747 */
1748 #define ldb_attr_cmp(a, b) strcasecmp(a, b)
1749 char *ldb_attr_casefold(TALLOC_CTX *mem_ctx, const char *s);
1750 int ldb_attr_dn(const char *attr);
1751
1752 /**
1753    Create an empty message
1754
1755    \param mem_ctx the memory context to create in. You can pass NULL
1756    to get the top level context, however the ldb context (from
1757    ldb_init()) may be a better choice
1758 */
1759 struct ldb_message *ldb_msg_new(TALLOC_CTX *mem_ctx);
1760
1761 /**
1762    Find an element within an message
1763 */
1764 struct ldb_message_element *ldb_msg_find_element(const struct ldb_message *msg, 
1765                                                  const char *attr_name);
1766
1767 /**
1768    Compare two ldb_val values
1769
1770    \param v1 first ldb_val structure to be tested
1771    \param v2 second ldb_val structure to be tested
1772
1773    \return 1 for a match, 0 if there is any difference
1774 */
1775 int ldb_val_equal_exact(const struct ldb_val *v1, const struct ldb_val *v2);
1776
1777 /**
1778    find a value within an ldb_message_element
1779
1780    \param el the element to search
1781    \param val the value to search for
1782
1783    \note This search is case sensitive
1784 */
1785 struct ldb_val *ldb_msg_find_val(const struct ldb_message_element *el, 
1786                                  struct ldb_val *val);
1787
1788 /**
1789    add a new empty element to a ldb_message
1790 */
1791 int ldb_msg_add_empty(struct ldb_message *msg,
1792                 const char *attr_name,
1793                 int flags,
1794                 struct ldb_message_element **return_el);
1795
1796 /**
1797    add a element to a ldb_message
1798 */
1799 int ldb_msg_add(struct ldb_message *msg, 
1800                 const struct ldb_message_element *el, 
1801                 int flags);
1802 int ldb_msg_add_value(struct ldb_message *msg, 
1803                 const char *attr_name,
1804                 const struct ldb_val *val,
1805                 struct ldb_message_element **return_el);
1806 int ldb_msg_add_steal_value(struct ldb_message *msg, 
1807                       const char *attr_name,
1808                       struct ldb_val *val);
1809 int ldb_msg_add_steal_string(struct ldb_message *msg, 
1810                              const char *attr_name, char *str);
1811 int ldb_msg_add_string(struct ldb_message *msg, 
1812                        const char *attr_name, const char *str);
1813 int ldb_msg_add_linearized_dn(struct ldb_message *msg, const char *attr_name,
1814                               struct ldb_dn *dn);
1815 int ldb_msg_add_fmt(struct ldb_message *msg, 
1816                     const char *attr_name, const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
1817
1818 /**
1819    compare two message elements - return 0 on match
1820 */
1821 int ldb_msg_element_compare(struct ldb_message_element *el1, 
1822                             struct ldb_message_element *el2);
1823 int ldb_msg_element_compare_name(struct ldb_message_element *el1, 
1824                                  struct ldb_message_element *el2);
1825
1826 /**
1827    Find elements in a message.
1828
1829    This function finds elements and converts to a specific type, with
1830    a give default value if not found. Assumes that elements are
1831    single valued.
1832 */
1833 const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg, const char *attr_name);
1834 int ldb_msg_find_attr_as_int(const struct ldb_message *msg, 
1835                              const char *attr_name,
1836                              int default_value);
1837 unsigned int ldb_msg_find_attr_as_uint(const struct ldb_message *msg, 
1838                                        const char *attr_name,
1839                                        unsigned int default_value);
1840 int64_t ldb_msg_find_attr_as_int64(const struct ldb_message *msg, 
1841                                    const char *attr_name,
1842                                    int64_t default_value);
1843 uint64_t ldb_msg_find_attr_as_uint64(const struct ldb_message *msg, 
1844                                      const char *attr_name,
1845                                      uint64_t default_value);
1846 double ldb_msg_find_attr_as_double(const struct ldb_message *msg, 
1847                                    const char *attr_name,
1848                                    double default_value);
1849 int ldb_msg_find_attr_as_bool(const struct ldb_message *msg, 
1850                               const char *attr_name,
1851                               int default_value);
1852 const char *ldb_msg_find_attr_as_string(const struct ldb_message *msg, 
1853                                         const char *attr_name,
1854                                         const char *default_value);
1855
1856 struct ldb_dn *ldb_msg_find_attr_as_dn(struct ldb_context *ldb,
1857                                        TALLOC_CTX *mem_ctx,
1858                                        const struct ldb_message *msg,
1859                                        const char *attr_name);
1860
1861 void ldb_msg_sort_elements(struct ldb_message *msg);
1862
1863 struct ldb_message *ldb_msg_copy_shallow(TALLOC_CTX *mem_ctx, 
1864                                          const struct ldb_message *msg);
1865 struct ldb_message *ldb_msg_copy(TALLOC_CTX *mem_ctx, 
1866                                  const struct ldb_message *msg);
1867
1868 /*
1869  * ldb_msg_canonicalize() is now depreciated
1870  * Please use ldb_msg_normalize() instead
1871  *
1872  * NOTE: Returned ldb_message object is allocated
1873  * into *ldb's context. Callers are recommended
1874  * to steal the returned object into a TALLOC_CTX
1875  * with short lifetime.
1876  */
1877 struct ldb_message *ldb_msg_canonicalize(struct ldb_context *ldb, 
1878                                          const struct ldb_message *msg) _DEPRECATED_;
1879
1880 int ldb_msg_normalize(struct ldb_context *ldb,
1881                       TALLOC_CTX *mem_ctx,
1882                       const struct ldb_message *msg,
1883                       struct ldb_message **_msg_out);
1884
1885
1886 /*
1887  * ldb_msg_diff() is now depreciated
1888  * Please use ldb_msg_difference() instead
1889  *
1890  * NOTE: Returned ldb_message object is allocated
1891  * into *ldb's context. Callers are recommended
1892  * to steal the returned object into a TALLOC_CTX
1893  * with short lifetime.
1894  */
1895 struct ldb_message *ldb_msg_diff(struct ldb_context *ldb, 
1896                                  struct ldb_message *msg1,
1897                                  struct ldb_message *msg2) _DEPRECATED_;
1898
1899 /**
1900  * return a ldb_message representing the differences between msg1 and msg2.
1901  * If you then use this in a ldb_modify() call,
1902  * it can be used to save edits to a message
1903  *
1904  * Result message is constructed as follows:
1905  * - LDB_FLAG_MOD_ADD     - elements found only in msg2
1906  * - LDB_FLAG_MOD_REPLACE - elements in msg2 that have
1907  *                          different value in msg1
1908  *                          Value for msg2 element is used
1909  * - LDB_FLAG_MOD_DELETE  - elements found only in msg2
1910  *
1911  * @return LDB_SUCCESS or LDB_ERR_OPERATIONS_ERROR
1912  */
1913 int ldb_msg_difference(struct ldb_context *ldb,
1914                        TALLOC_CTX *mem_ctx,
1915                        struct ldb_message *msg1,
1916                        struct ldb_message *msg2,
1917                        struct ldb_message **_msg_out);
1918
1919 /**
1920    Tries to find a certain string attribute in a message
1921
1922    \param msg the message to check
1923    \param name attribute name
1924    \param value attribute value
1925
1926    \return 1 on match and 0 otherwise.
1927 */
1928 int ldb_msg_check_string_attribute(const struct ldb_message *msg,
1929                                    const char *name,
1930                                    const char *value);
1931
1932 /**
1933    Integrity check an ldb_message
1934
1935    This function performs basic sanity / integrity checks on an
1936    ldb_message.
1937
1938    \param ldb context in which to perform the checks
1939    \param msg the message to check
1940
1941    \return LDB_SUCCESS if the message is OK, or a non-zero error code
1942    (one of LDB_ERR_INVALID_DN_SYNTAX, LDB_ERR_ENTRY_ALREADY_EXISTS or
1943    LDB_ERR_INVALID_ATTRIBUTE_SYNTAX) if there is a problem with a
1944    message.
1945 */
1946 int ldb_msg_sanity_check(struct ldb_context *ldb,
1947                          const struct ldb_message *msg);
1948
1949 /**
1950    Duplicate an ldb_val structure
1951
1952    This function copies an ldb value structure. 
1953
1954    \param mem_ctx the memory context that the duplicated value will be
1955    allocated from
1956    \param v the ldb_val to be duplicated.
1957
1958    \return the duplicated ldb_val structure.
1959 */
1960 struct ldb_val ldb_val_dup(TALLOC_CTX *mem_ctx, const struct ldb_val *v);
1961
1962 /**
1963   this allows the user to set a debug function for error reporting
1964 */
1965 int ldb_set_debug(struct ldb_context *ldb,
1966                   void (*debug)(void *context, enum ldb_debug_level level, 
1967                                 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0),
1968                   void *context);
1969
1970 /**
1971   this allows the user to set custom utf8 function for error reporting
1972 */
1973 void ldb_set_utf8_fns(struct ldb_context *ldb,
1974                       void *context,
1975                       char *(*casefold)(void *, void *, const char *, size_t n));
1976
1977 /**
1978    this sets up debug to print messages on stderr
1979 */
1980 int ldb_set_debug_stderr(struct ldb_context *ldb);
1981
1982 /* control backend specific opaque values */
1983 int ldb_set_opaque(struct ldb_context *ldb, const char *name, void *value);
1984 void *ldb_get_opaque(struct ldb_context *ldb, const char *name);
1985
1986 const char **ldb_attr_list_copy(TALLOC_CTX *mem_ctx, const char * const *attrs);
1987 const char **ldb_attr_list_copy_add(TALLOC_CTX *mem_ctx, const char * const *attrs, const char *new_attr);
1988 int ldb_attr_in_list(const char * const *attrs, const char *attr);
1989
1990 int ldb_msg_rename_attr(struct ldb_message *msg, const char *attr, const char *replace);
1991 int ldb_msg_copy_attr(struct ldb_message *msg, const char *attr, const char *replace);
1992 void ldb_msg_remove_attr(struct ldb_message *msg, const char *attr);
1993 void ldb_msg_remove_element(struct ldb_message *msg, struct ldb_message_element *el);
1994
1995
1996 void ldb_parse_tree_attr_replace(struct ldb_parse_tree *tree, 
1997                                  const char *attr, 
1998                                  const char *replace);
1999
2000 /*
2001   shallow copy a tree - copying only the elements array so that the caller
2002   can safely add new elements without changing the message
2003 */
2004 struct ldb_parse_tree *ldb_parse_tree_copy_shallow(TALLOC_CTX *mem_ctx,
2005                                                    const struct ldb_parse_tree *ot);
2006
2007 /**
2008    Convert a time structure to a string
2009
2010    This function converts a time_t structure to an LDAP formatted
2011    GeneralizedTime string.
2012                 
2013    \param mem_ctx the memory context to allocate the return string in
2014    \param t the time structure to convert
2015
2016    \return the formatted string, or NULL if the time structure could
2017    not be converted
2018 */
2019 char *ldb_timestring(TALLOC_CTX *mem_ctx, time_t t);
2020
2021 /**
2022    Convert a string to a time structure
2023
2024    This function converts an LDAP formatted GeneralizedTime string
2025    to a time_t structure.
2026
2027    \param s the string to convert
2028
2029    \return the time structure, or 0 if the string cannot be converted
2030 */
2031 time_t ldb_string_to_time(const char *s);
2032
2033 /**
2034   convert a LDAP GeneralizedTime string in ldb_val format to a
2035   time_t.
2036 */
2037 int ldb_val_to_time(const struct ldb_val *v, time_t *t);
2038
2039 /**
2040    Convert a time structure to a string
2041
2042    This function converts a time_t structure to an LDAP formatted
2043    UTCTime string.
2044                 
2045    \param mem_ctx the memory context to allocate the return string in
2046    \param t the time structure to convert
2047
2048    \return the formatted string, or NULL if the time structure could
2049    not be converted
2050 */
2051 char *ldb_timestring_utc(TALLOC_CTX *mem_ctx, time_t t);
2052
2053 /**
2054    Convert a string to a time structure
2055
2056    This function converts an LDAP formatted UTCTime string
2057    to a time_t structure.
2058
2059    \param s the string to convert
2060
2061    \return the time structure, or 0 if the string cannot be converted
2062 */
2063 time_t ldb_string_utc_to_time(const char *s);
2064
2065
2066 void ldb_qsort (void *const pbase, size_t total_elems, size_t size, void *opaque, ldb_qsort_cmp_fn_t cmp);
2067
2068 #ifndef discard_const
2069 #define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
2070 #endif
2071
2072 /*
2073   a wrapper around ldb_qsort() that ensures the comparison function is
2074   type safe. This will produce a compilation warning if the types
2075   don't match
2076  */
2077 #define LDB_TYPESAFE_QSORT(base, numel, opaque, comparison)     \
2078 do { \
2079         if (numel > 1) { \
2080                 ldb_qsort(base, numel, sizeof((base)[0]), discard_const(opaque), (ldb_qsort_cmp_fn_t)comparison); \
2081                 comparison(&((base)[0]), &((base)[1]), opaque);         \
2082         } \
2083 } while (0)
2084
2085 /* allow ldb to also call TYPESAFE_QSORT() */
2086 #ifndef TYPESAFE_QSORT
2087 #define TYPESAFE_QSORT(base, numel, comparison) \
2088 do { \
2089         if (numel > 1) { \
2090                 qsort(base, numel, sizeof((base)[0]), (int (*)(const void *, const void *))comparison); \
2091                 comparison(&((base)[0]), &((base)[1])); \
2092         } \
2093 } while (0)
2094 #endif
2095
2096
2097
2098 /**
2099    Convert an array of string represention of a control into an array of ldb_control structures 
2100    
2101    \param ldb LDB context
2102    \param mem_ctx TALLOC context to return result on, and to allocate error_string on
2103    \param control_strings Array of string-formatted controls
2104
2105    \return array of ldb_control elements
2106 */
2107 struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char **control_strings);
2108
2109 /**
2110    return the ldb flags 
2111 */
2112 unsigned int ldb_get_flags(struct ldb_context *ldb);
2113
2114 /* set the ldb flags */
2115 void ldb_set_flags(struct ldb_context *ldb, unsigned flags);
2116
2117
2118 struct ldb_dn *ldb_dn_binary_from_ldb_val(TALLOC_CTX *mem_ctx,
2119                                           struct ldb_context *ldb,
2120                                           const struct ldb_val *strdn);
2121
2122 int ldb_dn_get_binary(struct ldb_dn *dn, struct ldb_val *val);
2123 int ldb_dn_set_binary(struct ldb_dn *dn, struct ldb_val *val);
2124
2125 #endif