]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
SLAP_NVALUES: a couple of basic normalizers... but not working yet.
[openldap] / servers / slapd / slap.h
1 /* slap.h - stand alone ldap server include file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #ifndef _SLAP_H_
9 #define _SLAP_H_
10
11 #include "ldap_defaults.h"
12
13 #include <stdio.h>
14 #include <ac/stdlib.h>
15
16 #include <sys/types.h>
17 #include <ac/syslog.h>
18 #include <ac/regex.h>
19 #include <ac/signal.h>
20 #include <ac/socket.h>
21 #include <ac/time.h>
22 #include <ac/param.h>
23
24 #include "avl.h"
25
26 #ifndef ldap_debug
27 #define ldap_debug slap_debug
28 #endif
29
30 #include "ldap_log.h"
31
32 #include <ldap.h>
33 #include <ldap_schema.h>
34
35 #include "ldap_pvt_thread.h"
36 #include "ldap_queue.h"
37
38 #ifdef LDAP_DEVEL
39 /* #define SLAP_NVALUES 1 */
40 #define SLAP_EXTENDED_SCHEMA 1
41 #endif
42
43 LDAP_BEGIN_DECL
44 /*
45  * SLAPD Memory allocation macros
46  *
47  * Unlike ch_*() routines, these routines do not assert() upon
48  * allocation error.  They are intended to be used instead of
49  * ch_*() routines where the caller has implemented proper
50  * checking for and handling of allocation errors.
51  *
52  * Patches to convert ch_*() calls to SLAP_*() calls welcomed.
53  */
54 #define SLAP_MALLOC(s)      ber_memalloc((s))
55 #define SLAP_CALLOC(n,s)    ber_memcalloc((n),(s))
56 #define SLAP_REALLOC(p,s)   ber_memrealloc((p),(s))
57 #define SLAP_FREE(p)        ber_memfree((p))
58 #define SLAP_VFREE(v)       ber_memvfree((void**)(v))
59 #define SLAP_STRDUP(s)      ber_strdup((s))
60 #define SLAP_STRNDUP(s,l)   ber_strndup((s),(l))
61
62 #ifdef f_next
63 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
64 #endif
65
66 #define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
67 #define SLAPD_ANONYMOUS "cn=anonymous"
68
69 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
70  * This is a value used internally by the backends. It is needed to allow
71  * adding values that already exist without getting an error as required by
72  * modrdn when the new rdn was already an attribute value itself.
73  */
74 #define SLAP_MOD_SOFTADD        0x1000
75
76 #define MAXREMATCHES (100)
77
78 #define SLAP_MAX_WORKER_THREADS         (16)
79
80 #define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
81 #define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)
82
83 #define SLAP_TEXT_BUFLEN (256)
84
85 /* psuedo error code indicating abandoned operation */
86 #define SLAPD_ABANDON (-1)
87
88 /* psuedo error code indicating disconnect */
89 #define SLAPD_DISCONNECT (-2)
90
91
92 /* We assume "C" locale, that is US-ASCII */
93 #define ASCII_SPACE(c)  ( (c) == ' ' )
94 #define ASCII_LOWER(c)  ( (c) >= 'a' && (c) <= 'z' )
95 #define ASCII_UPPER(c)  ( (c) >= 'A' && (c) <= 'Z' )
96 #define ASCII_ALPHA(c)  ( ASCII_LOWER(c) || ASCII_UPPER(c) )
97 #define ASCII_DIGIT(c)  ( (c) >= '0' && (c) <= '9' )
98 #define ASCII_ALNUM(c)  ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
99 #define ASCII_PRINTABLE(c) ( (c) >= ' ' && (c) <= '~' )
100
101 #define SLAP_NIBBLE(c) ((c)&0x0f)
102 #define SLAP_ESCAPE_CHAR ('\\')
103 #define SLAP_ESCAPE_LO(c) ( "0123456789ABCDEF"[SLAP_NIBBLE(c)] )
104 #define SLAP_ESCAPE_HI(c) ( SLAP_ESCAPE_LO((c)>>4) )
105
106 #define FILTER_ESCAPE(c) ( (c) == '*' || (c) == '\\' \
107         || (c) == '(' || (c) == ')' || !ASCII_PRINTABLE(c) )
108
109 #define DN_ESCAPE(c)    ((c) == SLAP_ESCAPE_CHAR)
110 #define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
111 #define RDN_ATTRTYPEANDVALUE_SEPARATOR(c) ((c) == '+') /* RFC 2253 */
112 #define RDN_SEPARATOR(c) (DN_SEPARATOR(c) || RDN_ATTRTYPEANDVALUE_SEPARATOR(c))
113 #define RDN_NEEDSESCAPE(c)      ((c) == '\\' || (c) == '"')
114
115 #define DESC_LEADCHAR(c)        ( ASCII_ALPHA(c) )
116 #define DESC_CHAR(c)    ( ASCII_ALNUM(c) || (c) == '-' )
117 #define OID_LEADCHAR(c) ( ASCII_DIGIT(c) )
118 #define OID_SEPARATOR(c)        ( (c) == '.' )
119 #define OID_CHAR(c)     ( OID_LEADCHAR(c) || OID_SEPARATOR(c) )
120
121 #define ATTR_LEADCHAR(c)        ( DESC_LEADCHAR(c) || OID_LEADCHAR(c) )
122 #define ATTR_CHAR(c)    ( DESC_CHAR((c)) || (c) == '.' )
123
124 #define AD_LEADCHAR(c)  ( ATTR_CHAR(c) )
125 #define AD_CHAR(c)              ( ATTR_CHAR(c) || (c) == ';' )
126
127 #define SLAP_NUMERIC(c) ( ASCII_DIGIT(c) || ASCII_SPACE(c) )
128
129 #define SLAP_PRINTABLE(c)       ( ASCII_ALNUM(c) || (c) == '\'' || \
130         (c) == '(' || (c) == ')' || (c) == '+' || (c) == ',' || \
131         (c) == '-' || (c) == '.' || (c) == '/' || (c) == ':' || \
132         (c) == '?' || (c) == ' ' || (c) == '=' )
133 #define SLAP_PRINTABLES(c)      ( SLAP_PRINTABLE(c) || (c) == '$' )
134
135 /* must match in schema_init.c */
136 #define SLAPD_DN_SYNTAX                 "1.3.6.1.4.1.1466.115.121.1.12"
137 #define SLAPD_NAMEUID_SYNTAX    "1.3.6.1.4.1.1466.115.121.1.34"
138 #define SLAPD_GROUP_ATTR                "member"
139 #define SLAPD_GROUP_CLASS               "groupOfNames"
140 #define SLAPD_ROLE_ATTR                 "roleOccupant"
141 #define SLAPD_ROLE_CLASS                "organizationalRole"
142
143 #ifdef SLAPD_ACI_ENABLED
144 #define SLAPD_ACI_SYNTAX                "1.3.6.1.4.1.4203.666.2.1"
145 #endif
146
147 /* change this to "OpenLDAPset" */
148 #define SLAPD_ACI_SET_ATTR              "template"
149
150 #define SLAPD_TOP_OID                   "2.5.6.0"
151
152 LDAP_SLAPD_V (int) slap_debug;
153
154 typedef unsigned long slap_mask_t;
155
156 /* Security Strength Factor */
157 typedef unsigned slap_ssf_t;
158
159 typedef struct slap_ssf_set {
160         slap_ssf_t sss_ssf;
161         slap_ssf_t sss_transport;
162         slap_ssf_t sss_tls;
163         slap_ssf_t sss_sasl;
164         slap_ssf_t sss_update_ssf;
165         slap_ssf_t sss_update_transport;
166         slap_ssf_t sss_update_tls;
167         slap_ssf_t sss_update_sasl;
168         slap_ssf_t sss_simple_bind;
169 } slap_ssf_set_t;
170
171 /* Flags for telling slap_sasl_getdn() what type of identity is being passed */
172 #define SLAP_GETDN_AUTHCID 2
173 #define SLAP_GETDN_AUTHZID 4
174
175 /*
176  * Index types
177  */
178 #define SLAP_INDEX_TYPE           0x00FFUL
179 #define SLAP_INDEX_UNDEFINED      0x0001UL
180 #define SLAP_INDEX_PRESENT        0x0002UL
181 #define SLAP_INDEX_EQUALITY       0x0004UL
182 #define SLAP_INDEX_APPROX         0x0008UL
183 #define SLAP_INDEX_SUBSTR         0x0010UL
184 #define SLAP_INDEX_EXTENDED               0x0020UL
185
186 #define SLAP_INDEX_DEFAULT        SLAP_INDEX_EQUALITY
187
188 #define IS_SLAP_INDEX(mask, type)       (((mask) & (type)) == (type))
189
190 #define SLAP_INDEX_SUBSTR_TYPE    0x0F00UL
191
192 #define SLAP_INDEX_SUBSTR_INITIAL ( SLAP_INDEX_SUBSTR | 0x0100UL ) 
193 #define SLAP_INDEX_SUBSTR_ANY     ( SLAP_INDEX_SUBSTR | 0x0200UL )
194 #define SLAP_INDEX_SUBSTR_FINAL   ( SLAP_INDEX_SUBSTR | 0x0400UL )
195 #define SLAP_INDEX_SUBSTR_DEFAULT \
196         ( SLAP_INDEX_SUBSTR \
197         | SLAP_INDEX_SUBSTR_INITIAL \
198         | SLAP_INDEX_SUBSTR_ANY \
199         | SLAP_INDEX_SUBSTR_FINAL )
200
201 #define SLAP_INDEX_SUBSTR_MINLEN        2
202 #define SLAP_INDEX_SUBSTR_MAXLEN        4
203 #define SLAP_INDEX_SUBSTR_STEP  2
204
205 #define SLAP_INDEX_FLAGS         0xF000UL
206 #define SLAP_INDEX_NOSUBTYPES    0x1000UL /* don't use index w/ subtypes */
207 #define SLAP_INDEX_NOTAGS        0x2000UL /* don't use index w/ tags */
208
209 /*
210  * there is a single index for each attribute.  these prefixes ensure
211  * that there is no collision among keys.
212  */
213 #define SLAP_INDEX_EQUALITY_PREFIX      '='     /* prefix for equality keys     */
214 #define SLAP_INDEX_APPROX_PREFIX        '~'             /* prefix for approx keys       */
215 #define SLAP_INDEX_SUBSTR_PREFIX        '*'             /* prefix for substring keys    */
216 #define SLAP_INDEX_SUBSTR_INITIAL_PREFIX '^'
217 #define SLAP_INDEX_SUBSTR_FINAL_PREFIX '$'
218 #define SLAP_INDEX_CONT_PREFIX          '.'             /* prefix for continuation keys */
219
220 #define SLAP_SYNTAX_MATCHINGRULES_OID    "1.3.6.1.4.1.1466.115.121.1.30"
221 #define SLAP_SYNTAX_ATTRIBUTETYPES_OID   "1.3.6.1.4.1.1466.115.121.1.3"
222 #define SLAP_SYNTAX_OBJECTCLASSES_OID    "1.3.6.1.4.1.1466.115.121.1.37"
223 #define SLAP_SYNTAX_MATCHINGRULEUSES_OID "1.3.6.1.4.1.1466.115.121.1.31"
224 #define SLAP_SYNTAX_CONTENTRULE_OID              "1.3.6.1.4.1.1466.115.121.1.16"
225
226 #ifdef LDAP_CLIENT_UPDATE
227 #define LCUP_COOKIE_OID "1.3.6.1.4.1.4203.666.10.1"
228 #endif /* LDAP_CLIENT_UPDATE */
229
230 /*
231  * represents schema information for a database
232  */
233 #define SLAP_SCHERR_OUTOFMEM                    1
234 #define SLAP_SCHERR_CLASS_NOT_FOUND             2
235 #define SLAP_SCHERR_CLASS_BAD_USAGE             3
236 #define SLAP_SCHERR_CLASS_BAD_SUP               4
237 #define SLAP_SCHERR_CLASS_DUP                   5
238 #define SLAP_SCHERR_ATTR_NOT_FOUND              6
239 #define SLAP_SCHERR_ATTR_BAD_MR                 7
240 #define SLAP_SCHERR_ATTR_BAD_USAGE              8
241 #define SLAP_SCHERR_ATTR_BAD_SUP                9
242 #define SLAP_SCHERR_ATTR_INCOMPLETE             10
243 #define SLAP_SCHERR_ATTR_DUP                    11
244 #define SLAP_SCHERR_MR_NOT_FOUND                12
245 #define SLAP_SCHERR_MR_INCOMPLETE               13
246 #define SLAP_SCHERR_MR_DUP                              14
247 #define SLAP_SCHERR_SYN_NOT_FOUND               15
248 #define SLAP_SCHERR_SYN_DUP                             16
249 #define SLAP_SCHERR_NO_NAME                             17
250 #define SLAP_SCHERR_NOT_SUPPORTED               18
251 #define SLAP_SCHERR_BAD_DESCR                   19
252 #define SLAP_SCHERR_OIDM                                20
253 #define SLAP_SCHERR_CR_DUP                              21
254 #define SLAP_SCHERR_CR_BAD_STRUCT               22
255 #define SLAP_SCHERR_CR_BAD_AUX                  23
256 #define SLAP_SCHERR_CR_BAD_AT                   24
257 #define SLAP_SCHERR_LAST                                SLAP_SCHERR_CR_BAD_AT
258
259 typedef union slap_sockaddr {
260         struct sockaddr sa_addr;
261         struct sockaddr_in sa_in_addr;
262 #ifdef LDAP_PF_INET6
263         struct sockaddr_storage sa_storage;
264         struct sockaddr_in6 sa_in6_addr;
265 #endif
266 #ifdef LDAP_PF_LOCAL
267         struct sockaddr_un sa_un_addr;
268 #endif
269 } Sockaddr;
270
271 #ifdef LDAP_PF_INET6
272 extern int slap_inet4or6;
273 #endif
274
275 typedef struct slap_oid_macro {
276         struct berval som_oid;
277         char **som_names;
278         LDAP_SLIST_ENTRY(slap_oid_macro) som_next;
279 } OidMacro;
280
281 /* forward declarations */
282 struct slap_syntax;
283 struct slap_matching_rule;
284
285 typedef int slap_syntax_validate_func LDAP_P((
286         struct slap_syntax *syntax,
287         struct berval * in));
288
289 typedef int slap_syntax_transform_func LDAP_P((
290         struct slap_syntax *syntax,
291         struct berval * in,
292         struct berval * out));
293
294 typedef struct slap_syntax {
295         LDAPSyntax                      ssyn_syn;
296 #define ssyn_oid                ssyn_syn.syn_oid
297 #define ssyn_desc               ssyn_syn.syn_desc
298 #define ssyn_extensions         ssyn_syn.syn_extensions
299         /*
300          * Note: the former
301         ber_len_t       ssyn_oidlen;
302          * has been replaced by a struct berval that uses the value
303          * provided by ssyn_syn.syn_oid; a macro that expands to
304          * the bv_len field of the berval is provided for backward
305          * compatibility.  CAUTION: NEVER FREE THE BERVAL
306          */
307         struct berval   ssyn_bvoid;
308 #define ssyn_oidlen     ssyn_bvoid.bv_len
309
310         unsigned int ssyn_flags;
311
312 #define SLAP_SYNTAX_NONE        0x0000U
313 #define SLAP_SYNTAX_BLOB        0x0001U /* syntax treated as blob (audio) */
314 #define SLAP_SYNTAX_BINARY      0x0002U /* binary transfer required (certificate) */
315 #define SLAP_SYNTAX_BER         0x0004U /* stored in BER encoding (certificate) */
316 #define SLAP_SYNTAX_HIDE        0x8000U /* hide (do not publish) */
317
318         slap_syntax_validate_func       *ssyn_validate;
319 #ifndef SLAP_NVALUES
320         slap_syntax_transform_func      *ssyn_normalize;
321 #endif
322         slap_syntax_transform_func      *ssyn_pretty;
323
324 #ifdef SLAPD_BINARY_CONVERSION
325         /* convert to and from binary */
326         slap_syntax_transform_func      *ssyn_ber2str;
327         slap_syntax_transform_func      *ssyn_str2ber;
328 #endif
329
330         LDAP_SLIST_ENTRY(slap_syntax) ssyn_next;
331 } Syntax;
332
333 #define slap_syntax_is_flag(s,flag) ((int)((s)->ssyn_flags & (flag)) ? 1 : 0)
334 #define slap_syntax_is_blob(s)          slap_syntax_is_flag((s),SLAP_SYNTAX_BLOB)
335 #define slap_syntax_is_binary(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_BINARY)
336 #define slap_syntax_is_ber(s)           slap_syntax_is_flag((s),SLAP_SYNTAX_BER)
337 #define slap_syntax_is_hidden(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_HIDE)
338
339 typedef struct slap_syntax_defs_rec {
340         char *sd_desc;
341         int sd_flags;
342         slap_syntax_validate_func *sd_validate;
343 #ifdef SLAP_NVALUES
344         slap_syntax_transform_func *sd_normalizeXXX; /* to be deleted */
345 #else
346         slap_syntax_transform_func *sd_normalize;
347 #endif
348         slap_syntax_transform_func *sd_pretty;
349 #ifdef SLAPD_BINARY_CONVERSION
350         slap_syntax_transform_func *sd_ber2str;
351         slap_syntax_transform_func *sd_str2ber;
352 #endif
353 } slap_syntax_defs_rec;
354
355 /* X -> Y Converter */
356 typedef int slap_mr_convert_func LDAP_P((
357         struct berval * in,
358         struct berval * out ));
359
360 /* Normalizer */
361 typedef int slap_mr_normalize_func LDAP_P((
362         slap_mask_t use,
363         struct slap_syntax *syntax, /* NULL if in is asserted value */
364         struct slap_matching_rule *mr,
365         struct berval * in,
366         struct berval * out ));
367
368 /* Match (compare) function */
369 typedef int slap_mr_match_func LDAP_P((
370         int *match,
371         slap_mask_t use,
372         struct slap_syntax *syntax,     /* syntax of stored value */
373         struct slap_matching_rule *mr,
374         struct berval * value,
375         void * assertValue ));
376
377 /* Index generation function */
378 typedef int slap_mr_indexer_func LDAP_P((
379         slap_mask_t use,
380         slap_mask_t mask,
381         struct slap_syntax *syntax,     /* syntax of stored value */
382         struct slap_matching_rule *mr,
383         struct berval *prefix,
384         BerVarray values,
385         BerVarray *keys ));
386
387 /* Filter index function */
388 typedef int slap_mr_filter_func LDAP_P((
389         slap_mask_t use,
390         slap_mask_t mask,
391         struct slap_syntax *syntax,     /* syntax of stored value */
392         struct slap_matching_rule *mr,
393         struct berval *prefix,
394         void * assertValue,
395         BerVarray *keys ));
396
397 typedef struct slap_matching_rule_use MatchingRuleUse;
398
399 typedef struct slap_matching_rule {
400         LDAPMatchingRule                smr_mrule;
401         MatchingRuleUse                 *smr_mru;
402         /* RFC2252 string representation */
403         struct berval                   smr_str;
404         /*
405          * Note: the former
406          *                      ber_len_t       smr_oidlen;
407          * has been replaced by a struct berval that uses the value
408          * provided by smr_mrule.mr_oid; a macro that expands to
409          * the bv_len field of the berval is provided for backward
410          * compatibility.  CAUTION: NEVER FREE THE BERVAL
411          */
412         struct berval                   smr_bvoid;
413 #define smr_oidlen                      smr_bvoid.bv_len
414
415         slap_mask_t                             smr_usage;
416
417 #define SLAP_MR_HIDE                    0x8000U
418
419 #define SLAP_MR_TYPE_MASK               0xF000U
420 #define SLAP_MR_SUBTYPE_MASK    0x0F00U
421 #define SLAP_MR_USAGE                   0x00FFU
422
423 #define SLAP_MR_NONE                    0x0000U
424 #define SLAP_MR_EQUALITY                0x1000U
425 #define SLAP_MR_ORDERING                0x2000U
426 #define SLAP_MR_SUBSTR                  0x4000U
427 #define SLAP_MR_EXT                             0x8000U /* implicitly extensible */
428
429 #define SLAP_MR_EQUALITY_APPROX ( SLAP_MR_EQUALITY | 0x0100U )
430
431 #define SLAP_MR_SUBSTR_INITIAL  ( SLAP_MR_SUBSTR | 0x0100U )
432 #define SLAP_MR_SUBSTR_ANY              ( SLAP_MR_SUBSTR | 0x0200U )
433 #define SLAP_MR_SUBSTR_FINAL    ( SLAP_MR_SUBSTR | 0x0400U )
434
435 #ifndef SLAP_NVALUES
436 #define SLAP_MR_DN_FOLD                 0x0080U
437 #endif
438
439 #ifndef SLAP_NVALUES
440 /*
441  * normally the asserted value is expected to conform to
442  * assertion syntax specified in the matching rule, however
443  * at times (such as during individual value modification),
444  * the asserted value is expected to conform to the
445  * attribute's value syntax.
446  */
447 #define SLAP_MR_ASSERTION_SYNTAX_MATCH          0x0000U
448 #define SLAP_MR_ATTRIBUTE_SYNTAX_MATCH          0x0001U
449
450 /* For SLAP_MR_ATTRIBUTE_SYNTAX_MATCHes, this flag indicates
451  * that the asserted value of the attribute syntax has been
452  * converted to the assertion syntax.  (Not sure why we just
453  * don't clear the SLAP_MR_ATTRIBUTE_SYNTAX_MATCH flag instead.)
454  */
455 #define SLAP_MR_ATTRIBUTE_SYNTAX_CONVERTED_MATCH        0x0002U
456
457 #else
458 /*
459  * The asserted value, depending on the particular usage,
460  * is expected to conform to either the assertion syntax
461  * or the attribute syntax.   In some cases, the syntax of
462  * the value is known.  If so, these flags indicate which
463  * syntax the value is expected to conform to.  If not,
464  * neither of these flags is set (until the syntax of the
465  * provided value is determined).  If the value is of the
466  * attribute syntax, the flag is changed once a value of
467  * the assertion syntax is derived from the provided value.
468  */
469 #define SLAP_MR_VALUE_OF_ASSERTION_SYNTAX       0x0001U
470 #define SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX       0x0002U
471
472 #define SLAP_MR_IS_VALUE_OF_ATTRIBUTE_SYNTAX( usage ) \
473         ((usage) & SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX )
474 #define SLAP_MR_IS_VALUE_OF_ASSERTION_SYNTAX( usage ) \
475         ((usage) & SLAP_MR_VALUE_OF_ASSERTION_SYNTAX )
476 #endif
477
478 /* either or both the asserted value or attribute value
479  * may be provided in normalized form
480  */
481 #define SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH         0x0010U
482 #define SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH        0x0020U
483
484 #define SLAP_IS_MR_ASSERTION_SYNTAX_MATCH( usage ) \
485         (!((usage) & SLAP_MR_ATTRIBUTE_SYNTAX_MATCH))
486 #define SLAP_IS_MR_ATTRIBUTE_SYNTAX_MATCH( usage ) \
487         ((usage) & SLAP_MR_ATTRIBUTE_SYNTAX_MATCH)
488
489 #define SLAP_IS_MR_ATTRIBUTE_SYNTAX_CONVERTED_MATCH( usage ) \
490         (((usage) & SLAP_MR_ATTRIBUTE_SYNTAX_CONVERTED_MATCH) \
491                 == SLAP_MR_ATTRIBUTE_SYNTAX_CONVERTED_MATCH)
492 #define SLAP_IS_MR_ATTRIBUTE_SYNTAX_NONCONVERTED_MATCH( usage ) \
493         (((usage) & SLAP_MR_ATTRIBUTE_SYNTAX_CONVERTED_MATCH) \
494                 == SLAP_MR_ATTRIBUTE_SYNTAX_MATCH)
495
496 #define SLAP_IS_MR_ASSERTED_VALUE_NORMALIZED_MATCH( usage ) \
497         ((usage) & SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH )
498 #define SLAP_IS_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH( usage ) \
499         ((usage) & SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH )
500
501         Syntax                                  *smr_syntax;
502         slap_mr_convert_func    *smr_convert;
503         slap_mr_normalize_func  *smr_normalize;
504         slap_mr_match_func              *smr_match;
505         slap_mr_indexer_func    *smr_indexer;
506         slap_mr_filter_func             *smr_filter;
507
508         /*
509          * null terminated array of syntaxes compatible with this syntax
510          * note: when MS_EXT is set, this MUST NOT contain the assertion
511          * syntax of the rule.  When MS_EXT is not set, it MAY.
512          */
513         Syntax                                  **smr_compat_syntaxes;
514
515         struct slap_matching_rule       *smr_associated;
516         LDAP_SLIST_ENTRY(slap_matching_rule)smr_next;
517
518 #define smr_oid                         smr_mrule.mr_oid
519 #define smr_names                       smr_mrule.mr_names
520 #define smr_desc                        smr_mrule.mr_desc
521 #define smr_obsolete            smr_mrule.mr_obsolete
522 #define smr_syntax_oid          smr_mrule.mr_syntax_oid
523 #define smr_extensions          smr_mrule.mr_extensions
524 } MatchingRule;
525
526 struct slap_matching_rule_use {
527         LDAPMatchingRuleUse             smru_mruleuse;
528         MatchingRule                    *smru_mr;
529         /* RFC2252 string representation */
530         struct berval                   smru_str;
531
532         LDAP_SLIST_ENTRY(slap_matching_rule_use) smru_next;
533
534 #define smru_oid                        smru_mruleuse.mru_oid
535 #define smru_names                      smru_mruleuse.mru_names
536 #define smru_desc                       smru_mruleuse.mru_desc
537 #define smru_obsolete                   smru_mruleuse.mru_obsolete
538 #define smru_applies_oids               smru_mruleuse.mru_applies_oids
539
540 #define smru_usage                      smru_mr->smr_usage
541 } /* MatchingRuleUse */ ;
542
543 typedef struct slap_mrule_defs_rec {
544         char *                                          mrd_desc;
545         slap_mask_t                                     mrd_usage;
546         char **                                         mrd_compat_syntaxes;
547         slap_mr_convert_func *          mrd_convert;
548         slap_mr_normalize_func *        mrd_normalize;
549         slap_mr_match_func *            mrd_match;
550         slap_mr_indexer_func *          mrd_indexer;
551         slap_mr_filter_func *           mrd_filter;
552
553         /* For equality rule, this may refer to an appropriate approximate rule */
554         char *                                          mrd_associated;
555 } slap_mrule_defs_rec;
556
557 struct slap_backend_db;
558 struct slap_entry;
559 struct slap_attr;
560
561 typedef int (AttributeTypeSchemaCheckFN)(
562         struct slap_backend_db *be,
563         struct slap_entry *e,
564         struct slap_attr *attr,
565         const char** text,
566         char *textbuf, size_t textlen );
567
568 typedef struct slap_attribute_type {
569         LDAPAttributeType               sat_atype;
570         struct berval                   sat_cname;
571         struct slap_attribute_type      *sat_sup;
572         struct slap_attribute_type      **sat_subtypes;
573         MatchingRule                    *sat_equality;
574         MatchingRule                    *sat_approx;
575         MatchingRule                    *sat_ordering;
576         MatchingRule                    *sat_substr;
577         Syntax                                  *sat_syntax;
578
579         AttributeTypeSchemaCheckFN      *sat_check;
580
581 #define SLAP_AT_NONE            0x0000U
582 #define SLAP_AT_ABSTRACT        0x0100U /* cannot be instantiated */
583 #define SLAP_AT_FINAL           0x0200U /* cannot be subtyped */
584 #define SLAP_AT_HIDE            0x8000U /* hide attribute */
585         slap_mask_t                                     sat_flags;
586
587         LDAP_SLIST_ENTRY(slap_attribute_type) sat_next;
588
589 #define sat_oid                         sat_atype.at_oid
590 #define sat_names                       sat_atype.at_names
591 #define sat_desc                        sat_atype.at_desc
592 #define sat_obsolete            sat_atype.at_obsolete
593 #define sat_sup_oid                     sat_atype.at_sup_oid
594 #define sat_equality_oid        sat_atype.at_equality_oid
595 #define sat_ordering_oid        sat_atype.at_ordering_oid
596 #define sat_substr_oid          sat_atype.at_substr_oid
597 #define sat_syntax_oid          sat_atype.at_syntax_oid
598 #define sat_single_value        sat_atype.at_single_value
599 #define sat_collective          sat_atype.at_collective
600 #define sat_no_user_mod         sat_atype.at_no_user_mod
601 #define sat_usage                       sat_atype.at_usage
602 #define sat_extensions          sat_atype.at_extensions
603
604         struct slap_attr_desc           *sat_ad;
605         ldap_pvt_thread_mutex_t         sat_ad_mutex;
606 } AttributeType;
607
608 #define is_at_operational(at)   ((at)->sat_usage)
609 #define is_at_single_value(at)  ((at)->sat_single_value)
610 #define is_at_collective(at)    ((at)->sat_collective)
611 #define is_at_obsolete(at)              ((at)->sat_obsolete)
612 #define is_at_no_user_mod(at)   ((at)->sat_no_user_mod)
613
614 struct slap_object_class;
615
616 typedef int (ObjectClassSchemaCheckFN)(
617         struct slap_backend_db *be,
618         struct slap_entry *e,
619         struct slap_object_class *oc,
620         const char** text,
621         char *textbuf, size_t textlen );
622
623 typedef struct slap_object_class {
624         LDAPObjectClass                 soc_oclass;
625         struct berval                   soc_cname;
626         struct slap_object_class        **soc_sups;
627         AttributeType                           **soc_required;
628         AttributeType                           **soc_allowed;
629         ObjectClassSchemaCheckFN        *soc_check;
630         slap_mask_t                                     soc_flags;
631 #define soc_oid                         soc_oclass.oc_oid
632 #define soc_names                       soc_oclass.oc_names
633 #define soc_desc                        soc_oclass.oc_desc
634 #define soc_obsolete            soc_oclass.oc_obsolete
635 #define soc_sup_oids            soc_oclass.oc_sup_oids
636 #define soc_kind                        soc_oclass.oc_kind
637 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
638 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
639 #define soc_extensions          soc_oclass.oc_extensions
640
641         LDAP_SLIST_ENTRY(slap_object_class) soc_next;
642 } ObjectClass;
643
644 #define SLAP_OC_ALIAS           0x0001
645 #define SLAP_OC_REFERRAL        0x0002
646 #define SLAP_OC_SUBENTRY        0x0004
647 #define SLAP_OC_DYNAMICOBJECT   0x0008
648 #define SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY     0x0010
649 #define SLAP_OC__MASK           0x001F
650 #define SLAP_OC__END            0x0020
651 #define SLAP_OC_OPERATIONAL     0x4000
652 #define SLAP_OC_HIDE            0x8000
653
654 /*
655  * DIT content rule
656  */
657 typedef struct slap_content_rule {
658         LDAPContentRule         scr_crule;
659         ObjectClass                     *scr_sclass;
660         ObjectClass                     **scr_auxiliaries;      /* optional */
661         AttributeType           **scr_required;         /* optional */
662         AttributeType           **scr_allowed;          /* optional */
663         AttributeType           **scr_precluded;        /* optional */
664 #define scr_oid                         scr_crule.cr_oid
665 #define scr_names                       scr_crule.cr_names
666 #define scr_desc                        scr_crule.cr_desc
667 #define scr_obsolete            scr_crule.cr_obsolete
668 #define scr_oc_oids_aux         scr_crule.cr_oc_oids_aux
669 #define scr_at_oids_must        scr_crule.cr_at_oids_must
670 #define scr_at_oids_may         scr_crule.cr_at_oids_may
671 #define scr_at_oids_not         scr_crule.cr_at_oids_not
672
673         LDAP_SLIST_ENTRY( slap_content_rule ) scr_next;
674 } ContentRule;
675
676 /* Represents a recognized attribute description ( type + options ). */
677 typedef struct slap_attr_desc {
678         struct slap_attr_desc *ad_next;
679         AttributeType *ad_type;         /* attribute type, must be specified */
680         struct berval ad_cname;         /* canonical name, must be specified */
681         struct berval ad_tags;          /* empty if no tagging options */
682         unsigned ad_flags;
683 #define SLAP_DESC_NONE                  0x00U
684 #define SLAP_DESC_BINARY                0x01U
685 #define SLAP_DESC_TAG_RANGE             0x80U
686 } AttributeDescription;
687
688 typedef struct slap_attr_name {
689         struct berval an_name;
690         AttributeDescription *an_desc;
691         ObjectClass *an_oc;
692 } AttributeName;
693
694 #define slap_ad_is_tagged(ad)                   ( (ad)->ad_tags.bv_len != 0 )
695 #define slap_ad_is_tag_range(ad)        \
696         ( ((ad)->ad_flags & SLAP_DESC_TAG_RANGE) ? 1 : 0 )
697 #define slap_ad_is_binary(ad)           \
698         ( ((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
699
700 /*
701  * pointers to schema elements used internally
702  */
703 struct slap_internal_schema {
704         /* objectClass */
705         ObjectClass *si_oc_top;
706         ObjectClass *si_oc_extensibleObject;
707         ObjectClass *si_oc_alias;
708         ObjectClass *si_oc_referral;
709         ObjectClass *si_oc_rootdse;
710         ObjectClass *si_oc_subentry;
711         ObjectClass *si_oc_subschema;
712         ObjectClass *si_oc_monitor;
713         ObjectClass *si_oc_collectiveAttributeSubentry;
714         ObjectClass *si_oc_dynamicObject;
715
716         /* objectClass attribute descriptions */
717         AttributeDescription *si_ad_objectClass;
718
719         /* operational attribute descriptions */
720         AttributeDescription *si_ad_structuralObjectClass;
721         AttributeDescription *si_ad_creatorsName;
722         AttributeDescription *si_ad_createTimestamp;
723         AttributeDescription *si_ad_modifiersName;
724         AttributeDescription *si_ad_modifyTimestamp;
725         AttributeDescription *si_ad_hasSubordinates;
726         AttributeDescription *si_ad_subschemaSubentry;
727         AttributeDescription *si_ad_collectiveSubentries;
728         AttributeDescription *si_ad_collectiveExclusions;
729         AttributeDescription *si_ad_entryUUID;
730         AttributeDescription *si_ad_entryCSN;
731         AttributeDescription *si_ad_superiorUUID;
732
733         /* root DSE attribute descriptions */
734         AttributeDescription *si_ad_altServer;
735         AttributeDescription *si_ad_namingContexts;
736         AttributeDescription *si_ad_supportedControl;
737         AttributeDescription *si_ad_supportedExtension;
738         AttributeDescription *si_ad_supportedLDAPVersion;
739         AttributeDescription *si_ad_supportedSASLMechanisms;
740         AttributeDescription *si_ad_supportedFeatures;
741         AttributeDescription *si_ad_monitorContext;
742         AttributeDescription *si_ad_vendorName;
743         AttributeDescription *si_ad_vendorVersion;
744
745         /* subentry attribute descriptions */
746         AttributeDescription *si_ad_administrativeRole;
747         AttributeDescription *si_ad_subtreeSpecification;
748
749         /* subschema subentry attribute descriptions */
750         AttributeDescription *si_ad_ditStructureRules;
751         AttributeDescription *si_ad_ditContentRules;
752         AttributeDescription *si_ad_nameForms;
753         AttributeDescription *si_ad_objectClasses;
754         AttributeDescription *si_ad_attributeTypes;
755         AttributeDescription *si_ad_ldapSyntaxes;
756         AttributeDescription *si_ad_matchingRules;
757         AttributeDescription *si_ad_matchingRuleUse;
758
759         /* Aliases & Referrals */
760         AttributeDescription *si_ad_aliasedObjectName;
761         AttributeDescription *si_ad_ref;
762
763         /* Access Control Internals */
764         AttributeDescription *si_ad_entry;
765         AttributeDescription *si_ad_children;
766         AttributeDescription *si_ad_saslAuthzTo;
767         AttributeDescription *si_ad_saslAuthzFrom;
768 #ifdef SLAPD_ACI_ENABLED
769         AttributeDescription *si_ad_aci;
770 #endif
771
772         /* dynamic entries */
773         AttributeDescription *si_ad_entryTtl;
774         AttributeDescription *si_ad_dynamicSubtrees;
775
776         /* Other attributes descriptions */
777         AttributeDescription *si_ad_distinguishedName;
778         AttributeDescription *si_ad_name;
779         AttributeDescription *si_ad_cn;
780         AttributeDescription *si_ad_userPassword;
781 #ifdef SLAPD_AUTHPASSWD
782         AttributeDescription *si_ad_authPassword;
783 #endif
784 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
785         AttributeDescription *si_ad_krbName;
786 #endif
787
788         /* Undefined Attribute Type */
789         AttributeType   *si_at_undefined;
790
791         /* Matching Rules */
792         MatchingRule    *si_mr_distinguishedNameMatch;
793         MatchingRule    *si_mr_caseExactMatch;
794         MatchingRule    *si_mr_caseExactSubstringsMatch;
795         MatchingRule    *si_mr_caseExactIA5Match;
796         MatchingRule    *si_mr_integerMatch;
797         MatchingRule    *si_mr_integerFirstComponentMatch;
798
799         /* Syntaxes */
800         Syntax          *si_syn_directoryString;
801         Syntax          *si_syn_distinguishedName;
802         Syntax          *si_syn_integer;
803         Syntax          *si_syn_octetString;
804 };
805
806 typedef struct slap_attr_assertion {
807         AttributeDescription    *aa_desc;
808         struct berval aa_value;
809 } AttributeAssertion;
810
811 typedef struct slap_ss_assertion {
812         AttributeDescription    *sa_desc;
813         struct berval           sa_initial;
814         struct berval           *sa_any;
815         struct berval           sa_final;
816 } SubstringsAssertion;
817
818 typedef struct slap_mr_assertion {
819         MatchingRule            *ma_rule;       /* optional */
820         struct berval           ma_rule_text;  /* optional */
821         AttributeDescription    *ma_desc;       /* optional */
822         int                                             ma_dnattrs; /* boolean */
823         struct berval           ma_value;       /* required */
824 } MatchingRuleAssertion;
825
826 /*
827  * represents a search filter
828  */
829 typedef struct slap_filter {
830         ber_tag_t       f_choice;       /* values taken from ldap.h, plus: */
831 #define SLAPD_FILTER_COMPUTED   ((ber_tag_t) -1)
832 #define SLAPD_FILTER_DN_ONE             ((ber_tag_t) -2)
833 #define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3)
834
835         union f_un_u {
836                 /* precomputed result */
837                 ber_int_t f_un_result;
838
839                 /* DN */
840                 struct berval *f_un_dn;
841
842                 /* present */
843                 AttributeDescription *f_un_desc;
844
845                 /* simple value assertion */
846                 AttributeAssertion *f_un_ava;
847
848                 /* substring assertion */
849                 SubstringsAssertion *f_un_ssa;
850
851                 /* matching rule assertion */
852                 MatchingRuleAssertion *f_un_mra;
853
854 #define f_dn                    f_un.f_un_dn
855 #define f_desc                  f_un.f_un_desc
856 #define f_ava                   f_un.f_un_ava
857 #define f_av_desc               f_un.f_un_ava->aa_desc
858 #define f_av_value              f_un.f_un_ava->aa_value
859 #define f_sub                   f_un.f_un_ssa
860 #define f_sub_desc              f_un.f_un_ssa->sa_desc
861 #define f_sub_initial   f_un.f_un_ssa->sa_initial
862 #define f_sub_any               f_un.f_un_ssa->sa_any
863 #define f_sub_final             f_un.f_un_ssa->sa_final
864 #define f_mra                   f_un.f_un_mra
865 #define f_mr_rule               f_un.f_un_mra->ma_rule
866 #define f_mr_rule_text  f_un.f_un_mra->ma_rule_text
867 #define f_mr_desc               f_un.f_un_mra->ma_desc
868 #define f_mr_value              f_un.f_un_mra->ma_value
869 #define f_mr_dnattrs    f_un.f_un_mra->ma_dnattrs
870
871                 /* and, or, not */
872                 struct slap_filter *f_un_complex;
873         } f_un;
874
875 #define f_result        f_un.f_un_result
876 #define f_and           f_un.f_un_complex
877 #define f_or            f_un.f_un_complex
878 #define f_not           f_un.f_un_complex
879 #define f_list          f_un.f_un_complex
880
881         struct slap_filter      *f_next;
882 } Filter;
883
884 /* compare routines can return undefined */
885 #define SLAPD_COMPARE_UNDEFINED ((ber_int_t) -1)
886
887 typedef struct slap_valuesreturnfilter {
888         ber_tag_t       vrf_choice;
889
890         union vrf_un_u {
891                 /* precomputed result */
892                 ber_int_t vrf_un_result;
893
894                 /* DN */
895                 char *vrf_un_dn;
896
897                 /* present */
898                 AttributeDescription *vrf_un_desc;
899
900                 /* simple value assertion */
901                 AttributeAssertion *vrf_un_ava;
902
903                 /* substring assertion */
904                 SubstringsAssertion *vrf_un_ssa;
905
906                 /* matching rule assertion */
907                 MatchingRuleAssertion *vrf_un_mra;
908
909 #define vrf_result              vrf_un.vrf_un_result
910 #define vrf_dn                  vrf_un.vrf_un_dn
911 #define vrf_desc                vrf_un.vrf_un_desc
912 #define vrf_ava                 vrf_un.vrf_un_ava
913 #define vrf_av_desc             vrf_un.vrf_un_ava->aa_desc
914 #define vrf_av_value    vrf_un.vrf_un_ava->aa_value
915 #define vrf_ssa                 vrf_un.vrf_un_ssa
916 #define vrf_sub                 vrf_un.vrf_un_ssa
917 #define vrf_sub_desc    vrf_un.vrf_un_ssa->sa_desc
918 #define vrf_sub_initial vrf_un.vrf_un_ssa->sa_initial
919 #define vrf_sub_any             vrf_un.vrf_un_ssa->sa_any
920 #define vrf_sub_final   vrf_un.vrf_un_ssa->sa_final
921 #define vrf_mra                 vrf_un.vrf_un_mra
922 #define vrf_mr_rule             vrf_un.vrf_un_mra->ma_rule
923 #define vrf_mr_rule_text        vrf_un.vrf_un_mra->ma_rule_text
924 #define vrf_mr_desc             vrf_un.vrf_un_mra->ma_desc
925 #define vrf_mr_value            vrf_un.vrf_un_mra->ma_value
926 #define vrf_mr_dnattrs  vrf_un.vrf_un_mra->ma_dnattrs
927
928
929         } vrf_un;
930
931         struct slap_valuesreturnfilter  *vrf_next;
932 } ValuesReturnFilter;
933
934 /*
935  * represents an attribute (description + values)
936  */
937 typedef struct slap_attr {
938         AttributeDescription *a_desc;
939         BerVarray       a_vals;         /* preserved values */
940 #ifdef SLAP_NVALUES
941         BerVarray       a_nvals;        /* normalized values */
942 #endif
943         struct slap_attr *a_next;
944         unsigned a_flags;
945 #define SLAP_ATTR_IXADD         0x1U
946 #define SLAP_ATTR_IXDEL         0x2U
947 } Attribute;
948
949
950 /*
951  * the id used in the indexes to refer to an entry
952  */
953 typedef unsigned long   ID;
954 #define NOID    ((ID)~0)
955
956 /*
957  * represents an entry in core
958  */
959 typedef struct slap_entry {
960         /*
961          * The ID field should only be changed before entry is
962          * inserted into a cache.  The ID value is backend
963          * specific.
964          */
965         ID              e_id;
966
967         struct berval e_name;   /* name (DN) of this entry */
968         struct berval e_nname;  /* normalized name (DN) of this entry */
969
970         /* for migration purposes */
971 #define e_dn e_name.bv_val
972 #define e_ndn e_nname.bv_val
973
974         Attribute       *e_attrs;       /* list of attributes + values */
975
976         slap_mask_t     e_ocflags;
977
978         struct berval   e_bv;           /* For entry_encode/entry_decode */
979
980         /* for use by the backend for any purpose */
981         void*   e_private;
982 } Entry;
983
984 /*
985  * A list of LDAPMods
986  */
987 typedef struct slap_mod {
988         int sm_op;
989         AttributeDescription *sm_desc;
990         struct berval sm_type;
991         BerVarray sm_values;
992 #define sm_bvalues sm_values
993 #ifdef SLAP_NVALUES
994         BerVarray sm_nvalues;
995 #endif
996 } Modification;
997
998 typedef struct slap_mod_list {
999         Modification sml_mod;
1000 #define sml_op          sml_mod.sm_op
1001 #define sml_desc        sml_mod.sm_desc
1002 #define sml_type        sml_mod.sm_type
1003 #define sml_bvalues     sml_mod.sm_values
1004 #define sml_values      sml_mod.sm_values
1005 #define sml_nvalues     sml_mod.sm_nvalues
1006         struct slap_mod_list *sml_next;
1007 } Modifications;
1008
1009 typedef struct slap_ldap_modlist {
1010         LDAPMod ml_mod;
1011         struct slap_ldap_modlist *ml_next;
1012 #define ml_op           ml_mod.mod_op
1013 #define ml_type         ml_mod.mod_type
1014 #define ml_values       ml_mod.mod_values
1015 #define ml_bvalues      ml_mod.mod_values
1016 } LDAPModList;
1017
1018 /*
1019  * represents an access control list
1020  */
1021 typedef enum slap_access_e {
1022         ACL_INVALID_ACCESS = -1,
1023         ACL_NONE = 0,
1024         ACL_AUTH,
1025         ACL_COMPARE,
1026         ACL_SEARCH,
1027         ACL_READ,
1028         ACL_WRITE
1029 } slap_access_t;
1030
1031 typedef enum slap_control_e {
1032         ACL_INVALID_CONTROL     = 0,
1033         ACL_STOP,
1034         ACL_CONTINUE,
1035         ACL_BREAK
1036 } slap_control_t;
1037
1038 typedef enum slap_style_e {
1039         ACL_STYLE_REGEX = 0,
1040         ACL_STYLE_BASE,
1041         ACL_STYLE_ONE,
1042         ACL_STYLE_SUBTREE,
1043         ACL_STYLE_CHILDREN,
1044         ACL_STYLE_ATTROF,
1045
1046         /* alternate names */
1047         ACL_STYLE_EXACT = ACL_STYLE_BASE
1048 } slap_style_t;
1049
1050 typedef struct slap_authz_info {
1051         ber_tag_t       sai_method;             /* LDAP_AUTH_* from <ldap.h> */
1052         struct berval   sai_mech;               /* SASL Mechanism */
1053         struct berval   sai_dn;                 /* DN for reporting purposes */
1054         struct berval   sai_ndn;                /* Normalized DN */
1055
1056         /* Security Strength Factors */
1057         slap_ssf_t      sai_ssf;                        /* Overall SSF */
1058         slap_ssf_t      sai_transport_ssf;      /* Transport SSF */
1059         slap_ssf_t      sai_tls_ssf;            /* TLS SSF */
1060         slap_ssf_t      sai_sasl_ssf;           /* SASL SSF */
1061 } AuthorizationInformation;
1062
1063 /* the "by" part */
1064 typedef struct slap_access {
1065         slap_control_t a_type;
1066
1067 #define ACL_ACCESS2PRIV(access) (0x01U << (access))
1068
1069 #define ACL_PRIV_NONE                   ACL_ACCESS2PRIV( ACL_NONE )
1070 #define ACL_PRIV_AUTH                   ACL_ACCESS2PRIV( ACL_AUTH )
1071 #define ACL_PRIV_COMPARE                ACL_ACCESS2PRIV( ACL_COMPARE )
1072 #define ACL_PRIV_SEARCH                 ACL_ACCESS2PRIV( ACL_SEARCH )
1073 #define ACL_PRIV_READ                   ACL_ACCESS2PRIV( ACL_READ )
1074 #define ACL_PRIV_WRITE                  ACL_ACCESS2PRIV( ACL_WRITE )
1075
1076 #define ACL_PRIV_MASK                   0x00ffUL
1077
1078 /* priv flags */
1079 #define ACL_PRIV_LEVEL                  0x1000UL
1080 #define ACL_PRIV_ADDITIVE               0x2000UL
1081 #define ACL_PRIV_SUBSTRACTIVE   0x4000UL
1082
1083 /* invalid privs */
1084 #define ACL_PRIV_INVALID                0x0UL
1085
1086 #define ACL_PRIV_ISSET(m,p)             (((m) & (p)) == (p))
1087 #define ACL_PRIV_ASSIGN(m,p)    do { (m)  =  (p); } while(0)
1088 #define ACL_PRIV_SET(m,p)               do { (m) |=  (p); } while(0)
1089 #define ACL_PRIV_CLR(m,p)               do { (m) &= ~(p); } while(0)
1090
1091 #define ACL_INIT(m)                             ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
1092 #define ACL_INVALIDATE(m)               ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
1093
1094 #define ACL_GRANT(m,a)                  ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
1095
1096 #define ACL_IS_INVALID(m)               ((m) == ACL_PRIV_INVALID)
1097
1098 #define ACL_IS_LEVEL(m)                 ACL_PRIV_ISSET((m),ACL_PRIV_LEVEL)
1099 #define ACL_IS_ADDITIVE(m)              ACL_PRIV_ISSET((m),ACL_PRIV_ADDITIVE)
1100 #define ACL_IS_SUBTRACTIVE(m)   ACL_PRIV_ISSET((m),ACL_PRIV_SUBSTRACTIVE)
1101
1102 #define ACL_LVL_NONE                    (ACL_PRIV_NONE|ACL_PRIV_LEVEL)
1103 #define ACL_LVL_AUTH                    (ACL_PRIV_AUTH|ACL_LVL_NONE)
1104 #define ACL_LVL_COMPARE                 (ACL_PRIV_COMPARE|ACL_LVL_AUTH)
1105 #define ACL_LVL_SEARCH                  (ACL_PRIV_SEARCH|ACL_LVL_COMPARE)
1106 #define ACL_LVL_READ                    (ACL_PRIV_READ|ACL_LVL_SEARCH)
1107 #define ACL_LVL_WRITE                   (ACL_PRIV_WRITE|ACL_LVL_READ)
1108
1109 #define ACL_LVL(m,l)                    (((m)&ACL_PRIV_MASK) == ((l)&ACL_PRIV_MASK))
1110 #define ACL_LVL_IS_NONE(m)              ACL_LVL((m),ACL_LVL_NONE)
1111 #define ACL_LVL_IS_AUTH(m)              ACL_LVL((m),ACL_LVL_AUTH)
1112 #define ACL_LVL_IS_COMPARE(m)   ACL_LVL((m),ACL_LVL_COMPARE)
1113 #define ACL_LVL_IS_SEARCH(m)    ACL_LVL((m),ACL_LVL_SEARCH)
1114 #define ACL_LVL_IS_READ(m)              ACL_LVL((m),ACL_LVL_READ)
1115 #define ACL_LVL_IS_WRITE(m)             ACL_LVL((m),ACL_LVL_WRITE)
1116
1117 #define ACL_LVL_ASSIGN_NONE(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_NONE)
1118 #define ACL_LVL_ASSIGN_AUTH(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_AUTH)
1119 #define ACL_LVL_ASSIGN_COMPARE(m)       ACL_PRIV_ASSIGN((m),ACL_LVL_COMPARE)
1120 #define ACL_LVL_ASSIGN_SEARCH(m)        ACL_PRIV_ASSIGN((m),ACL_LVL_SEARCH)
1121 #define ACL_LVL_ASSIGN_READ(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_READ)
1122 #define ACL_LVL_ASSIGN_WRITE(m)         ACL_PRIV_ASSIGN((m),ACL_LVL_WRITE)
1123
1124         slap_mask_t     a_access_mask;
1125
1126         AuthorizationInformation        a_authz;
1127 #define a_dn_pat        a_authz.sai_dn
1128
1129         slap_style_t a_dn_style;
1130         AttributeDescription    *a_dn_at;
1131         int                     a_dn_self;
1132         int                     a_dn_expand;
1133
1134         slap_style_t a_peername_style;
1135         struct berval   a_peername_pat;
1136         slap_style_t a_sockname_style;
1137         struct berval   a_sockname_pat;
1138
1139         slap_style_t a_domain_style;
1140         struct berval   a_domain_pat;
1141         int             a_domain_expand;
1142
1143         slap_style_t a_sockurl_style;
1144         struct berval   a_sockurl_pat;
1145         slap_style_t a_set_style;
1146         struct berval   a_set_pat;
1147
1148 #ifdef SLAPD_ACI_ENABLED
1149         AttributeDescription    *a_aci_at;
1150 #endif
1151
1152         /* ACL Groups */
1153         slap_style_t a_group_style;
1154         struct berval   a_group_pat;
1155         ObjectClass                             *a_group_oc;
1156         AttributeDescription    *a_group_at;
1157
1158         struct slap_access      *a_next;
1159 } Access;
1160
1161 /* the "to" part */
1162 typedef struct slap_acl {
1163         /* "to" part: the entries this acl applies to */
1164         Filter          *acl_filter;
1165         slap_style_t acl_dn_style;
1166         regex_t         acl_dn_re;
1167         struct berval   acl_dn_pat;
1168         AttributeName   *acl_attrs;
1169
1170         /* "by" part: list of who has what access to the entries */
1171         Access  *acl_access;
1172
1173         struct slap_acl *acl_next;
1174 } AccessControl;
1175
1176 typedef struct slap_acl_state {
1177         unsigned as_recorded;
1178 #define ACL_STATE_NOT_RECORDED                  0x0
1179 #define ACL_STATE_RECORDED_VD                   0x1
1180 #define ACL_STATE_RECORDED_NV                   0x2
1181 #define ACL_STATE_RECORDED                              0x3
1182
1183         /* Access state */
1184         AccessControl *as_vd_acl;
1185         AccessControl *as_vi_acl;
1186         slap_mask_t as_vd_acl_mask;
1187         regmatch_t as_vd_acl_matches[MAXREMATCHES];
1188         int as_vd_acl_count;
1189
1190         Access *as_vd_access;
1191         int as_vd_access_count;
1192
1193         int as_result;
1194         AttributeDescription *as_vd_ad;
1195 } AccessControlState;
1196 #define ACL_STATE_INIT { ACL_STATE_NOT_RECORDED, NULL, NULL, 0UL, \
1197         { { 0, 0 } }, 0, NULL, 0, 0, NULL }
1198
1199 /*
1200  * replog moddn param structure
1201  */
1202 struct slap_replog_moddn {
1203         struct berval *newrdn;
1204         int     deloldrdn;
1205         struct berval *newsup;
1206 };
1207
1208 /*
1209  * Backend-info
1210  * represents a backend 
1211  */
1212
1213 typedef struct slap_backend_info BackendInfo;   /* per backend type */
1214 typedef struct slap_backend_db BackendDB;               /* per backend database */
1215
1216 LDAP_SLAPD_V (int) nBackendInfo;
1217 LDAP_SLAPD_V (int) nBackendDB;
1218 LDAP_SLAPD_V (BackendInfo *) backendInfo;
1219 LDAP_SLAPD_V (BackendDB *) backendDB;
1220
1221 LDAP_SLAPD_V (int) slapMode;    
1222 #define SLAP_UNDEFINED_MODE     0x0000
1223 #define SLAP_SERVER_MODE        0x0001
1224 #define SLAP_TOOL_MODE          0x0002
1225 #define SLAP_MODE                       0x0003
1226
1227 #define SLAP_TRUNCATE_MODE      0x0100
1228
1229 struct slap_replica_info {
1230         char *ri_host;                          /* supersedes be_replica */
1231         BerVarray ri_nsuffix;   /* array of suffixes this replica accepts */
1232         AttributeName *ri_attrs;        /* attrs to replicate, NULL=all */
1233         int ri_exclude;                 /* 1 => exclude ri_attrs */
1234 };
1235
1236 struct slap_limits_set {
1237         /* time limits */
1238         int     lms_t_soft;
1239         int     lms_t_hard;
1240
1241         /* size limits */
1242         int     lms_s_soft;
1243         int     lms_s_hard;
1244         int     lms_s_unchecked;
1245         int     lms_s_pr;
1246         int     lms_s_pr_hide;
1247 };
1248
1249 struct slap_limits {
1250         int     lm_type;        /* type of pattern */
1251 #define SLAP_LIMITS_UNDEFINED   0x0000
1252 #define SLAP_LIMITS_EXACT       0x0001
1253 #define SLAP_LIMITS_BASE        SLAP_LIMITS_EXACT
1254 #define SLAP_LIMITS_ONE         0x0002
1255 #define SLAP_LIMITS_SUBTREE     0x0003
1256 #define SLAP_LIMITS_CHILDREN    0x0004
1257 #define SLAP_LIMITS_REGEX       0x0005
1258 #define SLAP_LIMITS_ANONYMOUS   0x0006
1259 #define SLAP_LIMITS_USERS       0x0007
1260 #define SLAP_LIMITS_ANY         0x0008
1261         regex_t lm_dn_regex;            /* regex data for REGEX */
1262
1263         /*
1264          * normalized DN for EXACT, BASE, ONE, SUBTREE, CHILDREN;
1265          * pattern for REGEX; NULL for ANONYMOUS, USERS
1266          */
1267         struct berval lm_dn_pat;
1268
1269         struct slap_limits_set  lm_limits;
1270 };
1271
1272 /* temporary aliases */
1273 typedef BackendDB Backend;
1274 #define nbackends nBackendDB
1275 #define backends backendDB
1276
1277 struct slap_backend_db {
1278         BackendInfo     *bd_info;       /* pointer to shared backend info */
1279
1280         /* BackendInfo accessors */
1281 #define         be_config       bd_info->bi_db_config
1282 #define         be_type         bd_info->bi_type
1283
1284 #define         be_bind         bd_info->bi_op_bind
1285 #define         be_unbind       bd_info->bi_op_unbind
1286 #define         be_add          bd_info->bi_op_add
1287 #define         be_compare      bd_info->bi_op_compare
1288 #define         be_delete       bd_info->bi_op_delete
1289 #define         be_modify       bd_info->bi_op_modify
1290 #define         be_modrdn       bd_info->bi_op_modrdn
1291 #define         be_search       bd_info->bi_op_search
1292 #define         be_abandon      bd_info->bi_op_abandon
1293 #define         be_cancel       bd_info->bi_op_cancel
1294
1295 #define         be_extended     bd_info->bi_extended
1296
1297 #define         be_release      bd_info->bi_entry_release_rw
1298 #define         be_chk_referrals        bd_info->bi_chk_referrals
1299 #define         be_group        bd_info->bi_acl_group
1300 #define         be_attribute    bd_info->bi_acl_attribute
1301 #define         be_operational  bd_info->bi_operational
1302
1303 /*
1304  * define to honor hasSubordinates operational attribute in search filters
1305  * (in previous use there was a flaw with back-bdb and back-ldbm; now it 
1306  * is fixed).
1307  */
1308 #define         be_has_subordinates bd_info->bi_has_subordinates
1309
1310 #define         be_controls     bd_info->bi_controls
1311
1312 #define         be_connection_init      bd_info->bi_connection_init
1313 #define         be_connection_destroy   bd_info->bi_connection_destroy
1314
1315 #ifdef SLAPD_TOOLS
1316 #define         be_entry_open bd_info->bi_tool_entry_open
1317 #define         be_entry_close bd_info->bi_tool_entry_close
1318 #define         be_entry_first bd_info->bi_tool_entry_first
1319 #define         be_entry_next bd_info->bi_tool_entry_next
1320 #define         be_entry_reindex bd_info->bi_tool_entry_reindex
1321 #define         be_entry_get bd_info->bi_tool_entry_get
1322 #define         be_entry_put bd_info->bi_tool_entry_put
1323 #define         be_sync bd_info->bi_tool_sync
1324 #endif
1325
1326 #define SLAP_BFLAG_NOLASTMOD            0x0001U
1327 #define SLAP_BFLAG_GLUE_INSTANCE        0x0010U /* a glue backend */
1328 #define SLAP_BFLAG_GLUE_SUBORDINATE     0x0020U /* child of a glue hierarchy */
1329 #define SLAP_BFLAG_GLUE_LINKED          0x0040U /* child is connected to parent */
1330 #define SLAP_BFLAG_ALIASES              0x0100U
1331 #define SLAP_BFLAG_REFERRALS    0x0200U
1332 #define SLAP_BFLAG_SUBENTRIES   0x0400U
1333 #define SLAP_BFLAG_MONITOR              0x1000U
1334 #define SLAP_BFLAG_DYNAMIC              0x2000U
1335         slap_mask_t     be_flags;
1336 #define SLAP_LASTMOD(be)        (!((be)->be_flags & SLAP_BFLAG_NOLASTMOD))
1337 #define SLAP_ALIASES(be)        ((be)->be_flags & SLAP_BFLAG_ALIASES)
1338 #define SLAP_REFERRALS(be)      ((be)->be_flags & SLAP_BFLAG_REFERRALS)
1339 #define SLAP_SUBENTRIES(be)     ((be)->be_flags & SLAP_BFLAG_SUBENTRIES)
1340 #define SLAP_MONITOR(be)        ((be)->be_flags & SLAP_BFLAG_MONITOR)
1341 #define SLAP_DYNAMIC(be)        ((be)->be_flags & SLAP_BFLAG_DYNAMIC)
1342
1343         slap_mask_t     be_restrictops;         /* restriction operations */
1344 #define SLAP_RESTRICT_OP_ADD            0x0001U
1345 #define SLAP_RESTRICT_OP_BIND           0x0002U
1346 #define SLAP_RESTRICT_OP_COMPARE        0x0004U
1347 #define SLAP_RESTRICT_OP_DELETE         0x0008U
1348 #define SLAP_RESTRICT_OP_EXTENDED       0x0010U
1349 #define SLAP_RESTRICT_OP_MODIFY         0x0020U
1350 #define SLAP_RESTRICT_OP_RENAME         0x0040U
1351 #define SLAP_RESTRICT_OP_SEARCH         0x0080U
1352
1353 #define SLAP_RESTRICT_OP_READS  \
1354         ( SLAP_RESTRICT_OP_COMPARE      \
1355         | SLAP_RESTRICT_OP_SEARCH )
1356 #define SLAP_RESTRICT_OP_WRITES \
1357         ( SLAP_RESTRICT_OP_ADD    \
1358         | SLAP_RESTRICT_OP_DELETE \
1359         | SLAP_RESTRICT_OP_MODIFY \
1360         | SLAP_RESTRICT_OP_RENAME )
1361
1362 #define SLAP_ALLOW_BIND_V2                      0x0001U /* LDAPv2 bind */
1363 #define SLAP_ALLOW_BIND_ANON_CRED       0x0002U /* cred should be empty */
1364 #define SLAP_ALLOW_BIND_ANON_DN         0x0004U /* dn should be empty */
1365
1366 #define SLAP_ALLOW_UPDATE_ANON          0x0008U /* allow anonymous updates */
1367
1368 #define SLAP_DISALLOW_BIND_ANON         0x0001U /* no anonymous */
1369 #define SLAP_DISALLOW_BIND_SIMPLE       0x0002U /* simple authentication */
1370 #define SLAP_DISALLOW_BIND_SIMPLE_UNPROTECTED \
1371                                                                         0x0004U /* unprotected simple auth */
1372 #define SLAP_DISALLOW_BIND_KRBV4        0x0008U /* Kerberos V4 authentication */
1373
1374 #define SLAP_DISALLOW_TLS_2_ANON        0x0010U /* StartTLS -> Anonymous */
1375 #define SLAP_DISALLOW_TLS_AUTHC         0x0020U /* TLS while authenticated */
1376
1377 #define SLAP_DISALLOW_AUX_WO_CR         0x4000U
1378
1379         slap_mask_t     be_requires;    /* pre-operation requirements */
1380 #define SLAP_REQUIRE_BIND               0x0001U /* bind before op */
1381 #define SLAP_REQUIRE_LDAP_V3    0x0002U /* LDAPv3 before op */
1382 #define SLAP_REQUIRE_AUTHC              0x0004U /* authentication before op */
1383 #define SLAP_REQUIRE_SASL               0x0008U /* SASL before op  */
1384 #define SLAP_REQUIRE_STRONG             0x0010U /* strong authentication before op */
1385
1386         /* Required Security Strength Factor */
1387         slap_ssf_set_t be_ssf_set;
1388
1389         /* these should be renamed from be_ to bd_ */
1390         BerVarray       be_suffix;      /* the DN suffixes of data in this backend */
1391         BerVarray       be_nsuffix;     /* the normalized DN suffixes in this backend */
1392         struct berval be_schemadn;      /* per-backend subschema subentry DN */
1393         struct berval be_schemandn;     /* normalized subschema DN */
1394         struct berval be_rootdn;        /* the magic "root" name (DN) for this db */
1395         struct berval be_rootndn;       /* the magic "root" normalized name (DN) for this db */
1396         struct berval be_rootpw;        /* the magic "root" password for this db        */
1397         unsigned int be_max_deref_depth; /* limit for depth of an alias deref  */
1398 #define be_sizelimit    be_def_limit.lms_s_soft
1399 #define be_timelimit    be_def_limit.lms_t_soft
1400         struct slap_limits_set be_def_limit; /* default limits */
1401         struct slap_limits **be_limits; /* regex-based size and time limits */
1402         AccessControl *be_acl;  /* access control list for this backend    */
1403         slap_access_t   be_dfltaccess;  /* access given if no acl matches          */
1404         struct slap_replica_info **be_replica;  /* replicas of this backend (in master) */
1405         char    *be_replogfile; /* replication log file (in master)        */
1406         struct berval be_update_ndn;    /* allowed to make changes (in replicas) */
1407         BerVarray       be_update_refs; /* where to refer modifying clients to */
1408         char    *be_realm;
1409         void    *be_private;    /* anything the backend database needs     */
1410
1411         void    *be_pb;         /* Netscape plugin */
1412 };
1413
1414 struct slap_conn;
1415 struct slap_op;
1416
1417 /* Backend function typedefs */
1418 typedef int (BI_init) LDAP_P((BackendInfo *bi));
1419 typedef int (BI_config) LDAP_P((BackendInfo *bi,
1420         const char *fname, int lineno,
1421         int argc, char **argv));
1422 typedef int (BI_open) LDAP_P((BackendInfo *bi));
1423 typedef int (BI_close) LDAP_P((BackendInfo *bi));
1424 typedef int (BI_destroy) LDAP_P((BackendInfo *bi));
1425
1426 typedef int (BI_db_init) LDAP_P((Backend *bd));
1427 typedef int (BI_db_config) LDAP_P((Backend *bd,
1428         const char *fname, int lineno,
1429         int argc, char **argv));
1430 typedef int (BI_db_open) LDAP_P((Backend *bd));
1431 typedef int (BI_db_close) LDAP_P((Backend *bd));
1432 typedef int (BI_db_destroy) LDAP_P((Backend *bd));
1433
1434 typedef int (BI_op_bind)  LDAP_P(( BackendDB *bd,
1435                 struct slap_conn *c, struct slap_op *o,
1436                 struct berval *dn, struct berval *ndn, int method,
1437                 struct berval *cred, struct berval *edn ));
1438 typedef int (BI_op_unbind) LDAP_P((BackendDB *bd,
1439                 struct slap_conn *c, struct slap_op *o ));
1440 typedef int (BI_op_search) LDAP_P((BackendDB *bd,
1441                 struct slap_conn *c, struct slap_op *o,
1442                 struct berval *base, struct berval *nbase,
1443                 int scope, int deref,
1444                 int slimit, int tlimit,
1445                 Filter *f, struct berval *filterstr,
1446                 AttributeName *attrs, int attrsonly));
1447 typedef int (BI_op_compare)LDAP_P((BackendDB *bd,
1448                 struct slap_conn *c, struct slap_op *o,
1449                 struct berval *dn, struct berval *ndn,
1450                 AttributeAssertion *ava));
1451 typedef int (BI_op_modify) LDAP_P((BackendDB *bd,
1452                 struct slap_conn *c, struct slap_op *o,
1453                 struct berval *dn, struct berval *ndn,
1454                 Modifications *m));
1455 typedef int (BI_op_modrdn) LDAP_P((BackendDB *bd,
1456                 struct slap_conn *c, struct slap_op *o,
1457                 struct berval *dn, struct berval *ndn,
1458                 struct berval *newrdn, struct berval *nnewrdn,
1459                 int deleteoldrdn,
1460                 struct berval *newSup, struct berval *nnewSup ));
1461 typedef int (BI_op_add)    LDAP_P((BackendDB *bd,
1462                 struct slap_conn *c, struct slap_op *o,
1463                 Entry *e));
1464 typedef int (BI_op_delete) LDAP_P((BackendDB *bd,
1465                 struct slap_conn *c, struct slap_op *o,
1466                 struct berval *dn, struct berval *ndn));
1467 typedef int (BI_op_abandon) LDAP_P((BackendDB *bd,
1468                 struct slap_conn *c, struct slap_op *o,
1469                 ber_int_t msgid));
1470 typedef int (BI_op_cancel) LDAP_P((BackendDB *bd,
1471                 struct slap_conn *c, struct slap_op *o,
1472                 ber_int_t msgid));
1473
1474 typedef int (BI_op_extended) LDAP_P((
1475         BackendDB               *be,
1476         struct slap_conn        *conn,
1477         struct slap_op          *op,
1478         struct berval           *reqoid,
1479         struct berval * reqdata,
1480         char            **rspoid,
1481         struct berval ** rspdata,
1482         LDAPControl *** rspctrls,
1483         const char **   text,
1484         BerVarray *refs ));
1485
1486 typedef int (BI_entry_release_rw) LDAP_P((BackendDB *bd,
1487                 struct slap_conn *c, struct slap_op *o,
1488                 Entry *e, int rw));
1489
1490 typedef int (BI_chk_referrals) LDAP_P((BackendDB *bd,
1491                 struct slap_conn *c, struct slap_op *o,
1492                 struct berval *dn, struct berval *ndn,
1493                 const char **text ));
1494
1495 typedef int (BI_acl_group)  LDAP_P((Backend *bd,
1496                 struct slap_conn *c, struct slap_op *o,
1497                 Entry *e,
1498                 struct berval *bdn,
1499                 struct berval *edn,
1500                 ObjectClass *group_oc,
1501                 AttributeDescription *group_at ));
1502
1503 typedef int (BI_acl_attribute)  LDAP_P((Backend *bd,
1504                 struct slap_conn *c, struct slap_op *o,
1505                 Entry *e, struct berval *edn,
1506                 AttributeDescription *entry_at,
1507                 BerVarray *vals ));
1508
1509 typedef int (BI_operational)  LDAP_P((Backend *bd,
1510                 struct slap_conn *c, struct slap_op *o,
1511                 Entry *e, AttributeName *attrs, int opattrs, Attribute **a ));
1512
1513 typedef int (BI_has_subordinates) LDAP_P((Backend *bd,
1514                 struct slap_conn *c, struct slap_op *o,
1515                 Entry *e, int *has_subordinates ));
1516
1517 typedef int (BI_connection_init) LDAP_P((BackendDB *bd,
1518                 struct slap_conn *c));
1519 typedef int (BI_connection_destroy) LDAP_P((BackendDB *bd,
1520                 struct slap_conn *c));
1521
1522 typedef int (BI_tool_entry_open) LDAP_P(( BackendDB *be, int mode ));
1523 typedef int (BI_tool_entry_close) LDAP_P(( BackendDB *be ));
1524 typedef ID (BI_tool_entry_first) LDAP_P(( BackendDB *be ));
1525 typedef ID (BI_tool_entry_next) LDAP_P(( BackendDB *be ));
1526 typedef Entry* (BI_tool_entry_get) LDAP_P(( BackendDB *be, ID id ));
1527 typedef ID (BI_tool_entry_put) LDAP_P(( BackendDB *be, Entry *e, 
1528                         struct berval *text ));
1529 typedef int (BI_tool_entry_reindex) LDAP_P(( BackendDB *be, ID id ));
1530 typedef int (BI_tool_sync) LDAP_P(( BackendDB *be ));
1531
1532 struct slap_backend_info {
1533         char    *bi_type; /* type of backend */
1534
1535         /*
1536          * per backend type routines:
1537          * bi_init: called to allocate a backend_info structure,
1538          *              called once BEFORE configuration file is read.
1539          *              bi_init() initializes this structure hence is
1540          *              called directly from be_initialize()
1541          * bi_config: called per 'backend' specific option
1542          *              all such options must before any 'database' options
1543          *              bi_config() is called only from read_config()
1544          * bi_open: called to open each database, called
1545          *              once AFTER configuration file is read but
1546          *              BEFORE any bi_db_open() calls.
1547          *              bi_open() is called from backend_startup()
1548          * bi_close: called to close each database, called
1549          *              once during shutdown after all bi_db_close calls.
1550          *              bi_close() is called from backend_shutdown()
1551          * bi_destroy: called to destroy each database, called
1552          *              once during shutdown after all bi_db_destroy calls.
1553          *              bi_destory() is called from backend_destroy()
1554          */
1555         BI_init *bi_init;
1556         BI_config       *bi_config;
1557         BI_open *bi_open;
1558         BI_close        *bi_close;
1559         BI_destroy      *bi_destroy;
1560
1561         /*
1562          * per database routines:
1563          * bi_db_init: called to initialize each database,
1564          *      called upon reading 'database <type>' 
1565          *      called only from backend_db_init()
1566          * bi_db_config: called to configure each database,
1567          *  called per database to handle per database options
1568          *      called only from read_config()
1569          * bi_db_open: called to open each database
1570          *      called once per database immediately AFTER bi_open()
1571          *      calls but before daemon startup.
1572          *  called only by backend_startup()
1573          * bi_db_close: called to close each database
1574          *      called once per database during shutdown but BEFORE
1575          *  any bi_close call.
1576          *  called only by backend_shutdown()
1577          * bi_db_destroy: called to destroy each database
1578          *  called once per database during shutdown AFTER all
1579          *  bi_close calls but before bi_destory calls.
1580          *  called only by backend_destory()
1581          */
1582         BI_db_init      *bi_db_init;
1583         BI_db_config    *bi_db_config;
1584         BI_db_open      *bi_db_open;
1585         BI_db_close     *bi_db_close;
1586         BI_db_destroy   *bi_db_destroy;
1587
1588         /* LDAP Operations Handling Routines */
1589         BI_op_bind      *bi_op_bind;
1590         BI_op_unbind    *bi_op_unbind;
1591         BI_op_search    *bi_op_search;
1592         BI_op_compare   *bi_op_compare;
1593         BI_op_modify    *bi_op_modify;
1594         BI_op_modrdn    *bi_op_modrdn;
1595         BI_op_add       *bi_op_add;
1596         BI_op_delete    *bi_op_delete;
1597         BI_op_abandon   *bi_op_abandon;
1598         BI_op_cancel    *bi_op_cancel;
1599
1600         /* Extended Operations Helper */
1601         BI_op_extended  *bi_extended;
1602
1603         /* Auxilary Functions */
1604         BI_entry_release_rw     *bi_entry_release_rw;
1605         BI_chk_referrals        *bi_chk_referrals;
1606
1607         BI_acl_group    *bi_acl_group;
1608         BI_acl_attribute        *bi_acl_attribute;
1609
1610         BI_operational  *bi_operational;
1611         BI_has_subordinates     *bi_has_subordinates;
1612
1613         BI_connection_init      *bi_connection_init;
1614         BI_connection_destroy   *bi_connection_destroy;
1615
1616         /* hooks for slap tools */
1617         BI_tool_entry_open      *bi_tool_entry_open;
1618         BI_tool_entry_close     *bi_tool_entry_close;
1619         BI_tool_entry_first     *bi_tool_entry_first;
1620         BI_tool_entry_next      *bi_tool_entry_next;
1621         BI_tool_entry_get       *bi_tool_entry_get;
1622         BI_tool_entry_put       *bi_tool_entry_put;
1623         BI_tool_entry_reindex   *bi_tool_entry_reindex;
1624         BI_tool_sync            *bi_tool_sync;
1625
1626 #define SLAP_INDEX_ADD_OP               0x0001
1627 #define SLAP_INDEX_DELETE_OP    0x0002
1628
1629         char **bi_controls;             /* supported controls */
1630
1631         unsigned int bi_nDB;    /* number of databases of this type */
1632         void    *bi_private;    /* anything the backend type needs */
1633 };
1634
1635 #define c_authtype      c_authz.sai_method
1636 #define c_authmech      c_authz.sai_mech
1637 #define c_dn            c_authz.sai_dn
1638 #define c_ndn           c_authz.sai_ndn
1639 #define c_ssf                   c_authz.sai_ssf
1640 #define c_transport_ssf c_authz.sai_transport_ssf
1641 #define c_tls_ssf               c_authz.sai_tls_ssf
1642 #define c_sasl_ssf              c_authz.sai_sasl_ssf
1643
1644 #define o_authtype      o_authz.sai_method
1645 #define o_authmech      o_authz.sai_mech
1646 #define o_dn            o_authz.sai_dn
1647 #define o_ndn           o_authz.sai_ndn
1648 #define o_ssf                   o_authz.sai_ssf
1649 #define o_transport_ssf o_authz.sai_transport_ssf
1650 #define o_tls_ssf               o_authz.sai_tls_ssf
1651 #define o_sasl_ssf              o_authz.sai_sasl_ssf
1652
1653 typedef void (slap_response)( struct slap_conn *, struct slap_op *,
1654         ber_tag_t, ber_int_t, ber_int_t, const char *, const char *,
1655         BerVarray, const char *, struct berval *,
1656         struct berval *, LDAPControl ** );
1657
1658 typedef void (slap_sresult)( struct slap_conn *, struct slap_op *,
1659         ber_int_t, const char *, const char *, BerVarray,
1660         LDAPControl **, int nentries);
1661
1662 typedef int (slap_sendentry)( BackendDB *, struct slap_conn *,
1663         struct slap_op *, Entry *, AttributeName *, int, LDAPControl **);
1664
1665 typedef int (slap_sendreference)( BackendDB *, struct slap_conn *,
1666         struct slap_op *, Entry *, BerVarray, LDAPControl **, BerVarray * );
1667
1668 typedef struct slap_callback {
1669         slap_response *sc_response;
1670         slap_sresult *sc_sresult;
1671         slap_sendentry *sc_sendentry;
1672         slap_sendreference *sc_sendreference;
1673         void *sc_private;
1674 } slap_callback;
1675
1676 /*
1677  * Paged Results state
1678  */
1679 typedef unsigned long PagedResultsCookie;
1680 typedef struct slap_paged_state {
1681         Backend *ps_be;
1682         PagedResultsCookie ps_cookie;
1683         ID ps_id;
1684 } PagedResultsState;
1685
1686
1687 #if defined(LDAP_CLIENT_UPDATE) || defined(LDAP_SYNC)
1688 #define LDAP_PSEARCH_BY_ADD             0x01
1689 #define LDAP_PSEARCH_BY_DELETE          0x02
1690 #define LDAP_PSEARCH_BY_PREMODIFY       0x03
1691 #define LDAP_PSEARCH_BY_MODIFY          0x04
1692 #define LDAP_PSEARCH_BY_SCOPEOUT        0x05
1693
1694 struct ldap_psearch_spec {
1695         struct slap_op  *op;
1696         struct berval   *base;
1697         struct berval   *nbase;
1698         int             scope;
1699         int             deref;
1700         int             slimit;
1701         int             tlimit;
1702         Filter          *filter;
1703         struct berval   *filterstr;
1704         AttributeName   *attrs;
1705         int             attrsonly;
1706         int             protocol;
1707         int             entry_count;
1708         LDAP_LIST_ENTRY(ldap_psearch_spec) link;
1709 };
1710
1711 struct psid_entry {
1712         struct ldap_psearch_spec* ps;
1713         LDAP_LIST_ENTRY(psid_entry) link;
1714 };
1715 #endif
1716
1717
1718 /*
1719  * represents an operation pending from an ldap client
1720  */
1721 typedef struct slap_op {
1722         unsigned long o_opid;   /* id of this operation */
1723         unsigned long o_connid; /* id of conn initiating this op */
1724         struct slap_conn *o_conn;       /* connection spawning this op */
1725
1726         ber_int_t       o_msgid;        /* msgid of the request */
1727         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
1728         ber_tag_t       o_tag;          /* tag of the request */
1729         time_t          o_time;         /* time op was initiated */
1730
1731         char *          o_extendedop;   /* extended operation OID */
1732
1733         ldap_pvt_thread_t       o_tid;  /* thread handling this op */
1734
1735         volatile sig_atomic_t o_abandon;        /* abandon flag */
1736         volatile sig_atomic_t o_cancel;         /* cancel flag */
1737 #define SLAP_CANCEL_NONE                                0x00
1738 #define SLAP_CANCEL_REQ                                 0x01
1739 #define SLAP_CANCEL_ACK                                 0x02
1740 #define SLAP_CANCEL_DONE                                0x03
1741
1742         char o_do_not_cache;    /* don't cache from this op */
1743
1744 #define SLAP_NO_CONTROL 0
1745 #define SLAP_NONCRITICAL_CONTROL 1
1746 #define SLAP_CRITICAL_CONTROL 2
1747         char o_managedsait;
1748 #define get_manageDSAit(op)                             ((int)(op)->o_managedsait)
1749
1750         char o_noop;
1751         char o_proxy_authz;
1752
1753         char o_subentries;
1754 #define get_subentries(op)                              ((int)(op)->o_subentries)
1755         char o_subentries_visibility;
1756 #define get_subentries_visibility(op)   ((int)(op)->o_subentries_visibility)
1757
1758         char o_valuesreturnfilter;
1759
1760 #ifdef LDAP_CONTROL_X_PERMISSIVE_MODIFY
1761         char o_permissive_modify;
1762 #define get_permissiveModify(op)                ((int)(op)->o_permissive_modify)
1763 #else
1764 #define get_permissiveModify(op)                (0)
1765 #endif
1766
1767 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
1768         char o_domain_scope;
1769 #define get_domainScope(op)                             ((int)(op)->o_domain_scope)
1770 #else
1771 #define get_domainScope(op)                             (0)
1772 #endif
1773
1774 #ifdef LDAP_CONTROL_PAGEDRESULTS
1775         char o_pagedresults;
1776 #define get_pagedresults(op)                    ((int)(op)->o_pagedresults)
1777         ber_int_t o_pagedresults_size;
1778         PagedResultsState o_pagedresults_state;
1779 #else
1780 #define get_pagedresults(op)                    (0)
1781 #endif
1782
1783 #ifdef LDAP_CLIENT_UPDATE
1784         char o_clientupdate;
1785         char o_clientupdate_type;
1786 #define SLAP_LCUP_NONE                          (0x0)
1787 #define SLAP_LCUP_SYNC                          (0x1)
1788 #define SLAP_LCUP_PERSIST                       (0x2)
1789 #define SLAP_LCUP_SYNC_AND_PERSIST              (0x3)
1790         ber_int_t o_clientupdate_interval;
1791         struct berval o_clientupdate_state;
1792 #endif
1793
1794 #ifdef LDAP_SYNC
1795         char o_sync;
1796         char o_sync_mode;
1797 #define SLAP_SYNC_NONE                          (0x0)
1798 #define SLAP_SYNC_REFRESH                       (0x1)
1799 #define SLAP_SYNC_PERSIST                       (0x2)
1800 #define SLAP_SYNC_REFRESH_AND_PERSIST           (0x3)
1801         struct berval o_sync_state;
1802 #endif
1803
1804 #if defined(LDAP_CLIENT_UPDATE) || defined(LDAP_SYNC)
1805         LDAP_LIST_HEAD(lss, ldap_psearch_spec) psearch_spec;
1806         LDAP_LIST_HEAD(pe, psid_entry) premodify_list;
1807         LDAP_LIST_ENTRY(slap_op) link;
1808 #endif
1809
1810 #ifdef LDAP_CONNECTIONLESS
1811         Sockaddr        o_peeraddr;     /* UDP peer address               */
1812 #endif
1813         AuthorizationInformation o_authz;
1814
1815         BerElement      *o_ber;         /* ber of the request             */
1816 #ifdef LDAP_CONNECTIONLESS
1817         BerElement      *o_res_ber;     /* ber of the reply               */
1818 #endif
1819         slap_callback   *o_callback;    /* callback pointers */
1820         LDAPControl     **o_ctrls;       /* controls */
1821
1822         void    *o_threadctx;           /* thread pool thread context */
1823         void    *o_private;     /* anything the backend needs */
1824
1825         LDAP_STAILQ_ENTRY(slap_op)      o_next; /* next operation in list         */
1826         ValuesReturnFilter *vrFilter; /* Structure represents ValuesReturnFilter */
1827
1828 #ifdef LDAP_SLAPI
1829         void    *o_pb;                  /* NS-SLAPI plugin */
1830 #endif
1831 } Operation;
1832
1833 typedef void (*SEND_LDAP_RESULT)(
1834                                 struct slap_conn *conn,
1835                                 struct slap_op *op,
1836                                 ber_int_t err,
1837                                 const char *matched,
1838                                 const char *text,
1839                                 BerVarray ref,
1840                                 LDAPControl **ctrls
1841                                 );
1842
1843 #define send_ldap_result( conn, op, err, matched, text, ref, ctrls  ) \
1844 (*conn->c_send_ldap_result)( conn, op, err, matched, text, ref, ctrls )
1845
1846
1847 typedef int (*SEND_SEARCH_ENTRY)(
1848                                 struct slap_backend_db *be,
1849                                 struct slap_conn *conn,
1850                                 struct slap_op *op,
1851                                 struct slap_entry *e,
1852                                 AttributeName *attrs,
1853                                 int attrsonly,
1854                                 LDAPControl **ctrls
1855                                 );
1856
1857 #define send_search_entry( be, conn, op, e, attrs, attrsonly, ctrls) \
1858 (*conn->c_send_search_entry)( be, conn, op, e, attrs, attrsonly, ctrls)
1859
1860
1861 typedef void (*SEND_SEARCH_RESULT)(
1862                                 struct slap_conn *conn,
1863                                 struct slap_op *op,
1864                                 ber_int_t err,
1865                                 const char *matched,
1866                                 const char *text,
1867                                 BerVarray   refs,
1868                                 LDAPControl **ctrls,
1869                                 int nentries
1870                                 );
1871
1872 #define send_search_result( conn, op, err, matched, text, refs, ctrls, nentries ) \
1873 (*conn->c_send_search_result)( conn, op, err, matched, text, refs, ctrls, nentries )
1874
1875
1876 typedef int (*SEND_SEARCH_REFERENCE)(
1877                                 struct slap_backend_db *be,
1878                                 struct slap_conn *conn,
1879                                 struct slap_op *op,
1880                                 struct slap_entry *e,
1881                                 BerVarray refs,
1882                                 LDAPControl **ctrls,
1883                                 BerVarray *v2refs
1884                                 );
1885
1886 #define send_search_reference( be, conn, op, e,  refs, ctrls, v2refs ) \
1887 (*conn->c_send_search_reference)( be, conn, op, e,  refs, ctrls, v2refs )
1888
1889
1890 typedef void (*SEND_LDAP_EXTENDED)(
1891                                 struct slap_conn *conn,
1892                                 struct slap_op *op,
1893                                 ber_int_t   err,
1894                                 const char  *matched,
1895                                 const char  *text,
1896                                 BerVarray   refs,
1897                                 const char      *rspoid,
1898                                 struct berval *rspdata,
1899                                 LDAPControl **ctrls
1900                                 );
1901
1902 #define send_ldap_extended( conn, op, err, matched, text, refs, rspoid, rspdata, ctrls) \
1903 (*conn->c_send_ldap_extended)( conn, op, err, matched, text, refs, rspoid, rspdata, ctrls )
1904
1905 typedef void (*SEND_LDAP_INTERMEDIATE_RESP)(
1906                                 struct slap_conn *conn,
1907                                 struct slap_op *op,
1908                                 ber_int_t   err,
1909                                 const char  *matched,
1910                                 const char  *text,
1911                                 BerVarray   refs,
1912                                 const char      *rspoid,
1913                                 struct berval *rspdata,
1914                                 LDAPControl **ctrls
1915                                 );
1916
1917 #define send_ldap_intermediate_resp( conn, op, err, matched, text, refs, \
1918                                      rspoid, rspdata, ctrls) \
1919         (*conn->c_send_ldap_intermediate_resp)( conn, op, err, matched, text, \
1920                                                 refs, rspoid, rspdata, ctrls )
1921
1922 /*
1923  * Caches the result of a backend_group check for ACL evaluation
1924  */
1925 typedef struct slap_gacl {
1926         struct slap_gacl *ga_next;
1927         Backend *ga_be;
1928         ObjectClass *ga_oc;
1929         AttributeDescription *ga_at;
1930         int ga_res;
1931         ber_len_t ga_len;
1932         char ga_ndn[1];
1933 } GroupAssertion;
1934
1935 typedef struct slap_listener Listener;
1936
1937 /*
1938  * represents a connection from an ldap client
1939  */
1940 typedef struct slap_conn {
1941         int                     c_struct_state; /* structure management state */
1942         int                     c_conn_state;   /* connection state */
1943
1944         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
1945         Sockbuf         *c_sb;                  /* ber connection stuff           */
1946
1947         /* only can be changed by connect_init */
1948         time_t          c_starttime;    /* when the connection was opened */
1949         time_t          c_activitytime; /* when the connection was last used */
1950         unsigned long           c_connid;       /* id of this connection for stats*/
1951
1952         struct berval   c_peer_domain;  /* DNS name of client */
1953         struct berval   c_peer_name;    /* peer name (trans=addr:port) */
1954         Listener        *c_listener;
1955 #define c_listener_url c_listener->sl_url       /* listener URL */
1956 #define c_sock_name c_listener->sl_name /* sock name (trans=addr:port) */
1957
1958         /* only can be changed by binding thread */
1959         int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
1960         struct berval   c_sasl_bind_mech;                       /* mech in progress */
1961         struct berval   c_sasl_dn;      /* temporary storage */
1962
1963         /* authorization backend */
1964         Backend *c_authz_backend;
1965
1966         AuthorizationInformation c_authz;
1967         GroupAssertion *c_groups;
1968
1969         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
1970
1971         LDAP_STAILQ_HEAD(c_o, slap_op) c_ops;   /* list of operations being processed */
1972         LDAP_STAILQ_HEAD(c_po, slap_op) c_pending_ops;  /* list of pending operations */
1973
1974         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
1975         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
1976
1977         BerElement      *c_currentber;  /* ber we're attempting to read */
1978         int             c_writewaiter;  /* true if writer is waiting */
1979
1980 #ifdef LDAP_CONNECTIONLESS
1981         int     c_is_udp;               /* true if this is (C)LDAP over UDP */
1982 #endif
1983 #ifdef HAVE_TLS
1984         int     c_is_tls;               /* true if this LDAP over raw TLS */
1985         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
1986 #endif
1987         int             c_sasl_layers;   /* true if we need to install SASL i/o handlers */
1988         void    *c_sasl_context;        /* SASL session context */
1989         void    *c_sasl_extra;          /* SASL session extra stuff */
1990         struct slap_op  *c_sasl_bindop; /* set to current op if it's a bind */
1991
1992         PagedResultsState c_pagedresults_state; /* paged result state */
1993
1994         long    c_n_ops_received;       /* num of ops received (next op_id) */
1995         long    c_n_ops_executing;      /* num of ops currently executing */
1996         long    c_n_ops_pending;        /* num of ops pending execution */
1997         long    c_n_ops_completed;      /* num of ops completed */
1998
1999         long    c_n_get;                /* num of get calls */
2000         long    c_n_read;               /* num of read calls */
2001         long    c_n_write;              /* num of write calls */
2002
2003         void    *c_pb;                  /* Netscape plugin */
2004
2005         /*
2006          * These are the "callbacks" that are available for back-ends to
2007          * supply data back to connected clients that are connected
2008          * through the "front-end".
2009          */
2010         SEND_LDAP_RESULT c_send_ldap_result;
2011         SEND_SEARCH_ENTRY c_send_search_entry;
2012         SEND_SEARCH_RESULT c_send_search_result;
2013         SEND_SEARCH_REFERENCE c_send_search_reference;
2014         SEND_LDAP_EXTENDED c_send_ldap_extended;
2015 #ifdef LDAP_RES_INTERMEDIATE_RESP
2016         SEND_LDAP_INTERMEDIATE_RESP c_send_ldap_intermediate_resp;
2017 #endif
2018         
2019 } Connection;
2020
2021 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
2022 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
2023         do { \
2024                 if ( ldap_debug & (level) ) \
2025                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
2026                 if ( ldap_syslog & (level) ) \
2027                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
2028                                 (arg2), (arg3) ); \
2029         } while (0)
2030 #define StatslogTest( level ) ((ldap_debug | ldap_syslog) & (level))
2031 #elif defined(LDAP_DEBUG)
2032 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
2033         do { \
2034                 if ( ldap_debug & (level) ) \
2035                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
2036         } while (0)
2037 #define StatslogTest( level ) (ldap_debug & (level))
2038 #elif defined(LDAP_SYSLOG)
2039 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
2040         do { \
2041                 if ( ldap_syslog & (level) ) \
2042                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
2043                                 (arg2), (arg3) ); \
2044         } while (0)
2045 #define StatslogTest( level ) (ldap_syslog & (level))
2046 #else
2047 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
2048 #define StatslogTest( level ) (0)
2049 #endif
2050
2051 /*
2052  * listener; need to access it from monitor backend
2053  */
2054 struct slap_listener {
2055         struct berval sl_url;
2056         struct berval sl_name;
2057         mode_t  sl_perms;
2058 #ifdef HAVE_TLS
2059         int             sl_is_tls;
2060 #endif
2061 #ifdef LDAP_CONNECTIONLESS
2062         int     sl_is_udp;              /* UDP listener is also data port */
2063 #endif
2064         ber_socket_t sl_sd;
2065         Sockaddr sl_sa;
2066 #define sl_addr sl_sa.sa_in_addr
2067 };
2068
2069 #ifdef SLAPD_MONITOR
2070 /*
2071  * Operation indices
2072  */
2073 enum {
2074         SLAP_OP_BIND = 0,
2075         SLAP_OP_UNBIND,
2076         SLAP_OP_ADD,
2077         SLAP_OP_DELETE,
2078         SLAP_OP_MODRDN,
2079         SLAP_OP_MODIFY,
2080         SLAP_OP_COMPARE,
2081         SLAP_OP_SEARCH,
2082         SLAP_OP_ABANDON,
2083         SLAP_OP_EXTENDED,
2084         SLAP_OP_LAST
2085 };
2086 #endif /* SLAPD_MONITOR */
2087
2088 /*
2089  * Better know these all around slapd
2090  */
2091 #define SLAP_LDAPDN_PRETTY 0x1
2092 #define SLAP_LDAPDN_MAXLEN 8192
2093
2094 /*
2095  * Macros for LCUP
2096  */
2097 #ifdef LDAP_CLIENT_UPDATE
2098 #define SLAP_LCUP_STATE_UPDATE_TRUE     1
2099 #define SLAP_LCUP_STATE_UPDATE_FALSE    0
2100 #define SLAP_LCUP_ENTRY_DELETED_TRUE    1
2101 #define SLAP_LCUP_ENTRY_DELETED_FALSE   0
2102 #endif /* LDAP_CLIENT_UPDATE */
2103
2104 #if defined(LDAP_CLIENT_UPDATE) || defined(LDAP_SYNC)
2105 #define SLAP_SEARCH_MAX_CTRLS   10
2106 #endif
2107
2108 LDAP_END_DECL
2109
2110 #include "proto-slap.h"
2111
2112 #endif /* _SLAP_H_ */