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