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