770d23c6387522448487cf4b3deb29b0d42c4203
[gd/samba-autobuild/.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
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 2 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, write to the Free Software
24    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 */
26
27 /*
28  *  Name: ldb
29  *
30  *  Component: ldb header
31  *
32  *  Description: defines for base ldb API
33  *
34  *  Author: Andrew Tridgell
35  *  Author: Stefan Metzmacher
36  */
37
38 /**
39    \file ldb.h Samba's ldb database
40
41    This header file provides the main API for ldb.
42 */
43
44 #ifndef _LDB_H_
45
46 /*! \cond DOXYGEN_IGNORE */
47 #define _LDB_H_ 1
48 /*! \endcond */
49
50 /*
51   major restrictions as compared to normal LDAP:
52
53      - no async calls.
54      - each record must have a unique key field
55      - the key must be representable as a NULL terminated C string and may not 
56        contain a comma or braces
57
58   major restrictions as compared to tdb:
59
60      - no explicit locking calls
61      UPDATE: we have transactions now, better than locking --SSS.
62
63 */
64
65 #ifndef ldb_val
66 /**
67    Result value
68
69    An individual lump of data in a result comes in this format. The
70    pointer will usually be to a UTF-8 string if the application is
71    sensible, but it can be to anything you like, including binary data
72    blobs of arbitrary size.
73
74    \note the data is null (0x00) terminated, but the length does not
75    include the terminator. 
76 */
77 struct ldb_val {
78         uint8_t *data; /*!< result data */
79         size_t length; /*!< length of data */
80 };
81 #endif
82
83 /**
84    internal ldb exploded dn structures
85 */
86 struct ldb_dn_component {
87         char *name;  
88         struct ldb_val value;
89 };
90
91 struct ldb_dn {
92         int comp_num;
93         struct ldb_dn_component *components;
94 };
95
96 /**
97  There are a number of flags that are used with ldap_modify() in
98  ldb_message_element.flags fields. The LDA_FLAGS_MOD_ADD,
99  LDA_FLAGS_MOD_DELETE and LDA_FLAGS_MOD_REPLACE flags are used in
100  ldap_modify() calls to specify whether attributes are being added,
101  deleted or modified respectively.
102 */
103 #define LDB_FLAG_MOD_MASK  0x3
104
105 /**
106    Flag value used in ldap_modify() to indicate that attributes are
107    being added.
108
109    \sa LDB_FLAG_MOD_MASK
110 */
111 #define LDB_FLAG_MOD_ADD     1
112
113 /**
114    Flag value used in ldap_modify() to indicate that attributes are
115    being replaced.
116
117    \sa LDB_FLAG_MOD_MASK
118 */
119 #define LDB_FLAG_MOD_REPLACE 2
120
121 /**
122    Flag value used in ldap_modify() to indicate that attributes are
123    being deleted.
124
125    \sa LDB_FLAG_MOD_MASK
126 */
127 #define LDB_FLAG_MOD_DELETE  3
128
129 /**
130   OID for logic AND comaprison.
131
132   This is the well known object ID for a logical AND comparitor.
133 */
134 #define LDB_OID_COMPARATOR_AND  "1.2.840.113556.1.4.803"
135
136 /**
137   OID for logic OR comparison.
138
139   This is the well known object ID for a logical OR comparitor.
140 */
141 #define LDB_OID_COMPARATOR_OR   "1.2.840.113556.1.4.804"
142
143 /**
144   results are given back as arrays of ldb_message_element
145 */
146 struct ldb_message_element {
147         unsigned int flags;
148         const char *name;
149         unsigned int num_values;
150         struct ldb_val *values;
151 };
152
153
154 /**
155   a ldb_message represents all or part of a record. It can contain an arbitrary
156   number of elements. 
157 */
158 struct ldb_message {
159         struct ldb_dn *dn;
160         unsigned int num_elements;
161         struct ldb_message_element *elements;
162         void *private_data; /* private to the backend */
163 };
164
165 enum ldb_changetype {
166         LDB_CHANGETYPE_NONE=0,
167         LDB_CHANGETYPE_ADD,
168         LDB_CHANGETYPE_DELETE,
169         LDB_CHANGETYPE_MODIFY
170 };
171
172 /**
173   LDIF record
174
175   This structure contains a LDIF record, as returned from ldif_read()
176   and equivalent functions.
177 */
178 struct ldb_ldif {
179         enum ldb_changetype changetype; /*!< The type of change */
180         struct ldb_message *msg;  /*!< The changes */
181 };
182
183 enum ldb_scope {LDB_SCOPE_DEFAULT=-1, 
184                 LDB_SCOPE_BASE=0, 
185                 LDB_SCOPE_ONELEVEL=1,
186                 LDB_SCOPE_SUBTREE=2};
187
188 struct ldb_context;
189
190 /*
191   the fuction type for the callback used in traversing the database
192 */
193 typedef int (*ldb_traverse_fn)(struct ldb_context *, const struct ldb_message *);
194
195
196 /* debugging uses one of the following levels */
197 enum ldb_debug_level {LDB_DEBUG_FATAL, LDB_DEBUG_ERROR, 
198                       LDB_DEBUG_WARNING, LDB_DEBUG_TRACE};
199
200 /**
201   the user can optionally supply a debug function. The function
202   is based on the vfprintf() style of interface, but with the addition
203   of a severity level
204 */
205 struct ldb_debug_ops {
206         void (*debug)(void *context, enum ldb_debug_level level, 
207                       const char *fmt, va_list ap);
208         void *context;
209 };
210
211 /**
212    Flag value for database connection mode.
213
214    If LDB_FLG_RDONLY is used in ldb_connect, then the database will be
215    opened read-only, if possible.
216 */
217 #define LDB_FLG_RDONLY 1
218
219 /**
220    Flag value for database connection mode.
221
222    If LDB_FLG_NOSYNC is used in ldb_connect, then the database will be
223    opened without synchronous operations, if possible.
224 */
225 #define LDB_FLG_NOSYNC 2
226
227 /*! \cond DOXYGEN_IGNORE */
228 #ifndef PRINTF_ATTRIBUTE
229 #define PRINTF_ATTRIBUTE(a,b)
230 #endif
231 /*! \endcond */
232
233 /*
234    structures for ldb_parse_tree handling code
235 */
236 enum ldb_parse_op { LDB_OP_AND=1, LDB_OP_OR=2, LDB_OP_NOT=3,
237                     LDB_OP_EQUALITY=4, LDB_OP_SUBSTRING=5,
238                     LDB_OP_GREATER=6, LDB_OP_LESS=7, LDB_OP_PRESENT=8,
239                     LDB_OP_APPROX=9, LDB_OP_EXTENDED=10 };
240
241 struct ldb_parse_tree {
242         enum ldb_parse_op operation;
243         union {
244                 struct {
245                         struct ldb_parse_tree *child;
246                 } isnot;
247                 struct {
248                         const char *attr;
249                         struct ldb_val value;
250                 } equality;
251                 struct {
252                         const char *attr;
253                         int start_with_wildcard;
254                         int end_with_wildcard;
255                         struct ldb_val **chunks;
256                 } substring;
257                 struct {
258                         const char *attr;
259                 } present;
260                 struct {
261                         const char *attr;
262                         struct ldb_val value;
263                 } comparison;
264                 struct {
265                         const char *attr;
266                         int dnAttributes;
267                         char *rule_id;
268                         struct ldb_val value;
269                 } extended;
270                 struct {
271                         unsigned int num_elements;
272                         struct ldb_parse_tree **elements;
273                 } list;
274         } u;
275 };
276
277 struct ldb_parse_tree *ldb_parse_tree(void *mem_ctx, const char *s);
278 char *ldb_filter_from_tree(void *mem_ctx, struct ldb_parse_tree *tree);
279 char *ldb_binary_encode(void *ctx, struct ldb_val val);
280 char *ldb_binary_encode_string(void *mem_ctx, const char *string);
281
282 /*
283   functions for controlling attribute handling
284 */
285 typedef int (*ldb_attr_handler_t)(struct ldb_context *, void *mem_ctx, const struct ldb_val *, struct ldb_val *);
286 typedef int (*ldb_attr_comparison_t)(struct ldb_context *, void *mem_ctx, const struct ldb_val *, const struct ldb_val *);
287
288 struct ldb_attrib_handler {
289         const char *attr;
290
291         /* LDB_ATTR_FLAG_* */
292         unsigned flags;
293
294         /* convert from ldif to binary format */
295         ldb_attr_handler_t ldif_read_fn;
296
297         /* convert from binary to ldif format */
298         ldb_attr_handler_t ldif_write_fn;
299         
300         /* canonicalise a value, for use by indexing and dn construction */
301         ldb_attr_handler_t canonicalise_fn;
302
303         /* compare two values */
304         ldb_attr_comparison_t comparison_fn;
305 };
306
307 /**
308    The attribute is not returned by default
309 */
310 #define LDB_ATTR_FLAG_HIDDEN       (1<<0) 
311
312 /**
313    The attribute is constructed from other attributes
314 */
315 #define LDB_ATTR_FLAG_CONSTRUCTED  (1<<1) 
316
317 /**
318   LDAP attribute syntax for a DN
319
320   This is the well-known LDAP attribute syntax for a DN.
321
322   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
323 */
324 #define LDB_SYNTAX_DN                   "1.3.6.1.4.1.1466.115.121.1.12"
325
326 /**
327   LDAP attribute syntax for a Directory String
328
329   This is the well-known LDAP attribute syntax for a Directory String.
330
331   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
332 */
333 #define LDB_SYNTAX_DIRECTORY_STRING     "1.3.6.1.4.1.1466.115.121.1.15"
334
335 /**
336   LDAP attribute syntax for an integer
337
338   This is the well-known LDAP attribute syntax for an integer.
339
340   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
341 */
342 #define LDB_SYNTAX_INTEGER              "1.3.6.1.4.1.1466.115.121.1.27"
343
344 /**
345   LDAP attribute syntax for an octet string
346
347   This is the well-known LDAP attribute syntax for an octet string.
348
349   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
350 */
351 #define LDB_SYNTAX_OCTET_STRING         "1.3.6.1.4.1.1466.115.121.1.40"
352
353 /**
354   LDAP attribute syntax for UTC time.
355
356   This is the well-known LDAP attribute syntax for a UTC time.
357
358   See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2 
359 */
360 #define LDB_SYNTAX_UTC_TIME             "1.3.6.1.4.1.1466.115.121.1.53"
361
362 #define LDB_SYNTAX_OBJECTCLASS          "LDB_SYNTAX_OBJECTCLASS"
363
364 /* sorting helpers */
365 typedef int (*ldb_qsort_cmp_fn_t) (const void *, const void *, const void *);
366
367 /**
368    OID for the paged results control. This control is included in the
369    searchRequest and searchResultDone messages as part of the controls
370    field of the LDAPMessage, as defined in Section 4.1.12 of
371    LDAP v3. 
372
373    \sa <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
374 */
375 #define LDB_CONTROL_PAGED_RESULTS_OID   "1.2.840.113556.1.4.319"
376
377 /**
378    OID for notification
379
380    \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>
381 */
382 #define LDB_CONTROL_NOTIFICATION_OID    "1.2.840.113556.1.4.528"
383
384 /**
385    OID for extended DN
386
387    \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>
388 */
389 #define LDB_CONTROL_EXTENDED_DN_OID     "1.2.840.113556.1.4.529"
390
391 /**
392    OID for LDAP server sort result extension.
393
394    This control is included in the searchRequest message as part of
395    the controls field of the LDAPMessage, as defined in Section 4.1.12
396    of LDAP v3. The controlType is set to
397    "1.2.840.113556.1.4.473". The criticality MAY be either TRUE or
398    FALSE (where absent is also equivalent to FALSE) at the client's
399    option.
400
401    \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
402 */
403 #define LDB_CONTROL_SERVER_SORT_OID     "1.2.840.113556.1.4.473"
404
405 /**
406    OID for LDAP server sort result response extension.
407
408    This control is included in the searchResultDone message as part of
409    the controls field of the LDAPMessage, as defined in Section 4.1.12 of
410    LDAP v3.
411
412    \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
413 */
414 #define LDB_CONTROL_SORT_RESP_OID       "1.2.840.113556.1.4.474"
415
416 /**
417    OID for LDAP Attribute Scoped Query extension.
418
419    This control is include in SearchRequest or SearchResponse
420    messages as part of the controls field of the LDAPMessage.
421 */
422 #define LDB_CONTROL_ASQ_OID             "1.2.840.113556.1.4.1504"
423
424 /**
425    OID for LDAPrectory Sync extension. 
426
427    This control is include in SearchRequest or SearchResponse
428    messages as part of the controls field of the LDAPMessage.
429 */
430 #define LDB_CONTROL_DIRSYNC_OID         "1.2.840.113556.1.4.841"
431
432
433 struct ldb_paged_control {
434         int size;
435         int cookie_len;
436         char *cookie;
437 };
438
439 struct ldb_extended_dn_control {
440         int type;
441 };
442
443 struct ldb_server_sort_control {
444         char *attributeName;
445         char *orderingRule;
446         int reverse;
447 };
448
449 struct ldb_sort_resp_control {
450         int result;
451         char *attr_desc;
452 };
453
454 struct ldb_asq_control {
455         int request;
456         char *source_attribute;
457         int src_attr_len;
458         int result;
459 };
460
461 struct ldb_dirsync_control {
462         int flags;
463         int max_attributes;
464         int cookie_len;
465         char *cookie;
466 };
467
468 struct ldb_control {
469         const char *oid;
470         int critical;
471         void *data;
472 };
473
474 struct ldb_credentials;
475
476 enum ldb_request_type {
477         LDB_REQ_SEARCH,
478         LDB_REQ_ADD,
479         LDB_REQ_MODIFY,
480         LDB_REQ_DELETE,
481         LDB_REQ_RENAME,
482         LDB_REQ_REGISTER
483 };
484
485 struct ldb_result {
486         unsigned int count;
487         struct ldb_message **msgs;
488         struct ldb_control **controls;
489 };
490
491 struct ldb_search {
492         const struct ldb_dn *base;
493         enum ldb_scope scope;
494         struct ldb_parse_tree *tree;
495         const char * const *attrs;
496         struct ldb_result *res;
497 };
498
499 struct ldb_add {
500         const struct ldb_message *message;
501 };
502
503 struct  ldb_modify {
504         const struct ldb_message *message;
505 };
506
507 struct ldb_delete {
508         const struct ldb_dn *dn;
509 };
510
511 struct ldb_rename {
512         const struct ldb_dn *olddn;
513         const struct ldb_dn *newdn;
514 };
515
516 struct ldb_register_control {
517         const char *oid;
518 };
519
520 struct ldb_request {
521
522         int operation;
523
524         union {
525                 struct ldb_search search;
526                 struct ldb_add    add;
527                 struct ldb_modify mod;
528                 struct ldb_delete del;
529                 struct ldb_rename rename;
530                 struct ldb_register_control reg;
531         } op;
532
533         struct ldb_control **controls;
534         struct ldb_credentials *creds;
535 }; 
536
537 int ldb_request(struct ldb_context *ldb, struct ldb_request *request);
538
539 /**
540   Initialise an ldb context
541
542   This is required before any other LDB call.
543
544   \param mem_ctx pointer to a talloc memory context. Pass NULL if there is
545   no suitable context available.
546
547   \return pointer to ldb_context that should be free'd (using talloc_free())
548   at the end of the program.
549 */
550 struct ldb_context *ldb_init(void *mem_ctx);
551
552 /**
553    Connect to a database.
554
555    This is typically called soon after ldb_init(), and is required prior to
556    any search or database modification operations.
557
558    The URL can be one of the following forms:
559     - tdb://path
560     - ldapi://path
561     - ldap://host
562     - sqlite3://path
563
564    \param ldb the context associated with the database (from ldb_init())
565    \param url the URL of the database to connect to, as noted above
566    \param flags a combination of LDB_FLG_* to modify the connection behaviour
567    \param options backend specific options - passed uninterpreted to the backend
568
569    \return result code (LDB_SUCCESS on success, or a failure code)
570
571    \note It is an error to connect to a database that does not exist in readonly mode
572    (that is, with LDB_FLG_RDONLY). However in read-write mode, the database will be
573    created if it does not exist.
574 */
575 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
576
577 /**
578   Search the database
579
580   This function searches the database, and returns 
581   records that match an LDAP-like search expression
582
583   \param ldb the context associated with the database (from ldb_init())
584   \param base the Base Distinguished Name for the query (pass NULL for root DN)
585   \param scope the search scope for the query
586   \param expression the search expression to use for this query
587   \param attrs the search attributes for the query (pass NULL if none required)
588   \param res the return result
589
590   \return result code (LDB_SUCCESS on success, or a failure code)
591
592   \note use talloc_free() to free the ldb_result returned
593 */
594 int ldb_search(struct ldb_context *ldb, 
595                const struct ldb_dn *base,
596                enum ldb_scope scope,
597                const char *expression,
598                const char * const *attrs, struct ldb_result **res);
599
600 /*
601   like ldb_search() but takes a parse tree
602 */
603 int ldb_search_bytree(struct ldb_context *ldb, 
604                       const struct ldb_dn *base,
605                       enum ldb_scope scope,
606                       struct ldb_parse_tree *tree,
607                       const char * const *attrs, struct ldb_result **res);
608
609 /**
610   Add a record to the database.
611
612   This function adds a record to the database. This function will fail
613   if a record with the specified class and key already exists in the
614   database. 
615
616   \param ldb the context associated with the database (from
617   ldb_init())
618   \param message the message containing the record to add.
619
620   \return result code (LDB_SUCCESS if the record was added, otherwise
621   a failure code)
622 */
623 int ldb_add(struct ldb_context *ldb, 
624             const struct ldb_message *message);
625
626 /**
627   Modify the specified attributes of a record
628
629   This function modifies a record that is in the database.
630
631   \param ldb the context associated with the database (from
632   ldb_init())
633   \param message the message containing the changes required.
634
635   \return result code (LDB_SUCCESS if the record was modified as
636   requested, otherwise a failure code)
637 */
638 int ldb_modify(struct ldb_context *ldb, 
639                const struct ldb_message *message);
640
641 /**
642   Rename a record in the database
643
644   This function renames a record in the database.
645
646   \param ldb the context associated with the database (from
647   ldb_init())
648   \param olddn the DN for the record to be renamed.
649   \param newdn the new DN 
650
651   \return result code (LDB_SUCCESS if the record was renamed as
652   requested, otherwise a failure code)
653 */
654 int ldb_rename(struct ldb_context *ldb, const struct ldb_dn *olddn, const struct ldb_dn *newdn);
655
656 /**
657   Delete a record from the database
658
659   This function deletes a record from the database.
660
661   \param ldb the context associated with the database (from
662   ldb_init())
663   \param dn the DN for the record to be deleted.
664
665   \return result code (LDB_SUCCESS if the record was deleted,
666   otherwise a failure code)
667 */
668 int ldb_delete(struct ldb_context *ldb, const struct ldb_dn *dn);
669
670 /**
671   start a transaction
672 */
673 int ldb_transaction_start(struct ldb_context *ldb);
674
675 /**
676   commit a transaction
677 */
678 int ldb_transaction_commit(struct ldb_context *ldb);
679
680 /**
681   cancel a transaction
682 */
683 int ldb_transaction_cancel(struct ldb_context *ldb);
684
685
686 /**
687   return extended error information from the last call
688 */
689 const char *ldb_errstring(struct ldb_context *ldb);
690
691 /**
692    Casefold a string
693
694    \param mem_ctx the memory context to allocate the result string
695    memory from. 
696    \param s the string that is to be folded
697    \return a copy of the string, converted to upper case
698
699    \todo This function should be UTF8 aware, but currently is not.
700 */
701 char *ldb_casefold(void *mem_ctx, const char *s);
702
703 /**
704    Compare two strings, without regard to case. 
705
706    \param s1 the first string to compare
707    \param s2 the second string to compare
708
709    \return 0 if the strings are the same, non-zero if there are any
710    differences except for case.
711
712    \note This function is not UTF8 aware.
713 */
714 int ldb_caseless_cmp(const char *s1, const char *s2);
715
716 /*
717   ldif manipulation functions
718 */
719 /**
720    Write an LDIF message
721
722    This function writes an LDIF message using a caller supplied  write
723    function.
724
725    \param ldb the ldb context (from ldb_init())
726    \param fprintf_fn a function pointer for the write function. This must take
727    a private data pointer, followed by a format string, and then a variable argument
728    list. 
729    \param private_data pointer that will be provided back to the write
730    function. This is useful for maintaining state or context.
731    \param ldif the message to write out
732
733    \return the total number of bytes written, or an error code as returned
734    from the write function.
735
736    \sa ldb_ldif_write_file for a more convenient way to write to a
737    file stream.
738
739    \sa ldb_ldif_read for the reader equivalent to this function.
740 */
741 int ldb_ldif_write(struct ldb_context *ldb,
742                    int (*fprintf_fn)(void *, const char *, ...), 
743                    void *private_data,
744                    const struct ldb_ldif *ldif);
745
746 /**
747    Clean up an LDIF message
748
749    This function cleans up a LDIF message read using ldb_ldif_read()
750    or related functions (such as ldb_ldif_read_string() and
751    ldb_ldif_read_file().
752
753    \param ldb the ldb context (from ldb_init())
754    \param msg the message to clean up and free
755
756 */
757 void ldb_ldif_read_free(struct ldb_context *ldb, struct ldb_ldif *msg);
758
759 /**
760    Read an LDIF message
761
762    This function creates an LDIF message using a caller supplied read
763    function. 
764
765    \param ldb the ldb context (from ldb_init())
766    \param fgetc_fn a function pointer for the read function. This must
767    take a private data pointer, and must return a pointer to an
768    integer corresponding to the next byte read (or EOF if there is no
769    more data to be read).
770    \param private_data pointer that will be provided back to the read
771    function. This is udeful for maintaining state or context.
772
773    \return the LDIF message that has been read in
774
775    \note You must free the LDIF message when no longer required, using
776    ldb_ldif_read_free().
777
778    \sa ldb_ldif_read_file for a more convenient way to read from a
779    file stream.
780
781    \sa ldb_ldif_read_string for a more convenient way to read from a
782    string (char array).
783
784    \sa ldb_ldif_write for the writer equivalent to this function.
785 */
786 struct ldb_ldif *ldb_ldif_read(struct ldb_context *ldb, 
787                                int (*fgetc_fn)(void *), void *private_data);
788
789 /**
790    Read an LDIF message from a file
791
792    This function reads the next LDIF message from the contents of a
793    file stream. If you want to get all of the LDIF messages, you will
794    need to repeatedly call this function, until it returns NULL.
795
796    \param ldb the ldb context (from ldb_init())
797    \param f the file stream to read from (typically from fdopen())
798
799    \sa ldb_ldif_read_string for an equivalent function that will read
800    from a string (char array).
801
802    \sa ldb_ldif_write_file for the writer equivalent to this function.
803
804 */
805 struct ldb_ldif *ldb_ldif_read_file(struct ldb_context *ldb, FILE *f);
806
807 /**
808    Read an LDIF message from a string
809
810    This function reads the next LDIF message from the contents of a char
811    array. If you want to get all of the LDIF messages, you will need
812    to repeatedly call this function, until it returns NULL.
813
814    \param ldb the ldb context (from ldb_init())
815    \param s pointer to the char array to read from
816
817    \sa ldb_ldif_read_file for an equivalent function that will read
818    from a file stream.
819
820    \sa ldb_ldif_write for a more general (arbitrary read function)
821    version of this function.
822 */
823 struct ldb_ldif *ldb_ldif_read_string(struct ldb_context *ldb, const char **s);
824
825 /**
826    Write an LDIF message to a file
827
828    \param ldb the ldb context (from ldb_init())
829    \param f the file stream to write to (typically from fdopen())
830    \param msg the message to write out
831
832    \return the total number of bytes written, or a negative error code
833
834    \sa ldb_ldif_read_file for the reader equivalent to this function.
835 */
836 int ldb_ldif_write_file(struct ldb_context *ldb, FILE *f, const struct ldb_ldif *msg);
837
838 /**
839    Base64 encode a buffer
840
841    \param mem_ctx the memory context that the result is allocated
842    from. 
843    \param buf pointer to the array that is to be encoded
844    \param len the number of elements in the array to be encoded
845
846    \return pointer to an array containing the encoded data
847
848    \note The caller is responsible for freeing the result
849 */
850 char *ldb_base64_encode(void *mem_ctx, const char *buf, int len);
851
852 /**
853    Base64 decode a buffer
854
855    This function decodes a base64 encoded string in place.
856
857    \param s the string to decode.
858
859    \return the length of the returned (decoded) string.
860
861    \note the string is null terminated, but the null terminator is not
862    included in the length.
863 */
864 int ldb_base64_decode(char *s);
865
866 int ldb_attrib_add_handlers(struct ldb_context *ldb, 
867                             const struct ldb_attrib_handler *handlers, 
868                             unsigned num_handlers);
869
870 /* The following definitions come from lib/ldb/common/ldb_dn.c  */
871
872 int ldb_dn_is_special(const struct ldb_dn *dn);
873 int ldb_dn_check_special(const struct ldb_dn *dn, const char *check);
874 char *ldb_dn_escape_value(void *mem_ctx, struct ldb_val value);
875 struct ldb_dn *ldb_dn_new(void *mem_ctx);
876 struct ldb_dn *ldb_dn_explode(void *mem_ctx, const char *dn);
877 struct ldb_dn *ldb_dn_explode_or_special(void *mem_ctx, const char *dn);
878 char *ldb_dn_linearize(void *mem_ctx, const struct ldb_dn *edn);
879 char *ldb_dn_linearize_casefold(struct ldb_context *ldb, const struct ldb_dn *edn);
880 int ldb_dn_compare_base(struct ldb_context *ldb, const struct ldb_dn *base, const struct ldb_dn *dn);
881 int ldb_dn_compare(struct ldb_context *ldb, const struct ldb_dn *edn0, const struct ldb_dn *edn1);
882 struct ldb_dn *ldb_dn_casefold(struct ldb_context *ldb, const struct ldb_dn *edn);
883 struct ldb_dn *ldb_dn_explode_casefold(struct ldb_context *ldb, const char *dn);
884 struct ldb_dn *ldb_dn_copy_partial(void *mem_ctx, const struct ldb_dn *dn, int num_el);
885 struct ldb_dn *ldb_dn_copy(void *mem_ctx, const struct ldb_dn *dn);
886 struct ldb_dn *ldb_dn_get_parent(void *mem_ctx, const struct ldb_dn *dn);
887 struct ldb_dn_component *ldb_dn_build_component(void *mem_ctx, const char *attr,
888                                                                const char *val);
889 struct ldb_dn *ldb_dn_build_child(void *mem_ctx, const char *attr,
890                                                  const char * value,
891                                                  const struct ldb_dn *base);
892 struct ldb_dn *ldb_dn_make_child(void *mem_ctx,
893                                  const struct ldb_dn_component *component,
894                                  const struct ldb_dn *base);
895 struct ldb_dn *ldb_dn_compose(void *mem_ctx, const struct ldb_dn *dn1, const struct ldb_dn *dn2);
896 struct ldb_dn *ldb_dn_string_compose(void *mem_ctx, const struct ldb_dn *base, const char *child_fmt, ...) PRINTF_ATTRIBUTE(3,4);
897 struct ldb_dn_component *ldb_dn_get_rdn(void *mem_ctx, const struct ldb_dn *dn);
898
899 /* useful functions for ldb_message structure manipulation */
900 int ldb_dn_cmp(struct ldb_context *ldb, const char *dn1, const char *dn2);
901
902 /**
903    Compare two attributes
904
905    This function compares to attribute names. Note that this is a
906    case-insensitive comparison.
907
908    \param attr1 the first attribute name to compare
909    \param attr2 the second attribute name to compare
910
911    \return 0 if the attribute names are the same, or only differ in
912    case; non-zero if there are any differences
913 */
914 int ldb_attr_cmp(const char *attr1, const char *attr2);
915 int ldb_attr_dn(const char *attr);
916 char *ldb_dn_escape_value(void *mem_ctx, struct ldb_val value);
917
918 /**
919    Create an empty message
920
921    \param mem_ctx the memory context to create in. You can pass NULL
922    to get the top level context, however the ldb context (from
923    ldb_init()) may be a better choice
924 */
925 struct ldb_message *ldb_msg_new(void *mem_ctx);
926
927 /**
928    Find an element within an message
929 */
930 struct ldb_message_element *ldb_msg_find_element(const struct ldb_message *msg, 
931                                                  const char *attr_name);
932
933 /**
934    Compare two ldb_val values
935
936    \param v1 first ldb_val structure to be tested
937    \param v2 second ldb_val structure to be tested
938
939    \return 1 for a match, 0 if there is any difference
940 */
941 int ldb_val_equal_exact(const struct ldb_val *v1, const struct ldb_val *v2);
942
943 /**
944    find a value within an ldb_message_element
945
946    \param el the element to search
947    \param val the value to search for
948
949    \note This search is case sensitive
950 */
951 struct ldb_val *ldb_msg_find_val(const struct ldb_message_element *el, 
952                                  struct ldb_val *val);
953
954 /**
955    add a new empty element to a ldb_message
956 */
957 int ldb_msg_add_empty(struct ldb_message *msg, const char *attr_name, int flags);
958
959 /**
960    add a element to a ldb_message
961 */
962 int ldb_msg_add(struct ldb_message *msg, 
963                 const struct ldb_message_element *el, 
964                 int flags);
965 int ldb_msg_add_value(struct ldb_message *msg, 
966                       const char *attr_name,
967                       const struct ldb_val *val);
968 int ldb_msg_add_string(struct ldb_message *msg, 
969                        const char *attr_name, const char *str);
970 int ldb_msg_add_fmt(struct ldb_message *msg, 
971                     const char *attr_name, const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
972
973 /**
974    compare two message elements - return 0 on match
975 */
976 int ldb_msg_element_compare(struct ldb_message_element *el1, 
977                             struct ldb_message_element *el2);
978
979 /**
980    Find elements in a message.
981
982    This function finds elements and converts to a specific type, with
983    a give default value if not found. Assumes that elements are
984    single valued.
985 */
986 const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg, const char *attr_name);
987 int ldb_msg_find_int(const struct ldb_message *msg, 
988                      const char *attr_name,
989                      int default_value);
990 unsigned int ldb_msg_find_uint(const struct ldb_message *msg, 
991                                const char *attr_name,
992                                unsigned int default_value);
993 int64_t ldb_msg_find_int64(const struct ldb_message *msg, 
994                            const char *attr_name,
995                            int64_t default_value);
996 uint64_t ldb_msg_find_uint64(const struct ldb_message *msg, 
997                              const char *attr_name,
998                              uint64_t default_value);
999 double ldb_msg_find_double(const struct ldb_message *msg, 
1000                            const char *attr_name,
1001                            double default_value);
1002 const char *ldb_msg_find_string(const struct ldb_message *msg, 
1003                                 const char *attr_name,
1004                                 const char *default_value);
1005
1006 void ldb_msg_sort_elements(struct ldb_message *msg);
1007
1008 struct ldb_message *ldb_msg_copy_shallow(void *mem_ctx, 
1009                                          const struct ldb_message *msg);
1010 struct ldb_message *ldb_msg_copy(void *mem_ctx, 
1011                                  const struct ldb_message *msg);
1012
1013 struct ldb_message *ldb_msg_canonicalize(struct ldb_context *ldb, 
1014                                          const struct ldb_message *msg);
1015
1016
1017 struct ldb_message *ldb_msg_diff(struct ldb_context *ldb, 
1018                                  struct ldb_message *msg1,
1019                                  struct ldb_message *msg2);
1020
1021 /**
1022    Integrity check an ldb_message
1023
1024    This function performs basic sanity / integrity checks on an
1025    ldb_message.
1026
1027    \param msg the message to check
1028
1029    \return LDB_SUCCESS if the message is OK, or a non-zero error code
1030    (one of LDB_ERR_INVALID_DN_SYNTAX, LDB_ERR_ENTRY_ALREADY_EXISTS or
1031    LDB_ERR_INVALID_ATTRIBUTE_SYNTAX) if there is a problem with a
1032    message.
1033 */
1034 int ldb_msg_sanity_check(const struct ldb_message *msg);
1035
1036 /**
1037    Duplicate an ldb_val structure
1038
1039    This function copies an ldb value structure. 
1040
1041    \param mem_ctx the memory context that the duplicated value will be
1042    allocated from
1043    \param v the ldb_val to be duplicated.
1044
1045    \return the duplicated ldb_val structure.
1046 */
1047 struct ldb_val ldb_val_dup(void *mem_ctx, const struct ldb_val *v);
1048
1049 /**
1050   this allows the user to set a debug function for error reporting
1051 */
1052 int ldb_set_debug(struct ldb_context *ldb,
1053                   void (*debug)(void *context, enum ldb_debug_level level, 
1054                                 const char *fmt, va_list ap),
1055                   void *context);
1056
1057 /**
1058    this sets up debug to print messages on stderr
1059 */
1060 int ldb_set_debug_stderr(struct ldb_context *ldb);
1061
1062 /* control backend specific opaque values */
1063 int ldb_set_opaque(struct ldb_context *ldb, const char *name, void *value);
1064 void *ldb_get_opaque(struct ldb_context *ldb, const char *name);
1065
1066 const struct ldb_attrib_handler *ldb_attrib_handler(struct ldb_context *ldb,
1067                                                     const char *attrib);
1068
1069
1070 const char **ldb_attr_list_copy(void *mem_ctx, const char * const *attrs);
1071 int ldb_attr_in_list(const char * const *attrs, const char *attr);
1072
1073
1074 void ldb_parse_tree_attr_replace(struct ldb_parse_tree *tree, 
1075                                  const char *attr, 
1076                                  const char *replace);
1077
1078 int ldb_msg_rename_attr(struct ldb_message *msg, const char *attr, const char *replace);
1079 int ldb_msg_copy_attr(struct ldb_message *msg, const char *attr, const char *replace);
1080 void ldb_msg_remove_attr(struct ldb_message *msg, const char *attr);
1081
1082 /**
1083    Convert a time structure to a string
1084
1085    This function converts a time_t structure to an LDAP formatted time
1086    string.
1087
1088    \param mem_ctx the memory context to allocate the return string in
1089    \param t the time structure to convert
1090
1091    \return the formatted string, or NULL if the time structure could
1092    not be converted
1093 */
1094 char *ldb_timestring(void *mem_ctx, time_t t);
1095
1096 /**
1097    Convert a string to a time structure
1098
1099    This function converts an LDAP formatted time string to a time_t
1100    structure.
1101
1102    \param s the string to convert
1103
1104    \return the time structure, or 0 if the string cannot be converted
1105 */
1106 time_t ldb_string_to_time(const char *s);
1107
1108 char *ldb_dn_canonical_string(void *mem_ctx, const struct ldb_dn *dn);
1109 char *ldb_dn_canonical_ex_string(void *mem_ctx, const struct ldb_dn *dn);
1110
1111
1112 void ldb_qsort (void *const pbase, size_t total_elems, size_t size, void *opaque, ldb_qsort_cmp_fn_t cmp);
1113 #endif