ldb: Mark _DEPRECATED_ ldb_msg_diff() and ldb_msg_canonicalize() functions
[Samba.git] / source4 / lib / ldb / include / ldb.h
blobb3d874e36f9d3228b73d5fc4808185a89de90bbb
1 /*
2 ldb database library
4 Copyright (C) Andrew Tridgell 2004
5 Copyright (C) Stefan Metzmacher 2004
6 Copyright (C) Simo Sorce 2005-2006
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
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.
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.
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/>.
27 * Name: ldb
29 * Component: ldb header
31 * Description: defines for base ldb API
33 * Author: Andrew Tridgell
34 * Author: Stefan Metzmacher
37 /**
38 \file ldb.h Samba's ldb database
40 This header file provides the main API for ldb.
43 #ifndef _LDB_H_
45 /*! \cond DOXYGEN_IGNORE */
46 #define _LDB_H_ 1
47 /*! \endcond */
49 #include <stdbool.h>
50 #include <talloc.h>
51 #include <tevent.h>
52 #include "ldb_errors.h"
55 major restrictions as compared to normal LDAP:
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
61 major restrictions as compared to tdb:
63 - no explicit locking calls, but we have transactions when using ldb_tdb
67 #ifndef ldb_val
68 /**
69 Result value
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.
76 \note the data is null (0x00) terminated, but the length does not
77 include the terminator.
79 struct ldb_val {
80 uint8_t *data; /*!< result data */
81 size_t length; /*!< length of data */
83 #endif
85 /*! \cond DOXYGEN_IGNORE */
86 #ifndef PRINTF_ATTRIBUTE
87 #define PRINTF_ATTRIBUTE(a,b)
88 #endif
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 */
99 /* opaque ldb_dn structures, see ldb_dn.c for internals */
100 struct ldb_dn_component;
101 struct ldb_dn;
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.
110 #define LDB_FLAG_MOD_MASK 0x3
113 Flag value used in ldap_modify() to indicate that attributes are
114 being added.
116 \sa LDB_FLAG_MOD_MASK
118 #define LDB_FLAG_MOD_ADD 1
121 Flag value used in ldap_modify() to indicate that attributes are
122 being replaced.
124 \sa LDB_FLAG_MOD_MASK
126 #define LDB_FLAG_MOD_REPLACE 2
129 Flag value used in ldap_modify() to indicate that attributes are
130 being deleted.
132 \sa LDB_FLAG_MOD_MASK
134 #define LDB_FLAG_MOD_DELETE 3
137 OID for logic AND comaprison.
139 This is the well known object ID for a logical AND comparitor.
141 #define LDB_OID_COMPARATOR_AND "1.2.840.113556.1.4.803"
144 OID for logic OR comparison.
146 This is the well known object ID for a logical OR comparitor.
148 #define LDB_OID_COMPARATOR_OR "1.2.840.113556.1.4.804"
151 results are given back as arrays of ldb_message_element
153 struct ldb_message_element {
154 unsigned int flags;
155 const char *name;
156 unsigned int num_values;
157 struct ldb_val *values;
162 a ldb_message represents all or part of a record. It can contain an arbitrary
163 number of elements.
165 struct ldb_message {
166 struct ldb_dn *dn;
167 unsigned int num_elements;
168 struct ldb_message_element *elements;
171 enum ldb_changetype {
172 LDB_CHANGETYPE_NONE=0,
173 LDB_CHANGETYPE_ADD,
174 LDB_CHANGETYPE_DELETE,
175 LDB_CHANGETYPE_MODIFY
179 LDIF record
181 This structure contains a LDIF record, as returned from ldif_read()
182 and equivalent functions.
184 struct ldb_ldif {
185 enum ldb_changetype changetype; /*!< The type of change */
186 struct ldb_message *msg; /*!< The changes */
189 enum ldb_scope {LDB_SCOPE_DEFAULT=-1,
190 LDB_SCOPE_BASE=0,
191 LDB_SCOPE_ONELEVEL=1,
192 LDB_SCOPE_SUBTREE=2};
194 struct ldb_context;
195 struct tevent_context;
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};
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
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;
213 The user can optionally supply a custom utf8 functions,
214 to handle comparisons and casefolding.
216 struct ldb_utf8_fns {
217 void *context;
218 char *(*casefold)(void *context, TALLOC_CTX *mem_ctx, const char *s, size_t n);
222 Flag value for database connection mode.
224 If LDB_FLG_RDONLY is used in ldb_connect, then the database will be
225 opened read-only, if possible.
227 #define LDB_FLG_RDONLY 1
230 Flag value for database connection mode.
232 If LDB_FLG_NOSYNC is used in ldb_connect, then the database will be
233 opened without synchronous operations, if possible.
235 #define LDB_FLG_NOSYNC 2
238 Flag value to specify autoreconnect mode.
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).
244 #define LDB_FLG_RECONNECT 4
247 Flag to tell backends not to use mmap
249 #define LDB_FLG_NOMMAP 8
252 Flag to tell ldif handlers not to force encoding of binary
253 structures in base64
255 #define LDB_FLG_SHOW_BINARY 16
258 Flags to enable ldb tracing
260 #define LDB_FLG_ENABLE_TRACING 32
263 structures for ldb_parse_tree handling code
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 };
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;
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);
310 Encode a binary blob
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.
316 \param mem_ctx the memory context to allocate the return string in.
317 \param val the (potentially) binary data to be encoded
319 \return the encoded data as a null terminated string
321 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
323 char *ldb_binary_encode(TALLOC_CTX *mem_ctx, struct ldb_val val);
326 Encode a string
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.
332 \param mem_ctx the memory context to allocate the return string in.
333 \param string the string to be encoded
335 \return the encoded data as a null terminated string
337 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
339 char *ldb_binary_encode_string(TALLOC_CTX *mem_ctx, const char *string);
342 functions for controlling attribute handling
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 *);
348 attribute handler structure
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
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;
365 struct ldb_schema_attribute {
366 const char *name;
367 unsigned flags;
368 const struct ldb_schema_syntax *syntax;
371 const struct ldb_schema_attribute *ldb_schema_attribute_by_name(struct ldb_context *ldb,
372 const char *name);
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;
381 const struct ldb_dn_extended_syntax *ldb_dn_extended_syntax_by_name(struct ldb_context *ldb,
382 const char *name);
385 The attribute is not returned by default
387 #define LDB_ATTR_FLAG_HIDDEN (1<<0)
389 /* the attribute handler name should be freed when released */
390 #define LDB_ATTR_FLAG_ALLOCATED (1<<1)
393 The attribute is supplied by the application and should not be removed
395 #define LDB_ATTR_FLAG_FIXED (1<<2)
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
401 #define LDB_ATTR_FLAG_UNIQUE_INDEX (1<<3)
404 when this is set, attempts to create two attribute values for this attribute on a single DN will return LDB_ERR_CONSTRAINT_VIOLATION
406 #define LDB_ATTR_FLAG_SINGLE_VALUE (1<<4)
409 LDAP attribute syntax for a DN
411 This is the well-known LDAP attribute syntax for a DN.
413 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
415 #define LDB_SYNTAX_DN "1.3.6.1.4.1.1466.115.121.1.12"
418 LDAP attribute syntax for a Directory String
420 This is the well-known LDAP attribute syntax for a Directory String.
422 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
424 #define LDB_SYNTAX_DIRECTORY_STRING "1.3.6.1.4.1.1466.115.121.1.15"
427 LDAP attribute syntax for an integer
429 This is the well-known LDAP attribute syntax for an integer.
431 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
433 #define LDB_SYNTAX_INTEGER "1.3.6.1.4.1.1466.115.121.1.27"
436 LDAP attribute syntax for a boolean
438 This is the well-known LDAP attribute syntax for a boolean.
440 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
442 #define LDB_SYNTAX_BOOLEAN "1.3.6.1.4.1.1466.115.121.1.7"
445 LDAP attribute syntax for an octet string
447 This is the well-known LDAP attribute syntax for an octet string.
449 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
451 #define LDB_SYNTAX_OCTET_STRING "1.3.6.1.4.1.1466.115.121.1.40"
454 LDAP attribute syntax for UTC time.
456 This is the well-known LDAP attribute syntax for a UTC time.
458 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
460 #define LDB_SYNTAX_UTC_TIME "1.3.6.1.4.1.1466.115.121.1.53"
462 #define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS"
464 /* sorting helpers */
465 typedef int (*ldb_qsort_cmp_fn_t) (void *v1, void *v2, void *opaque);
467 /* Individual controls */
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.
475 #define LDB_CONTROL_BYPASSOPERATIONAL_OID "1.3.6.1.4.1.7165.4.3.13"
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.
483 #define LDB_CONTROL_RECALCULATE_SD_OID "1.3.6.1.4.1.7165.4.3.5"
486 REVEAL_INTERNALS is used to reveal internal attributes and DN
487 components which are not normally shown to the user
489 #define LDB_CONTROL_REVEAL_INTERNALS "1.3.6.1.4.1.7165.4.3.6"
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
496 #define LDB_CONTROL_AS_SYSTEM_OID "1.3.6.1.4.1.7165.4.3.7"
498 /* AD controls */
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.
506 \sa <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
508 #define LDB_CONTROL_PAGED_RESULTS_OID "1.2.840.113556.1.4.319"
511 OID for specifying the returned elements of the ntSecurityDescriptor
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>
515 #define LDB_CONTROL_SD_FLAGS_OID "1.2.840.113556.1.4.801"
518 OID for specifying an advanced scope for the search (one partition)
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>
522 #define LDB_CONTROL_DOMAIN_SCOPE_OID "1.2.840.113556.1.4.1339"
525 OID for specifying an advanced scope for a search
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>
529 #define LDB_CONTROL_SEARCH_OPTIONS_OID "1.2.840.113556.1.4.1340"
532 OID for notification
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>
536 #define LDB_CONTROL_NOTIFICATION_OID "1.2.840.113556.1.4.528"
539 OID for performing subtree deletes
541 \sa <a href="http://msdn.microsoft.com/en-us/library/aa366991(v=VS.85).aspx">Microsoft documentation of this OID</a>
543 #define LDB_CONTROL_TREE_DELETE_OID "1.2.840.113556.1.4.805"
546 OID for getting deleted objects
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>
550 #define LDB_CONTROL_SHOW_DELETED_OID "1.2.840.113556.1.4.417"
553 OID for getting recycled objects
555 \sa <a href="http://msdn.microsoft.com/en-us/library/dd304621(PROT.13).aspx">Microsoft documentation of this OID</a>
557 #define LDB_CONTROL_SHOW_RECYCLED_OID "1.2.840.113556.1.4.2064"
560 OID for getting deactivated linked attributes
562 \sa <a href="http://msdn.microsoft.com/en-us/library/dd302781(PROT.13).aspx">Microsoft documentation of this OID</a>
564 #define LDB_CONTROL_SHOW_DEACTIVATED_LINK_OID "1.2.840.113556.1.4.2065"
567 OID for extended DN
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>
571 #define LDB_CONTROL_EXTENDED_DN_OID "1.2.840.113556.1.4.529"
574 OID for LDAP server sort result extension.
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.
583 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
585 #define LDB_CONTROL_SERVER_SORT_OID "1.2.840.113556.1.4.473"
588 OID for LDAP server sort result response extension.
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.
594 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
596 #define LDB_CONTROL_SORT_RESP_OID "1.2.840.113556.1.4.474"
599 OID for LDAP Attribute Scoped Query extension.
601 This control is included in SearchRequest or SearchResponse
602 messages as part of the controls field of the LDAPMessage.
604 #define LDB_CONTROL_ASQ_OID "1.2.840.113556.1.4.1504"
607 OID for LDAP Directory Sync extension.
609 This control is included in SearchRequest or SearchResponse
610 messages as part of the controls field of the LDAPMessage.
612 #define LDB_CONTROL_DIRSYNC_OID "1.2.840.113556.1.4.841"
616 OID for LDAP Virtual List View Request extension.
618 This control is included in SearchRequest messages
619 as part of the controls field of the LDAPMessage.
621 #define LDB_CONTROL_VLV_REQ_OID "2.16.840.1.113730.3.4.9"
624 OID for LDAP Virtual List View Response extension.
626 This control is included in SearchResponse messages
627 as part of the controls field of the LDAPMessage.
629 #define LDB_CONTROL_VLV_RESP_OID "2.16.840.1.113730.3.4.10"
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
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>
637 #define LDB_CONTROL_PERMISSIVE_MODIFY_OID "1.2.840.113556.1.4.1413"
639 /**
640 OID to allow the server to be more 'fast and loose' with the data being added.
642 \sa
645 #define LDB_CONTROL_SERVER_LAZY_COMMIT "1.2.840.113556.1.4.619"
648 OID for LDAP Extended Operation FAST_BIND
650 This Extended operations is used to perform a fast bind.
652 #define LDB_EXTENDED_FAST_BIND_OID "1.2.840.113556.1.4.1781"
655 OID for LDAP Extended Operation START_TLS.
657 This Extended operation is used to start a new TLS channel on top of a clear
658 text channel.
660 #define LDB_EXTENDED_START_TLS_OID "1.3.6.1.4.1.1466.20037"
663 OID for LDAP Extended Operation DYNAMIC_REFRESH.
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.
670 #define LDB_EXTENDED_DYNAMIC_OID "1.3.6.1.4.1.1466.101.119.1"
672 /* Other standardised controls */
675 OID for the allowing client to request temporary relaxed
676 enforcement of constraints of the x.500 model.
678 \sa <a href="http://opends.dev.java.net/public/standards/draft-zeilenga-ldap-managedit.txt">draft managedit</a>.
680 #define LDB_CONTROL_RELAX_OID "1.3.6.1.4.1.4203.666.5.12"
683 OID for LDAP Extended Operation PASSWORD_CHANGE.
685 This Extended operation is used to allow user password changes by the user
686 itself.
688 #define LDB_EXTENDED_PASSWORD_CHANGE_OID "1.3.6.1.4.1.4203.1.11.1"
691 struct ldb_sd_flags_control {
693 * request the owner 0x00000001
694 * request the group 0x00000002
695 * request the DACL 0x00000004
696 * request the SACL 0x00000008
698 unsigned secinfo_flags;
702 * DOMAIN_SCOPE 0x00000001
703 * this limits the search to one partition,
704 * and no referrals will be returned.
705 * (Note this doesn't limit the entries by there
706 * objectSid belonging to a domain! Builtin and Foreign Sids
707 * are still returned)
709 * PHANTOM_ROOT 0x00000002
710 * this search on the whole tree on a domain controller
711 * over multiple partitions without referrals.
712 * (This is the default behavior on the Global Catalog Port)
715 #define LDB_SEARCH_OPTION_DOMAIN_SCOPE 0x00000001
716 #define LDB_SEARCH_OPTION_PHANTOM_ROOT 0x00000002
718 struct ldb_search_options_control {
719 unsigned search_options;
722 struct ldb_paged_control {
723 int size;
724 int cookie_len;
725 char *cookie;
728 struct ldb_extended_dn_control {
729 int type;
732 struct ldb_server_sort_control {
733 const char *attributeName;
734 const char *orderingRule;
735 int reverse;
738 struct ldb_sort_resp_control {
739 int result;
740 char *attr_desc;
743 struct ldb_asq_control {
744 int request;
745 char *source_attribute;
746 int src_attr_len;
747 int result;
750 struct ldb_dirsync_control {
751 int flags;
752 int max_attributes;
753 int cookie_len;
754 char *cookie;
757 struct ldb_vlv_req_control {
758 int beforeCount;
759 int afterCount;
760 int type;
761 union {
762 struct {
763 int offset;
764 int contentCount;
765 } byOffset;
766 struct {
767 int value_len;
768 char *value;
769 } gtOrEq;
770 } match;
771 int ctxid_len;
772 char *contextId;
775 struct ldb_vlv_resp_control {
776 int targetPosition;
777 int contentCount;
778 int vlv_result;
779 int ctxid_len;
780 char *contextId;
783 struct ldb_control {
784 const char *oid;
785 int critical;
786 void *data;
789 enum ldb_request_type {
790 LDB_SEARCH,
791 LDB_ADD,
792 LDB_MODIFY,
793 LDB_DELETE,
794 LDB_RENAME,
795 LDB_EXTENDED,
796 LDB_REQ_REGISTER_CONTROL,
797 LDB_REQ_REGISTER_PARTITION
800 enum ldb_reply_type {
801 LDB_REPLY_ENTRY,
802 LDB_REPLY_REFERRAL,
803 LDB_REPLY_DONE
806 enum ldb_wait_type {
807 LDB_WAIT_ALL,
808 LDB_WAIT_NONE
811 enum ldb_state {
812 LDB_ASYNC_INIT,
813 LDB_ASYNC_PENDING,
814 LDB_ASYNC_DONE
817 struct ldb_extended {
818 const char *oid;
819 void *data; /* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
822 #define LDB_EXTENDED_SEQUENCE_NUMBER "1.3.6.1.4.1.7165.4.4.3"
824 enum ldb_sequence_type {
825 LDB_SEQ_HIGHEST_SEQ,
826 LDB_SEQ_HIGHEST_TIMESTAMP,
827 LDB_SEQ_NEXT
830 #define LDB_SEQ_GLOBAL_SEQUENCE 0x01
831 #define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02
833 struct ldb_seqnum_request {
834 enum ldb_sequence_type type;
837 struct ldb_seqnum_result {
838 uint64_t seq_num;
839 uint32_t flags;
842 struct ldb_result {
843 unsigned int count;
844 struct ldb_message **msgs;
845 struct ldb_extended *extended;
846 struct ldb_control **controls;
847 char **refs;
850 struct ldb_reply {
851 int error;
852 enum ldb_reply_type type;
853 struct ldb_message *message;
854 struct ldb_extended *response;
855 struct ldb_control **controls;
856 char *referral;
859 struct ldb_request;
860 struct ldb_handle;
862 struct ldb_search {
863 struct ldb_dn *base;
864 enum ldb_scope scope;
865 struct ldb_parse_tree *tree;
866 const char * const *attrs;
867 struct ldb_result *res;
870 struct ldb_add {
871 const struct ldb_message *message;
874 struct ldb_modify {
875 const struct ldb_message *message;
878 struct ldb_delete {
879 struct ldb_dn *dn;
882 struct ldb_rename {
883 struct ldb_dn *olddn;
884 struct ldb_dn *newdn;
887 struct ldb_register_control {
888 const char *oid;
891 struct ldb_register_partition {
892 struct ldb_dn *dn;
895 typedef int (*ldb_request_callback_t)(struct ldb_request *, struct ldb_reply *);
897 struct ldb_request {
899 enum ldb_request_type operation;
901 union {
902 struct ldb_search search;
903 struct ldb_add add;
904 struct ldb_modify mod;
905 struct ldb_delete del;
906 struct ldb_rename rename;
907 struct ldb_extended extended;
908 struct ldb_register_control reg_control;
909 struct ldb_register_partition reg_partition;
910 } op;
912 struct ldb_control **controls;
914 void *context;
915 ldb_request_callback_t callback;
917 int timeout;
918 time_t starttime;
919 struct ldb_handle *handle;
922 int ldb_request(struct ldb_context *ldb, struct ldb_request *request);
923 int ldb_request_done(struct ldb_request *req, int status);
924 bool ldb_request_is_done(struct ldb_request *req);
926 int ldb_modules_wait(struct ldb_handle *handle);
927 int ldb_wait(struct ldb_handle *handle, enum ldb_wait_type type);
929 int ldb_set_timeout(struct ldb_context *ldb, struct ldb_request *req, int timeout);
930 int ldb_set_timeout_from_prev_req(struct ldb_context *ldb, struct ldb_request *oldreq, struct ldb_request *newreq);
931 void ldb_set_create_perms(struct ldb_context *ldb, unsigned int perms);
932 void ldb_set_modules_dir(struct ldb_context *ldb, const char *path);
933 struct tevent_context;
934 void ldb_set_event_context(struct ldb_context *ldb, struct tevent_context *ev);
935 struct tevent_context * ldb_get_event_context(struct ldb_context *ldb);
938 Initialise ldbs' global information
940 This is required before any other LDB call
942 \return 0 if initialisation succeeded, -1 otherwise
944 int ldb_global_init(void);
947 Initialise an ldb context
949 This is required before any other LDB call.
951 \param mem_ctx pointer to a talloc memory context. Pass NULL if there is
952 no suitable context available.
954 \return pointer to ldb_context that should be free'd (using talloc_free())
955 at the end of the program.
957 struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx);
960 Connect to a database.
962 This is typically called soon after ldb_init(), and is required prior to
963 any search or database modification operations.
965 The URL can be one of the following forms:
966 - tdb://path
967 - ldapi://path
968 - ldap://host
969 - sqlite://path
971 \param ldb the context associated with the database (from ldb_init())
972 \param url the URL of the database to connect to, as noted above
973 \param flags a combination of LDB_FLG_* to modify the connection behaviour
974 \param options backend specific options - passed uninterpreted to the backend
976 \return result code (LDB_SUCCESS on success, or a failure code)
978 \note It is an error to connect to a database that does not exist in readonly mode
979 (that is, with LDB_FLG_RDONLY). However in read-write mode, the database will be
980 created if it does not exist.
983 typedef void (*ldb_async_timeout_fn) (void *);
984 typedef bool (*ldb_async_callback_fn) (void *);
985 typedef int (*ldb_async_ctx_add_op_fn)(void *, time_t, void *, ldb_async_timeout_fn, ldb_async_callback_fn);
986 typedef int (*ldb_async_ctx_wait_op_fn)(void *);
988 void ldb_async_ctx_set_private_data(struct ldb_context *ldb,
989 void *private_data);
990 void ldb_async_ctx_set_add_op(struct ldb_context *ldb,
991 ldb_async_ctx_add_op_fn add_op);
992 void ldb_async_ctx_set_wait_op(struct ldb_context *ldb,
993 ldb_async_ctx_wait_op_fn wait_op);
995 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
998 return an automatic basedn from the rootDomainNamingContext of the rootDSE
999 This value have been set in an opaque pointer at connection time
1001 struct ldb_dn *ldb_get_root_basedn(struct ldb_context *ldb);
1004 return an automatic basedn from the configurationNamingContext of the rootDSE
1005 This value have been set in an opaque pointer at connection time
1007 struct ldb_dn *ldb_get_config_basedn(struct ldb_context *ldb);
1010 return an automatic basedn from the schemaNamingContext of the rootDSE
1011 This value have been set in an opaque pointer at connection time
1013 struct ldb_dn *ldb_get_schema_basedn(struct ldb_context *ldb);
1016 return an automatic baseDN from the defaultNamingContext of the rootDSE
1017 This value have been set in an opaque pointer at connection time
1019 struct ldb_dn *ldb_get_default_basedn(struct ldb_context *ldb);
1022 The default async search callback function
1024 \param req the request we are callback of
1025 \param ares a single reply from the async core
1027 \return result code (LDB_SUCCESS on success, or a failure code)
1029 \note this function expects req->context to always be an struct ldb_result pointer
1030 AND a talloc context, this function will steal on the context each message
1031 from the ares reply passed on by the async core so that in the end all the
1032 messages will be in the context (ldb_result) memory tree.
1033 Freeing the passed context (ldb_result tree) will free all the resources
1034 (the request need to be freed separately and the result doe not depend on the
1035 request that can be freed as sson as the search request is finished)
1038 int ldb_search_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1041 The default async extended operation callback function
1043 \param req the request we are callback of
1044 \param ares a single reply from the async core
1046 \return result code (LDB_SUCCESS on success, or a failure code)
1048 int ldb_op_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1050 int ldb_modify_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1053 Helper function to build a search request
1055 \param ret_req the request structure is returned here (talloced on mem_ctx)
1056 \param ldb the context associated with the database (from ldb_init())
1057 \param mem_ctx a talloc memory context (used as parent of ret_req)
1058 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1059 \param scope the search scope for the query
1060 \param expression the search expression to use for this query
1061 \param attrs the search attributes for the query (pass NULL if none required)
1062 \param controls an array of controls
1063 \param context the callback function context
1064 \param the callback function to handle the async replies
1065 \param the parent request if any
1067 \return result code (LDB_SUCCESS on success, or a failure code)
1070 int ldb_build_search_req(struct ldb_request **ret_req,
1071 struct ldb_context *ldb,
1072 TALLOC_CTX *mem_ctx,
1073 struct ldb_dn *base,
1074 enum ldb_scope scope,
1075 const char *expression,
1076 const char * const *attrs,
1077 struct ldb_control **controls,
1078 void *context,
1079 ldb_request_callback_t callback,
1080 struct ldb_request *parent);
1082 int ldb_build_search_req_ex(struct ldb_request **ret_req,
1083 struct ldb_context *ldb,
1084 TALLOC_CTX *mem_ctx,
1085 struct ldb_dn *base,
1086 enum ldb_scope scope,
1087 struct ldb_parse_tree *tree,
1088 const char * const *attrs,
1089 struct ldb_control **controls,
1090 void *context,
1091 ldb_request_callback_t callback,
1092 struct ldb_request *parent);
1095 Helper function to build an add request
1097 \param ret_req the request structure is returned here (talloced on mem_ctx)
1098 \param ldb the context associated with the database (from ldb_init())
1099 \param mem_ctx a talloc memory context (used as parent of ret_req)
1100 \param message contains the entry to be added
1101 \param controls an array of controls
1102 \param context the callback function context
1103 \param the callback function to handle the async replies
1104 \param the parent request if any
1106 \return result code (LDB_SUCCESS on success, or a failure code)
1109 int ldb_build_add_req(struct ldb_request **ret_req,
1110 struct ldb_context *ldb,
1111 TALLOC_CTX *mem_ctx,
1112 const struct ldb_message *message,
1113 struct ldb_control **controls,
1114 void *context,
1115 ldb_request_callback_t callback,
1116 struct ldb_request *parent);
1119 Helper function to build a modify request
1121 \param ret_req the request structure is returned here (talloced on mem_ctx)
1122 \param ldb the context associated with the database (from ldb_init())
1123 \param mem_ctx a talloc memory context (used as parent of ret_req)
1124 \param message contains the entry to be modified
1125 \param controls an array of controls
1126 \param context the callback function context
1127 \param the callback function to handle the async replies
1128 \param the parent request if any
1130 \return result code (LDB_SUCCESS on success, or a failure code)
1133 int ldb_build_mod_req(struct ldb_request **ret_req,
1134 struct ldb_context *ldb,
1135 TALLOC_CTX *mem_ctx,
1136 const struct ldb_message *message,
1137 struct ldb_control **controls,
1138 void *context,
1139 ldb_request_callback_t callback,
1140 struct ldb_request *parent);
1143 Helper function to build a delete request
1145 \param ret_req the request structure is returned here (talloced on mem_ctx)
1146 \param ldb the context associated with the database (from ldb_init())
1147 \param mem_ctx a talloc memory context (used as parent of ret_req)
1148 \param dn the DN to be deleted
1149 \param controls an array of controls
1150 \param context the callback function context
1151 \param the callback function to handle the async replies
1152 \param the parent request if any
1154 \return result code (LDB_SUCCESS on success, or a failure code)
1157 int ldb_build_del_req(struct ldb_request **ret_req,
1158 struct ldb_context *ldb,
1159 TALLOC_CTX *mem_ctx,
1160 struct ldb_dn *dn,
1161 struct ldb_control **controls,
1162 void *context,
1163 ldb_request_callback_t callback,
1164 struct ldb_request *parent);
1167 Helper function to build a rename request
1169 \param ret_req the request structure is returned here (talloced on mem_ctx)
1170 \param ldb the context associated with the database (from ldb_init())
1171 \param mem_ctx a talloc memory context (used as parent of ret_req)
1172 \param olddn the old DN
1173 \param newdn the new DN
1174 \param controls an array of controls
1175 \param context the callback function context
1176 \param the callback function to handle the async replies
1177 \param the parent request if any
1179 \return result code (LDB_SUCCESS on success, or a failure code)
1182 int ldb_build_rename_req(struct ldb_request **ret_req,
1183 struct ldb_context *ldb,
1184 TALLOC_CTX *mem_ctx,
1185 struct ldb_dn *olddn,
1186 struct ldb_dn *newdn,
1187 struct ldb_control **controls,
1188 void *context,
1189 ldb_request_callback_t callback,
1190 struct ldb_request *parent);
1193 Add a ldb_control to a ldb_request
1195 \param req the request struct where to add the control
1196 \param oid the object identifier of the control as string
1197 \param critical whether the control should be critical or not
1198 \param data a talloc pointer to the control specific data
1200 \return result code (LDB_SUCCESS on success, or a failure code)
1202 int ldb_request_add_control(struct ldb_request *req, const char *oid, bool critical, void *data);
1205 check if a control with the specified "oid" exist and return it
1206 \param req the request struct where to add the control
1207 \param oid the object identifier of the control as string
1209 \return the control, NULL if not found
1211 struct ldb_control *ldb_request_get_control(struct ldb_request *req, const char *oid);
1214 check if a control with the specified "oid" exist and return it
1215 \param rep the reply struct where to add the control
1216 \param oid the object identifier of the control as string
1218 \return the control, NULL if not found
1220 struct ldb_control *ldb_reply_get_control(struct ldb_reply *rep, const char *oid);
1223 Search the database
1225 This function searches the database, and returns
1226 records that match an LDAP-like search expression
1228 \param ldb the context associated with the database (from ldb_init())
1229 \param mem_ctx the memory context to use for the request and the results
1230 \param result the return result
1231 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1232 \param scope the search scope for the query
1233 \param attrs the search attributes for the query (pass NULL if none required)
1234 \param exp_fmt the search expression to use for this query (printf like)
1236 \return result code (LDB_SUCCESS on success, or a failure code)
1238 \note use talloc_free() to free the ldb_result returned
1240 int ldb_search(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1241 struct ldb_result **result, struct ldb_dn *base,
1242 enum ldb_scope scope, const char * const *attrs,
1243 const char *exp_fmt, ...) PRINTF_ATTRIBUTE(7,8);
1246 Add a record to the database.
1248 This function adds a record to the database. This function will fail
1249 if a record with the specified class and key already exists in the
1250 database.
1252 \param ldb the context associated with the database (from
1253 ldb_init())
1254 \param message the message containing the record to add.
1256 \return result code (LDB_SUCCESS if the record was added, otherwise
1257 a failure code)
1259 int ldb_add(struct ldb_context *ldb,
1260 const struct ldb_message *message);
1263 Modify the specified attributes of a record
1265 This function modifies a record that is in the database.
1267 \param ldb the context associated with the database (from
1268 ldb_init())
1269 \param message the message containing the changes required.
1271 \return result code (LDB_SUCCESS if the record was modified as
1272 requested, otherwise a failure code)
1274 int ldb_modify(struct ldb_context *ldb,
1275 const struct ldb_message *message);
1278 Rename a record in the database
1280 This function renames a record in the database.
1282 \param ldb the context associated with the database (from
1283 ldb_init())
1284 \param olddn the DN for the record to be renamed.
1285 \param newdn the new DN
1287 \return result code (LDB_SUCCESS if the record was renamed as
1288 requested, otherwise a failure code)
1290 int ldb_rename(struct ldb_context *ldb, struct ldb_dn *olddn, struct ldb_dn *newdn);
1293 Delete a record from the database
1295 This function deletes a record from the database.
1297 \param ldb the context associated with the database (from
1298 ldb_init())
1299 \param dn the DN for the record to be deleted.
1301 \return result code (LDB_SUCCESS if the record was deleted,
1302 otherwise a failure code)
1304 int ldb_delete(struct ldb_context *ldb, struct ldb_dn *dn);
1307 The default async extended operation callback function
1309 \param req the request we are callback of
1310 \param ares a single reply from the async core
1312 \return result code (LDB_SUCCESS on success, or a failure code)
1314 \note this function expects req->context to always be an struct ldb_result pointer
1315 AND a talloc context, this function will steal on the context each message
1316 from the ares reply passed on by the async core so that in the end all the
1317 messages will be in the context (ldb_result) memory tree.
1318 Freeing the passed context (ldb_result tree) will free all the resources
1319 (the request need to be freed separately and the result doe not depend on the
1320 request that can be freed as sson as the search request is finished)
1323 int ldb_extended_default_callback(struct ldb_request *req, struct ldb_reply *ares);
1327 Helper function to build a extended request
1329 \param ret_req the request structure is returned here (talloced on mem_ctx)
1330 \param ldb the context associated with the database (from ldb_init())
1331 \param mem_ctx a talloc memory context (used as parent of ret_req)
1332 \param oid the OID of the extended operation.
1333 \param data a void pointer a the extended operation specific parameters,
1334 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1335 \param controls an array of controls
1336 \param context the callback function context
1337 \param the callback function to handle the async replies
1338 \param the parent request if any
1340 \return result code (LDB_SUCCESS on success, or a failure code)
1342 int ldb_build_extended_req(struct ldb_request **ret_req,
1343 struct ldb_context *ldb,
1344 TALLOC_CTX *mem_ctx,
1345 const char *oid,
1346 void *data,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1347 struct ldb_control **controls,
1348 void *context,
1349 ldb_request_callback_t callback,
1350 struct ldb_request *parent);
1353 call an extended operation
1355 This function deletes a record from the database.
1357 \param ldb the context associated with the database (from ldb_init())
1358 \param oid the OID of the extended operation.
1359 \param data a void pointer a the extended operation specific parameters,
1360 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1361 \param res the result of the extended operation
1363 \return result code (LDB_SUCCESS if the extended operation returned fine,
1364 otherwise a failure code)
1366 int ldb_extended(struct ldb_context *ldb,
1367 const char *oid,
1368 void *data,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1369 struct ldb_result **res);
1372 Obtain current/next database sequence number
1374 int ldb_sequence_number(struct ldb_context *ldb, enum ldb_sequence_type type, uint64_t *seq_num);
1377 start a transaction
1379 int ldb_transaction_start(struct ldb_context *ldb);
1382 first phase of two phase commit
1384 int ldb_transaction_prepare_commit(struct ldb_context *ldb);
1387 commit a transaction
1389 int ldb_transaction_commit(struct ldb_context *ldb);
1392 cancel a transaction
1394 int ldb_transaction_cancel(struct ldb_context *ldb);
1397 cancel a transaction with no error if no transaction is pending
1398 used when we fork() to clear any parent transactions
1400 int ldb_transaction_cancel_noerr(struct ldb_context *ldb);
1404 return extended error information from the last call
1406 const char *ldb_errstring(struct ldb_context *ldb);
1409 return a string explaining what a ldb error constant meancs
1411 const char *ldb_strerror(int ldb_err);
1414 setup the default utf8 functions
1415 FIXME: these functions do not yet handle utf8
1417 void ldb_set_utf8_default(struct ldb_context *ldb);
1420 Casefold a string
1422 \param ldb the ldb context
1423 \param mem_ctx the memory context to allocate the result string
1424 memory from.
1425 \param s the string that is to be folded
1426 \return a copy of the string, converted to upper case
1428 \note The default function is not yet UTF8 aware. Provide your own
1429 set of functions through ldb_set_utf8_fns()
1431 char *ldb_casefold(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *s, size_t n);
1434 Check the attribute name is valid according to rfc2251
1435 \param s the string to check
1437 \return 1 if the name is ok
1439 int ldb_valid_attr_name(const char *s);
1442 ldif manipulation functions
1446 Write an LDIF message
1448 This function writes an LDIF message using a caller supplied write
1449 function.
1451 \param ldb the ldb context (from ldb_init())
1452 \param fprintf_fn a function pointer for the write function. This must take
1453 a private data pointer, followed by a format string, and then a variable argument
1454 list.
1455 \param private_data pointer that will be provided back to the write
1456 function. This is useful for maintaining state or context.
1457 \param ldif the message to write out
1459 \return the total number of bytes written, or an error code as returned
1460 from the write function.
1462 \sa ldb_ldif_write_file for a more convenient way to write to a
1463 file stream.
1465 \sa ldb_ldif_read for the reader equivalent to this function.
1467 int ldb_ldif_write(struct ldb_context *ldb,
1468 int (*fprintf_fn)(void *, const char *, ...) PRINTF_ATTRIBUTE(2,3),
1469 void *private_data,
1470 const struct ldb_ldif *ldif);
1473 Clean up an LDIF message
1475 This function cleans up a LDIF message read using ldb_ldif_read()
1476 or related functions (such as ldb_ldif_read_string() and
1477 ldb_ldif_read_file().
1479 \param ldb the ldb context (from ldb_init())
1480 \param msg the message to clean up and free
1483 void ldb_ldif_read_free(struct ldb_context *ldb, struct ldb_ldif *msg);
1486 Read an LDIF message
1488 This function creates an LDIF message using a caller supplied read
1489 function.
1491 \param ldb the ldb context (from ldb_init())
1492 \param fgetc_fn a function pointer for the read function. This must
1493 take a private data pointer, and must return a pointer to an
1494 integer corresponding to the next byte read (or EOF if there is no
1495 more data to be read).
1496 \param private_data pointer that will be provided back to the read
1497 function. This is udeful for maintaining state or context.
1499 \return the LDIF message that has been read in
1501 \note You must free the LDIF message when no longer required, using
1502 ldb_ldif_read_free().
1504 \sa ldb_ldif_read_file for a more convenient way to read from a
1505 file stream.
1507 \sa ldb_ldif_read_string for a more convenient way to read from a
1508 string (char array).
1510 \sa ldb_ldif_write for the writer equivalent to this function.
1512 struct ldb_ldif *ldb_ldif_read(struct ldb_context *ldb,
1513 int (*fgetc_fn)(void *), void *private_data);
1516 Read an LDIF message from a file
1518 This function reads the next LDIF message from the contents of a
1519 file stream. If you want to get all of the LDIF messages, you will
1520 need to repeatedly call this function, until it returns NULL.
1522 \param ldb the ldb context (from ldb_init())
1523 \param f the file stream to read from (typically from fdopen())
1525 \sa ldb_ldif_read_string for an equivalent function that will read
1526 from a string (char array).
1528 \sa ldb_ldif_write_file for the writer equivalent to this function.
1531 struct ldb_ldif *ldb_ldif_read_file(struct ldb_context *ldb, FILE *f);
1534 Read an LDIF message from a string
1536 This function reads the next LDIF message from the contents of a char
1537 array. If you want to get all of the LDIF messages, you will need
1538 to repeatedly call this function, until it returns NULL.
1540 \param ldb the ldb context (from ldb_init())
1541 \param s pointer to the char array to read from
1543 \sa ldb_ldif_read_file for an equivalent function that will read
1544 from a file stream.
1546 \sa ldb_ldif_write for a more general (arbitrary read function)
1547 version of this function.
1549 struct ldb_ldif *ldb_ldif_read_string(struct ldb_context *ldb, const char **s);
1552 Write an LDIF message to a file
1554 \param ldb the ldb context (from ldb_init())
1555 \param f the file stream to write to (typically from fdopen())
1556 \param msg the message to write out
1558 \return the total number of bytes written, or a negative error code
1560 \sa ldb_ldif_read_file for the reader equivalent to this function.
1562 int ldb_ldif_write_file(struct ldb_context *ldb, FILE *f, const struct ldb_ldif *msg);
1565 Write an LDIF message to a string
1567 \param ldb the ldb context (from ldb_init())
1568 \param mem_ctx the talloc context on which to attach the string)
1569 \param msg the message to write out
1571 \return the string containing the LDIF, or NULL on error
1573 \sa ldb_ldif_read_string for the reader equivalent to this function.
1575 char * ldb_ldif_write_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1576 const struct ldb_ldif *msg);
1580 Produce a string form of an ldb message
1582 convenient function to turn a ldb_message into a string. Useful for
1583 debugging
1585 char *ldb_ldif_message_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1586 enum ldb_changetype changetype,
1587 const struct ldb_message *msg);
1591 Base64 encode a buffer
1593 \param mem_ctx the memory context that the result is allocated
1594 from.
1595 \param buf pointer to the array that is to be encoded
1596 \param len the number of elements in the array to be encoded
1598 \return pointer to an array containing the encoded data
1600 \note The caller is responsible for freeing the result
1602 char *ldb_base64_encode(TALLOC_CTX *mem_ctx, const char *buf, int len);
1605 Base64 decode a buffer
1607 This function decodes a base64 encoded string in place.
1609 \param s the string to decode.
1611 \return the length of the returned (decoded) string.
1613 \note the string is null terminated, but the null terminator is not
1614 included in the length.
1616 int ldb_base64_decode(char *s);
1618 /* The following definitions come from lib/ldb/common/ldb_dn.c */
1621 Get the linear form of a DN (without any extended components)
1623 \param dn The DN to linearize
1626 const char *ldb_dn_get_linearized(struct ldb_dn *dn);
1629 Allocate a copy of the linear form of a DN (without any extended components) onto the supplied memory context
1631 \param dn The DN to linearize
1632 \param mem_ctx TALLOC context to return result on
1635 char *ldb_dn_alloc_linearized(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1638 Get the linear form of a DN (with any extended components)
1640 \param mem_ctx TALLOC context to return result on
1641 \param dn The DN to linearize
1642 \param mode Style of extended DN to return (0 is HEX representation of binary form, 1 is a string form)
1644 char *ldb_dn_get_extended_linearized(void *mem_ctx, struct ldb_dn *dn, int mode);
1645 const struct ldb_val *ldb_dn_get_extended_component(struct ldb_dn *dn, const char *name);
1646 int ldb_dn_set_extended_component(struct ldb_dn *dn, const char *name, const struct ldb_val *val);
1647 void ldb_dn_extended_filter(struct ldb_dn *dn, const char * const *accept);
1648 void ldb_dn_remove_extended_components(struct ldb_dn *dn);
1649 bool ldb_dn_has_extended(struct ldb_dn *dn);
1651 int ldb_dn_extended_add_syntax(struct ldb_context *ldb,
1652 unsigned flags,
1653 const struct ldb_dn_extended_syntax *syntax);
1655 /**
1656 Allocate a new DN from a string
1658 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1659 \param dn The new DN
1661 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1664 struct ldb_dn *ldb_dn_new(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, const char *dn);
1665 /**
1666 Allocate a new DN from a printf style format string and arguments
1668 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1669 \param new_fms The new DN as a format string (plus arguments)
1671 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1674 struct ldb_dn *ldb_dn_new_fmt(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, const char *new_fmt, ...) PRINTF_ATTRIBUTE(3,4);
1675 /**
1676 Allocate a new DN from a struct ldb_val (useful to avoid buffer overrun)
1678 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1679 \param dn The new DN
1681 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1684 struct ldb_dn *ldb_dn_from_ldb_val(void *mem_ctx, struct ldb_context *ldb, const struct ldb_val *strdn);
1687 Determine if this DN is syntactically valid
1689 \param dn The DN to validate
1692 bool ldb_dn_validate(struct ldb_dn *dn);
1694 char *ldb_dn_escape_value(TALLOC_CTX *mem_ctx, struct ldb_val value);
1695 const char *ldb_dn_get_casefold(struct ldb_dn *dn);
1696 char *ldb_dn_alloc_casefold(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1698 int ldb_dn_compare_base(struct ldb_dn *base, struct ldb_dn *dn);
1699 int ldb_dn_compare(struct ldb_dn *edn0, struct ldb_dn *edn1);
1701 bool ldb_dn_add_base(struct ldb_dn *dn, struct ldb_dn *base);
1702 bool ldb_dn_add_base_fmt(struct ldb_dn *dn, const char *base_fmt, ...) PRINTF_ATTRIBUTE(2,3);
1703 bool ldb_dn_add_child(struct ldb_dn *dn, struct ldb_dn *child);
1704 bool ldb_dn_add_child_fmt(struct ldb_dn *dn, const char *child_fmt, ...) PRINTF_ATTRIBUTE(2,3);
1705 bool ldb_dn_remove_base_components(struct ldb_dn *dn, unsigned int num);
1706 bool ldb_dn_remove_child_components(struct ldb_dn *dn, unsigned int num);
1708 struct ldb_dn *ldb_dn_copy(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1709 struct ldb_dn *ldb_dn_get_parent(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1710 char *ldb_dn_canonical_string(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1711 char *ldb_dn_canonical_ex_string(TALLOC_CTX *mem_ctx, struct ldb_dn *dn);
1712 int ldb_dn_get_comp_num(struct ldb_dn *dn);
1713 const char *ldb_dn_get_component_name(struct ldb_dn *dn, unsigned int num);
1714 const struct ldb_val *ldb_dn_get_component_val(struct ldb_dn *dn, unsigned int num);
1715 const char *ldb_dn_get_rdn_name(struct ldb_dn *dn);
1716 const struct ldb_val *ldb_dn_get_rdn_val(struct ldb_dn *dn);
1717 int ldb_dn_set_component(struct ldb_dn *dn, int num, const char *name, const struct ldb_val val);
1719 bool ldb_dn_is_valid(struct ldb_dn *dn);
1720 bool ldb_dn_is_special(struct ldb_dn *dn);
1721 bool ldb_dn_check_special(struct ldb_dn *dn, const char *check);
1722 bool ldb_dn_is_null(struct ldb_dn *dn);
1723 int ldb_dn_update_components(struct ldb_dn *dn, const struct ldb_dn *ref_dn);
1727 Compare two attributes
1729 This function compares to attribute names. Note that this is a
1730 case-insensitive comparison.
1732 \param a the first attribute name to compare
1733 \param b the second attribute name to compare
1735 \return 0 if the attribute names are the same, or only differ in
1736 case; non-zero if there are any differences
1738 attribute names are restricted by rfc2251 so using
1739 strcasecmp and toupper here is ok.
1740 return 0 for match
1742 #define ldb_attr_cmp(a, b) strcasecmp(a, b)
1743 char *ldb_attr_casefold(TALLOC_CTX *mem_ctx, const char *s);
1744 int ldb_attr_dn(const char *attr);
1747 Create an empty message
1749 \param mem_ctx the memory context to create in. You can pass NULL
1750 to get the top level context, however the ldb context (from
1751 ldb_init()) may be a better choice
1753 struct ldb_message *ldb_msg_new(TALLOC_CTX *mem_ctx);
1756 Find an element within an message
1758 struct ldb_message_element *ldb_msg_find_element(const struct ldb_message *msg,
1759 const char *attr_name);
1762 Compare two ldb_val values
1764 \param v1 first ldb_val structure to be tested
1765 \param v2 second ldb_val structure to be tested
1767 \return 1 for a match, 0 if there is any difference
1769 int ldb_val_equal_exact(const struct ldb_val *v1, const struct ldb_val *v2);
1772 find a value within an ldb_message_element
1774 \param el the element to search
1775 \param val the value to search for
1777 \note This search is case sensitive
1779 struct ldb_val *ldb_msg_find_val(const struct ldb_message_element *el,
1780 struct ldb_val *val);
1783 add a new empty element to a ldb_message
1785 int ldb_msg_add_empty(struct ldb_message *msg,
1786 const char *attr_name,
1787 int flags,
1788 struct ldb_message_element **return_el);
1791 add a element to a ldb_message
1793 int ldb_msg_add(struct ldb_message *msg,
1794 const struct ldb_message_element *el,
1795 int flags);
1796 int ldb_msg_add_value(struct ldb_message *msg,
1797 const char *attr_name,
1798 const struct ldb_val *val,
1799 struct ldb_message_element **return_el);
1800 int ldb_msg_add_steal_value(struct ldb_message *msg,
1801 const char *attr_name,
1802 struct ldb_val *val);
1803 int ldb_msg_add_steal_string(struct ldb_message *msg,
1804 const char *attr_name, char *str);
1805 int ldb_msg_add_string(struct ldb_message *msg,
1806 const char *attr_name, const char *str);
1807 int ldb_msg_add_linearized_dn(struct ldb_message *msg, const char *attr_name,
1808 struct ldb_dn *dn);
1809 int ldb_msg_add_fmt(struct ldb_message *msg,
1810 const char *attr_name, const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
1813 compare two message elements - return 0 on match
1815 int ldb_msg_element_compare(struct ldb_message_element *el1,
1816 struct ldb_message_element *el2);
1817 int ldb_msg_element_compare_name(struct ldb_message_element *el1,
1818 struct ldb_message_element *el2);
1821 Find elements in a message.
1823 This function finds elements and converts to a specific type, with
1824 a give default value if not found. Assumes that elements are
1825 single valued.
1827 const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg, const char *attr_name);
1828 int ldb_msg_find_attr_as_int(const struct ldb_message *msg,
1829 const char *attr_name,
1830 int default_value);
1831 unsigned int ldb_msg_find_attr_as_uint(const struct ldb_message *msg,
1832 const char *attr_name,
1833 unsigned int default_value);
1834 int64_t ldb_msg_find_attr_as_int64(const struct ldb_message *msg,
1835 const char *attr_name,
1836 int64_t default_value);
1837 uint64_t ldb_msg_find_attr_as_uint64(const struct ldb_message *msg,
1838 const char *attr_name,
1839 uint64_t default_value);
1840 double ldb_msg_find_attr_as_double(const struct ldb_message *msg,
1841 const char *attr_name,
1842 double default_value);
1843 int ldb_msg_find_attr_as_bool(const struct ldb_message *msg,
1844 const char *attr_name,
1845 int default_value);
1846 const char *ldb_msg_find_attr_as_string(const struct ldb_message *msg,
1847 const char *attr_name,
1848 const char *default_value);
1850 struct ldb_dn *ldb_msg_find_attr_as_dn(struct ldb_context *ldb,
1851 TALLOC_CTX *mem_ctx,
1852 const struct ldb_message *msg,
1853 const char *attr_name);
1855 void ldb_msg_sort_elements(struct ldb_message *msg);
1857 struct ldb_message *ldb_msg_copy_shallow(TALLOC_CTX *mem_ctx,
1858 const struct ldb_message *msg);
1859 struct ldb_message *ldb_msg_copy(TALLOC_CTX *mem_ctx,
1860 const struct ldb_message *msg);
1863 * ldb_msg_canonicalize() is now depreciated
1864 * Please use ldb_msg_normalize() instead
1866 * NOTE: Returned ldb_message object is allocated
1867 * into *ldb's context. Callers are recommended
1868 * to steal the returned object into a TALLOC_CTX
1869 * with short lifetime.
1871 struct ldb_message *ldb_msg_canonicalize(struct ldb_context *ldb,
1872 const struct ldb_message *msg) _DEPRECATED_;
1874 int ldb_msg_normalize(struct ldb_context *ldb,
1875 TALLOC_CTX *mem_ctx,
1876 const struct ldb_message *msg,
1877 struct ldb_message **_msg_out);
1881 * ldb_msg_diff() is now depreciated
1882 * Please use ldb_msg_difference() instead
1884 * NOTE: Returned ldb_message object is allocated
1885 * into *ldb's context. Callers are recommended
1886 * to steal the returned object into a TALLOC_CTX
1887 * with short lifetime.
1889 struct ldb_message *ldb_msg_diff(struct ldb_context *ldb,
1890 struct ldb_message *msg1,
1891 struct ldb_message *msg2) _DEPRECATED_;
1894 * return a ldb_message representing the differences between msg1 and msg2.
1895 * If you then use this in a ldb_modify() call,
1896 * it can be used to save edits to a message
1898 * Result message is constructed as follows:
1899 * - LDB_FLAG_MOD_ADD - elements found only in msg2
1900 * - LDB_FLAG_MOD_REPLACE - elements in msg2 that have
1901 * different value in msg1
1902 * Value for msg2 element is used
1903 * - LDB_FLAG_MOD_DELETE - elements found only in msg2
1905 * @return LDB_SUCCESS or LDB_ERR_OPERATIONS_ERROR
1907 int ldb_msg_difference(struct ldb_context *ldb,
1908 TALLOC_CTX *mem_ctx,
1909 struct ldb_message *msg1,
1910 struct ldb_message *msg2,
1911 struct ldb_message **_msg_out);
1914 Tries to find a certain string attribute in a message
1916 \param msg the message to check
1917 \param name attribute name
1918 \param value attribute value
1920 \return 1 on match and 0 otherwise.
1922 int ldb_msg_check_string_attribute(const struct ldb_message *msg,
1923 const char *name,
1924 const char *value);
1927 Integrity check an ldb_message
1929 This function performs basic sanity / integrity checks on an
1930 ldb_message.
1932 \param ldb context in which to perform the checks
1933 \param msg the message to check
1935 \return LDB_SUCCESS if the message is OK, or a non-zero error code
1936 (one of LDB_ERR_INVALID_DN_SYNTAX, LDB_ERR_ENTRY_ALREADY_EXISTS or
1937 LDB_ERR_INVALID_ATTRIBUTE_SYNTAX) if there is a problem with a
1938 message.
1940 int ldb_msg_sanity_check(struct ldb_context *ldb,
1941 const struct ldb_message *msg);
1944 Duplicate an ldb_val structure
1946 This function copies an ldb value structure.
1948 \param mem_ctx the memory context that the duplicated value will be
1949 allocated from
1950 \param v the ldb_val to be duplicated.
1952 \return the duplicated ldb_val structure.
1954 struct ldb_val ldb_val_dup(TALLOC_CTX *mem_ctx, const struct ldb_val *v);
1957 this allows the user to set a debug function for error reporting
1959 int ldb_set_debug(struct ldb_context *ldb,
1960 void (*debug)(void *context, enum ldb_debug_level level,
1961 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0),
1962 void *context);
1965 this allows the user to set custom utf8 function for error reporting
1967 void ldb_set_utf8_fns(struct ldb_context *ldb,
1968 void *context,
1969 char *(*casefold)(void *, void *, const char *, size_t n));
1972 this sets up debug to print messages on stderr
1974 int ldb_set_debug_stderr(struct ldb_context *ldb);
1976 /* control backend specific opaque values */
1977 int ldb_set_opaque(struct ldb_context *ldb, const char *name, void *value);
1978 void *ldb_get_opaque(struct ldb_context *ldb, const char *name);
1980 const char **ldb_attr_list_copy(TALLOC_CTX *mem_ctx, const char * const *attrs);
1981 const char **ldb_attr_list_copy_add(TALLOC_CTX *mem_ctx, const char * const *attrs, const char *new_attr);
1982 int ldb_attr_in_list(const char * const *attrs, const char *attr);
1984 int ldb_msg_rename_attr(struct ldb_message *msg, const char *attr, const char *replace);
1985 int ldb_msg_copy_attr(struct ldb_message *msg, const char *attr, const char *replace);
1986 void ldb_msg_remove_attr(struct ldb_message *msg, const char *attr);
1987 void ldb_msg_remove_element(struct ldb_message *msg, struct ldb_message_element *el);
1990 void ldb_parse_tree_attr_replace(struct ldb_parse_tree *tree,
1991 const char *attr,
1992 const char *replace);
1995 shallow copy a tree - copying only the elements array so that the caller
1996 can safely add new elements without changing the message
1998 struct ldb_parse_tree *ldb_parse_tree_copy_shallow(TALLOC_CTX *mem_ctx,
1999 const struct ldb_parse_tree *ot);
2002 Convert a time structure to a string
2004 This function converts a time_t structure to an LDAP formatted
2005 GeneralizedTime string.
2007 \param mem_ctx the memory context to allocate the return string in
2008 \param t the time structure to convert
2010 \return the formatted string, or NULL if the time structure could
2011 not be converted
2013 char *ldb_timestring(TALLOC_CTX *mem_ctx, time_t t);
2016 Convert a string to a time structure
2018 This function converts an LDAP formatted GeneralizedTime string
2019 to a time_t structure.
2021 \param s the string to convert
2023 \return the time structure, or 0 if the string cannot be converted
2025 time_t ldb_string_to_time(const char *s);
2028 convert a LDAP GeneralizedTime string in ldb_val format to a
2029 time_t.
2031 int ldb_val_to_time(const struct ldb_val *v, time_t *t);
2034 Convert a time structure to a string
2036 This function converts a time_t structure to an LDAP formatted
2037 UTCTime string.
2039 \param mem_ctx the memory context to allocate the return string in
2040 \param t the time structure to convert
2042 \return the formatted string, or NULL if the time structure could
2043 not be converted
2045 char *ldb_timestring_utc(TALLOC_CTX *mem_ctx, time_t t);
2048 Convert a string to a time structure
2050 This function converts an LDAP formatted UTCTime string
2051 to a time_t structure.
2053 \param s the string to convert
2055 \return the time structure, or 0 if the string cannot be converted
2057 time_t ldb_string_utc_to_time(const char *s);
2060 void ldb_qsort (void *const pbase, size_t total_elems, size_t size, void *opaque, ldb_qsort_cmp_fn_t cmp);
2062 #ifndef discard_const
2063 #define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
2064 #endif
2067 a wrapper around ldb_qsort() that ensures the comparison function is
2068 type safe. This will produce a compilation warning if the types
2069 don't match
2071 #define LDB_TYPESAFE_QSORT(base, numel, opaque, comparison) \
2072 do { \
2073 if (numel > 1) { \
2074 ldb_qsort(base, numel, sizeof((base)[0]), discard_const(opaque), (ldb_qsort_cmp_fn_t)comparison); \
2075 comparison(&((base)[0]), &((base)[1]), opaque); \
2077 } while (0)
2079 /* allow ldb to also call TYPESAFE_QSORT() */
2080 #ifndef TYPESAFE_QSORT
2081 #define TYPESAFE_QSORT(base, numel, comparison) \
2082 do { \
2083 if (numel > 1) { \
2084 qsort(base, numel, sizeof((base)[0]), (int (*)(const void *, const void *))comparison); \
2085 comparison(&((base)[0]), &((base)[1])); \
2087 } while (0)
2088 #endif
2093 Convert an array of string represention of a control into an array of ldb_control structures
2095 \param ldb LDB context
2096 \param mem_ctx TALLOC context to return result on, and to allocate error_string on
2097 \param control_strings Array of string-formatted controls
2099 \return array of ldb_control elements
2101 struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char **control_strings);
2104 return the ldb flags
2106 unsigned int ldb_get_flags(struct ldb_context *ldb);
2108 /* set the ldb flags */
2109 void ldb_set_flags(struct ldb_context *ldb, unsigned flags);
2112 struct ldb_dn *ldb_dn_binary_from_ldb_val(void *mem_ctx,
2113 struct ldb_context *ldb,
2114 const struct ldb_val *strdn);
2116 int ldb_dn_get_binary(struct ldb_dn *dn, struct ldb_val *val);
2117 int ldb_dn_set_binary(struct ldb_dn *dn, struct ldb_val *val);
2119 #endif