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 LDA_FLAGS_MOD_ADD,
98 LDA_FLAGS_MOD_DELETE and LDA_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 structures for ldb_parse_tree handling code
246 enum ldb_parse_op
{ LDB_OP_AND
=1, LDB_OP_OR
=2, LDB_OP_NOT
=3,
247 LDB_OP_EQUALITY
=4, LDB_OP_SUBSTRING
=5,
248 LDB_OP_GREATER
=6, LDB_OP_LESS
=7, LDB_OP_PRESENT
=8,
249 LDB_OP_APPROX
=9, LDB_OP_EXTENDED
=10 };
251 struct ldb_parse_tree
{
252 enum ldb_parse_op operation
;
255 struct ldb_parse_tree
*child
;
259 struct ldb_val value
;
263 int start_with_wildcard
;
264 int end_with_wildcard
;
265 struct ldb_val
**chunks
;
272 struct ldb_val value
;
278 struct ldb_val value
;
281 unsigned int num_elements
;
282 struct ldb_parse_tree
**elements
;
287 struct ldb_parse_tree
*ldb_parse_tree(TALLOC_CTX
*mem_ctx
, const char *s
);
288 char *ldb_filter_from_tree(TALLOC_CTX
*mem_ctx
, struct ldb_parse_tree
*tree
);
293 This function encodes a binary blob using the encoding rules in RFC
294 2254 (Section 4). This function also escapes any non-printable
297 \param mem_ctx the memory context to allocate the return string in.
298 \param val the (potentially) binary data to be encoded
300 \return the encoded data as a null terminated string
302 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
304 char *ldb_binary_encode(TALLOC_CTX
*mem_ctx
, struct ldb_val val
);
309 This function encodes a string using the encoding rules in RFC 2254
310 (Section 4). This function also escapes any non-printable
313 \param mem_ctx the memory context to allocate the return string in.
314 \param string the string to be encoded
316 \return the encoded data as a null terminated string
318 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>.
320 char *ldb_binary_encode_string(TALLOC_CTX
*mem_ctx
, const char *string
);
323 functions for controlling attribute handling
325 typedef int (*ldb_attr_handler_t
)(struct ldb_context
*, TALLOC_CTX
*mem_ctx
, const struct ldb_val
*, struct ldb_val
*);
326 typedef int (*ldb_attr_comparison_t
)(struct ldb_context
*, TALLOC_CTX
*mem_ctx
, const struct ldb_val
*, const struct ldb_val
*);
329 attribute handler structure
331 attr -> The attribute name
332 ldif_read_fn -> convert from ldif to binary format
333 ldif_write_fn -> convert from binary to ldif format
334 canonicalise_fn -> canonicalise a value, for use by indexing and dn construction
335 comparison_fn -> compare two values
338 struct ldb_schema_syntax
{
340 ldb_attr_handler_t ldif_read_fn
;
341 ldb_attr_handler_t ldif_write_fn
;
342 ldb_attr_handler_t canonicalise_fn
;
343 ldb_attr_comparison_t comparison_fn
;
346 struct ldb_schema_attribute
{
349 const struct ldb_schema_syntax
*syntax
;
352 const struct ldb_schema_attribute
*ldb_schema_attribute_by_name(struct ldb_context
*ldb
,
355 struct ldb_dn_extended_syntax
{
357 ldb_attr_handler_t read_fn
;
358 ldb_attr_handler_t write_clear_fn
;
359 ldb_attr_handler_t write_hex_fn
;
362 const struct ldb_dn_extended_syntax
*ldb_dn_extended_syntax_by_name(struct ldb_context
*ldb
,
366 The attribute is not returned by default
368 #define LDB_ATTR_FLAG_HIDDEN (1<<0)
370 /* the attribute handler name should be freed when released */
371 #define LDB_ATTR_FLAG_ALLOCATED (1<<1)
374 The attribute is supplied by the application and should not be removed
376 #define LDB_ATTR_FLAG_FIXED (1<<2)
379 when this is set, attempts to create two records which have the same
380 value for this attribute will return LDB_ERR_ENTRY_ALREADY_EXISTS
382 #define LDB_ATTR_FLAG_UNIQUE_INDEX (1<<3)
385 LDAP attribute syntax for a DN
387 This is the well-known LDAP attribute syntax for a DN.
389 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
391 #define LDB_SYNTAX_DN "1.3.6.1.4.1.1466.115.121.1.12"
394 LDAP attribute syntax for a Directory String
396 This is the well-known LDAP attribute syntax for a Directory String.
398 \sa <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
400 #define LDB_SYNTAX_DIRECTORY_STRING "1.3.6.1.4.1.1466.115.121.1.15"
403 LDAP attribute syntax for an integer
405 This is the well-known LDAP attribute syntax for an integer.
407 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
409 #define LDB_SYNTAX_INTEGER "1.3.6.1.4.1.1466.115.121.1.27"
412 LDAP attribute syntax for a boolean
414 This is the well-known LDAP attribute syntax for a boolean.
416 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
418 #define LDB_SYNTAX_BOOLEAN "1.3.6.1.4.1.1466.115.121.1.7"
421 LDAP attribute syntax for an octet string
423 This is the well-known LDAP attribute syntax for an octet string.
425 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
427 #define LDB_SYNTAX_OCTET_STRING "1.3.6.1.4.1.1466.115.121.1.40"
430 LDAP attribute syntax for UTC time.
432 This is the well-known LDAP attribute syntax for a UTC time.
434 See <a href="http://www.ietf.org/rfc/rfc2252.txt">RFC 2252</a>, Section 4.3.2
436 #define LDB_SYNTAX_UTC_TIME "1.3.6.1.4.1.1466.115.121.1.53"
438 #define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS"
440 /* sorting helpers */
441 typedef int (*ldb_qsort_cmp_fn_t
) (void *v1
, void *v2
, void *opaque
);
444 OID for the paged results control. This control is included in the
445 searchRequest and searchResultDone messages as part of the controls
446 field of the LDAPMessage, as defined in Section 4.1.12 of
449 \sa <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
451 #define LDB_CONTROL_PAGED_RESULTS_OID "1.2.840.113556.1.4.319"
454 OID for specifying the returned elements of the ntSecurityDescriptor
456 \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>
458 #define LDB_CONTROL_SD_FLAGS_OID "1.2.840.113556.1.4.801"
461 OID for specifying an advanced scope for the search (one partition)
463 \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>
465 #define LDB_CONTROL_DOMAIN_SCOPE_OID "1.2.840.113556.1.4.1339"
468 OID for specifying an advanced scope for a search
470 \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>
472 #define LDB_CONTROL_SEARCH_OPTIONS_OID "1.2.840.113556.1.4.1340"
477 \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>
479 #define LDB_CONTROL_NOTIFICATION_OID "1.2.840.113556.1.4.528"
482 OID for getting deleted objects
484 \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>
486 #define LDB_CONTROL_SHOW_DELETED_OID "1.2.840.113556.1.4.417"
489 OID for getting recycled objects
491 \sa <a href="http://msdn.microsoft.com/en-us/library/dd304621(PROT.13).aspx">Microsoft documentation of this OID</a>
493 #define LDB_CONTROL_SHOW_RECYCLED_OID "1.2.840.113556.1.4.2064"
496 OID for getting deactivated linked attributes
498 \sa <a href="http://msdn.microsoft.com/en-us/library/dd302781(PROT.13).aspx">Microsoft documentation of this OID</a>
500 #define LDB_CONTROL_SHOW_DEACTIVATED_LINK_OID "1.2.840.113556.1.4.2065"
505 \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>
507 #define LDB_CONTROL_EXTENDED_DN_OID "1.2.840.113556.1.4.529"
510 OID for LDAP server sort result extension.
512 This control is included in the searchRequest message as part of
513 the controls field of the LDAPMessage, as defined in Section 4.1.12
514 of LDAP v3. The controlType is set to
515 "1.2.840.113556.1.4.473". The criticality MAY be either TRUE or
516 FALSE (where absent is also equivalent to FALSE) at the client's
519 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
521 #define LDB_CONTROL_SERVER_SORT_OID "1.2.840.113556.1.4.473"
524 OID for LDAP server sort result response extension.
526 This control is included in the searchResultDone message as part of
527 the controls field of the LDAPMessage, as defined in Section 4.1.12 of
530 \sa <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
532 #define LDB_CONTROL_SORT_RESP_OID "1.2.840.113556.1.4.474"
535 OID for LDAP Attribute Scoped Query extension.
537 This control is included in SearchRequest or SearchResponse
538 messages as part of the controls field of the LDAPMessage.
540 #define LDB_CONTROL_ASQ_OID "1.2.840.113556.1.4.1504"
543 OID for LDAP Directory Sync extension.
545 This control is included in SearchRequest or SearchResponse
546 messages as part of the controls field of the LDAPMessage.
548 #define LDB_CONTROL_DIRSYNC_OID "1.2.840.113556.1.4.841"
552 OID for LDAP Virtual List View Request extension.
554 This control is included in SearchRequest messages
555 as part of the controls field of the LDAPMessage.
557 #define LDB_CONTROL_VLV_REQ_OID "2.16.840.1.113730.3.4.9"
560 OID for LDAP Virtual List View Response extension.
562 This control is included in SearchResponse messages
563 as part of the controls field of the LDAPMessage.
565 #define LDB_CONTROL_VLV_RESP_OID "2.16.840.1.113730.3.4.10"
568 OID to let modifies don't give an error when adding an existing
569 attribute with the same value or deleting an nonexisting one attribute
571 \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>
573 #define LDB_CONTROL_PERMISSIVE_MODIFY_OID "1.2.840.113556.1.4.1413"
576 OID for LDAP Extended Operation START_TLS.
578 This Extended operation is used to start a new TLS
579 channel on top of a clear text channel.
581 #define LDB_EXTENDED_START_TLS_OID "1.3.6.1.4.1.1466.20037"
585 #define LDB_EXTENDED_DYNAMIC_OID "1.3.6.1.4.1.1466.101.119.1"
589 #define LDB_EXTENDED_FAST_BIND_OID "1.2.840.113556.1.4.1781"
591 struct ldb_sd_flags_control
{
593 * request the owner 0x00000001
594 * request the group 0x00000002
595 * request the DACL 0x00000004
596 * request the SACL 0x00000008
598 unsigned secinfo_flags
;
602 * DOMAIN_SCOPE 0x00000001
603 * this limits the search to one partition,
604 * and no referrals will be returned.
605 * (Note this doesn't limit the entries by there
606 * objectSid belonging to a domain! Builtin and Foreign Sids
607 * are still returned)
609 * PHANTOM_ROOT 0x00000002
610 * this search on the whole tree on a domain controller
611 * over multiple partitions without referrals.
612 * (This is the default behavior on the Global Catalog Port)
615 #define LDB_SEARCH_OPTION_DOMAIN_SCOPE 0x00000001
616 #define LDB_SEARCH_OPTION_PHANTOM_ROOT 0x00000002
618 struct ldb_search_options_control
{
619 unsigned search_options
;
622 struct ldb_paged_control
{
628 struct ldb_extended_dn_control
{
632 struct ldb_server_sort_control
{
638 struct ldb_sort_resp_control
{
643 struct ldb_asq_control
{
645 char *source_attribute
;
650 struct ldb_dirsync_control
{
657 struct ldb_vlv_req_control
{
675 struct ldb_vlv_resp_control
{
689 enum ldb_request_type
{
696 LDB_REQ_REGISTER_CONTROL
,
697 LDB_REQ_REGISTER_PARTITION
700 enum ldb_reply_type
{
717 struct ldb_extended
{
719 void *data
; /* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
722 #define LDB_EXTENDED_SEQUENCE_NUMBER "1.3.6.1.4.1.7165.4.4.3"
724 enum ldb_sequence_type
{
726 LDB_SEQ_HIGHEST_TIMESTAMP
,
730 #define LDB_SEQ_GLOBAL_SEQUENCE 0x01
731 #define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02
733 struct ldb_seqnum_request
{
734 enum ldb_sequence_type type
;
737 struct ldb_seqnum_result
{
744 struct ldb_message
**msgs
;
745 struct ldb_extended
*extended
;
746 struct ldb_control
**controls
;
752 enum ldb_reply_type type
;
753 struct ldb_message
*message
;
754 struct ldb_extended
*response
;
755 struct ldb_control
**controls
;
764 enum ldb_scope scope
;
765 struct ldb_parse_tree
*tree
;
766 const char * const *attrs
;
767 struct ldb_result
*res
;
771 const struct ldb_message
*message
;
775 const struct ldb_message
*message
;
783 struct ldb_dn
*olddn
;
784 struct ldb_dn
*newdn
;
787 struct ldb_register_control
{
791 struct ldb_register_partition
{
795 typedef int (*ldb_request_callback_t
)(struct ldb_request
*, struct ldb_reply
*);
799 enum ldb_request_type operation
;
802 struct ldb_search search
;
804 struct ldb_modify mod
;
805 struct ldb_delete del
;
806 struct ldb_rename rename
;
807 struct ldb_extended extended
;
808 struct ldb_register_control reg_control
;
809 struct ldb_register_partition reg_partition
;
812 struct ldb_control
**controls
;
815 ldb_request_callback_t callback
;
819 struct ldb_handle
*handle
;
822 int ldb_request(struct ldb_context
*ldb
, struct ldb_request
*request
);
823 int ldb_request_done(struct ldb_request
*req
, int status
);
824 bool ldb_request_is_done(struct ldb_request
*req
);
826 int ldb_modules_wait(struct ldb_handle
*handle
);
827 int ldb_wait(struct ldb_handle
*handle
, enum ldb_wait_type type
);
829 int ldb_set_timeout(struct ldb_context
*ldb
, struct ldb_request
*req
, int timeout
);
830 int ldb_set_timeout_from_prev_req(struct ldb_context
*ldb
, struct ldb_request
*oldreq
, struct ldb_request
*newreq
);
831 void ldb_set_create_perms(struct ldb_context
*ldb
, unsigned int perms
);
832 void ldb_set_modules_dir(struct ldb_context
*ldb
, const char *path
);
833 struct tevent_context
;
834 void ldb_set_event_context(struct ldb_context
*ldb
, struct tevent_context
*ev
);
835 struct tevent_context
* ldb_get_event_context(struct ldb_context
*ldb
);
838 Initialise ldbs' global information
840 This is required before any other LDB call
842 \return 0 if initialisation succeeded, -1 otherwise
844 int ldb_global_init(void);
847 Initialise an ldb context
849 This is required before any other LDB call.
851 \param mem_ctx pointer to a talloc memory context. Pass NULL if there is
852 no suitable context available.
854 \return pointer to ldb_context that should be free'd (using talloc_free())
855 at the end of the program.
857 struct ldb_context
*ldb_init(TALLOC_CTX
*mem_ctx
, struct tevent_context
*ev_ctx
);
860 Connect to a database.
862 This is typically called soon after ldb_init(), and is required prior to
863 any search or database modification operations.
865 The URL can be one of the following forms:
871 \param ldb the context associated with the database (from ldb_init())
872 \param url the URL of the database to connect to, as noted above
873 \param flags a combination of LDB_FLG_* to modify the connection behaviour
874 \param options backend specific options - passed uninterpreted to the backend
876 \return result code (LDB_SUCCESS on success, or a failure code)
878 \note It is an error to connect to a database that does not exist in readonly mode
879 (that is, with LDB_FLG_RDONLY). However in read-write mode, the database will be
880 created if it does not exist.
883 typedef void (*ldb_async_timeout_fn
) (void *);
884 typedef bool (*ldb_async_callback_fn
) (void *);
885 typedef int (*ldb_async_ctx_add_op_fn
)(void *, time_t, void *, ldb_async_timeout_fn
, ldb_async_callback_fn
);
886 typedef int (*ldb_async_ctx_wait_op_fn
)(void *);
888 void ldb_async_ctx_set_private_data(struct ldb_context
*ldb
,
890 void ldb_async_ctx_set_add_op(struct ldb_context
*ldb
,
891 ldb_async_ctx_add_op_fn add_op
);
892 void ldb_async_ctx_set_wait_op(struct ldb_context
*ldb
,
893 ldb_async_ctx_wait_op_fn wait_op
);
895 int ldb_connect(struct ldb_context
*ldb
, const char *url
, unsigned int flags
, const char *options
[]);
898 return an automatic basedn from the rootDomainNamingContext of the rootDSE
899 This value have been set in an opaque pointer at connection time
901 struct ldb_dn
*ldb_get_root_basedn(struct ldb_context
*ldb
);
904 return an automatic basedn from the configurationNamingContext of the rootDSE
905 This value have been set in an opaque pointer at connection time
907 struct ldb_dn
*ldb_get_config_basedn(struct ldb_context
*ldb
);
910 return an automatic basedn from the schemaNamingContext of the rootDSE
911 This value have been set in an opaque pointer at connection time
913 struct ldb_dn
*ldb_get_schema_basedn(struct ldb_context
*ldb
);
916 return an automatic baseDN from the defaultNamingContext of the rootDSE
917 This value have been set in an opaque pointer at connection time
919 struct ldb_dn
*ldb_get_default_basedn(struct ldb_context
*ldb
);
922 The default async search callback function
924 \param req the request we are callback of
925 \param ares a single reply from the async core
927 \return result code (LDB_SUCCESS on success, or a failure code)
929 \note this function expects req->context to always be an struct ldb_result pointer
930 AND a talloc context, this function will steal on the context each message
931 from the ares reply passed on by the async core so that in the end all the
932 messages will be in the context (ldb_result) memory tree.
933 Freeing the passed context (ldb_result tree) will free all the resources
934 (the request need to be freed separately and the result doe not depend on the
935 request that can be freed as sson as the search request is finished)
938 int ldb_search_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
941 The default async extended operation callback function
943 \param req the request we are callback of
944 \param ares a single reply from the async core
946 \return result code (LDB_SUCCESS on success, or a failure code)
948 int ldb_op_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
952 Helper function to build a search request
954 \param ret_req the request structure is returned here (talloced on mem_ctx)
955 \param ldb the context associated with the database (from ldb_init())
956 \param mem_ctx a talloc memory context (used as parent of ret_req)
957 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
958 \param scope the search scope for the query
959 \param expression the search expression to use for this query
960 \param attrs the search attributes for the query (pass NULL if none required)
961 \param controls an array of controls
962 \param context the callback function context
963 \param the callback function to handle the async replies
964 \param the parent request if any
966 \return result code (LDB_SUCCESS on success, or a failure code)
969 int ldb_build_search_req(struct ldb_request
**ret_req
,
970 struct ldb_context
*ldb
,
973 enum ldb_scope scope
,
974 const char *expression
,
975 const char * const *attrs
,
976 struct ldb_control
**controls
,
978 ldb_request_callback_t callback
,
979 struct ldb_request
*parent
);
981 int ldb_build_search_req_ex(struct ldb_request
**ret_req
,
982 struct ldb_context
*ldb
,
985 enum ldb_scope scope
,
986 struct ldb_parse_tree
*tree
,
987 const char * const *attrs
,
988 struct ldb_control
**controls
,
990 ldb_request_callback_t callback
,
991 struct ldb_request
*parent
);
994 Helper function to build an add request
996 \param ret_req the request structure is returned here (talloced on mem_ctx)
997 \param ldb the context associated with the database (from ldb_init())
998 \param mem_ctx a talloc memory context (used as parent of ret_req)
999 \param message contains the entry to be added
1000 \param controls an array of controls
1001 \param context the callback function context
1002 \param the callback function to handle the async replies
1003 \param the parent request if any
1005 \return result code (LDB_SUCCESS on success, or a failure code)
1008 int ldb_build_add_req(struct ldb_request
**ret_req
,
1009 struct ldb_context
*ldb
,
1010 TALLOC_CTX
*mem_ctx
,
1011 const struct ldb_message
*message
,
1012 struct ldb_control
**controls
,
1014 ldb_request_callback_t callback
,
1015 struct ldb_request
*parent
);
1018 Helper function to build a modify request
1020 \param ret_req the request structure is returned here (talloced on mem_ctx)
1021 \param ldb the context associated with the database (from ldb_init())
1022 \param mem_ctx a talloc memory context (used as parent of ret_req)
1023 \param message contains the entry to be modified
1024 \param controls an array of controls
1025 \param context the callback function context
1026 \param the callback function to handle the async replies
1027 \param the parent request if any
1029 \return result code (LDB_SUCCESS on success, or a failure code)
1032 int ldb_build_mod_req(struct ldb_request
**ret_req
,
1033 struct ldb_context
*ldb
,
1034 TALLOC_CTX
*mem_ctx
,
1035 const struct ldb_message
*message
,
1036 struct ldb_control
**controls
,
1038 ldb_request_callback_t callback
,
1039 struct ldb_request
*parent
);
1042 Helper function to build a delete request
1044 \param ret_req the request structure is returned here (talloced on mem_ctx)
1045 \param ldb the context associated with the database (from ldb_init())
1046 \param mem_ctx a talloc memory context (used as parent of ret_req)
1047 \param dn the DN to be deleted
1048 \param controls an array of controls
1049 \param context the callback function context
1050 \param the callback function to handle the async replies
1051 \param the parent request if any
1053 \return result code (LDB_SUCCESS on success, or a failure code)
1056 int ldb_build_del_req(struct ldb_request
**ret_req
,
1057 struct ldb_context
*ldb
,
1058 TALLOC_CTX
*mem_ctx
,
1060 struct ldb_control
**controls
,
1062 ldb_request_callback_t callback
,
1063 struct ldb_request
*parent
);
1066 Helper function to build a rename request
1068 \param ret_req the request structure is returned here (talloced on mem_ctx)
1069 \param ldb the context associated with the database (from ldb_init())
1070 \param mem_ctx a talloc memory context (used as parent of ret_req)
1071 \param olddn the old DN
1072 \param newdn the new DN
1073 \param controls an array of controls
1074 \param context the callback function context
1075 \param the callback function to handle the async replies
1076 \param the parent request if any
1078 \return result code (LDB_SUCCESS on success, or a failure code)
1081 int ldb_build_rename_req(struct ldb_request
**ret_req
,
1082 struct ldb_context
*ldb
,
1083 TALLOC_CTX
*mem_ctx
,
1084 struct ldb_dn
*olddn
,
1085 struct ldb_dn
*newdn
,
1086 struct ldb_control
**controls
,
1088 ldb_request_callback_t callback
,
1089 struct ldb_request
*parent
);
1092 Add a ldb_control to a ldb_request
1094 \param req the request struct where to add the control
1095 \param oid the object identifier of the control as string
1096 \param critical whether the control should be critical or not
1097 \param data a talloc pointer to the control specific data
1099 \return result code (LDB_SUCCESS on success, or a failure code)
1101 int ldb_request_add_control(struct ldb_request
*req
, const char *oid
, bool critical
, void *data
);
1104 check if a control with the specified "oid" exist and return it
1105 \param req the request struct where to add the control
1106 \param oid the object identifier of the control as string
1108 \return the control, NULL if not found
1110 struct ldb_control
*ldb_request_get_control(struct ldb_request
*req
, const char *oid
);
1113 check if a control with the specified "oid" exist and return it
1114 \param rep the reply struct where to add the control
1115 \param oid the object identifier of the control as string
1117 \return the control, NULL if not found
1119 struct ldb_control
*ldb_reply_get_control(struct ldb_reply
*rep
, const char *oid
);
1124 This function searches the database, and returns
1125 records that match an LDAP-like search expression
1127 \param ldb the context associated with the database (from ldb_init())
1128 \param mem_ctx the memory context to use for the request and the results
1129 \param result the return result
1130 \param base the Base Distinguished Name for the query (use ldb_dn_new() for an empty one)
1131 \param scope the search scope for the query
1132 \param attrs the search attributes for the query (pass NULL if none required)
1133 \param exp_fmt the search expression to use for this query (printf like)
1135 \return result code (LDB_SUCCESS on success, or a failure code)
1137 \note use talloc_free() to free the ldb_result returned
1139 int ldb_search(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
,
1140 struct ldb_result
**result
, struct ldb_dn
*base
,
1141 enum ldb_scope scope
, const char * const *attrs
,
1142 const char *exp_fmt
, ...) PRINTF_ATTRIBUTE(7,8);
1145 Add a record to the database.
1147 This function adds a record to the database. This function will fail
1148 if a record with the specified class and key already exists in the
1151 \param ldb the context associated with the database (from
1153 \param message the message containing the record to add.
1155 \return result code (LDB_SUCCESS if the record was added, otherwise
1158 int ldb_add(struct ldb_context
*ldb
,
1159 const struct ldb_message
*message
);
1162 Modify the specified attributes of a record
1164 This function modifies a record that is in the database.
1166 \param ldb the context associated with the database (from
1168 \param message the message containing the changes required.
1170 \return result code (LDB_SUCCESS if the record was modified as
1171 requested, otherwise a failure code)
1173 int ldb_modify(struct ldb_context
*ldb
,
1174 const struct ldb_message
*message
);
1177 Rename a record in the database
1179 This function renames a record in the database.
1181 \param ldb the context associated with the database (from
1183 \param olddn the DN for the record to be renamed.
1184 \param newdn the new DN
1186 \return result code (LDB_SUCCESS if the record was renamed as
1187 requested, otherwise a failure code)
1189 int ldb_rename(struct ldb_context
*ldb
, struct ldb_dn
*olddn
, struct ldb_dn
*newdn
);
1192 Delete a record from the database
1194 This function deletes a record from the database.
1196 \param ldb the context associated with the database (from
1198 \param dn the DN for the record to be deleted.
1200 \return result code (LDB_SUCCESS if the record was deleted,
1201 otherwise a failure code)
1203 int ldb_delete(struct ldb_context
*ldb
, struct ldb_dn
*dn
);
1206 The default async extended operation callback function
1208 \param req the request we are callback of
1209 \param ares a single reply from the async core
1211 \return result code (LDB_SUCCESS on success, or a failure code)
1213 \note this function expects req->context to always be an struct ldb_result pointer
1214 AND a talloc context, this function will steal on the context each message
1215 from the ares reply passed on by the async core so that in the end all the
1216 messages will be in the context (ldb_result) memory tree.
1217 Freeing the passed context (ldb_result tree) will free all the resources
1218 (the request need to be freed separately and the result doe not depend on the
1219 request that can be freed as sson as the search request is finished)
1222 int ldb_extended_default_callback(struct ldb_request
*req
, struct ldb_reply
*ares
);
1226 Helper function to build a extended request
1228 \param ret_req the request structure is returned here (talloced on mem_ctx)
1229 \param ldb the context associated with the database (from ldb_init())
1230 \param mem_ctx a talloc memory context (used as parent of ret_req)
1231 \param oid the OID of the extended operation.
1232 \param data a void pointer a the extended operation specific parameters,
1233 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1234 \param controls an array of controls
1235 \param context the callback function context
1236 \param the callback function to handle the async replies
1237 \param the parent request if any
1239 \return result code (LDB_SUCCESS on success, or a failure code)
1241 int ldb_build_extended_req(struct ldb_request
**ret_req
,
1242 struct ldb_context
*ldb
,
1243 TALLOC_CTX
*mem_ctx
,
1245 void *data
,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1246 struct ldb_control
**controls
,
1248 ldb_request_callback_t callback
,
1249 struct ldb_request
*parent
);
1252 call an extended operation
1254 This function deletes a record from the database.
1256 \param ldb the context associated with the database (from ldb_init())
1257 \param oid the OID of the extended operation.
1258 \param data a void pointer a the extended operation specific parameters,
1259 it needs to be NULL or a valid talloc pointer! talloc_get_type() will be used on it
1260 \param res the result of the extended operation
1262 \return result code (LDB_SUCCESS if the extended operation returned fine,
1263 otherwise a failure code)
1265 int ldb_extended(struct ldb_context
*ldb
,
1267 void *data
,/* NULL or a valid talloc pointer! talloc_get_type() will be used on it */
1268 struct ldb_result
**res
);
1271 Obtain current/next database sequence number
1273 int ldb_sequence_number(struct ldb_context
*ldb
, enum ldb_sequence_type type
, uint64_t *seq_num
);
1278 int ldb_transaction_start(struct ldb_context
*ldb
);
1281 commit a transaction
1283 int ldb_transaction_commit(struct ldb_context
*ldb
);
1286 cancel a transaction
1288 int ldb_transaction_cancel(struct ldb_context
*ldb
);
1292 return extended error information from the last call
1294 const char *ldb_errstring(struct ldb_context
*ldb
);
1297 return a string explaining what a ldb error constant meancs
1299 const char *ldb_strerror(int ldb_err
);
1302 setup the default utf8 functions
1303 FIXME: these functions do not yet handle utf8
1305 void ldb_set_utf8_default(struct ldb_context
*ldb
);
1310 \param ldb the ldb context
1311 \param mem_ctx the memory context to allocate the result string
1313 \param s the string that is to be folded
1314 \return a copy of the string, converted to upper case
1316 \note The default function is not yet UTF8 aware. Provide your own
1317 set of functions through ldb_set_utf8_fns()
1319 char *ldb_casefold(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
, const char *s
, size_t n
);
1322 Check the attribute name is valid according to rfc2251
1323 \param s the string to check
1325 \return 1 if the name is ok
1327 int ldb_valid_attr_name(const char *s
);
1330 ldif manipulation functions
1334 Write an LDIF message
1336 This function writes an LDIF message using a caller supplied write
1339 \param ldb the ldb context (from ldb_init())
1340 \param fprintf_fn a function pointer for the write function. This must take
1341 a private data pointer, followed by a format string, and then a variable argument
1343 \param private_data pointer that will be provided back to the write
1344 function. This is useful for maintaining state or context.
1345 \param ldif the message to write out
1347 \return the total number of bytes written, or an error code as returned
1348 from the write function.
1350 \sa ldb_ldif_write_file for a more convenient way to write to a
1353 \sa ldb_ldif_read for the reader equivalent to this function.
1355 int ldb_ldif_write(struct ldb_context
*ldb
,
1356 int (*fprintf_fn
)(void *, const char *, ...) PRINTF_ATTRIBUTE(2,3),
1358 const struct ldb_ldif
*ldif
);
1361 Clean up an LDIF message
1363 This function cleans up a LDIF message read using ldb_ldif_read()
1364 or related functions (such as ldb_ldif_read_string() and
1365 ldb_ldif_read_file().
1367 \param ldb the ldb context (from ldb_init())
1368 \param msg the message to clean up and free
1371 void ldb_ldif_read_free(struct ldb_context
*ldb
, struct ldb_ldif
*msg
);
1374 Read an LDIF message
1376 This function creates an LDIF message using a caller supplied read
1379 \param ldb the ldb context (from ldb_init())
1380 \param fgetc_fn a function pointer for the read function. This must
1381 take a private data pointer, and must return a pointer to an
1382 integer corresponding to the next byte read (or EOF if there is no
1383 more data to be read).
1384 \param private_data pointer that will be provided back to the read
1385 function. This is udeful for maintaining state or context.
1387 \return the LDIF message that has been read in
1389 \note You must free the LDIF message when no longer required, using
1390 ldb_ldif_read_free().
1392 \sa ldb_ldif_read_file for a more convenient way to read from a
1395 \sa ldb_ldif_read_string for a more convenient way to read from a
1396 string (char array).
1398 \sa ldb_ldif_write for the writer equivalent to this function.
1400 struct ldb_ldif
*ldb_ldif_read(struct ldb_context
*ldb
,
1401 int (*fgetc_fn
)(void *), void *private_data
);
1404 Read an LDIF message from a file
1406 This function reads the next LDIF message from the contents of a
1407 file stream. If you want to get all of the LDIF messages, you will
1408 need to repeatedly call this function, until it returns NULL.
1410 \param ldb the ldb context (from ldb_init())
1411 \param f the file stream to read from (typically from fdopen())
1413 \sa ldb_ldif_read_string for an equivalent function that will read
1414 from a string (char array).
1416 \sa ldb_ldif_write_file for the writer equivalent to this function.
1419 struct ldb_ldif
*ldb_ldif_read_file(struct ldb_context
*ldb
, FILE *f
);
1422 Read an LDIF message from a string
1424 This function reads the next LDIF message from the contents of a char
1425 array. If you want to get all of the LDIF messages, you will need
1426 to repeatedly call this function, until it returns NULL.
1428 \param ldb the ldb context (from ldb_init())
1429 \param s pointer to the char array to read from
1431 \sa ldb_ldif_read_file for an equivalent function that will read
1434 \sa ldb_ldif_write for a more general (arbitrary read function)
1435 version of this function.
1437 struct ldb_ldif
*ldb_ldif_read_string(struct ldb_context
*ldb
, const char **s
);
1440 Write an LDIF message to a file
1442 \param ldb the ldb context (from ldb_init())
1443 \param f the file stream to write to (typically from fdopen())
1444 \param msg the message to write out
1446 \return the total number of bytes written, or a negative error code
1448 \sa ldb_ldif_read_file for the reader equivalent to this function.
1450 int ldb_ldif_write_file(struct ldb_context
*ldb
, FILE *f
, const struct ldb_ldif
*msg
);
1453 Write an LDIF message to a string
1455 \param ldb the ldb context (from ldb_init())
1456 \param mem_ctx the talloc context on which to attach the string)
1457 \param msg the message to write out
1459 \return the string containing the LDIF, or NULL on error
1461 \sa ldb_ldif_read_string for the reader equivalent to this function.
1463 char * ldb_ldif_write_string(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
,
1464 const struct ldb_ldif
*msg
);
1467 Base64 encode a buffer
1469 \param mem_ctx the memory context that the result is allocated
1471 \param buf pointer to the array that is to be encoded
1472 \param len the number of elements in the array to be encoded
1474 \return pointer to an array containing the encoded data
1476 \note The caller is responsible for freeing the result
1478 char *ldb_base64_encode(TALLOC_CTX
*mem_ctx
, const char *buf
, int len
);
1481 Base64 decode a buffer
1483 This function decodes a base64 encoded string in place.
1485 \param s the string to decode.
1487 \return the length of the returned (decoded) string.
1489 \note the string is null terminated, but the null terminator is not
1490 included in the length.
1492 int ldb_base64_decode(char *s
);
1494 /* The following definitions come from lib/ldb/common/ldb_dn.c */
1497 Get the linear form of a DN (without any extended components)
1499 \param dn The DN to linearize
1502 const char *ldb_dn_get_linearized(struct ldb_dn
*dn
);
1505 Allocate a copy of the linear form of a DN (without any extended components) onto the supplied memory context
1507 \param dn The DN to linearize
1508 \param mem_ctx TALLOC context to return result on
1511 char *ldb_dn_alloc_linearized(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1514 Get the linear form of a DN (with any extended components)
1516 \param mem_ctx TALLOC context to return result on
1517 \param dn The DN to linearize
1518 \param mode Style of extended DN to return (0 is HEX representation of binary form, 1 is a string form)
1520 char *ldb_dn_get_extended_linearized(void *mem_ctx
, struct ldb_dn
*dn
, int mode
);
1521 const struct ldb_val
*ldb_dn_get_extended_component(struct ldb_dn
*dn
, const char *name
);
1522 int ldb_dn_set_extended_component(struct ldb_dn
*dn
, const char *name
, const struct ldb_val
*val
);
1524 void ldb_dn_remove_extended_components(struct ldb_dn
*dn
);
1525 bool ldb_dn_has_extended(struct ldb_dn
*dn
);
1527 int ldb_dn_extended_add_syntax(struct ldb_context
*ldb
,
1529 const struct ldb_dn_extended_syntax
*syntax
);
1532 Allocate a new DN from a string
1534 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1535 \param dn The new DN
1537 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1540 struct ldb_dn
*ldb_dn_new(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
, const char *dn
);
1542 Allocate a new DN from a printf style format string and arguments
1544 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1545 \param new_fms The new DN as a format string (plus arguments)
1547 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1550 struct ldb_dn
*ldb_dn_new_fmt(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
, const char *new_fmt
, ...) PRINTF_ATTRIBUTE(3,4);
1552 Allocate a new DN from a struct ldb_val (useful to avoid buffer overrun)
1554 \param mem_ctx TALLOC context to return resulting ldb_dn structure on
1555 \param dn The new DN
1557 \note The DN will not be parsed at this time. Use ldb_dn_validate to tell if the DN is syntacticly correct
1560 struct ldb_dn
*ldb_dn_from_ldb_val(void *mem_ctx
, struct ldb_context
*ldb
, const struct ldb_val
*strdn
);
1563 Determine if this DN is syntactically valid
1565 \param dn The DN to validate
1568 bool ldb_dn_validate(struct ldb_dn
*dn
);
1570 char *ldb_dn_escape_value(TALLOC_CTX
*mem_ctx
, struct ldb_val value
);
1571 const char *ldb_dn_get_casefold(struct ldb_dn
*dn
);
1572 char *ldb_dn_alloc_casefold(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1574 int ldb_dn_compare_base(struct ldb_dn
*base
, struct ldb_dn
*dn
);
1575 int ldb_dn_compare(struct ldb_dn
*edn0
, struct ldb_dn
*edn1
);
1577 bool ldb_dn_add_base(struct ldb_dn
*dn
, struct ldb_dn
*base
);
1578 bool ldb_dn_add_base_fmt(struct ldb_dn
*dn
, const char *base_fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1579 bool ldb_dn_add_child(struct ldb_dn
*dn
, struct ldb_dn
*child
);
1580 bool ldb_dn_add_child_fmt(struct ldb_dn
*dn
, const char *child_fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1581 bool ldb_dn_remove_base_components(struct ldb_dn
*dn
, unsigned int num
);
1582 bool ldb_dn_remove_child_components(struct ldb_dn
*dn
, unsigned int num
);
1584 struct ldb_dn
*ldb_dn_copy(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1585 struct ldb_dn
*ldb_dn_get_parent(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1586 char *ldb_dn_canonical_string(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1587 char *ldb_dn_canonical_ex_string(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
);
1588 int ldb_dn_get_comp_num(struct ldb_dn
*dn
);
1589 const char *ldb_dn_get_component_name(struct ldb_dn
*dn
, unsigned int num
);
1590 const struct ldb_val
*ldb_dn_get_component_val(struct ldb_dn
*dn
, unsigned int num
);
1591 const char *ldb_dn_get_rdn_name(struct ldb_dn
*dn
);
1592 const struct ldb_val
*ldb_dn_get_rdn_val(struct ldb_dn
*dn
);
1593 int ldb_dn_set_component(struct ldb_dn
*dn
, int num
, const char *name
, const struct ldb_val val
);
1595 bool ldb_dn_is_valid(struct ldb_dn
*dn
);
1596 bool ldb_dn_is_special(struct ldb_dn
*dn
);
1597 bool ldb_dn_check_special(struct ldb_dn
*dn
, const char *check
);
1598 bool ldb_dn_is_null(struct ldb_dn
*dn
);
1602 Compare two attributes
1604 This function compares to attribute names. Note that this is a
1605 case-insensitive comparison.
1607 \param a the first attribute name to compare
1608 \param b the second attribute name to compare
1610 \return 0 if the attribute names are the same, or only differ in
1611 case; non-zero if there are any differences
1613 attribute names are restricted by rfc2251 so using
1614 strcasecmp and toupper here is ok.
1617 #define ldb_attr_cmp(a, b) strcasecmp(a, b)
1618 char *ldb_attr_casefold(TALLOC_CTX
*mem_ctx
, const char *s
);
1619 int ldb_attr_dn(const char *attr
);
1622 Create an empty message
1624 \param mem_ctx the memory context to create in. You can pass NULL
1625 to get the top level context, however the ldb context (from
1626 ldb_init()) may be a better choice
1628 struct ldb_message
*ldb_msg_new(TALLOC_CTX
*mem_ctx
);
1631 Find an element within an message
1633 struct ldb_message_element
*ldb_msg_find_element(const struct ldb_message
*msg
,
1634 const char *attr_name
);
1637 Compare two ldb_val values
1639 \param v1 first ldb_val structure to be tested
1640 \param v2 second ldb_val structure to be tested
1642 \return 1 for a match, 0 if there is any difference
1644 int ldb_val_equal_exact(const struct ldb_val
*v1
, const struct ldb_val
*v2
);
1647 find a value within an ldb_message_element
1649 \param el the element to search
1650 \param val the value to search for
1652 \note This search is case sensitive
1654 struct ldb_val
*ldb_msg_find_val(const struct ldb_message_element
*el
,
1655 struct ldb_val
*val
);
1658 add a new empty element to a ldb_message
1660 int ldb_msg_add_empty(struct ldb_message
*msg
,
1661 const char *attr_name
,
1663 struct ldb_message_element
**return_el
);
1666 add a element to a ldb_message
1668 int ldb_msg_add(struct ldb_message
*msg
,
1669 const struct ldb_message_element
*el
,
1671 int ldb_msg_add_value(struct ldb_message
*msg
,
1672 const char *attr_name
,
1673 const struct ldb_val
*val
,
1674 struct ldb_message_element
**return_el
);
1675 int ldb_msg_add_steal_value(struct ldb_message
*msg
,
1676 const char *attr_name
,
1677 struct ldb_val
*val
);
1678 int ldb_msg_add_steal_string(struct ldb_message
*msg
,
1679 const char *attr_name
, char *str
);
1680 int ldb_msg_add_string(struct ldb_message
*msg
,
1681 const char *attr_name
, const char *str
);
1682 int ldb_msg_add_fmt(struct ldb_message
*msg
,
1683 const char *attr_name
, const char *fmt
, ...) PRINTF_ATTRIBUTE(3,4);
1686 compare two message elements - return 0 on match
1688 int ldb_msg_element_compare(struct ldb_message_element
*el1
,
1689 struct ldb_message_element
*el2
);
1690 int ldb_msg_element_compare_name(struct ldb_message_element
*el1
,
1691 struct ldb_message_element
*el2
);
1694 Find elements in a message.
1696 This function finds elements and converts to a specific type, with
1697 a give default value if not found. Assumes that elements are
1700 const struct ldb_val
*ldb_msg_find_ldb_val(const struct ldb_message
*msg
, const char *attr_name
);
1701 int ldb_msg_find_attr_as_int(const struct ldb_message
*msg
,
1702 const char *attr_name
,
1704 unsigned int ldb_msg_find_attr_as_uint(const struct ldb_message
*msg
,
1705 const char *attr_name
,
1706 unsigned int default_value
);
1707 int64_t ldb_msg_find_attr_as_int64(const struct ldb_message
*msg
,
1708 const char *attr_name
,
1709 int64_t default_value
);
1710 uint64_t ldb_msg_find_attr_as_uint64(const struct ldb_message
*msg
,
1711 const char *attr_name
,
1712 uint64_t default_value
);
1713 double ldb_msg_find_attr_as_double(const struct ldb_message
*msg
,
1714 const char *attr_name
,
1715 double default_value
);
1716 int ldb_msg_find_attr_as_bool(const struct ldb_message
*msg
,
1717 const char *attr_name
,
1719 const char *ldb_msg_find_attr_as_string(const struct ldb_message
*msg
,
1720 const char *attr_name
,
1721 const char *default_value
);
1723 struct ldb_dn
*ldb_msg_find_attr_as_dn(struct ldb_context
*ldb
,
1724 TALLOC_CTX
*mem_ctx
,
1725 const struct ldb_message
*msg
,
1726 const char *attr_name
);
1728 void ldb_msg_sort_elements(struct ldb_message
*msg
);
1730 struct ldb_message
*ldb_msg_copy_shallow(TALLOC_CTX
*mem_ctx
,
1731 const struct ldb_message
*msg
);
1732 struct ldb_message
*ldb_msg_copy(TALLOC_CTX
*mem_ctx
,
1733 const struct ldb_message
*msg
);
1735 struct ldb_message
*ldb_msg_canonicalize(struct ldb_context
*ldb
,
1736 const struct ldb_message
*msg
);
1739 struct ldb_message
*ldb_msg_diff(struct ldb_context
*ldb
,
1740 struct ldb_message
*msg1
,
1741 struct ldb_message
*msg2
);
1743 int ldb_msg_check_string_attribute(const struct ldb_message
*msg
,
1748 Integrity check an ldb_message
1750 This function performs basic sanity / integrity checks on an
1753 \param ldb context in which to perform the checks
1754 \param msg the message to check
1756 \return LDB_SUCCESS if the message is OK, or a non-zero error code
1757 (one of LDB_ERR_INVALID_DN_SYNTAX, LDB_ERR_ENTRY_ALREADY_EXISTS or
1758 LDB_ERR_INVALID_ATTRIBUTE_SYNTAX) if there is a problem with a
1761 int ldb_msg_sanity_check(struct ldb_context
*ldb
,
1762 const struct ldb_message
*msg
);
1765 Duplicate an ldb_val structure
1767 This function copies an ldb value structure.
1769 \param mem_ctx the memory context that the duplicated value will be
1771 \param v the ldb_val to be duplicated.
1773 \return the duplicated ldb_val structure.
1775 struct ldb_val
ldb_val_dup(TALLOC_CTX
*mem_ctx
, const struct ldb_val
*v
);
1778 this allows the user to set a debug function for error reporting
1780 int ldb_set_debug(struct ldb_context
*ldb
,
1781 void (*debug
)(void *context
, enum ldb_debug_level level
,
1782 const char *fmt
, va_list ap
) PRINTF_ATTRIBUTE(3,0),
1786 this allows the user to set custom utf8 function for error reporting
1788 void ldb_set_utf8_fns(struct ldb_context
*ldb
,
1790 char *(*casefold
)(void *, void *, const char *, size_t n
));
1793 this sets up debug to print messages on stderr
1795 int ldb_set_debug_stderr(struct ldb_context
*ldb
);
1797 /* control backend specific opaque values */
1798 int ldb_set_opaque(struct ldb_context
*ldb
, const char *name
, void *value
);
1799 void *ldb_get_opaque(struct ldb_context
*ldb
, const char *name
);
1801 const char **ldb_attr_list_copy(TALLOC_CTX
*mem_ctx
, const char * const *attrs
);
1802 const char **ldb_attr_list_copy_add(TALLOC_CTX
*mem_ctx
, const char * const *attrs
, const char *new_attr
);
1803 int ldb_attr_in_list(const char * const *attrs
, const char *attr
);
1805 int ldb_msg_rename_attr(struct ldb_message
*msg
, const char *attr
, const char *replace
);
1806 int ldb_msg_copy_attr(struct ldb_message
*msg
, const char *attr
, const char *replace
);
1807 void ldb_msg_remove_attr(struct ldb_message
*msg
, const char *attr
);
1808 void ldb_msg_remove_element(struct ldb_message
*msg
, struct ldb_message_element
*el
);
1811 void ldb_parse_tree_attr_replace(struct ldb_parse_tree
*tree
,
1813 const char *replace
);
1817 Convert a time structure to a string
1819 This function converts a time_t structure to an LDAP formatted
1820 GeneralizedTime string.
1822 \param mem_ctx the memory context to allocate the return string in
1823 \param t the time structure to convert
1825 \return the formatted string, or NULL if the time structure could
1828 char *ldb_timestring(TALLOC_CTX
*mem_ctx
, time_t t
);
1831 Convert a string to a time structure
1833 This function converts an LDAP formatted GeneralizedTime string
1834 to a time_t structure.
1836 \param s the string to convert
1838 \return the time structure, or 0 if the string cannot be converted
1840 time_t ldb_string_to_time(const char *s
);
1843 Convert a time structure to a string
1845 This function converts a time_t structure to an LDAP formatted
1848 \param mem_ctx the memory context to allocate the return string in
1849 \param t the time structure to convert
1851 \return the formatted string, or NULL if the time structure could
1854 char *ldb_timestring_utc(TALLOC_CTX
*mem_ctx
, time_t t
);
1857 Convert a string to a time structure
1859 This function converts an LDAP formatted UTCTime string
1860 to a time_t structure.
1862 \param s the string to convert
1864 \return the time structure, or 0 if the string cannot be converted
1866 time_t ldb_string_utc_to_time(const char *s
);
1869 void ldb_qsort (void *const pbase
, size_t total_elems
, size_t size
, void *opaque
, ldb_qsort_cmp_fn_t cmp
);
1873 Convert an array of string represention of a control into an array of ldb_control structures
1875 \param ldb LDB context
1876 \param mem_ctx TALLOC context to return result on, and to allocate error_string on
1877 \param control_strings Array of string-formatted controls
1879 \return array of ldb_control elements
1881 struct ldb_control
**ldb_parse_control_strings(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
, const char **control_strings
);