r7803: added support in ldb for callers to setup ldif read/write functions,
[samba.git] / source4 / lib / ldb / include / ldb.h
1 /* 
2    ldb database library
3
4    Copyright (C) Andrew Tridgell  2004
5    Copyright (C) Stefan Metzmacher  2004
6
7      ** NOTE! The following LGPL license applies to the ldb
8      ** library. This does NOT imply that all of Samba is released
9      ** under the LGPL
10    
11    This library is free software; you can redistribute it and/or
12    modify it under the terms of the GNU Lesser General Public
13    License as published by the Free Software Foundation; either
14    version 2 of the License, or (at your option) any later version.
15
16    This library is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    Lesser General Public License for more details.
20
21    You should have received a copy of the GNU Lesser General Public
22    License along with this library; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
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 #ifndef _LDB_H_
38 #define _LDB_H_ 1
39
40 /*
41   major restrictions as compared to normal LDAP:
42
43      - no async calls.
44      - each record must have a unique key field
45      - the key must be representable as a NULL terminated C string and may not 
46        contain a comma or braces
47
48   major restrictions as compared to tdb:
49
50      - no explicit locking calls
51
52 */
53
54 /*
55   an individual lump of data in a result comes in this format. The
56   pointer will usually be to a UTF-8 string if the application is
57   sensible, but it can be to anything you like, including binary data
58   blobs of arbitrary size.
59 */
60 #ifndef ldb_val
61 struct ldb_val {
62         uint8_t *data;
63         size_t length;
64 };
65 #endif
66
67 /* these flags are used in ldd_message_element.flags fields. The
68    LDA_FLAGS_MOD_* flags are used in ldap_modify() calls to specify
69    whether attributes are being added, deleted or modified */
70 #define LDB_FLAG_MOD_MASK  0x3
71 #define LDB_FLAG_MOD_ADD     1
72 #define LDB_FLAG_MOD_REPLACE 2
73 #define LDB_FLAG_MOD_DELETE  3
74
75
76 /*
77   well known object IDs
78 */
79 #define LDB_OID_COMPARATOR_AND  "1.2.840.113556.1.4.803"
80 #define LDB_OID_COMPARATOR_OR   "1.2.840.113556.1.4.804"
81
82 /*
83   results are given back as arrays of ldb_message_element
84 */
85 struct ldb_message_element {
86         unsigned int flags;
87         const char *name;
88         unsigned int num_values;
89         struct ldb_val *values;
90 };
91
92
93 /*
94   a ldb_message represents all or part of a record. It can contain an arbitrary
95   number of elements. 
96 */
97 struct ldb_message {
98         char *dn;
99         unsigned int num_elements;
100         struct ldb_message_element *elements;
101         void *private_data; /* private to the backend */
102 };
103
104 enum ldb_changetype {
105         LDB_CHANGETYPE_NONE=0,
106         LDB_CHANGETYPE_ADD,
107         LDB_CHANGETYPE_DELETE,
108         LDB_CHANGETYPE_MODIFY
109 };
110
111 /*
112   a ldif record - from ldif_read
113 */
114 struct ldb_ldif {
115         enum ldb_changetype changetype;
116         struct ldb_message *msg;
117 };
118
119 enum ldb_scope {LDB_SCOPE_DEFAULT=-1, 
120                 LDB_SCOPE_BASE=0, 
121                 LDB_SCOPE_ONELEVEL=1,
122                 LDB_SCOPE_SUBTREE=2};
123
124 struct ldb_context;
125
126 /*
127   the fuction type for the callback used in traversing the database
128 */
129 typedef int (*ldb_traverse_fn)(struct ldb_context *, const struct ldb_message *);
130
131
132 struct ldb_module;
133
134 /* debugging uses one of the following levels */
135 enum ldb_debug_level {LDB_DEBUG_FATAL, LDB_DEBUG_ERROR, 
136                       LDB_DEBUG_WARNING, LDB_DEBUG_TRACE};
137
138 /*
139   the user can optionally supply a debug function. The function
140   is based on the vfprintf() style of interface, but with the addition
141   of a severity level
142 */
143 struct ldb_debug_ops {
144         void (*debug)(void *context, enum ldb_debug_level level, 
145                       const char *fmt, va_list ap);
146         void *context;
147 };
148
149 #define LDB_FLG_RDONLY 1
150
151 #ifndef PRINTF_ATTRIBUTE
152 #define PRINTF_ATTRIBUTE(a,b)
153 #endif
154
155
156 /* structues for ldb_parse_tree handling code */
157 enum ldb_parse_op {LDB_OP_SIMPLE=1, LDB_OP_EXTENDED=2, 
158                    LDB_OP_AND='&', LDB_OP_OR='|', LDB_OP_NOT='!'};
159
160 struct ldb_parse_tree {
161         enum ldb_parse_op operation;
162         union {
163                 struct {
164                         char *attr;
165                         struct ldb_val value;
166                 } simple;
167                 struct {
168                         char *attr;
169                         int dnAttributes;
170                         char *rule_id;
171                         struct ldb_val value;
172                 } extended;
173                 struct {
174                         unsigned int num_elements;
175                         struct ldb_parse_tree **elements;
176                 } list;
177                 struct {
178                         struct ldb_parse_tree *child;
179                 } not;
180         } u;
181 };
182
183 struct ldb_parse_tree *ldb_parse_tree(void *mem_ctx, const char *s);
184 char *ldb_filter_from_tree(void *mem_ctx, struct ldb_parse_tree *tree);
185 char *ldb_binary_encode(void *ctx, struct ldb_val val);
186
187
188 /*
189   functions for controlling ldif encode/decode
190 */
191 typedef int (*ldb_ldif_handler_t)(struct ldb_context *, const struct ldb_val *, struct ldb_val *);
192
193 struct ldb_ldif_handler {
194         const char *attr;
195         ldb_ldif_handler_t read_fn;
196         ldb_ldif_handler_t write_fn;
197 };
198
199
200 /*
201   initialise a ldb context
202 */
203 struct ldb_context *ldb_init(void *mem_ctx);
204
205 /* 
206  connect to a database. The URL can either be one of the following forms
207    ldb://path
208    ldapi://path
209
210    flags is made up of LDB_FLG_*
211
212    the options are passed uninterpreted to the backend, and are
213    backend specific
214 */
215 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
216
217 /*
218   search the database given a LDAP-like search expression
219
220   return the number of records found, or -1 on error
221
222   use talloc_free to free the ldb_message returned
223 */
224 int ldb_search(struct ldb_context *ldb, 
225                const char *base,
226                enum ldb_scope scope,
227                const char *expression,
228                const char * const *attrs, struct ldb_message ***res);
229
230 /*
231   like ldb_search() but takes a parse tree
232 */
233 int ldb_search_bytree(struct ldb_context *ldb, 
234                       const char *base,
235                       enum ldb_scope scope,
236                       struct ldb_parse_tree *tree,
237                       const char * const *attrs, struct ldb_message ***res);
238
239 /*
240   add a record to the database. Will fail if a record with the given class and key
241   already exists
242 */
243 int ldb_add(struct ldb_context *ldb, 
244             const struct ldb_message *message);
245
246 /*
247   modify the specified attributes of a record
248 */
249 int ldb_modify(struct ldb_context *ldb, 
250                const struct ldb_message *message);
251
252 /*
253   rename a record in the database
254 */
255 int ldb_rename(struct ldb_context *ldb, const char *olddn, const char *newdn);
256
257 /*
258   delete a record from the database
259 */
260 int ldb_delete(struct ldb_context *ldb, const char *dn);
261
262
263 /*
264   return extended error information from the last call
265 */
266 const char *ldb_errstring(struct ldb_context *ldb);
267
268 /*
269   casefold a string (should be UTF8, but at the moment it isn't)
270 */
271 char *ldb_casefold(void *mem_ctx, const char *s);
272
273 /*
274   ldif manipulation functions
275 */
276 int ldb_ldif_write(struct ldb_context *ldb,
277                    int (*fprintf_fn)(void *, const char *, ...), 
278                    void *private_data,
279                    const struct ldb_ldif *ldif);
280 void ldb_ldif_read_free(struct ldb_context *ldb, struct ldb_ldif *);
281 struct ldb_ldif *ldb_ldif_read(struct ldb_context *ldb, 
282                                int (*fgetc_fn)(void *), void *private_data);
283 struct ldb_ldif *ldb_ldif_read_file(struct ldb_context *ldb, FILE *f);
284 struct ldb_ldif *ldb_ldif_read_string(struct ldb_context *ldb, const char *s);
285 int ldb_ldif_write_file(struct ldb_context *ldb, FILE *f, const struct ldb_ldif *msg);
286 char *ldb_base64_encode(void *mem_ctx, const char *buf, int len);
287 int ldb_base64_decode(char *s);
288
289
290 /* useful functions for ldb_message structure manipulation */
291
292 int ldb_dn_cmp(const char *dn1, const char *dn2);
293 int ldb_attr_cmp(const char *dn1, const char *dn2);
294
295 /* case-fold a DN */
296 char *ldb_dn_fold(void * mem_ctx,
297                   const char * dn,
298                   void * user_data,
299                   int (* case_fold_attr_fn)(void * user_data, char * attr));
300
301 /* create an empty message */
302 struct ldb_message *ldb_msg_new(void *mem_ctx);
303
304 /* find an element within an message */
305 struct ldb_message_element *ldb_msg_find_element(const struct ldb_message *msg, 
306                                                  const char *attr_name);
307
308 /* compare two ldb_val values - return 0 on match */
309 int ldb_val_equal_exact(const struct ldb_val *v1, const struct ldb_val *v2);
310
311 /* find a value within an ldb_message_element */
312 struct ldb_val *ldb_msg_find_val(const struct ldb_message_element *el, 
313                                  struct ldb_val *val);
314
315 /* add a new empty element to a ldb_message */
316 int ldb_msg_add_empty(struct ldb_context *ldb,
317                       struct ldb_message *msg, const char *attr_name, int flags);
318
319 /* add a element to a ldb_message */
320 int ldb_msg_add(struct ldb_context *ldb, 
321                 struct ldb_message *msg, 
322                 const struct ldb_message_element *el, 
323                 int flags);
324 int ldb_msg_add_value(struct ldb_context *ldb,
325                       struct ldb_message *msg, 
326                       const char *attr_name,
327                       const struct ldb_val *val);
328 int ldb_msg_add_string(struct ldb_context *ldb, struct ldb_message *msg, 
329                        const char *attr_name, const char *str);
330 int ldb_msg_add_fmt(struct ldb_context *ldb, struct ldb_message *msg, 
331                     const char *attr_name, const char *fmt, ...) PRINTF_ATTRIBUTE(4,5);
332
333 /* compare two message elements - return 0 on match */
334 int ldb_msg_element_compare(struct ldb_message_element *el1, 
335                             struct ldb_message_element *el2);
336
337 /* find elements in a message and convert to a specific type, with
338    a give default value if not found. Assumes that elements are
339    single valued */
340 const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg, const char *attr_name);
341 int ldb_msg_find_int(const struct ldb_message *msg, 
342                      const char *attr_name,
343                      int default_value);
344 unsigned int ldb_msg_find_uint(const struct ldb_message *msg, 
345                                const char *attr_name,
346                                unsigned int default_value);
347 int64_t ldb_msg_find_int64(const struct ldb_message *msg, 
348                            const char *attr_name,
349                            int64_t default_value);
350 uint64_t ldb_msg_find_uint64(const struct ldb_message *msg, 
351                              const char *attr_name,
352                              uint64_t default_value);
353 double ldb_msg_find_double(const struct ldb_message *msg, 
354                            const char *attr_name,
355                            double default_value);
356 const char *ldb_msg_find_string(const struct ldb_message *msg, 
357                                 const char *attr_name,
358                                 const char *default_value);
359
360 void ldb_msg_sort_elements(struct ldb_message *msg);
361
362 void ldb_msg_free(struct ldb_context *ldb, struct ldb_message *msg);
363
364 struct ldb_message *ldb_msg_copy(struct ldb_context *ldb, 
365                                  const struct ldb_message *msg);
366
367 struct ldb_message *ldb_msg_canonicalize(struct ldb_context *ldb, 
368                                          const struct ldb_message *msg);
369
370
371 struct ldb_message *ldb_msg_diff(struct ldb_context *ldb, 
372                                  struct ldb_message *msg1,
373                                  struct ldb_message *msg2);
374
375 struct ldb_val ldb_val_dup(void *mem_ctx, const struct ldb_val *v);
376
377 /*
378   this allows the user to set a debug function for error reporting
379 */
380 int ldb_set_debug(struct ldb_context *ldb,
381                   void (*debug)(void *context, enum ldb_debug_level level, 
382                                 const char *fmt, va_list ap),
383                   void *context);
384
385 /* this sets up debug to print messages on stderr */
386 int ldb_set_debug_stderr(struct ldb_context *ldb);
387
388 /* control backend specific opaque values */
389 int ldb_set_opaque(struct ldb_context *ldb, const char *name, void *value);
390 void *ldb_get_opaque(struct ldb_context *ldb, const char *name);
391
392 #endif