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
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/>.
29 * Component: ldb header
31 * Description: defines for base ldb API
33 * Author: Andrew Tridgell
34 * Author: Stefan Metzmacher
38 \file ldb.h Samba's ldb database
40 This header file provides the main API for ldb.
45 /*! \cond DOXYGEN_IGNORE */
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
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.
80 uint8_t *data
; /*!< result data */
81 size_t length
; /*!< length of data */
85 /*! \cond DOXYGEN_IGNORE */
86 #ifndef PRINTF_ATTRIBUTE
87 #define PRINTF_ATTRIBUTE(a,b)
91 /* opaque ldb_dn structures, see ldb_dn.c for internals */
92 struct ldb_dn_component
;
96 There are a number of flags that are used with ldap_modify() in
97 ldb_message_element.flags fields. The LDB_FLAGS_MOD_ADD,
98 LDB_FLAGS_MOD_DELETE and LDB_FLAGS_MOD_REPLACE flags are used in
99 ldap_modify() calls to specify whether attributes are being added,
100 deleted or modified respectively.
102 #define LDB_FLAG_MOD_MASK 0x3
105 Flag value used in ldap_modify() to indicate that attributes are
108 \sa LDB_FLAG_MOD_MASK
110 #define LDB_FLAG_MOD_ADD 1
113 Flag value used in ldap_modify() to indicate that attributes are
116 \sa LDB_FLAG_MOD_MASK
118 #define LDB_FLAG_MOD_REPLACE 2
121 Flag value used in ldap_modify() to indicate that attributes are
124 \sa LDB_FLAG_MOD_MASK
126 #define LDB_FLAG_MOD_DELETE 3
129 OID for logic AND comaprison.
131 This is the well known object ID for a logical AND comparitor.
133 #define LDB_OID_COMPARATOR_AND "1.2.840.113556.1.4.803"
136 OID for logic OR comparison.
138 This is the well known object ID for a logical OR comparitor.
140 #define LDB_OID_COMPARATOR_OR "1.2.840.113556.1.4.804"
143 results are given back as arrays of ldb_message_element
145 struct ldb_message_element
{
148 unsigned int num_values
;
149 struct ldb_val
*values
;
154 a ldb_message represents all or part of a record. It can contain an arbitrary
159 unsigned int num_elements
;
160 struct ldb_message_element
*elements
;
163 enum ldb_changetype
{
164 LDB_CHANGETYPE_NONE
=0,
166 LDB_CHANGETYPE_DELETE
,
167 LDB_CHANGETYPE_MODIFY
173 This structure contains a LDIF record, as returned from ldif_read()
174 and equivalent functions.
177 enum ldb_changetype changetype
; /*!< The type of change */
178 struct ldb_message
*msg
; /*!< The changes */
181 enum ldb_scope
{LDB_SCOPE_DEFAULT
=-1,
183 LDB_SCOPE_ONELEVEL
=1,
184 LDB_SCOPE_SUBTREE
=2};
187 struct tevent_context
;
189 /* debugging uses one of the following levels */
190 enum ldb_debug_level
{LDB_DEBUG_FATAL
, LDB_DEBUG_ERROR
,
191 LDB_DEBUG_WARNING
, LDB_DEBUG_TRACE
};
194 the user can optionally supply a debug function. The function
195 is based on the vfprintf() style of interface, but with the addition
198 struct ldb_debug_ops
{
199 void (*debug
)(void *context
, enum ldb_debug_level level
,
200 const char *fmt
, va_list ap
) PRINTF_ATTRIBUTE(3,0);
205 The user can optionally supply a custom utf8 functions,
206 to handle comparisons and casefolding.
208 struct ldb_utf8_fns
{
210 char *(*casefold
)(void *context
, TALLOC_CTX
*mem_ctx
, const char *s
, size_t n
);
214 Flag value for database connection mode.
216 If LDB_FLG_RDONLY is used in ldb_connect, then the database will be
217 opened read-only, if possible.
219 #define LDB_FLG_RDONLY 1
222 Flag value for database connection mode.
224 If LDB_FLG_NOSYNC is used in ldb_connect, then the database will be
225 opened without synchronous operations, if possible.
227 #define LDB_FLG_NOSYNC 2
230 Flag value to specify autoreconnect mode.
232 If LDB_FLG_RECONNECT is used in ldb_connect, then the backend will
233 be opened in a way that makes it try to auto reconnect if the
234 connection is dropped (actually make sense only with ldap).
236 #define LDB_FLG_RECONNECT 4
239 Flag to tell backends not to use mmap
241 #define LDB_FLG_NOMMAP 8
244 Flag to tell ldif handlers not to force encoding of binary
247 #define LDB_FLG_SHOW_BINARY 16
250 Flags to enable ldb tracing
252 #define LDB_FLG_ENABLE_TRACING 32
255 structures for ldb_parse_tree handling code
257 enum ldb_parse_op
{ LDB_OP_AND
=1, LDB_OP_OR
=2, LDB_OP_NOT
=3,
258 LDB_OP_EQUALITY
=4, LDB_OP_SUBSTRING
=5,
259 LDB_OP_GREATER
=6, LDB_OP_LESS
=7, LDB_OP_PRESENT
=8,
260 LDB_OP_APPROX
=9, LDB_OP_EXTENDED
=10 };
262 struct ldb_parse_tree
{
263 enum ldb_parse_op operation
;
266 struct ldb_parse_tree
*child
;
270 struct ldb_val value
;
274 int start_with_wildcard
;
275 int end_with_wildcard
;
276 struct ldb_val
**chunks
;
283 struct ldb_val value
;
289 struct ldb_val value
;
292 unsigned int num_elements
;
293 struct ldb_parse_tree
**elements
;
298 struct ldb_parse_tree
*ldb_parse_tree(TALLOC_CTX
*mem_ctx
, const char *s
);
299 char *ldb_filter_from_tree(TALLOC_CTX
*mem_ctx
, struct ldb_parse_tree
*tree
);
304 This function encodes a binary blob using the encoding rules in RFC
305 2254 (Section 4). This function also escapes any non-printable
308 \param mem_ctx the memory context to allocate the return string in.
309 \param val the (potentially) binary data to be encoded
311 \return the encoded data as a null terminated string
313 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
315 char *ldb_binary_encode(TALLOC_CTX
*mem_ctx
, struct ldb_val val
);
320 This function encodes a string using the encoding rules in RFC 2254
321 (Section 4). This function also escapes any non-printable
324 \param mem_ctx the memory context to allocate the return string in.
325 \param string the string to be encoded
327 \return the encoded data as a null terminated string
329 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
331 char *ldb_binary_encode_string(TALLOC_CTX
*mem_ctx
, const char *string
);
334 functions for controlling attribute handling
336 typedef int (*ldb_attr_handler_t
)(struct ldb_context
*, TALLOC_CTX
*mem_ctx
, const struct ldb_val
*, struct ldb_val
*);
337 typedef int (*ldb_attr_comparison_t
)(struct ldb_context
*, TALLOC_CTX
*mem_ctx
, const struct ldb_val
*, const struct ldb_val
*);
340 attribute handler structure
342 attr -> The attribute name
343 ldif_read_fn -> convert from ldif to binary format
344 ldif_write_fn -> convert from binary to ldif format
345 canonicalise_fn -> canonicalise a value, for use by indexing and dn construction
346 comparison_fn -> compare two values
349 struct ldb_schema_syntax
{
351 ldb_attr_handler_t ldif_read_fn
;
352 ldb_attr_handler_t ldif_write_fn
;
353 ldb_attr_handler_t canonicalise_fn
;
354 ldb_attr_comparison_t comparison_fn
;
357 struct ldb_schema_attribute
{
360 const struct ldb_schema_syntax
*syntax
;
363 const struct ldb_schema_attribute
*ldb_schema_attribute_by_name(struct ldb_context
*ldb
,
366 struct ldb_dn_extended_syntax
{
368 ldb_attr_handler_t read_fn
;
369 ldb_attr_handler_t write_clear_fn
;
370 ldb_attr_handler_t write_hex_fn
;
373 const struct ldb_dn_extended_syntax
*ldb_dn_extended_syntax_by_name(struct ldb_context
*ldb
,
377 The attribute is not returned by default
379 #define LDB_ATTR_FLAG_HIDDEN (1<<0)
381 /* the attribute handler name should be freed when released */
382 #define LDB_ATTR_FLAG_ALLOCATED (1<<1)
385 The attribute is supplied by the application and should not be removed
387 #define LDB_ATTR_FLAG_FIXED (1<<2)
390 when this is set, attempts to create two records which have the same
391 value for this attribute will return LDB_ERR_ENTRY_ALREADY_EXISTS
393 #define LDB_ATTR_FLAG_UNIQUE_INDEX (1<<3)
396 when this is set, attempts to create two attribute values for this attribute on a single DN will return LDB_ERR_CONSTRAINT_VIOLATION
398 #define LDB_ATTR_FLAG_SINGLE_VALUE (1<<4)
401 LDAP attribute syntax for a DN
403 This is the well-known LDAP attribute syntax for a DN.
405 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
407 #define LDB_SYNTAX_DN "1.3.6.1.4.1.1466.115.121.1.12"
410 LDAP attribute syntax for a Directory String
412 This is the well-known LDAP attribute syntax for a Directory String.
414 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
416 #define LDB_SYNTAX_DIRECTORY_STRING "1.3.6.1.4.1.1466.115.121.1.15"
419 LDAP attribute syntax for an integer
421 This is the well-known LDAP attribute syntax for an integer.
423 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
425 #define LDB_SYNTAX_INTEGER "1.3.6.1.4.1.1466.115.121.1.27"
428 LDAP attribute syntax for a boolean
430 This is the well-known LDAP attribute syntax for a boolean.
432 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
434 #define LDB_SYNTAX_BOOLEAN "1.3.6.1.4.1.1466.115.121.1.7"
437 LDAP attribute syntax for an octet string
439 This is the well-known LDAP attribute syntax for an octet string.
441 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
443 #define LDB_SYNTAX_OCTET_STRING "1.3.6.1.4.1.1466.115.121.1.40"
446 LDAP attribute syntax for UTC time.
448 This is the well-known LDAP attribute syntax for a UTC time.
450 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
452 #define LDB_SYNTAX_UTC_TIME "1.3.6.1.4.1.1466.115.121.1.53"
454 #define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS"
456 /* sorting helpers */
457 typedef int (*ldb_qsort_cmp_fn_t
) (void *v1
, void *v2
, void *opaque
);
460 OID for the allowing client to request temporary relaxed
461 enforcement of constraints of the x.500 model.
463 \sa <a href="http://opends.dev.java.net/public/standards/draft-zeilenga-ldap-managedit.txt">draft managedit</a>.
465 #define LDB_CONTROL_RELAX_OID "1.3.6.1.4.1.4203.666.5.12"
467 OID for recalculate SD control. This control force the
468 dsdb code to recalculate the SD of the object as if the
469 object was just created.
472 #define LDB_CONTROL_RECALCULATE_SD_OID "1.3.6.1.4.1.7165.4.3.5"
475 REVEAL_INTERNALS is used to reveal internal attributes and DN
476 components which are not normally shown to the user
478 #define LDB_CONTROL_REVEAL_INTERNALS "1.3.6.1.4.1.7165.4.3.6"
481 LDB_CONTROL_AS_SYSTEM is used to skip access checks on operations
482 that are performed by the system, but with a user's credentials, e.g.
485 #define LDB_CONTROL_AS_SYSTEM_OID "1.3.6.1.4.1.7165.4.3.7"
488 OID for the paged results control. This control is included in the
489 searchRequest and searchResultDone messages as part of the controls
490 field of the LDAPMessage, as defined in Section 4.1.12 of
493 \sa <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
495 #define LDB_CONTROL_PAGED_RESULTS_OID "1.2.840.113556.1.4.319"
498 OID for specifying the returned elements of the ntSecurityDescriptor
500 \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>
502 #define LDB_CONTROL_SD_FLAGS_OID "1.2.840.113556.1.4.801"
505 OID for specifying an advanced scope for the search (one partition)
507 \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>
509 #define LDB_CONTROL_DOMAIN_SCOPE_OID "1.2.840.113556.1.4.1339"
512 OID for specifying an advanced scope for a search
514 \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>
516 #define LDB_CONTROL_SEARCH_OPTIONS_OID "1.2.840.113556.1.4.1340"
521 \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>
523 #define LDB_CONTROL_NOTIFICATION_OID "1.2.840.113556.1.4.528"
526 OID for getting deleted objects
528 \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>
530 #define LDB_CONTROL_SHOW_DELETED_OID "1.2.840.113556.1.4.417"
533 OID for getting recycled objects
535 \sa <a href="http://msdn.microsoft.com/en-us/library/dd304621(PROT.13).aspx">Microsoft documentation of this OID</a>
537 #define LDB_CONTROL_SHOW_RECYCLED_OID "1.2.840.113556.1.4.2064"
540 OID for getting deactivated linked attributes
542 \sa <a href="http://msdn.microsoft.com/en-us/library/dd302781(PROT.13).aspx">Microsoft documentation of this OID</a>
544 #define LDB_CONTROL_SHOW_DEACTIVATED_LINK_OID "1.2.840.113556.1.4.2065"
549 \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>
551 #define LDB_CONTROL_EXTENDED_DN_OID "1.2.840.113556.1.4.529"
554 OID for LDAP server sort result extension.
556 This control is included in the searchRequest message as part of
557 the controls field of the LDAPMessage, as defined in Section 4.1.12
558 of LDAP v3. The controlType is set to
559 "1.2.840.113556.1.4.473". The criticality MAY be either TRUE or
560 FALSE (where absent is also equivalent to FALSE) at the client's
563 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
565 #define LDB_CONTROL_SERVER_SORT_OID "1.2.840.113556.1.4.473"
568 OID for LDAP server sort result response extension.
570 This control is included in the searchResultDone message as part of
571 the controls field of the LDAPMessage, as defined in Section 4.1.12 of
574 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
576 #define LDB_CONTROL_SORT_RESP_OID "1.2.840.113556.1.4.474"
579 OID for LDAP Attribute Scoped Query extension.
581 This control is included in SearchRequest or SearchResponse
582 messages as part of the controls field of the LDAPMessage.
584 #define LDB_CONTROL_ASQ_OID "1.2.840.113556.1.4.1504"
587 OID for LDAP Directory Sync extension.
589 This control is included in SearchRequest or SearchResponse
590 messages as part of the controls field of the LDAPMessage.
592 #define LDB_CONTROL_DIRSYNC_OID "1.2.840.113556.1.4.841"
596 OID for LDAP Virtual List View Request extension.
598 This control is included in SearchRequest messages
599 as part of the controls field of the LDAPMessage.
601 #define LDB_CONTROL_VLV_REQ_OID "2.16.840.1.113730.3.4.9"
604 OID for LDAP Virtual List View Response extension.
606 This control is included in SearchResponse messages
607 as part of the controls field of the LDAPMessage.
609 #define LDB_CONTROL_VLV_RESP_OID "2.16.840.1.113730.3.4.10"
612 OID to let modifies don't give an error when adding an existing
613 attribute with the same value or deleting an nonexisting one attribute
615 \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>
617 #define LDB_CONTROL_PERMISSIVE_MODIFY_OID "1.2.840.113556.1.4.1413"
620 OID to allow the server to be more 'fast and loose' with the data being added.
625 #define LDB_CONTROL_SERVER_LAZY_COMMIT "1.2.840.113556.1.4.619"
628 OID for LDAP Extended Operation FAST_BIND
630 This Extended operations is used to perform a fast bind.
632 #define LDB_EXTENDED_FAST_BIND_OID "1.2.840.113556.1.4.1781"
635 OID for LDAP Extended Operation START_TLS.
637 This Extended operation is used to start a new TLS channel on top of a clear
640 #define LDB_EXTENDED_START_TLS_OID "1.3.6.1.4.1.1466.20037"
643 OID for LDAP Extended Operation DYNAMIC_REFRESH.
645 This Extended operation is used to create and maintain objects which exist
646 only a specific time, e.g. when a certain client or a certain person is
647 logged in. Data refreshes have to be periodically sent in a specific
648 interval. Otherwise the entry is going to be removed.
650 #define LDB_EXTENDED_DYNAMIC_OID "1.3.6.1.4.1.1466.101.119.1"
653 OID for LDAP Extended Operation PASSWORD_CHANGE.
655 This Extended operation is used to allow user password changes by the user
658 #define LDB_EXTENDED_PASSWORD_CHANGE_OID "1.3.6.1.4.1.4203.1.11.1"
661 struct ldb_sd_flags_control
{
663 * request the owner 0x00000001
664 * request the group 0x00000002
665 * request the DACL 0x00000004
666 * request the SACL 0x00000008
668 unsigned secinfo_flags
;
672 * DOMAIN_SCOPE 0x00000001
673 * this limits the search to one partition,
674 * and no referrals will be returned.
675 * (Note this doesn't limit the entries by there
676 * objectSid belonging to a domain! Builtin and Foreign Sids
677 * are still returned)
679 * PHANTOM_ROOT 0x00000002
680 * this search on the whole tree on a domain controller
681 * over multiple partitions without referrals.
682 * (This is the default behavior on the Global Catalog Port)
685 #define LDB_SEARCH_OPTION_DOMAIN_SCOPE 0x00000001
686 #define LDB_SEARCH_OPTION_PHANTOM_ROOT 0x00000002
688 struct ldb_search_options_control
{
689 unsigned search_options
;
692 struct ldb_paged_control
{
698 struct ldb_extended_dn_control
{
702 struct ldb_server_sort_control
{
703 const char *attributeName
;
704 const char *orderingRule
;
708 struct ldb_sort_resp_control
{
713 struct ldb_asq_control
{
715 char *source_attribute
;
720 struct ldb_dirsync_control
{
727 struct ldb_vlv_req_control
{
745 struct ldb_vlv_resp_control
{
759 enum ldb_request_type
{
766 LDB_REQ_REGISTER_CONTROL
,
767 LDB_REQ_REGISTER_PARTITION
770 enum ldb_reply_type
{
787 struct ldb_extended
{
789 void *data
; /* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
792 #define LDB_EXTENDED_SEQUENCE_NUMBER "1.3.6.1.4.1.7165.4.4.3"
794 enum ldb_sequence_type
{
796 LDB_SEQ_HIGHEST_TIMESTAMP
,
800 #define LDB_SEQ_GLOBAL_SEQUENCE 0x01
801 #define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02
803 struct ldb_seqnum_request
{
804 enum ldb_sequence_type type
;
807 struct ldb_seqnum_result
{
814 struct ldb_message
**msgs
;
815 struct ldb_extended
*extended
;
816 struct ldb_control
**controls
;
822 enum ldb_reply_type type
;
823 struct ldb_message
*message
;
824 struct ldb_extended
*response
;
825 struct ldb_control
**controls
;
834 enum ldb_scope scope
;
835 struct ldb_parse_tree
*tree
;
836 const char * const *attrs
;
837 struct ldb_result
*res
;
841 const struct ldb_message
*message
;
845 const struct ldb_message
*message
;
853 struct ldb_dn
*olddn
;
854 struct ldb_dn
*newdn
;
857 struct ldb_register_control
{
861 struct ldb_register_partition
{
865 typedef int (*ldb_request_callback_t
)(struct ldb_request
*, struct ldb_reply
*);
869 enum ldb_request_type operation
;
872 struct ldb_search search
;
874 struct ldb_modify mod
;
875 struct ldb_delete del
;
876 struct ldb_rename rename
;
877 struct ldb_extended extended
;
878 struct ldb_register_control reg_control
;
879 struct ldb_register_partition reg_partition
;
882 struct ldb_control
**controls
;
885 ldb_request_callback_t callback
;
889 struct ldb_handle
*handle
;
892 int ldb_request(struct ldb_context
*ldb
, struct ldb_request
*request
);
893 int ldb_request_done(struct ldb_request
*req
, int status
);
894 bool ldb_request_is_done(struct ldb_request
*req
);
896 int ldb_modules_wait(struct ldb_handle
*handle
);
897 int ldb_wait(struct ldb_handle
*handle
, enum ldb_wait_type type
);
899 int ldb_set_timeout(struct ldb_context
*ldb
, struct ldb_request
*req
, int timeout
);
900 int ldb_set_timeout_from_prev_req(struct ldb_context
*ldb
, struct ldb_request
*oldreq
, struct ldb_request
*newreq
);
901 void ldb_set_create_perms(struct ldb_context
*ldb
, unsigned int perms
);
902 void ldb_set_modules_dir(struct ldb_context
*ldb
, const char *path
);
903 struct tevent_context
;
904 void ldb_set_event_context(struct ldb_context
*ldb
, struct tevent_context
*ev
);
905 struct tevent_context
* ldb_get_event_context(struct ldb_context
*ldb
);
908 Initialise ldbs' global information
910 This is required before any other LDB call
912 \return 0 if initialisation succeeded, -1 otherwise
914 int ldb_global_init(void);
917 Initialise an ldb context
919 This is required before any other LDB call.
921 \param mem_ctx pointer to a talloc memory context. Pass NULL if there is
922 no suitable context available.
924 \return pointer to ldb_context that should be free'd (using talloc_free())
925 at the end of the program.
927 struct ldb_context
*ldb_init(TALLOC_CTX
*mem_ctx
, struct tevent_context
*ev_ctx
);
930 Connect to a database.
932 This is typically called soon after ldb_init(), and is required prior to
933 any search or database modification operations.
935 The URL can be one of the following forms:
941 \param ldb the context associated with the database (from ldb_init())
942 \param url the URL of the database to connect to, as noted above
943 \param flags a combination of LDB_FLG_* to modify the connection behaviour
944 \param options backend specific options - passed uninterpreted to the backend
946 \return result code (LDB_SUCCESS on success, or a failure code)
948 \note It is an error to connect to a database that does not exist in readonly mode
949 (that is, with LDB_FLG_RDONLY). However in read-write mode, the database will be
950 created if it does not exist.
953 typedef void (*ldb_async_timeout_fn
) (void *);
954 typedef bool (*ldb_async_callback_fn
) (void *);
955 typedef int (*ldb_async_ctx_add_op_fn
)(void *, time_t, void *, ldb_async_timeout_fn
, ldb_async_callback_fn
);
956 typedef int (*ldb_async_ctx_wait_op_fn
)(void *);
958 void ldb_async_ctx_set_private_data(struct ldb_context
*ldb
,
960 void ldb_async_ctx_set_add_op(struct ldb_context
*ldb
,
961 ldb_async_ctx_add_op_fn add_op
);
962 void ldb_async_ctx_set_wait_op(struct ldb_context
*ldb
,
963 ldb_async_ctx_wait_op_fn wait_op
);
965 int ldb_connect(struct ldb_context
*ldb
, const char *url
, unsigned int flags
, const char *options
[]);
968 return an automatic basedn from the rootDomainNamingContext of the rootDSE
969 This value have been set in an opaque pointer at connection time
971 struct ldb_dn
*ldb_get_root_basedn(struct ldb_context
*ldb
);
974 return an automatic basedn from the configurationNamingContext of the rootDSE
975 This value have been set in an opaque pointer at connection time
977 struct ldb_dn
*ldb_get_config_basedn(struct ldb_context
*ldb
);
980 return an automatic basedn from the schemaNamingContext of the rootDSE
981 This value have been set in an opaque pointer at connection time
983 struct ldb_dn
*ldb_get_schema_basedn(struct ldb_context
*ldb
);
986 return an automatic baseDN from the defaultNamingContext of the rootDSE
987 This value have been set in an opaque pointer at connection time
989 struct ldb_dn
*ldb_get_default_basedn(struct ldb_context
*ldb
);
992 The default async search callback function
994 \param req the request we are callback of
995 \param ares a single reply from the async core
997 \return result code (LDB_SUCCESS on success, or a failure code)
999 \note this function expects req->context to always be an struct ldb_result pointer
1000 AND a talloc context, this function will steal on the context each message
1001 from the ares reply passed on by the async core so that in the end all the
1002 messages will be in the context (ldb_result) memory tree.
1003 Freeing the passed context (ldb_result tree) will free all the resources
1004 (the request need to be freed separately and the result doe not depend on the
1005 request that can be freed as sson as the search request is finished)
1008 int ldb_search_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
1011 The default async extended operation callback function
1013 \param req the request we are callback of
1014 \param ares a single reply from the async core
1016 \return result code (LDB_SUCCESS on success, or a failure code)
1018 int ldb_op_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
1022 Helper function to build a search request
1024 \param ret_req the request structure is returned here (talloced on mem_ctx)
1025 \param ldb the context associated with the database (from ldb_init())
1026 \param mem_ctx a talloc memory context (used as parent of ret_req)
1027 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1028 \param scope the search scope for the query
1029 \param expression the search expression to use for this query
1030 \param attrs the search attributes for the query (pass NULL if none required)
1031 \param controls an array of controls
1032 \param context the callback function context
1033 \param the callback function to handle the async replies
1034 \param the parent request if any
1036 \return result code (LDB_SUCCESS on success, or a failure code)
1039 int ldb_build_search_req(struct ldb_request
**ret_req
,
1040 struct ldb_context
*ldb
,
1041 TALLOC_CTX
*mem_ctx
,
1042 struct ldb_dn
*base
,
1043 enum ldb_scope scope
,
1044 const char *expression
,
1045 const char * const *attrs
,
1046 struct ldb_control
**controls
,
1048 ldb_request_callback_t callback
,
1049 struct ldb_request
*parent
);
1051 int ldb_build_search_req_ex(struct ldb_request
**ret_req
,
1052 struct ldb_context
*ldb
,
1053 TALLOC_CTX
*mem_ctx
,
1054 struct ldb_dn
*base
,
1055 enum ldb_scope scope
,
1056 struct ldb_parse_tree
*tree
,
1057 const char * const *attrs
,
1058 struct ldb_control
**controls
,
1060 ldb_request_callback_t callback
,
1061 struct ldb_request
*parent
);
1064 Helper function to build an add request
1066 \param ret_req the request structure is returned here (talloced on mem_ctx)
1067 \param ldb the context associated with the database (from ldb_init())
1068 \param mem_ctx a talloc memory context (used as parent of ret_req)
1069 \param message contains the entry to be added
1070 \param controls an array of controls
1071 \param context the callback function context
1072 \param the callback function to handle the async replies
1073 \param the parent request if any
1075 \return result code (LDB_SUCCESS on success, or a failure code)
1078 int ldb_build_add_req(struct ldb_request
**ret_req
,
1079 struct ldb_context
*ldb
,
1080 TALLOC_CTX
*mem_ctx
,
1081 const struct ldb_message
*message
,
1082 struct ldb_control
**controls
,
1084 ldb_request_callback_t callback
,
1085 struct ldb_request
*parent
);
1088 Helper function to build a modify request
1090 \param ret_req the request structure is returned here (talloced on mem_ctx)
1091 \param ldb the context associated with the database (from ldb_init())
1092 \param mem_ctx a talloc memory context (used as parent of ret_req)
1093 \param message contains the entry to be modified
1094 \param controls an array of controls
1095 \param context the callback function context
1096 \param the callback function to handle the async replies
1097 \param the parent request if any
1099 \return result code (LDB_SUCCESS on success, or a failure code)
1102 int ldb_build_mod_req(struct ldb_request
**ret_req
,
1103 struct ldb_context
*ldb
,
1104 TALLOC_CTX
*mem_ctx
,
1105 const struct ldb_message
*message
,
1106 struct ldb_control
**controls
,
1108 ldb_request_callback_t callback
,
1109 struct ldb_request
*parent
);
1112 Helper function to build a delete request
1114 \param ret_req the request structure is returned here (talloced on mem_ctx)
1115 \param ldb the context associated with the database (from ldb_init())
1116 \param mem_ctx a talloc memory context (used as parent of ret_req)
1117 \param dn the DN to be deleted
1118 \param controls an array of controls
1119 \param context the callback function context
1120 \param the callback function to handle the async replies
1121 \param the parent request if any
1123 \return result code (LDB_SUCCESS on success, or a failure code)
1126 int ldb_build_del_req(struct ldb_request
**ret_req
,
1127 struct ldb_context
*ldb
,
1128 TALLOC_CTX
*mem_ctx
,
1130 struct ldb_control
**controls
,
1132 ldb_request_callback_t callback
,
1133 struct ldb_request
*parent
);
1136 Helper function to build a rename request
1138 \param ret_req the request structure is returned here (talloced on mem_ctx)
1139 \param ldb the context associated with the database (from ldb_init())
1140 \param mem_ctx a talloc memory context (used as parent of ret_req)
1141 \param olddn the old DN
1142 \param newdn the new DN
1143 \param controls an array of controls
1144 \param context the callback function context
1145 \param the callback function to handle the async replies
1146 \param the parent request if any
1148 \return result code (LDB_SUCCESS on success, or a failure code)
1151 int ldb_build_rename_req(struct ldb_request
**ret_req
,
1152 struct ldb_context
*ldb
,
1153 TALLOC_CTX
*mem_ctx
,
1154 struct ldb_dn
*olddn
,
1155 struct ldb_dn
*newdn
,
1156 struct ldb_control
**controls
,
1158 ldb_request_callback_t callback
,
1159 struct ldb_request
*parent
);
1162 Add a ldb_control to a ldb_request
1164 \param req the request struct where to add the control
1165 \param oid the object identifier of the control as string
1166 \param critical whether the control should be critical or not
1167 \param data a talloc pointer to the control specific data
1169 \return result code (LDB_SUCCESS on success, or a failure code)
1171 int ldb_request_add_control(struct ldb_request
*req
, const char *oid
, bool critical
, void *data
);
1174 check if a control with the specified "oid" exist and return it
1175 \param req the request struct where to add the control
1176 \param oid the object identifier of the control as string
1178 \return the control, NULL if not found
1180 struct ldb_control
*ldb_request_get_control(struct ldb_request
*req
, const char *oid
);
1183 check if a control with the specified "oid" exist and return it
1184 \param rep the reply struct where to add the control
1185 \param oid the object identifier of the control as string
1187 \return the control, NULL if not found
1189 struct ldb_control
*ldb_reply_get_control(struct ldb_reply
*rep
, const char *oid
);
1194 This function searches the database, and returns
1195 records that match an LDAP-like search expression
1197 \param ldb the context associated with the database (from ldb_init())
1198 \param mem_ctx the memory context to use for the request and the results
1199 \param result the return result
1200 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1201 \param scope the search scope for the query
1202 \param attrs the search attributes for the query (pass NULL if none required)
1203 \param exp_fmt the search expression to use for this query (printf like)
1205 \return result code (LDB_SUCCESS on success, or a failure code)
1207 \note use talloc_free() to free the ldb_result returned
1209 int ldb_search(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
,
1210 struct ldb_result
**result
, struct ldb_dn
*base
,
1211 enum ldb_scope scope
, const char * const *attrs
,
1212 const char *exp_fmt
, ...) PRINTF_ATTRIBUTE(7,8);
1215 Add a record to the database.
1217 This function adds a record to the database. This function will fail
1218 if a record with the specified class and key already exists in the
1221 \param ldb the context associated with the database (from
1223 \param message the message containing the record to add.
1225 \return result code (LDB_SUCCESS if the record was added, otherwise
1228 int ldb_add(struct ldb_context
*ldb
,
1229 const struct ldb_message
*message
);
1232 Modify the specified attributes of a record
1234 This function modifies a record that is in the database.
1236 \param ldb the context associated with the database (from
1238 \param message the message containing the changes required.
1240 \return result code (LDB_SUCCESS if the record was modified as
1241 requested, otherwise a failure code)
1243 int ldb_modify(struct ldb_context
*ldb
,
1244 const struct ldb_message
*message
);
1247 Rename a record in the database
1249 This function renames a record in the database.
1251 \param ldb the context associated with the database (from
1253 \param olddn the DN for the record to be renamed.
1254 \param newdn the new DN
1256 \return result code (LDB_SUCCESS if the record was renamed as
1257 requested, otherwise a failure code)
1259 int ldb_rename(struct ldb_context
*ldb
, struct ldb_dn
*olddn
, struct ldb_dn
*newdn
);
1262 Delete a record from the database
1264 This function deletes a record from the database.
1266 \param ldb the context associated with the database (from
1268 \param dn the DN for the record to be deleted.
1270 \return result code (LDB_SUCCESS if the record was deleted,
1271 otherwise a failure code)
1273 int ldb_delete(struct ldb_context
*ldb
, struct ldb_dn
*dn
);
1276 The default async extended operation callback function
1278 \param req the request we are callback of
1279 \param ares a single reply from the async core
1281 \return result code (LDB_SUCCESS on success, or a failure code)
1283 \note this function expects req->context to always be an struct ldb_result pointer
1284 AND a talloc context, this function will steal on the context each message
1285 from the ares reply passed on by the async core so that in the end all the
1286 messages will be in the context (ldb_result) memory tree.
1287 Freeing the passed context (ldb_result tree) will free all the resources
1288 (the request need to be freed separately and the result doe not depend on the
1289 request that can be freed as sson as the search request is finished)
1292 int ldb_extended_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
1296 Helper function to build a extended request
1298 \param ret_req the request structure is returned here (talloced on mem_ctx)
1299 \param ldb the context associated with the database (from ldb_init())
1300 \param mem_ctx a talloc memory context (used as parent of ret_req)
1301 \param oid the OID of the extended operation.
1302 \param data a void pointer a the extended operation specific parameters,
1303 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1304 \param controls an array of controls
1305 \param context the callback function context
1306 \param the callback function to handle the async replies
1307 \param the parent request if any
1309 \return result code (LDB_SUCCESS on success, or a failure code)
1311 int ldb_build_extended_req(struct ldb_request
**ret_req
,
1312 struct ldb_context
*ldb
,
1313 TALLOC_CTX
*mem_ctx
,
1315 void *data
,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1316 struct ldb_control
**controls
,
1318 ldb_request_callback_t callback
,
1319 struct ldb_request
*parent
);
1322 call an extended operation
1324 This function deletes a record from the database.
1326 \param ldb the context associated with the database (from ldb_init())
1327 \param oid the OID of the extended operation.
1328 \param data a void pointer a the extended operation specific parameters,
1329 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1330 \param res the result of the extended operation
1332 \return result code (LDB_SUCCESS if the extended operation returned fine,
1333 otherwise a failure code)
1335 int ldb_extended(struct ldb_context
*ldb
,
1337 void *data
,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1338 struct ldb_result
**res
);
1341 Obtain current/next database sequence number
1343 int ldb_sequence_number(struct ldb_context
*ldb
, enum ldb_sequence_type type
, uint64_t *seq_num
);
1348 int ldb_transaction_start(struct ldb_context
*ldb
);
1351 first phase of two phase commit
1353 int ldb_transaction_prepare_commit(struct ldb_context
*ldb
);
1356 commit a transaction
1358 int ldb_transaction_commit(struct ldb_context
*ldb
);
1361 cancel a transaction
1363 int ldb_transaction_cancel(struct ldb_context
*ldb
);
1366 cancel a transaction with no error if no transaction is pending
1367 used when we fork() to clear any parent transactions
1369 int ldb_transaction_cancel_noerr(struct ldb_context
*ldb
);
1373 return extended error information from the last call
1375 const char *ldb_errstring(struct ldb_context
*ldb
);
1378 return a string explaining what a ldb error constant meancs
1380 const char *ldb_strerror(int ldb_err
);
1383 setup the default utf8 functions
1384 FIXME: these functions do not yet handle utf8
1386 void ldb_set_utf8_default(struct ldb_context
*ldb
);
1391 \param ldb the ldb context
1392 \param mem_ctx the memory context to allocate the result string
1394 \param s the string that is to be folded
1395 \return a copy of the string, converted to upper case
1397 \note The default function is not yet UTF8 aware. Provide your own
1398 set of functions through ldb_set_utf8_fns()
1400 char *ldb_casefold(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
, const char *s
, size_t n
);
1403 Check the attribute name is valid according to rfc2251
1404 \param s the string to check
1406 \return 1 if the name is ok
1408 int ldb_valid_attr_name(const char *s
);
1411 ldif manipulation functions
1415 Write an LDIF message
1417 This function writes an LDIF message using a caller supplied write
1420 \param ldb the ldb context (from ldb_init())
1421 \param fprintf_fn a function pointer for the write function. This must take
1422 a private data pointer, followed by a format string, and then a variable argument
1424 \param private_data pointer that will be provided back to the write
1425 function. This is useful for maintaining state or context.
1426 \param ldif the message to write out
1428 \return the total number of bytes written, or an error code as returned
1429 from the write function.
1431 \sa ldb_ldif_write_file for a more convenient way to write to a
1434 \sa ldb_ldif_read for the reader equivalent to this function.
1436 int ldb_ldif_write(struct ldb_context
*ldb
,
1437 int (*fprintf_fn
)(void *, const char *, ...) PRINTF_ATTRIBUTE(2,3),
1439 const struct ldb_ldif
*ldif
);
1442 Clean up an LDIF message
1444 This function cleans up a LDIF message read using ldb_ldif_read()
1445 or related functions (such as ldb_ldif_read_string() and
1446 ldb_ldif_read_file().
1448 \param ldb the ldb context (from ldb_init())
1449 \param msg the message to clean up and free
1452 void ldb_ldif_read_free(struct ldb_context
*ldb
, struct ldb_ldif
*msg
);
1455 Read an LDIF message
1457 This function creates an LDIF message using a caller supplied read
1460 \param ldb the ldb context (from ldb_init())
1461 \param fgetc_fn a function pointer for the read function. This must
1462 take a private data pointer, and must return a pointer to an
1463 integer corresponding to the next byte read (or EOF if there is no
1464 more data to be read).
1465 \param private_data pointer that will be provided back to the read
1466 function. This is udeful for maintaining state or context.
1468 \return the LDIF message that has been read in
1470 \note You must free the LDIF message when no longer required, using
1471 ldb_ldif_read_free().
1473 \sa ldb_ldif_read_file for a more convenient way to read from a
1476 \sa ldb_ldif_read_string for a more convenient way to read from a
1477 string (char array).
1479 \sa ldb_ldif_write for the writer equivalent to this function.
1481 struct ldb_ldif
*ldb_ldif_read(struct ldb_context
*ldb
,
1482 int (*fgetc_fn
)(void *), void *private_data
);
1485 Read an LDIF message from a file
1487 This function reads the next LDIF message from the contents of a
1488 file stream. If you want to get all of the LDIF messages, you will
1489 need to repeatedly call this function, until it returns NULL.
1491 \param ldb the ldb context (from ldb_init())
1492 \param f the file stream to read from (typically from fdopen())
1494 \sa ldb_ldif_read_string for an equivalent function that will read
1495 from a string (char array).
1497 \sa ldb_ldif_write_file for the writer equivalent to this function.
1500 struct ldb_ldif
*ldb_ldif_read_file(struct ldb_context
*ldb
, FILE *f
);
1503 Read an LDIF message from a string
1505 This function reads the next LDIF message from the contents of a char
1506 array. If you want to get all of the LDIF messages, you will need
1507 to repeatedly call this function, until it returns NULL.
1509 \param ldb the ldb context (from ldb_init())
1510 \param s pointer to the char array to read from
1512 \sa ldb_ldif_read_file for an equivalent function that will read
1515 \sa ldb_ldif_write for a more general (arbitrary read function)
1516 version of this function.
1518 struct ldb_ldif
*ldb_ldif_read_string(struct ldb_context
*ldb
, const char **s
);
1521 Write an LDIF message to a file
1523 \param ldb the ldb context (from ldb_init())
1524 \param f the file stream to write to (typically from fdopen())
1525 \param msg the message to write out
1527 \return the total number of bytes written, or a negative error code
1529 \sa ldb_ldif_read_file for the reader equivalent to this function.
1531 int ldb_ldif_write_file(struct ldb_context
*ldb
, FILE *f
, const struct ldb_ldif
*msg
);
1534 Write an LDIF message to a string
1536 \param ldb the ldb context (from ldb_init())
1537 \param mem_ctx the talloc context on which to attach the string)
1538 \param msg the message to write out
1540 \return the string containing the LDIF, or NULL on error
1542 \sa ldb_ldif_read_string for the reader equivalent to this function.
1544 char * ldb_ldif_write_string(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
,
1545 const struct ldb_ldif
*msg
);
1549 Produce a string form of an ldb message
1551 convenient function to turn a ldb_message into a string. Useful for
1554 char *ldb_ldif_message_string(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
,
1555 enum ldb_changetype changetype
,
1556 const struct ldb_message
*msg
);
1560 Base64 encode a buffer
1562 \param mem_ctx the memory context that the result is allocated
1564 \param buf pointer to the array that is to be encoded
1565 \param len the number of elements in the array to be encoded
1567 \return pointer to an array containing the encoded data
1569 \note The caller is responsible for freeing the result
1571 char *ldb_base64_encode(TALLOC_CTX
*mem_ctx
, const char *buf
, int len
);
1574 Base64 decode a buffer
1576 This function decodes a base64 encoded string in place.
1578 \param s the string to decode.
1580 \return the length of the returned (decoded) string.
1582 \note the string is null terminated, but the null terminator is not
1583 included in the length.
1585 int ldb_base64_decode(char *s
);
1587 /* The following definitions come from lib/ldb/common/ldb_dn.c */
1590 Get the linear form of a DN (without any extended components)
1592 \param dn The DN to linearize
1595 const char *ldb_dn_get_linearized(struct ldb_dn
*dn
);
1598 Allocate a copy of the linear form of a DN (without any extended components) onto the supplied memory context
1600 \param dn The DN to linearize
1601 \param mem_ctx TALLOC context to return result on
1604 char *ldb_dn_alloc_linearized(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1607 Get the linear form of a DN (with any extended components)
1609 \param mem_ctx TALLOC context to return result on
1610 \param dn The DN to linearize
1611 \param mode Style of extended DN to return (0 is HEX representation of binary form, 1 is a string form)
1613 char *ldb_dn_get_extended_linearized(void *mem_ctx
, struct ldb_dn
*dn
, int mode
);
1614 const struct ldb_val
*ldb_dn_get_extended_component(struct ldb_dn
*dn
, const char *name
);
1615 int ldb_dn_set_extended_component(struct ldb_dn
*dn
, const char *name
, const struct ldb_val
*val
);
1616 void ldb_dn_extended_filter(struct ldb_dn
*dn
, const char * const *accept
);
1617 void ldb_dn_remove_extended_components(struct ldb_dn
*dn
);
1618 bool ldb_dn_has_extended(struct ldb_dn
*dn
);
1620 int ldb_dn_extended_add_syntax(struct ldb_context
*ldb
,
1622 const struct ldb_dn_extended_syntax
*syntax
);
1625 Allocate a new DN from a string
1627 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1628 \param dn The new DN
1630 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1633 struct ldb_dn
*ldb_dn_new(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
, const char *dn
);
1635 Allocate a new DN from a printf style format string and arguments
1637 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1638 \param new_fms The new DN as a format string (plus arguments)
1640 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1643 struct ldb_dn
*ldb_dn_new_fmt(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
, const char *new_fmt
, ...) PRINTF_ATTRIBUTE(3,4);
1645 Allocate a new DN from a struct ldb_val (useful to avoid buffer overrun)
1647 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1648 \param dn The new DN
1650 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1653 struct ldb_dn
*ldb_dn_from_ldb_val(void *mem_ctx
, struct ldb_context
*ldb
, const struct ldb_val
*strdn
);
1656 Determine if this DN is syntactically valid
1658 \param dn The DN to validate
1661 bool ldb_dn_validate(struct ldb_dn
*dn
);
1663 char *ldb_dn_escape_value(TALLOC_CTX
*mem_ctx
, struct ldb_val value
);
1664 const char *ldb_dn_get_casefold(struct ldb_dn
*dn
);
1665 char *ldb_dn_alloc_casefold(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1667 int ldb_dn_compare_base(struct ldb_dn
*base
, struct ldb_dn
*dn
);
1668 int ldb_dn_compare(struct ldb_dn
*edn0
, struct ldb_dn
*edn1
);
1670 bool ldb_dn_add_base(struct ldb_dn
*dn
, struct ldb_dn
*base
);
1671 bool ldb_dn_add_base_fmt(struct ldb_dn
*dn
, const char *base_fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1672 bool ldb_dn_add_child(struct ldb_dn
*dn
, struct ldb_dn
*child
);
1673 bool ldb_dn_add_child_fmt(struct ldb_dn
*dn
, const char *child_fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1674 bool ldb_dn_remove_base_components(struct ldb_dn
*dn
, unsigned int num
);
1675 bool ldb_dn_remove_child_components(struct ldb_dn
*dn
, unsigned int num
);
1677 struct ldb_dn
*ldb_dn_copy(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1678 struct ldb_dn
*ldb_dn_get_parent(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1679 char *ldb_dn_canonical_string(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1680 char *ldb_dn_canonical_ex_string(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1681 int ldb_dn_get_comp_num(struct ldb_dn
*dn
);
1682 const char *ldb_dn_get_component_name(struct ldb_dn
*dn
, unsigned int num
);
1683 const struct ldb_val
*ldb_dn_get_component_val(struct ldb_dn
*dn
, unsigned int num
);
1684 const char *ldb_dn_get_rdn_name(struct ldb_dn
*dn
);
1685 const struct ldb_val
*ldb_dn_get_rdn_val(struct ldb_dn
*dn
);
1686 int ldb_dn_set_component(struct ldb_dn
*dn
, int num
, const char *name
, const struct ldb_val val
);
1688 bool ldb_dn_is_valid(struct ldb_dn
*dn
);
1689 bool ldb_dn_is_special(struct ldb_dn
*dn
);
1690 bool ldb_dn_check_special(struct ldb_dn
*dn
, const char *check
);
1691 bool ldb_dn_is_null(struct ldb_dn
*dn
);
1692 int ldb_dn_update_components(struct ldb_dn
*dn
, const struct ldb_dn
*ref_dn
);
1696 Compare two attributes
1698 This function compares to attribute names. Note that this is a
1699 case-insensitive comparison.
1701 \param a the first attribute name to compare
1702 \param b the second attribute name to compare
1704 \return 0 if the attribute names are the same, or only differ in
1705 case; non-zero if there are any differences
1707 attribute names are restricted by rfc2251 so using
1708 strcasecmp and toupper here is ok.
1711 #define ldb_attr_cmp(a, b) strcasecmp(a, b)
1712 char *ldb_attr_casefold(TALLOC_CTX
*mem_ctx
, const char *s
);
1713 int ldb_attr_dn(const char *attr
);
1716 Create an empty message
1718 \param mem_ctx the memory context to create in. You can pass NULL
1719 to get the top level context, however the ldb context (from
1720 ldb_init()) may be a better choice
1722 struct ldb_message
*ldb_msg_new(TALLOC_CTX
*mem_ctx
);
1725 Find an element within an message
1727 struct ldb_message_element
*ldb_msg_find_element(const struct ldb_message
*msg
,
1728 const char *attr_name
);
1731 Compare two ldb_val values
1733 \param v1 first ldb_val structure to be tested
1734 \param v2 second ldb_val structure to be tested
1736 \return 1 for a match, 0 if there is any difference
1738 int ldb_val_equal_exact(const struct ldb_val
*v1
, const struct ldb_val
*v2
);
1741 find a value within an ldb_message_element
1743 \param el the element to search
1744 \param val the value to search for
1746 \note This search is case sensitive
1748 struct ldb_val
*ldb_msg_find_val(const struct ldb_message_element
*el
,
1749 struct ldb_val
*val
);
1752 add a new empty element to a ldb_message
1754 int ldb_msg_add_empty(struct ldb_message
*msg
,
1755 const char *attr_name
,
1757 struct ldb_message_element
**return_el
);
1760 add a element to a ldb_message
1762 int ldb_msg_add(struct ldb_message
*msg
,
1763 const struct ldb_message_element
*el
,
1765 int ldb_msg_add_value(struct ldb_message
*msg
,
1766 const char *attr_name
,
1767 const struct ldb_val
*val
,
1768 struct ldb_message_element
**return_el
);
1769 int ldb_msg_add_steal_value(struct ldb_message
*msg
,
1770 const char *attr_name
,
1771 struct ldb_val
*val
);
1772 int ldb_msg_add_steal_string(struct ldb_message
*msg
,
1773 const char *attr_name
, char *str
);
1774 int ldb_msg_add_string(struct ldb_message
*msg
,
1775 const char *attr_name
, const char *str
);
1776 int ldb_msg_add_linearized_dn(struct ldb_message
*msg
, const char *attr_name
,
1778 int ldb_msg_add_fmt(struct ldb_message
*msg
,
1779 const char *attr_name
, const char *fmt
, ...) PRINTF_ATTRIBUTE(3,4);
1782 compare two message elements - return 0 on match
1784 int ldb_msg_element_compare(struct ldb_message_element
*el1
,
1785 struct ldb_message_element
*el2
);
1786 int ldb_msg_element_compare_name(struct ldb_message_element
*el1
,
1787 struct ldb_message_element
*el2
);
1790 Find elements in a message.
1792 This function finds elements and converts to a specific type, with
1793 a give default value if not found. Assumes that elements are
1796 const struct ldb_val
*ldb_msg_find_ldb_val(const struct ldb_message
*msg
, const char *attr_name
);
1797 int ldb_msg_find_attr_as_int(const struct ldb_message
*msg
,
1798 const char *attr_name
,
1800 unsigned int ldb_msg_find_attr_as_uint(const struct ldb_message
*msg
,
1801 const char *attr_name
,
1802 unsigned int default_value
);
1803 int64_t ldb_msg_find_attr_as_int64(const struct ldb_message
*msg
,
1804 const char *attr_name
,
1805 int64_t default_value
);
1806 uint64_t ldb_msg_find_attr_as_uint64(const struct ldb_message
*msg
,
1807 const char *attr_name
,
1808 uint64_t default_value
);
1809 double ldb_msg_find_attr_as_double(const struct ldb_message
*msg
,
1810 const char *attr_name
,
1811 double default_value
);
1812 int ldb_msg_find_attr_as_bool(const struct ldb_message
*msg
,
1813 const char *attr_name
,
1815 const char *ldb_msg_find_attr_as_string(const struct ldb_message
*msg
,
1816 const char *attr_name
,
1817 const char *default_value
);
1819 struct ldb_dn
*ldb_msg_find_attr_as_dn(struct ldb_context
*ldb
,
1820 TALLOC_CTX
*mem_ctx
,
1821 const struct ldb_message
*msg
,
1822 const char *attr_name
);
1824 void ldb_msg_sort_elements(struct ldb_message
*msg
);
1826 struct ldb_message
*ldb_msg_copy_shallow(TALLOC_CTX
*mem_ctx
,
1827 const struct ldb_message
*msg
);
1828 struct ldb_message
*ldb_msg_copy(TALLOC_CTX
*mem_ctx
,
1829 const struct ldb_message
*msg
);
1831 struct ldb_message
*ldb_msg_canonicalize(struct ldb_context
*ldb
,
1832 const struct ldb_message
*msg
);
1835 struct ldb_message
*ldb_msg_diff(struct ldb_context
*ldb
,
1836 struct ldb_message
*msg1
,
1837 struct ldb_message
*msg2
);
1840 Tries to find a certain string attribute in a message
1842 \param msg the message to check
1843 \param name attribute name
1844 \param value attribute value
1846 \return 1 on match and 0 otherwise.
1848 int ldb_msg_check_string_attribute(const struct ldb_message
*msg
,
1853 Integrity check an ldb_message
1855 This function performs basic sanity / integrity checks on an
1858 \param ldb context in which to perform the checks
1859 \param msg the message to check
1861 \return LDB_SUCCESS if the message is OK, or a non-zero error code
1862 (one of LDB_ERR_INVALID_DN_SYNTAX, LDB_ERR_ENTRY_ALREADY_EXISTS or
1863 LDB_ERR_INVALID_ATTRIBUTE_SYNTAX) if there is a problem with a
1866 int ldb_msg_sanity_check(struct ldb_context
*ldb
,
1867 const struct ldb_message
*msg
);
1870 Duplicate an ldb_val structure
1872 This function copies an ldb value structure.
1874 \param mem_ctx the memory context that the duplicated value will be
1876 \param v the ldb_val to be duplicated.
1878 \return the duplicated ldb_val structure.
1880 struct ldb_val
ldb_val_dup(TALLOC_CTX
*mem_ctx
, const struct ldb_val
*v
);
1883 this allows the user to set a debug function for error reporting
1885 int ldb_set_debug(struct ldb_context
*ldb
,
1886 void (*debug
)(void *context
, enum ldb_debug_level level
,
1887 const char *fmt
, va_list ap
) PRINTF_ATTRIBUTE(3,0),
1891 this allows the user to set custom utf8 function for error reporting
1893 void ldb_set_utf8_fns(struct ldb_context
*ldb
,
1895 char *(*casefold
)(void *, void *, const char *, size_t n
));
1898 this sets up debug to print messages on stderr
1900 int ldb_set_debug_stderr(struct ldb_context
*ldb
);
1902 /* control backend specific opaque values */
1903 int ldb_set_opaque(struct ldb_context
*ldb
, const char *name
, void *value
);
1904 void *ldb_get_opaque(struct ldb_context
*ldb
, const char *name
);
1906 const char **ldb_attr_list_copy(TALLOC_CTX
*mem_ctx
, const char * const *attrs
);
1907 const char **ldb_attr_list_copy_add(TALLOC_CTX
*mem_ctx
, const char * const *attrs
, const char *new_attr
);
1908 int ldb_attr_in_list(const char * const *attrs
, const char *attr
);
1910 int ldb_msg_rename_attr(struct ldb_message
*msg
, const char *attr
, const char *replace
);
1911 int ldb_msg_copy_attr(struct ldb_message
*msg
, const char *attr
, const char *replace
);
1912 void ldb_msg_remove_attr(struct ldb_message
*msg
, const char *attr
);
1913 void ldb_msg_remove_element(struct ldb_message
*msg
, struct ldb_message_element
*el
);
1916 void ldb_parse_tree_attr_replace(struct ldb_parse_tree
*tree
,
1918 const char *replace
);
1921 shallow copy a tree - copying only the elements array so that the caller
1922 can safely add new elements without changing the message
1924 struct ldb_parse_tree
*ldb_parse_tree_copy_shallow(TALLOC_CTX
*mem_ctx
,
1925 const struct ldb_parse_tree
*ot
);
1928 Convert a time structure to a string
1930 This function converts a time_t structure to an LDAP formatted
1931 GeneralizedTime string.
1933 \param mem_ctx the memory context to allocate the return string in
1934 \param t the time structure to convert
1936 \return the formatted string, or NULL if the time structure could
1939 char *ldb_timestring(TALLOC_CTX
*mem_ctx
, time_t t
);
1942 Convert a string to a time structure
1944 This function converts an LDAP formatted GeneralizedTime string
1945 to a time_t structure.
1947 \param s the string to convert
1949 \return the time structure, or 0 if the string cannot be converted
1951 time_t ldb_string_to_time(const char *s
);
1954 convert a LDAP GeneralizedTime string in ldb_val format to a
1957 int ldb_val_to_time(const struct ldb_val
*v
, time_t *t
);
1960 Convert a time structure to a string
1962 This function converts a time_t structure to an LDAP formatted
1965 \param mem_ctx the memory context to allocate the return string in
1966 \param t the time structure to convert
1968 \return the formatted string, or NULL if the time structure could
1971 char *ldb_timestring_utc(TALLOC_CTX
*mem_ctx
, time_t t
);
1974 Convert a string to a time structure
1976 This function converts an LDAP formatted UTCTime string
1977 to a time_t structure.
1979 \param s the string to convert
1981 \return the time structure, or 0 if the string cannot be converted
1983 time_t ldb_string_utc_to_time(const char *s
);
1986 void ldb_qsort (void *const pbase
, size_t total_elems
, size_t size
, void *opaque
, ldb_qsort_cmp_fn_t cmp
);
1988 #ifndef discard_const
1989 #define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
1993 a wrapper around ldb_qsort() that ensures the comparison function is
1994 type safe. This will produce a compilation warning if the types
1997 #define LDB_TYPESAFE_QSORT(base, numel, opaque, comparison) \
2000 ldb_qsort(base, numel, sizeof((base)[0]), discard_const(opaque), (ldb_qsort_cmp_fn_t)comparison); \
2001 comparison(&((base)[0]), &((base)[1]), opaque); \
2008 Convert an array of string represention of a control into an array of ldb_control structures
2010 \param ldb LDB context
2011 \param mem_ctx TALLOC context to return result on, and to allocate error_string on
2012 \param control_strings Array of string-formatted controls
2014 \return array of ldb_control elements
2016 struct ldb_control
**ldb_parse_control_strings(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
, const char **control_strings
);
2019 return the ldb flags
2021 unsigned int ldb_get_flags(struct ldb_context
*ldb
);
2023 /* set the ldb flags */
2024 void ldb_set_flags(struct ldb_context
*ldb
, unsigned flags
);
2027 struct ldb_dn
*ldb_dn_binary_from_ldb_val(void *mem_ctx
,
2028 struct ldb_context
*ldb
,
2029 const struct ldb_val
*strdn
);
2031 int ldb_dn_get_binary(struct ldb_dn
*dn
, struct ldb_val
*val
);
2032 int ldb_dn_set_binary(struct ldb_dn
*dn
, struct ldb_val
*val
);