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