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