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