]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
724470f861bcfa6ecad01ef4b5896f3b09ae116f
[openldap] / servers / slapd / slap.h
1 /* slap.h - stand alone ldap server include file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 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/socket.h>
20 #include <ac/time.h>
21 #include <ac/param.h>
22
23 #include "avl.h"
24
25 #ifndef ldap_debug
26 #define ldap_debug slap_debug
27 #endif
28
29 #include "ldap_log.h"
30
31 #include <ldap.h>
32 #include <ldap_schema.h>
33
34 #include "ldap_pvt_thread.h"
35
36 LDAP_BEGIN_DECL
37
38 #define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
39 #define SLAPD_ANONYMOUS "cn=anonymous"
40
41 #ifdef f_next
42 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
43 #endif
44
45 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
46  *
47  * This is a value used internally by the backends. It is needed to allow
48  * adding values that already exist without getting an error as required by
49  * modrdn when the new rdn was already an attribute value itself.
50  * JCG 05/1999 (gomez@engr.sgi.com)
51  */
52 #define SLAP_MOD_SOFTADD        0x1000
53
54 #define ON      (1)
55 #define OFF     (-1)
56 #define UNDEFINED (0)
57
58 #define MAXREMATCHES (10)
59
60 #define SLAP_MAX_WORKER_THREADS         (32)
61
62 #define SLAP_TEXT_BUFLEN (256)
63
64 /* psuedo error code indicating abandoned operation */
65 #define SLAPD_ABANDON (-1)
66
67 /* psuedo error code indicating disconnect */
68 #define SLAPD_DISCONNECT (-2)
69
70
71 /* We assume "C" locale, that is US-ASCII */
72 #define ASCII_SPACE(c)  ( (c) == ' ' )
73 #define ASCII_LOWER(c)  ( (c) >= 'a' && (c) <= 'z' )
74 #define ASCII_UPPER(c)  ( (c) >= 'A' && (c) <= 'Z' )
75 #define ASCII_ALPHA(c)  ( ASCII_LOWER(c) || ASCII_UPPER(c) )
76 #define ASCII_DIGIT(c)  ( (c) >= '0' && (c) <= '9' )
77 #define ASCII_ALNUM(c)  ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
78 #define ASCII_PRINTABLE(c) ( (c) >= ' ' && (c) <= '~' )
79
80 #define SLAP_NIBBLE(c) ((c)&0x0f)
81 #define SLAP_ESCAPE_CHAR ('\\')
82 #define SLAP_ESCAPE_LO(c) ( "0123456789ABCDEF"[SLAP_NIBBLE(c)] )
83 #define SLAP_ESCAPE_HI(c) ( SLAP_ESCAPE_LO((c)>>4) )
84
85 #define FILTER_ESCAPE(c) ( (c) == '*' || (c) == '\\' \
86         || (c) == '(' || (c) == ')' || !ASCII_PRINTABLE(c) )
87
88 #define DN_ESCAPE(c)    ((c) == SLAP_ESCAPE_CHAR)
89 #define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
90 #define RDN_ATTRTYPEANDVALUE_SEPARATOR(c) ((c) == '+') /* RFC 2253 */
91 #define RDN_SEPARATOR(c) (DN_SEPARATOR(c) || RDN_ATTRTYPEANDVALUE_SEPARATOR(c))
92 #define RDN_NEEDSESCAPE(c)      ((c) == '\\' || (c) == '"')
93
94 #define DESC_LEADCHAR(c)        ( ASCII_ALPHA(c) )
95 #define DESC_CHAR(c)    ( ASCII_ALNUM(c) || (c) == '-' )
96 #define OID_LEADCHAR(c) ( ASCII_DIGIT(c) )
97 #define OID_SEPARATOR(c)        ( (c) == '.' )
98 #define OID_CHAR(c)     ( OID_LEADCHAR(c) || OID_SEPARATOR(c) )
99
100 #define ATTR_LEADCHAR(c)        ( DESC_LEADCHAR(c) || OID_LEADCHAR(c) )
101 #define ATTR_CHAR(c)    ( DESC_CHAR((c)) || (c) == '.' )
102
103 #define AD_LEADCHAR(c)  ( ATTR_CHAR(c) )
104 #define AD_CHAR(c)              ( ATTR_CHAR(c) || (c) == ';' )
105
106 #define SLAP_NUMERIC(c) ( ASCII_DIGIT(c) || ASCII_SPACE(c) )
107
108 #define SLAP_PRINTABLE(c)       ( ASCII_ALNUM(c) || (c) == '\'' || \
109         (c) == '(' || (c) == ')' || (c) == '+' || (c) == ',' || \
110         (c) == '-' || (c) == '.' || (c) == '/' || (c) == ':' || \
111         (c) == '?' || (c) == ' ' || (c) == '=' )
112 #define SLAP_PRINTABLES(c)      ( SLAP_PRINTABLE(c) || (c) == '$' )
113
114 /* must match in schema_init.c */
115 #define SLAPD_DN_SYNTAX                 "1.3.6.1.4.1.1466.115.121.1.12"
116 #define SLAPD_NAMEUID_SYNTAX    "1.3.6.1.4.1.1466.115.121.1.34"
117 #define SLAPD_GROUP_ATTR                "member"
118 #define SLAPD_GROUP_CLASS               "groupOfNames"
119 #define SLAPD_ROLE_ATTR                 "roleOccupant"
120 #define SLAPD_ROLE_CLASS                "organizationalRole"
121
122 #define SLAPD_ACI_SYNTAX                "1.3.6.1.4.1.4203.666.2.1"
123 #define SLAPD_ACI_ATTR                  "OpenLDAPaci"
124
125 #define SLAPD_OCTETSTRING_SYNTAX "1.3.6.1.4.1.1466.115.121.1.40"
126
127 /* change this to "OpenLDAPset" */
128 #define SLAPD_ACI_SET_ATTR              "template"
129
130 #define SLAPD_TOP_OID                   "2.5.6.0"
131
132 LDAP_SLAPD_V (int) slap_debug;
133
134 typedef unsigned long slap_mask_t;
135
136 /* Security Strength Factor */
137 typedef unsigned slap_ssf_t;
138
139 typedef struct slap_ssf_set {
140         slap_ssf_t sss_ssf;
141         slap_ssf_t sss_transport;
142         slap_ssf_t sss_tls;
143         slap_ssf_t sss_sasl;
144         slap_ssf_t sss_update_ssf;
145         slap_ssf_t sss_update_transport;
146         slap_ssf_t sss_update_tls;
147         slap_ssf_t sss_update_sasl;
148 } slap_ssf_set_t;
149
150 /*
151  * Index types
152  */
153 #define SLAP_INDEX_TYPE           0x00FFUL
154 #define SLAP_INDEX_UNDEFINED      0x0001UL
155 #define SLAP_INDEX_PRESENT        0x0002UL
156 #define SLAP_INDEX_EQUALITY       0x0004UL
157 #define SLAP_INDEX_APPROX         0x0008UL
158 #define SLAP_INDEX_SUBSTR         0x0010UL
159 #define SLAP_INDEX_EXTENDED               0x0020UL
160
161 #define SLAP_INDEX_DEFAULT        SLAP_INDEX_EQUALITY
162
163 #define IS_SLAP_INDEX(mask, type)       (((mask) & (type)) == (type) )
164
165 #define SLAP_INDEX_SUBSTR_TYPE    0x0F00UL
166
167 #define SLAP_INDEX_SUBSTR_INITIAL ( SLAP_INDEX_SUBSTR | 0x0100UL ) 
168 #define SLAP_INDEX_SUBSTR_ANY     ( SLAP_INDEX_SUBSTR | 0x0200UL )
169 #define SLAP_INDEX_SUBSTR_FINAL   ( SLAP_INDEX_SUBSTR | 0x0400UL )
170 #define SLAP_INDEX_SUBSTR_DEFAULT \
171         ( SLAP_INDEX_SUBSTR \
172         | SLAP_INDEX_SUBSTR_INITIAL \
173         | SLAP_INDEX_SUBSTR_ANY \
174         | SLAP_INDEX_SUBSTR_FINAL )
175
176 #define SLAP_INDEX_SUBSTR_MINLEN        2
177 #define SLAP_INDEX_SUBSTR_MAXLEN        4
178 #define SLAP_INDEX_SUBSTR_STEP  2
179
180 #define SLAP_INDEX_FLAGS         0xF000UL
181 #define SLAP_INDEX_NOSUBTYPES    0x1000UL /* don't use index w/ subtypes */
182 #define SLAP_INDEX_NOLANG        0x2000UL /* don't use index w/ lang */
183 #define SLAP_INDEX_AUTO_SUBTYPES 0x4000UL /* use mask with lang subtypes */
184
185 /*
186  * there is a single index for each attribute.  these prefixes ensure
187  * that there is no collision among keys.
188  */
189 #define SLAP_INDEX_EQUALITY_PREFIX      '='     /* prefix for equality keys     */
190 #define SLAP_INDEX_APPROX_PREFIX        '~'             /* prefix for approx keys       */
191 #define SLAP_INDEX_SUBSTR_PREFIX        '*'             /* prefix for substring keys    */
192 #define SLAP_INDEX_SUBSTR_INITIAL_PREFIX '^'
193 #define SLAP_INDEX_SUBSTR_FINAL_PREFIX '$'
194 #define SLAP_INDEX_CONT_PREFIX          '.'             /* prefix for continuation keys */
195 #define SLAP_INDEX_UNKNOWN_PREFIX       '?'             /* prefix for unknown keys */
196
197 #define SLAP_SYNTAX_MATCHINGRULES_OID   "1.3.6.1.4.1.1466.115.121.1.30"
198 #define SLAP_SYNTAX_ATTRIBUTETYPES_OID  "1.3.6.1.4.1.1466.115.121.1.3"
199 #define SLAP_SYNTAX_OBJECTCLASSES_OID   "1.3.6.1.4.1.1466.115.121.1.37"
200
201 /*
202  * represents schema information for a database
203  */
204 #define SLAP_SCHERR_OUTOFMEM            1
205 #define SLAP_SCHERR_CLASS_NOT_FOUND     2
206 #define SLAP_SCHERR_CLASS_BAD_USAGE     3
207 #define SLAP_SCHERR_ATTR_NOT_FOUND      4
208 #define SLAP_SCHERR_ATTR_BAD_USAGE      5
209 #define SLAP_SCHERR_DUP_CLASS           6
210 #define SLAP_SCHERR_DUP_ATTR            7
211 #define SLAP_SCHERR_DUP_SYNTAX          8
212 #define SLAP_SCHERR_DUP_RULE            9
213 #define SLAP_SCHERR_NO_NAME             10
214 #define SLAP_SCHERR_ATTR_INCOMPLETE     11
215 #define SLAP_SCHERR_MR_NOT_FOUND        12
216 #define SLAP_SCHERR_SYN_NOT_FOUND       13
217 #define SLAP_SCHERR_MR_INCOMPLETE       14
218 #define SLAP_SCHERR_NOT_SUPPORTED       15
219 #define SLAP_SCHERR_BAD_DESCR   16
220
221 typedef union slap_sockaddr {
222         struct sockaddr sa_addr;
223         struct sockaddr_in sa_in_addr;
224 #ifdef LDAP_PF_INET6
225         struct sockaddr_in6 sa_in6_addr;
226 #endif
227 #ifdef LDAP_PF_LOCAL
228         struct sockaddr_un sa_un_addr;
229 #endif
230 } Sockaddr;
231
232 typedef struct slap_oid_macro {
233         struct berval som_oid;
234         char **som_names;
235         struct slap_oid_macro *som_next;
236 } OidMacro;
237
238 /* forward declarations */
239 struct slap_syntax;
240 struct slap_matching_rule;
241
242 typedef int slap_syntax_validate_func LDAP_P((
243         struct slap_syntax *syntax,
244         struct berval * in));
245
246 typedef int slap_syntax_transform_func LDAP_P((
247         struct slap_syntax *syntax,
248         struct berval * in,
249         struct berval ** out));
250
251 typedef struct slap_syntax {
252         LDAPSyntax                      ssyn_syn;
253 #define ssyn_oid                ssyn_syn.syn_oid
254 #define ssyn_desc               ssyn_syn.syn_desc
255 #define ssyn_extensions         ssyn_syn.syn_extensions
256         ber_len_t       ssyn_oidlen;
257
258         unsigned        ssyn_flags;
259
260 #define SLAP_SYNTAX_NONE        0x00U
261 #define SLAP_SYNTAX_BLOB        0x01U /* syntax treated as blob (audio) */
262 #define SLAP_SYNTAX_BINARY      0x02U /* binary transfer required (certificate) */
263 #define SLAP_SYNTAX_BER         0x04U /* stored using BER encoding (binary,certificate) */
264 #define SLAP_SYNTAX_HIDE        0x80U /* hide (do not publish) */
265
266         slap_syntax_validate_func       *ssyn_validate;
267         slap_syntax_transform_func      *ssyn_normalize;
268         slap_syntax_transform_func      *ssyn_pretty;
269
270 #ifdef SLAPD_BINARY_CONVERSION
271         /* convert to and from binary */
272         slap_syntax_transform_func      *ssyn_ber2str;
273         slap_syntax_transform_func      *ssyn_str2ber;
274 #endif
275
276         struct slap_syntax              *ssyn_next;
277 } Syntax;
278
279 #define slap_syntax_is_flag(s,flag) ((int)((s)->ssyn_flags & (flag)) ? 1 : 0)
280 #define slap_syntax_is_blob(s)          slap_syntax_is_flag((s),SLAP_SYNTAX_BLOB)
281 #define slap_syntax_is_binary(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_BINARY)
282 #define slap_syntax_is_ber(s)           slap_syntax_is_flag((s),SLAP_SYNTAX_BER)
283 #define slap_syntax_is_hidden(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_HIDE)
284
285 /* X -> Y Converter */
286 typedef int slap_mr_convert_func LDAP_P((
287         struct berval * in,
288         struct berval ** out ));
289
290 /* Normalizer */
291 typedef int slap_mr_normalize_func LDAP_P((
292         slap_mask_t use,
293         struct slap_syntax *syntax, /* NULL if in is asserted value */
294         struct slap_matching_rule *mr,
295         struct berval * in,
296         struct berval ** out ));
297
298 /* Match (compare) function */
299 typedef int slap_mr_match_func LDAP_P((
300         int *match,
301         slap_mask_t use,
302         struct slap_syntax *syntax,     /* syntax of stored value */
303         struct slap_matching_rule *mr,
304         struct berval * value,
305         void * assertValue ));
306
307 /* Index generation function */
308 typedef int slap_mr_indexer_func LDAP_P((
309         slap_mask_t use,
310         slap_mask_t mask,
311         struct slap_syntax *syntax,     /* syntax of stored value */
312         struct slap_matching_rule *mr,
313         struct berval *prefix,
314         struct berval **values,
315         struct berval ***keys ));
316
317 /* Filter index function */
318 typedef int slap_mr_filter_func LDAP_P((
319         slap_mask_t use,
320         slap_mask_t mask,
321         struct slap_syntax *syntax,     /* syntax of stored value */
322         struct slap_matching_rule *mr,
323         struct berval *prefix,
324         void * assertValue,
325         struct berval ***keys ));
326
327 typedef struct slap_matching_rule {
328         LDAPMatchingRule                smr_mrule;
329         ber_len_t                       smr_oidlen;
330         slap_mask_t                             smr_usage;
331
332 #define SLAP_MR_TYPE_MASK               0xFF00U
333 #define SLAP_MR_SUBTYPE_MASK    0x00F0U
334 #define SLAP_MR_USAGE                   0x000FU
335
336 #define SLAP_MR_NONE                    0x0000U
337 #define SLAP_MR_EQUALITY                0x0100U
338 #define SLAP_MR_ORDERING                0x0200U
339 #define SLAP_MR_SUBSTR                  0x0400U
340 #define SLAP_MR_EXT                             0x0800U
341
342 #define SLAP_MR_EQUALITY_APPROX ( SLAP_MR_EQUALITY | 0x0010U )
343 #define SLAP_MR_DN_FOLD                 0x0008U
344
345 #define SLAP_MR_SUBSTR_INITIAL  ( SLAP_MR_SUBSTR | 0x0010U )
346 #define SLAP_MR_SUBSTR_ANY              ( SLAP_MR_SUBSTR | 0x0020U )
347 #define SLAP_MR_SUBSTR_FINAL    ( SLAP_MR_SUBSTR | 0x0040U )
348
349 /*
350  * normally the provided value is expected to conform to
351  * assertion syntax specified in the matching rule, however
352  * at times (such as during individual value modification),
353  * the provided value is expected to conform to the
354  * attribute's value syntax.
355  */
356 #define SLAP_MR_ASSERTION_SYNTAX_MATCH 0x0000U
357 #define SLAP_MR_VALUE_SYNTAX_MATCH 0x0001U
358 #define SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH 0x0003U
359
360 #define SLAP_IS_MR_ASSERTION_SYNTAX_MATCH( usage ) \
361         (!((usage) & SLAP_MR_VALUE_SYNTAX_MATCH))
362 #define SLAP_IS_MR_VALUE_SYNTAX_MATCH( usage ) \
363         ((usage) & SLAP_MR_VALUE_SYNTAX_MATCH)
364
365 #define SLAP_IS_MR_VALUE_SYNTAX_CONVERTED_MATCH( usage ) \
366         (((usage) & SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH) \
367                 == SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH)
368 #define SLAP_IS_MR_VALUE_SYNTAX_NONCONVERTED_MATCH( usage ) \
369         (((usage) & SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH) \
370                 == SLAP_MR_VALUE_SYNTAX_MATCH)
371
372         Syntax                                  *smr_syntax;
373         slap_mr_convert_func    *smr_convert;
374         slap_mr_normalize_func  *smr_normalize;
375         slap_mr_match_func              *smr_match;
376         slap_mr_indexer_func    *smr_indexer;
377         slap_mr_filter_func             *smr_filter;
378
379         struct slap_matching_rule       *smr_associated;
380         struct slap_matching_rule       *smr_next;
381
382 #define smr_oid                         smr_mrule.mr_oid
383 #define smr_names                       smr_mrule.mr_names
384 #define smr_desc                        smr_mrule.mr_desc
385 #define smr_obsolete            smr_mrule.mr_obsolete
386 #define smr_syntax_oid          smr_mrule.mr_syntax_oid
387 #define smr_extensions          smr_mrule.mr_extensions
388 } MatchingRule;
389
390 struct slap_attr_desc;
391
392 typedef struct slap_attribute_type {
393         LDAPAttributeType               sat_atype;
394         struct berval                   sat_cname;
395         struct slap_attribute_type      *sat_sup;
396         struct slap_attribute_type      **sat_subtypes;
397         MatchingRule                    *sat_equality;
398         MatchingRule                    *sat_approx;
399         MatchingRule                    *sat_ordering;
400         MatchingRule                    *sat_substr;
401         Syntax                          *sat_syntax;
402         struct slap_attr_desc           *sat_ad;
403         struct slap_attribute_type      *sat_next;
404         ldap_pvt_thread_mutex_t         sat_ad_mutex;
405 #define sat_oid                 sat_atype.at_oid
406 #define sat_names               sat_atype.at_names
407 #define sat_desc                sat_atype.at_desc
408 #define sat_obsolete            sat_atype.at_obsolete
409 #define sat_sup_oid             sat_atype.at_sup_oid
410 #define sat_equality_oid        sat_atype.at_equality_oid
411 #define sat_ordering_oid        sat_atype.at_ordering_oid
412 #define sat_substr_oid          sat_atype.at_substr_oid
413 #define sat_syntax_oid          sat_atype.at_syntax_oid
414 #define sat_single_value        sat_atype.at_single_value
415 #define sat_collective          sat_atype.at_collective
416 #define sat_no_user_mod         sat_atype.at_no_user_mod
417 #define sat_usage               sat_atype.at_usage
418 #define sat_extensions          sat_atype.at_extensions
419 } AttributeType;
420
421 #define is_at_operational(at)   ((at)->sat_usage)
422 #define is_at_single_value(at)  ((at)->sat_single_value)
423 #define is_at_collective(at)    ((at)->sat_collective)
424 #define is_at_obsolete(at)              ((at)->sat_obsolete)
425 #define is_at_no_user_mod(at)   ((at)->sat_no_user_mod)
426
427 typedef struct slap_object_class {
428         LDAPObjectClass         soc_oclass;
429         struct slap_object_class        **soc_sups;
430         AttributeType                   **soc_required;
431         AttributeType                   **soc_allowed;
432         struct slap_object_class        *soc_next;
433 #define soc_oid                 soc_oclass.oc_oid
434 #define soc_names               soc_oclass.oc_names
435 #define soc_desc                soc_oclass.oc_desc
436 #define soc_obsolete            soc_oclass.oc_obsolete
437 #define soc_sup_oids            soc_oclass.oc_sup_oids
438 #define soc_kind                soc_oclass.oc_kind
439 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
440 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
441 #define soc_extensions          soc_oclass.oc_extensions
442 } ObjectClass;
443
444
445 /*
446  * represents a recognized attribute description ( type + options )
447  */
448 typedef struct slap_attr_desc {
449         struct slap_attr_desc *ad_next;
450         AttributeType *ad_type;         /* attribute type, must be specified */
451         struct berval ad_cname;         /* canonical name, must be specified */
452         struct berval ad_lang;          /* empty if no language tags */
453         unsigned ad_flags;
454 #define SLAP_DESC_NONE          0x0U
455 #define SLAP_DESC_BINARY        0x1U
456 } AttributeDescription;
457
458 #define slap_ad_is_lang(ad)             ( (ad)->ad_lang.bv_len != 0 )
459 #define slap_ad_is_binary(ad)   ( (int)((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
460
461 /*
462  * pointers to schema elements used internally
463  */
464 struct slap_internal_schema {
465         /* objectClass */
466         ObjectClass *si_oc_top;
467         ObjectClass *si_oc_extensibleObject;
468         ObjectClass *si_oc_alias;
469         ObjectClass *si_oc_referral;
470         ObjectClass *si_oc_subentry;
471         ObjectClass *si_oc_subschema;
472         ObjectClass *si_oc_rootdse;
473
474         /* objectClass attribute descriptions */
475         AttributeDescription *si_ad_objectClass;
476
477         /* operational attribute descriptions */
478         AttributeDescription *si_ad_structuralObjectClass;
479         AttributeDescription *si_ad_entryUUID;
480         AttributeDescription *si_ad_entryCSN;
481         AttributeDescription *si_ad_creatorsName;
482         AttributeDescription *si_ad_createTimestamp;
483         AttributeDescription *si_ad_modifiersName;
484         AttributeDescription *si_ad_modifyTimestamp;
485         AttributeDescription *si_ad_hasSubordinates;
486         AttributeDescription *si_ad_subschemaSubentry;
487
488         /* root DSE attribute descriptions */
489         AttributeDescription *si_ad_namingContexts;
490         AttributeDescription *si_ad_supportedControl;
491         AttributeDescription *si_ad_supportedExtension;
492         AttributeDescription *si_ad_supportedLDAPVersion;
493         AttributeDescription *si_ad_supportedSASLMechanisms;
494         AttributeDescription *si_ad_supportedFeatures;
495
496         /* subschema subentry attribute descriptions */
497         AttributeDescription *si_ad_objectClasses;
498         AttributeDescription *si_ad_attributeTypes;
499         AttributeDescription *si_ad_ldapSyntaxes;
500         AttributeDescription *si_ad_matchingRules;
501         AttributeDescription *si_ad_matchingRulesUse;
502
503         /* Aliases & Referrals */
504         AttributeDescription *si_ad_aliasedObjectName;
505         AttributeDescription *si_ad_ref;
506
507         /* Access Control Internals */
508         AttributeDescription *si_ad_entry;
509         AttributeDescription *si_ad_children;
510 #ifdef SLAPD_ACI_ENABLED
511         AttributeDescription *si_ad_aci;
512 #endif
513
514         /* Other attributes descriptions */
515         AttributeDescription *si_ad_userPassword;
516         AttributeDescription *si_ad_authPassword;
517 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
518         AttributeDescription *si_ad_krbName;
519 #endif
520
521         /* Undefined Attribute Type */
522         AttributeType   *si_at_undefined;
523
524         /* Matching Rules */
525         MatchingRule    *si_mr_distinguishedNameMatch;
526         MatchingRule    *si_mr_integerMatch;
527
528         /* Syntaxes */
529         Syntax          *si_syn_distinguishedName;
530         Syntax          *si_syn_integer;
531 };
532
533 typedef struct slap_attr_assertion {
534         AttributeDescription    *aa_desc;
535         struct berval *aa_value;
536 } AttributeAssertion;
537
538 typedef struct slap_ss_assertion {
539         AttributeDescription    *sa_desc;
540         struct berval                   *sa_initial;
541         struct berval                   **sa_any;
542         struct berval                   *sa_final;
543 } SubstringsAssertion;
544
545 typedef struct slap_mr_assertion {
546         MatchingRule                            *ma_rule;       /* optional */
547         struct berval                           ma_rule_text;  /* optional */
548         AttributeDescription    *ma_desc;       /* optional */
549         int                                             ma_dnattrs; /* boolean */
550         struct berval                   *ma_value;      /* required */
551 } MatchingRuleAssertion;
552
553 /*
554  * represents a search filter
555  */
556 typedef struct slap_filter {
557         ber_tag_t       f_choice;       /* values taken from ldap.h, plus: */
558 #define SLAPD_FILTER_COMPUTED   ((ber_tag_t) -1)
559 #define SLAPD_FILTER_DN_ONE             ((ber_tag_t) -2)
560 #define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3)
561
562         union f_un_u {
563                 /* precomputed result */
564                 ber_int_t f_un_result;
565
566                 /* DN */
567                 struct berval *f_un_dn;
568
569                 /* present */
570                 AttributeDescription *f_un_desc;
571
572                 /* simple value assertion */
573                 AttributeAssertion *f_un_ava;
574
575                 /* substring assertion */
576                 SubstringsAssertion *f_un_ssa;
577
578                 /* matching rule assertion */
579                 MatchingRuleAssertion *f_un_mra;
580
581 #define f_dn                    f_un.f_un_dn
582 #define f_desc                  f_un.f_un_desc
583 #define f_ava                   f_un.f_un_ava
584 #define f_av_desc               f_un.f_un_ava->aa_desc
585 #define f_av_value              f_un.f_un_ava->aa_value
586 #define f_sub                   f_un.f_un_ssa
587 #define f_sub_desc              f_un.f_un_ssa->sa_desc
588 #define f_sub_initial   f_un.f_un_ssa->sa_initial
589 #define f_sub_any               f_un.f_un_ssa->sa_any
590 #define f_sub_final             f_un.f_un_ssa->sa_final
591 #define f_mra                   f_un.f_un_mra
592 #define f_mr_rule               f_un.f_un_mra->ma_rule
593 #define f_mr_rule_text          f_un.f_un_mra->ma_rule_text
594 #define f_mr_desc               f_un.f_un_mra->ma_desc
595 #define f_mr_value              f_un.f_un_mra->ma_value
596 #define f_mr_dnattrs    f_un.f_un_mra->ma_dnattrs
597
598                 /* and, or, not */
599                 struct slap_filter *f_un_complex;
600         } f_un;
601
602 #define f_result        f_un.f_un_result
603 #define f_and           f_un.f_un_complex
604 #define f_or            f_un.f_un_complex
605 #define f_not           f_un.f_un_complex
606 #define f_list          f_un.f_un_complex
607
608         struct slap_filter      *f_next;
609 } Filter;
610
611 /* compare routines can return undefined */
612 #define SLAPD_COMPARE_UNDEFINED ((ber_int_t) -1)
613
614 /*
615  * represents an attribute (description + values)
616  */
617 typedef struct slap_attr {
618         AttributeDescription *a_desc;
619         struct berval   **a_vals;
620         struct slap_attr        *a_next;
621 } Attribute;
622
623
624 /*
625  * the id used in the indexes to refer to an entry
626  */
627 typedef unsigned long   ID;
628 #define NOID    ((ID)~0)
629
630 /*
631  * represents an entry in core
632  */
633 typedef struct slap_entry {
634         /*
635          * The ID field should only be changed before entry is
636          * inserted into a cache.  The ID value is backend
637          * specific.
638          */
639         ID              e_id;
640
641         struct berval e_name;   /* name (DN) of this entry */
642         struct berval e_nname;  /* normalized name (DN) of this entry */
643
644         /* for migration purposes */
645 #define e_dn e_name.bv_val
646 #define e_ndn e_nname.bv_val
647
648         Attribute       *e_attrs;       /* list of attributes + values */
649
650         /* for use by the backend for any purpose */
651         void*   e_private;
652 } Entry;
653
654 /*
655  * A list of LDAPMods
656  */
657 typedef struct slap_mod {
658         int sm_op;
659         AttributeDescription *sm_desc;
660         struct berval **sm_bvalues;
661 } Modification;
662
663 typedef struct slap_mod_list {
664         Modification sml_mod;
665 #define sml_op          sml_mod.sm_op
666 #define sml_desc        sml_mod.sm_desc
667 #define sml_bvalues     sml_mod.sm_bvalues
668         struct slap_mod_list *sml_next;
669 } Modifications;
670
671 typedef struct slap_ldap_modlist {
672         LDAPMod ml_mod;
673         struct slap_ldap_modlist *ml_next;
674 #define ml_op           ml_mod.mod_op
675 #define ml_type         ml_mod.mod_type
676 #define ml_values       ml_mod.mod_values
677 #define ml_bvalues      ml_mod.mod_bvalues
678 } LDAPModList;
679
680 /*
681  * represents an access control list
682  */
683 typedef enum slap_access_e {
684         ACL_INVALID_ACCESS = -1,
685         ACL_NONE = 0,
686         ACL_AUTH,
687         ACL_COMPARE,
688         ACL_SEARCH,
689         ACL_READ,
690         ACL_WRITE
691 } slap_access_t;
692
693 typedef enum slap_control_e {
694         ACL_INVALID_CONTROL     = 0,
695         ACL_STOP,
696         ACL_CONTINUE,
697         ACL_BREAK
698 } slap_control_t;
699
700 typedef enum slap_style_e {
701         ACL_STYLE_REGEX = 0,
702         ACL_STYLE_BASE,
703         ACL_STYLE_ONE,
704         ACL_STYLE_SUBTREE,
705         ACL_STYLE_CHILDREN,
706         ACL_STYLE_ATTROF,
707
708         /* alternate names */
709         ACL_STYLE_EXACT = ACL_STYLE_BASE
710 } slap_style_t;
711
712 typedef struct slap_authz_info {
713         ber_tag_t       sai_method;             /* LDAP_AUTH_* from <ldap.h> */
714         char *          sai_mech;               /* SASL Mechanism */
715         struct berval   sai_dn;                 /* DN for reporting purposes */
716         struct berval   sai_ndn;                /* Normalized DN */
717
718         /* Security Strength Factors */
719         slap_ssf_t      sai_ssf;                        /* Overall SSF */
720         slap_ssf_t      sai_transport_ssf;      /* Transport SSF */
721         slap_ssf_t      sai_tls_ssf;            /* TLS SSF */
722         slap_ssf_t      sai_sasl_ssf;           /* SASL SSF */
723 } AuthorizationInformation;
724
725 /* the "by" part */
726 typedef struct slap_access {
727         slap_control_t a_type;
728
729 #define ACL_ACCESS2PRIV(access) (0x01U << (access))
730
731 #define ACL_PRIV_NONE                   ACL_ACCESS2PRIV( ACL_NONE )
732 #define ACL_PRIV_AUTH                   ACL_ACCESS2PRIV( ACL_AUTH )
733 #define ACL_PRIV_COMPARE                ACL_ACCESS2PRIV( ACL_COMPARE )
734 #define ACL_PRIV_SEARCH                 ACL_ACCESS2PRIV( ACL_SEARCH )
735 #define ACL_PRIV_READ                   ACL_ACCESS2PRIV( ACL_READ )
736 #define ACL_PRIV_WRITE                  ACL_ACCESS2PRIV( ACL_WRITE )
737
738 #define ACL_PRIV_MASK                   0x00ffUL
739
740 /* priv flags */
741 #define ACL_PRIV_LEVEL                  0x1000UL
742 #define ACL_PRIV_ADDITIVE               0x2000UL
743 #define ACL_PRIV_SUBSTRACTIVE   0x4000UL
744
745 /* invalid privs */
746 #define ACL_PRIV_INVALID                0x0UL
747
748 #define ACL_PRIV_ISSET(m,p)             (((m) & (p)) == (p))
749 #define ACL_PRIV_ASSIGN(m,p)    do { (m)  =  (p); } while(0)
750 #define ACL_PRIV_SET(m,p)               do { (m) |=  (p); } while(0)
751 #define ACL_PRIV_CLR(m,p)               do { (m) &= ~(p); } while(0)
752
753 #define ACL_INIT(m)                             ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
754 #define ACL_INVALIDATE(m)               ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
755
756 #define ACL_GRANT(m,a)                  ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
757
758 #define ACL_IS_INVALID(m)               ((m) == ACL_PRIV_INVALID)
759
760 #define ACL_IS_LEVEL(m)                 ACL_PRIV_ISSET((m),ACL_PRIV_LEVEL)
761 #define ACL_IS_ADDITIVE(m)              ACL_PRIV_ISSET((m),ACL_PRIV_ADDITIVE)
762 #define ACL_IS_SUBTRACTIVE(m)   ACL_PRIV_ISSET((m),ACL_PRIV_SUBSTRACTIVE)
763
764 #define ACL_LVL_NONE                    (ACL_PRIV_NONE|ACL_PRIV_LEVEL)
765 #define ACL_LVL_AUTH                    (ACL_PRIV_AUTH|ACL_LVL_NONE)
766 #define ACL_LVL_COMPARE                 (ACL_PRIV_COMPARE|ACL_LVL_AUTH)
767 #define ACL_LVL_SEARCH                  (ACL_PRIV_SEARCH|ACL_LVL_COMPARE)
768 #define ACL_LVL_READ                    (ACL_PRIV_READ|ACL_LVL_SEARCH)
769 #define ACL_LVL_WRITE                   (ACL_PRIV_WRITE|ACL_LVL_READ)
770
771 #define ACL_LVL(m,l)                    (((m)&ACL_PRIV_MASK) == ((l)&ACL_PRIV_MASK))
772 #define ACL_LVL_IS_NONE(m)              ACL_LVL((m),ACL_LVL_NONE)
773 #define ACL_LVL_IS_AUTH(m)              ACL_LVL((m),ACL_LVL_AUTH)
774 #define ACL_LVL_IS_COMPARE(m)   ACL_LVL((m),ACL_LVL_COMPARE)
775 #define ACL_LVL_IS_SEARCH(m)    ACL_LVL((m),ACL_LVL_SEARCH)
776 #define ACL_LVL_IS_READ(m)              ACL_LVL((m),ACL_LVL_READ)
777 #define ACL_LVL_IS_WRITE(m)             ACL_LVL((m),ACL_LVL_WRITE)
778
779 #define ACL_LVL_ASSIGN_NONE(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_NONE)
780 #define ACL_LVL_ASSIGN_AUTH(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_AUTH)
781 #define ACL_LVL_ASSIGN_COMPARE(m)       ACL_PRIV_ASSIGN((m),ACL_LVL_COMPARE)
782 #define ACL_LVL_ASSIGN_SEARCH(m)        ACL_PRIV_ASSIGN((m),ACL_LVL_SEARCH)
783 #define ACL_LVL_ASSIGN_READ(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_READ)
784 #define ACL_LVL_ASSIGN_WRITE(m)         ACL_PRIV_ASSIGN((m),ACL_LVL_WRITE)
785
786         slap_mask_t     a_access_mask;
787
788         AuthorizationInformation        a_authz;
789 #define a_dn_pat        a_authz.sai_dn
790
791         slap_style_t a_dn_style;
792         AttributeDescription    *a_dn_at;
793         int                     a_dn_self;
794
795         slap_style_t a_peername_style;
796         char            *a_peername_pat;
797         slap_style_t a_sockname_style;
798         char            *a_sockname_pat;
799
800         slap_style_t a_domain_style;
801         char            *a_domain_pat;
802         slap_style_t a_sockurl_style;
803         char            *a_sockurl_pat;
804         slap_style_t a_set_style;
805         struct berval   a_set_pat;
806
807 #ifdef SLAPD_ACI_ENABLED
808         AttributeDescription    *a_aci_at;
809 #endif
810
811         /* ACL Groups */
812         slap_style_t a_group_style;
813         struct berval   a_group_pat;
814         ObjectClass                             *a_group_oc;
815         AttributeDescription    *a_group_at;
816
817         struct slap_access      *a_next;
818 } Access;
819
820 /* the "to" part */
821 typedef struct slap_acl {
822         /* "to" part: the entries this acl applies to */
823         Filter          *acl_filter;
824         slap_style_t acl_dn_style;
825         regex_t         acl_dn_re;
826         struct berval   acl_dn_pat;
827         struct berval   **acl_attrs;
828
829         /* "by" part: list of who has what access to the entries */
830         Access  *acl_access;
831
832         struct slap_acl *acl_next;
833 } AccessControl;
834
835 /*
836  * replog moddn param structure
837  */
838 struct slap_replog_moddn {
839         struct berval *newrdn;
840         int     deloldrdn;
841         struct berval *newsup;
842 };
843
844 /*
845  * Backend-info
846  * represents a backend 
847  */
848
849 typedef struct slap_backend_info BackendInfo;   /* per backend type */
850 typedef struct slap_backend_db BackendDB;               /* per backend database */
851
852 LDAP_SLAPD_V (int) nBackendInfo;
853 LDAP_SLAPD_V (int) nBackendDB;
854 LDAP_SLAPD_V (BackendInfo *) backendInfo;
855 LDAP_SLAPD_V (BackendDB *) backendDB;
856
857 LDAP_SLAPD_V (int) slapMode;    
858 #define SLAP_UNDEFINED_MODE     0x0000
859 #define SLAP_SERVER_MODE        0x0001
860 #define SLAP_TOOL_MODE          0x0002
861 #define SLAP_MODE                       0x0003
862
863 #define SLAP_TRUNCATE_MODE      0x0100
864
865 struct slap_replica_info {
866         char *ri_host;                          /* supersedes be_replica */
867         struct berval **ri_nsuffix;     /* array of suffixes this replica accepts */
868 };
869
870 struct slap_limits_set {
871         /* time limits */
872         int     lms_t_soft;
873         int     lms_t_hard;
874
875         /* size limits */
876         int     lms_s_soft;
877         int     lms_s_hard;
878         int     lms_s_unchecked;
879 };
880
881 struct slap_limits {
882         int     lm_type;        /* type of pattern */
883 #define SLAP_LIMITS_UNDEFINED   0x0000
884 #define SLAP_LIMITS_EXACT       0x0001
885 #define SLAP_LIMITS_BASE        SLAP_LIMITS_EXACT
886 #define SLAP_LIMITS_ONE         0x0002
887 #define SLAP_LIMITS_SUBTREE     0x0003
888 #define SLAP_LIMITS_CHILDREN    0x0004
889 #define SLAP_LIMITS_REGEX       0x0005
890 #define SLAP_LIMITS_ANONYMOUS   0x0006
891 #define SLAP_LIMITS_USERS       0x0007
892         regex_t lm_dn_regex;            /* regex data for REGEX */
893
894         /*
895          * normalized DN for EXACT, BASE, ONE, SUBTREE, CHILDREN;
896          * pattern for REGEX; NULL for ANONYMOUS, USERS
897          */
898         struct berval *lm_dn_pat;
899
900         struct slap_limits_set  lm_limits;
901 };
902
903 /* temporary aliases */
904 typedef BackendDB Backend;
905 #define nbackends nBackendDB
906 #define backends backendDB
907
908 struct slap_backend_db {
909         BackendInfo     *bd_info;       /* pointer to shared backend info */
910
911         /* BackendInfo accessors */
912 #define         be_config       bd_info->bi_db_config
913 #define         be_type         bd_info->bi_type
914
915 #define         be_bind         bd_info->bi_op_bind
916 #define         be_unbind       bd_info->bi_op_unbind
917 #define         be_add          bd_info->bi_op_add
918 #define         be_compare      bd_info->bi_op_compare
919 #define         be_delete       bd_info->bi_op_delete
920 #define         be_modify       bd_info->bi_op_modify
921 #define         be_modrdn       bd_info->bi_op_modrdn
922 #define         be_search       bd_info->bi_op_search
923
924 #define         be_extended     bd_info->bi_extended
925
926 #define         be_release      bd_info->bi_entry_release_rw
927 #define         be_chk_referrals        bd_info->bi_chk_referrals
928 #define         be_group        bd_info->bi_acl_group
929 #define         be_attribute    bd_info->bi_acl_attribute
930 #define         be_operational  bd_info->bi_operational
931
932 #define         be_controls     bd_info->bi_controls
933
934 #define         be_connection_init      bd_info->bi_connection_init
935 #define         be_connection_destroy   bd_info->bi_connection_destroy
936
937 #ifdef SLAPD_TOOLS
938 #define         be_entry_open bd_info->bi_tool_entry_open
939 #define         be_entry_close bd_info->bi_tool_entry_close
940 #define         be_entry_first bd_info->bi_tool_entry_first
941 #define         be_entry_next bd_info->bi_tool_entry_next
942 #define         be_entry_reindex bd_info->bi_tool_entry_reindex
943 #define         be_entry_get bd_info->bi_tool_entry_get
944 #define         be_entry_put bd_info->bi_tool_entry_put
945 #define         be_sync bd_info->bi_tool_sync
946 #endif
947
948         slap_mask_t     be_restrictops;         /* restriction operations */
949 #define SLAP_RESTRICT_OP_ADD            0x0001U
950 #define SLAP_RESTRICT_OP_BIND           0x0002U
951 #define SLAP_RESTRICT_OP_COMPARE        0x0004U
952 #define SLAP_RESTRICT_OP_DELETE         0x0008U
953 #define SLAP_RESTRICT_OP_EXTENDED       0x0010U
954 #define SLAP_RESTRICT_OP_MODIFY         0x0020U
955 #define SLAP_RESTRICT_OP_RENAME         0x0040U
956 #define SLAP_RESTRICT_OP_SEARCH         0x0080U
957
958 #define SLAP_RESTRICT_OP_READS  \
959         ( SLAP_RESTRICT_OP_COMPARE    \
960         | SLAP_RESTRICT_OP_SEARCH )
961 #define SLAP_RESTRICT_OP_WRITES \
962         ( SLAP_RESTRICT_OP_ADD    \
963         | SLAP_RESTRICT_OP_DELETE \
964         | SLAP_RESTRICT_OP_MODIFY \
965         | SLAP_RESTRICT_OP_RENAME )
966
967 #define SLAP_ALLOW_BIND_V2                      0x0001U /* LDAPv2 bind */
968 #define SLAP_ALLOW_BIND_ANON_CRED       0x0002U /* cred should be empty */
969 #define SLAP_ALLOW_BIND_ANON_DN         0x0003U /* dn should be empty */
970
971 #define SLAP_DISALLOW_BIND_ANON         0x0001U /* no anonymous */
972 #define SLAP_DISALLOW_BIND_SIMPLE       0x0002U /* simple authentication */
973 #define SLAP_DISALLOW_BIND_KRBV4        0x0004U /* Kerberos V4 authentication */
974
975 #define SLAP_DISALLOW_TLS_2_ANON        0x0010U /* StartTLS -> Anonymous */
976 #define SLAP_DISALLOW_TLS_AUTHC         0x0020U /* TLS while authenticated */
977
978         slap_mask_t     be_requires;    /* pre-operation requirements */
979 #define SLAP_REQUIRE_BIND               0x0001U /* bind before op */
980 #define SLAP_REQUIRE_LDAP_V3    0x0002U /* LDAPv3 before op */
981 #define SLAP_REQUIRE_AUTHC              0x0004U /* authentication before op */
982 #define SLAP_REQUIRE_SASL               0x0008U /* SASL before op  */
983 #define SLAP_REQUIRE_STRONG             0x0010U /* strong authentication before op */
984
985         /* Required Security Strength Factor */
986         slap_ssf_set_t be_ssf_set;
987
988         /* these should be renamed from be_ to bd_ */
989         struct berval **be_suffix;      /* the DN suffixes of data in this backend */
990         struct berval **be_nsuffix;     /* the normalized DN suffixes in this backend */
991         struct berval **be_suffixAlias; /* pairs of DN suffix aliases and deref values */
992         struct berval be_rootdn;        /* the magic "root" name (DN) for this db */
993         struct berval be_rootndn;       /* the magic "root" normalized name (DN) for this db */
994         struct berval be_rootpw;        /* the magic "root" password for this db        */
995         unsigned int be_max_deref_depth;       /* limit for depth of an alias deref  */
996 #define be_sizelimit    be_def_limit.lms_s_soft
997 #define be_timelimit    be_def_limit.lms_t_soft
998         struct slap_limits_set be_def_limit; /* default limits */
999         struct slap_limits **be_limits; /* regex-based size and time limits */
1000         AccessControl *be_acl;  /* access control list for this backend    */
1001         slap_access_t   be_dfltaccess;  /* access given if no acl matches          */
1002         struct slap_replica_info **be_replica;  /* replicas of this backend (in master) */
1003         char    *be_replogfile; /* replication log file (in master)        */
1004         struct berval be_update_ndn;    /* allowed to make changes (in replicas) */
1005         struct berval **be_update_refs; /* where to refer modifying clients to */
1006         char    *be_realm;
1007         int     be_lastmod;     /* keep track of lastmodified{by,time}     */
1008
1009 #define SLAP_GLUE_INSTANCE      0x01    /* a glue backend */
1010 #define SLAP_GLUE_SUBORDINATE   0x02    /* child of a glue hierarchy */
1011 #define SLAP_GLUE_LINKED        0x04    /* child is connected to parent */
1012
1013         int     be_glueflags;   /* */
1014         void    *be_private;    /* anything the backend database needs     */
1015 };
1016
1017 struct slap_conn;
1018 struct slap_op;
1019
1020 /* Backend function typedefs */
1021 typedef int (BI_init) LDAP_P((BackendInfo *bi));
1022 typedef int (BI_config) LDAP_P((BackendInfo *bi,
1023         const char *fname, int lineno,
1024         int argc, char **argv));
1025 typedef int (BI_open) LDAP_P((BackendInfo *bi));
1026 typedef int (BI_close) LDAP_P((BackendInfo *bi));
1027 typedef int (BI_destroy) LDAP_P((BackendInfo *bi));
1028
1029 typedef int (BI_db_init) LDAP_P((Backend *bd));
1030 typedef int (BI_db_config) LDAP_P((Backend *bd,
1031         const char *fname, int lineno,
1032         int argc, char **argv));
1033 typedef int (BI_db_open) LDAP_P((Backend *bd));
1034 typedef int (BI_db_close) LDAP_P((Backend *bd));
1035 typedef int (BI_db_destroy) LDAP_P((Backend *bd));
1036
1037 typedef int (BI_op_bind)  LDAP_P(( BackendDB *bd,
1038                 struct slap_conn *c, struct slap_op *o,
1039                 struct berval *dn, struct berval *ndn, int method,
1040                 struct berval *cred, struct berval *edn ));
1041 typedef int (BI_op_unbind) LDAP_P((BackendDB *bd,
1042                 struct slap_conn *c, struct slap_op *o ));
1043 typedef int (BI_op_search) LDAP_P((BackendDB *bd,
1044                 struct slap_conn *c, struct slap_op *o,
1045                 struct berval *base, struct berval *nbase,
1046                 int scope, int deref,
1047                 int slimit, int tlimit,
1048                 Filter *f, const char *filterstr,
1049                 struct berval **attrs, int attrsonly));
1050 typedef int (BI_op_compare)LDAP_P((BackendDB *bd,
1051                 struct slap_conn *c, struct slap_op *o,
1052                 struct berval *dn, struct berval *ndn,
1053                 AttributeAssertion *ava));
1054 typedef int (BI_op_modify) LDAP_P((BackendDB *bd,
1055                 struct slap_conn *c, struct slap_op *o,
1056                 struct berval *dn, struct berval *ndn,
1057                 Modifications *m));
1058 typedef int (BI_op_modrdn) LDAP_P((BackendDB *bd,
1059                 struct slap_conn *c, struct slap_op *o,
1060                 struct berval *dn, struct berval *ndn,
1061                 struct berval *newrdn, struct berval *nnewrdn,
1062                 int deleteoldrdn,
1063                 struct berval *newSup, struct berval *nnewSup ));
1064 typedef int (BI_op_add)    LDAP_P((BackendDB *bd,
1065                 struct slap_conn *c, struct slap_op *o,
1066                 Entry *e));
1067 typedef int (BI_op_delete) LDAP_P((BackendDB *bd,
1068                 struct slap_conn *c, struct slap_op *o,
1069                 struct berval *dn, struct berval *ndn));
1070 typedef int (BI_op_abandon) LDAP_P((BackendDB *bd,
1071                 struct slap_conn *c, struct slap_op *o,
1072                 ber_int_t msgid));
1073
1074 typedef int (BI_op_extended) LDAP_P((
1075     BackendDB           *be,
1076     struct slap_conn    *conn,
1077     struct slap_op              *op,
1078         const char              *reqoid,
1079     struct berval * reqdata,
1080         char            **rspoid,
1081     struct berval ** rspdata,
1082         LDAPControl *** rspctrls,
1083         const char **   text,
1084         struct berval *** refs ));
1085
1086 typedef int (BI_entry_release_rw) LDAP_P((BackendDB *bd,
1087                 struct slap_conn *c, struct slap_op *o,
1088                 Entry *e, int rw));
1089
1090 typedef int (BI_chk_referrals) LDAP_P((BackendDB *bd,
1091                 struct slap_conn *c, struct slap_op *o,
1092                 struct berval *dn, struct berval *ndn,
1093                 const char **text ));
1094
1095 typedef int (BI_acl_group)  LDAP_P((Backend *bd,
1096                 struct slap_conn *c, struct slap_op *o,
1097                 Entry *e,
1098                 struct berval *bdn,
1099                 struct berval *edn,
1100                 ObjectClass *group_oc,
1101                 AttributeDescription *group_at ));
1102
1103 typedef int (BI_acl_attribute)  LDAP_P((Backend *bd,
1104                 struct slap_conn *c, struct slap_op *o,
1105                 Entry *e, struct berval *edn,
1106                 AttributeDescription *entry_at,
1107                 struct berval ***vals ));
1108
1109 typedef int (BI_operational)  LDAP_P((Backend *bd,
1110                 struct slap_conn *c, struct slap_op *o,
1111                 Entry *e, struct berval **attrs, int opattrs, Attribute **a ));
1112
1113 typedef int (BI_connection_init) LDAP_P((BackendDB *bd,
1114                 struct slap_conn *c));
1115 typedef int (BI_connection_destroy) LDAP_P((BackendDB *bd,
1116                 struct slap_conn *c));
1117
1118 typedef int (BI_tool_entry_open) LDAP_P(( BackendDB *be, int mode ));
1119 typedef int (BI_tool_entry_close) LDAP_P(( BackendDB *be ));
1120 typedef ID (BI_tool_entry_first) LDAP_P(( BackendDB *be ));
1121 typedef ID (BI_tool_entry_next) LDAP_P(( BackendDB *be ));
1122 typedef Entry* (BI_tool_entry_get) LDAP_P(( BackendDB *be, ID id ));
1123 typedef ID (BI_tool_entry_put) LDAP_P(( BackendDB *be, Entry *e ));
1124 typedef int (BI_tool_entry_reindex) LDAP_P(( BackendDB *be, ID id ));
1125 typedef int (BI_tool_sync) LDAP_P(( BackendDB *be ));
1126
1127 struct slap_backend_info {
1128         char    *bi_type;       /* type of backend */
1129
1130         /*
1131          * per backend type routines:
1132          * bi_init: called to allocate a backend_info structure,
1133          *              called once BEFORE configuration file is read.
1134          *              bi_init() initializes this structure hence is
1135          *              called directly from be_initialize()
1136          * bi_config: called per 'backend' specific option
1137          *              all such options must before any 'database' options
1138          *              bi_config() is called only from read_config()
1139          * bi_open: called to open each database, called
1140          *              once AFTER configuration file is read but
1141          *              BEFORE any bi_db_open() calls.
1142          *              bi_open() is called from backend_startup()
1143          * bi_close: called to close each database, called
1144          *              once during shutdown after all bi_db_close calls.
1145          *              bi_close() is called from backend_shutdown()
1146          * bi_destroy: called to destroy each database, called
1147          *              once during shutdown after all bi_db_destroy calls.
1148          *              bi_destory() is called from backend_destroy()
1149          */
1150         BI_init *bi_init;
1151         BI_config       *bi_config;
1152         BI_open *bi_open;
1153         BI_close        *bi_close;
1154         BI_destroy      *bi_destroy;
1155
1156         /*
1157          * per database routines:
1158          * bi_db_init: called to initialize each database,
1159          *      called upon reading 'database <type>' 
1160          *      called only from backend_db_init()
1161          * bi_db_config: called to configure each database,
1162          *  called per database to handle per database options
1163          *      called only from read_config()
1164          * bi_db_open: called to open each database
1165          *      called once per database immediately AFTER bi_open()
1166          *      calls but before daemon startup.
1167          *  called only by backend_startup()
1168          * bi_db_close: called to close each database
1169          *      called once per database during shutdown but BEFORE
1170          *  any bi_close call.
1171          *  called only by backend_shutdown()
1172          * bi_db_destroy: called to destroy each database
1173          *  called once per database during shutdown AFTER all
1174          *  bi_close calls but before bi_destory calls.
1175          *  called only by backend_destory()
1176          */
1177         BI_db_init      *bi_db_init;
1178         BI_db_config    *bi_db_config;
1179         BI_db_open      *bi_db_open;
1180         BI_db_close     *bi_db_close;
1181         BI_db_destroy   *bi_db_destroy;
1182
1183         /* LDAP Operations Handling Routines */
1184         BI_op_bind      *bi_op_bind;
1185         BI_op_unbind    *bi_op_unbind;
1186         BI_op_search    *bi_op_search;
1187         BI_op_compare   *bi_op_compare;
1188         BI_op_modify    *bi_op_modify;
1189         BI_op_modrdn    *bi_op_modrdn;
1190         BI_op_add       *bi_op_add;
1191         BI_op_delete    *bi_op_delete;
1192         BI_op_abandon   *bi_op_abandon;
1193
1194         /* Extended Operations Helper */
1195         BI_op_extended  *bi_extended;
1196
1197         /* Auxilary Functions */
1198         BI_entry_release_rw     *bi_entry_release_rw;
1199         BI_chk_referrals        *bi_chk_referrals;
1200
1201         BI_acl_group    *bi_acl_group;
1202         BI_acl_attribute        *bi_acl_attribute;
1203
1204         BI_operational  *bi_operational;
1205
1206         BI_connection_init      *bi_connection_init;
1207         BI_connection_destroy   *bi_connection_destroy;
1208
1209         /* hooks for slap tools */
1210         BI_tool_entry_open      *bi_tool_entry_open;
1211         BI_tool_entry_close     *bi_tool_entry_close;
1212         BI_tool_entry_first     *bi_tool_entry_first;
1213         BI_tool_entry_next      *bi_tool_entry_next;
1214         BI_tool_entry_get       *bi_tool_entry_get;
1215         BI_tool_entry_put       *bi_tool_entry_put;
1216         BI_tool_entry_reindex   *bi_tool_entry_reindex;
1217         BI_tool_sync            *bi_tool_sync;
1218
1219 #define SLAP_INDEX_ADD_OP               0x0001
1220 #define SLAP_INDEX_DELETE_OP    0x0002
1221
1222         char **bi_controls;             /* supported controls */
1223
1224         unsigned int bi_nDB;    /* number of databases of this type */
1225         void    *bi_private;    /* anything the backend type needs */
1226 };
1227
1228 #define c_authtype      c_authz.sai_method
1229 #define c_authmech      c_authz.sai_mech
1230 #define c_dn            c_authz.sai_dn
1231 #define c_ndn           c_authz.sai_ndn
1232 #define c_ssf                   c_authz.sai_ssf
1233 #define c_transport_ssf c_authz.sai_transport_ssf
1234 #define c_tls_ssf               c_authz.sai_tls_ssf
1235 #define c_sasl_ssf              c_authz.sai_sasl_ssf
1236
1237 #define o_authtype      o_authz.sai_method
1238 #define o_authmech      o_authz.sai_mech
1239 #define o_dn            o_authz.sai_dn
1240 #define o_ndn           o_authz.sai_ndn
1241 #define o_ssf                   o_authz.sai_ssf
1242 #define o_transport_ssf o_authz.sai_transport_ssf
1243 #define o_tls_ssf               o_authz.sai_tls_ssf
1244 #define o_sasl_ssf              o_authz.sai_sasl_ssf
1245
1246 struct slap_op;
1247 struct slap_conn;
1248
1249 typedef void (slap_response)( struct slap_conn *, struct slap_op *,
1250         ber_tag_t, ber_int_t, ber_int_t, const char *, const char *,
1251         struct berval **, const char *, struct berval *,
1252         struct berval *, LDAPControl ** );
1253
1254 typedef void (slap_sresult)( struct slap_conn *, struct slap_op *,
1255         ber_int_t, const char *, const char *, struct berval **,
1256         LDAPControl **, int nentries);
1257
1258 /*
1259  * represents an operation pending from an ldap client
1260  */
1261 typedef struct slap_op {
1262         ber_int_t       o_opid;         /* id of this operation           */
1263         ber_int_t       o_msgid;        /* msgid of the request           */
1264 #ifdef LDAP_CONNECTIONLESS
1265         Sockaddr        o_peeraddr;     /* UDP peer address               */
1266 #endif
1267
1268         ldap_pvt_thread_t       o_tid;  /* thread handling this op        */
1269
1270         BerElement      *o_ber;         /* ber of the request             */
1271
1272         ber_tag_t       o_tag;          /* tag of the request             */
1273         time_t          o_time;         /* time op was initiated          */
1274
1275         AuthorizationInformation o_authz;
1276
1277         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
1278
1279         LDAPControl     **o_ctrls;       /* controls */
1280
1281         unsigned long   o_connid; /* id of conn initiating this op  */
1282
1283         ldap_pvt_thread_mutex_t o_abandonmutex; /* protects o_abandon  */
1284         int             o_abandon;      /* abandon flag */
1285         slap_response   *o_response;    /* callback function */
1286         slap_sresult    *o_sresult;     /* search result callback */
1287
1288         struct slap_op  *o_next;        /* next operation in list         */
1289         void    *o_private;     /* anything the backend needs     */
1290         void    *o_glue;        /* for the glue backend */
1291 } Operation;
1292
1293 /*
1294  * Caches the result of a backend_group check for ACL evaluation
1295  */
1296 typedef struct slap_gacl {
1297         struct slap_gacl *next;
1298         Backend *be;
1299         ObjectClass *oc;
1300         AttributeDescription *at;
1301         int res;
1302         ber_len_t len;
1303         char ndn[1];
1304 } GroupAssertion;
1305
1306 /*
1307  * represents a connection from an ldap client
1308  */
1309 typedef struct slap_conn {
1310         int                     c_struct_state; /* structure management state */
1311         int                     c_conn_state;   /* connection state */
1312
1313         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
1314         Sockbuf         *c_sb;                  /* ber connection stuff           */
1315
1316         /* only can be changed by connect_init */
1317         time_t          c_starttime;    /* when the connection was opened */
1318         time_t          c_activitytime; /* when the connection was last used */
1319         unsigned long           c_connid;       /* id of this connection for stats*/
1320
1321         char            *c_listener_url;        /* listener URL */
1322         char            *c_peer_domain; /* DNS name of client */
1323         char            *c_peer_name;   /* peer name (trans=addr:port) */
1324         char            *c_sock_name;   /* sock name (trans=addr:port) */
1325
1326         /* only can be changed by binding thread */
1327         int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
1328         char    *c_sasl_bind_mech;                      /* mech in progress */
1329         char    *c_cdn;
1330
1331         /* authentication backend */
1332         Backend *c_authc_backend;
1333
1334         /* authorization backend - normally same as c_authc_backend */
1335         Backend *c_authz_backend;
1336
1337         AuthorizationInformation c_authz;
1338         GroupAssertion *c_groups;
1339
1340         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
1341
1342         Operation       *c_ops;                 /* list of operations being processed */
1343         Operation       *c_pending_ops; /* list of pending operations */
1344
1345         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
1346         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
1347
1348         BerElement      *c_currentber;  /* ber we're attempting to read */
1349         int             c_writewaiter;  /* true if writer is waiting */
1350
1351 #ifdef LDAP_CONNECTIONLESS
1352         int     c_is_udp;               /* true if this is (C)LDAP over UDP */
1353 #endif
1354 #ifdef HAVE_TLS
1355         int     c_is_tls;               /* true if this LDAP over raw TLS */
1356         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
1357 #endif
1358         int             c_sasl_layers;   /* true if we need to install SASL i/o handlers */
1359         void    *c_sasl_context;        /* SASL session context */
1360         void    *c_sasl_extra;          /* SASL session extra stuff */
1361
1362         long    c_n_ops_received;               /* num of ops received (next op_id) */
1363         long    c_n_ops_executing;      /* num of ops currently executing */
1364         long    c_n_ops_pending;                /* num of ops pending execution */
1365         long    c_n_ops_completed;      /* num of ops completed */
1366
1367         long    c_n_get;                /* num of get calls */
1368         long    c_n_read;               /* num of read calls */
1369         long    c_n_write;              /* num of write calls */
1370 } Connection;
1371
1372 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
1373 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
1374         do { \
1375                 if ( ldap_debug & (level) ) \
1376                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
1377                 if ( ldap_syslog & (level) ) \
1378                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
1379                                 (arg2), (arg3) ); \
1380         } while (0)
1381 #else
1382 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
1383 #endif
1384
1385
1386 #define SASLREGEX_REPLACE 10
1387 #define SASL_AUTHZ_SOURCE_ATTR "saslAuthzTo"
1388 #define SASL_AUTHZ_DEST_ATTR "saslAuthzFrom"
1389
1390 typedef struct sasl_regexp {
1391   char *match;                            /* regexp match pattern */
1392   char *replace;                          /* regexp replace pattern */
1393   regex_t workspace;                      /* workspace for regexp engine */
1394   regmatch_t strings[SASLREGEX_REPLACE];  /* strings matching $1,$2 ... */
1395   int offset[SASLREGEX_REPLACE+2];        /* offsets of $1,$2... in *replace */
1396 } SaslRegexp_t;
1397
1398 /* Flags for telling slap_sasl_getdn() what type of identity is being passed */
1399 #define FLAG_GETDN_FINAL   1
1400 #define FLAG_GETDN_AUTHCID 2
1401 #define FLAG_GETDN_AUTHZID 4
1402
1403
1404 LDAP_END_DECL
1405
1406 #include "proto-slap.h"
1407
1408 #endif /* _SLAP_H_ */