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