]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
Allow size and time limits in slapd.conf for anonymous bound search operations
[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
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_SEPARATOR(c) ((c) == ',' || (c) == ';')
89 #define RDN_ATTRTYPEANDVALUE_SEPARATOR(c) ((c) == '+') /* RFC 2253 */
90 #define RDN_SEPARATOR(c) (DN_SEPARATOR(c) || RDN_ATTRTYPEANDVALUE_SEPARATOR(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 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
257         unsigned        ssyn_flags;
258
259 #define SLAP_SYNTAX_NONE        0x00U
260 #define SLAP_SYNTAX_BLOB        0x01U /* syntax treated as blob (audio) */
261 #define SLAP_SYNTAX_BINARY      0x02U /* binary transfer required (certificate) */
262 #define SLAP_SYNTAX_BER         0x04U /* stored using BER encoding (binary,certificate) */
263 #define SLAP_SYNTAX_HIDE        0x80U /* hide (do not publish) */
264
265         slap_syntax_validate_func       *ssyn_validate;
266         slap_syntax_transform_func      *ssyn_normalize;
267         slap_syntax_transform_func      *ssyn_pretty;
268
269 #ifdef SLAPD_BINARY_CONVERSION
270         /* convert to and from binary */
271         slap_syntax_transform_func      *ssyn_ber2str;
272         slap_syntax_transform_func      *ssyn_str2ber;
273 #endif
274
275         struct slap_syntax              *ssyn_next;
276 } Syntax;
277
278 #define slap_syntax_is_flag(s,flag) ((int)((s)->ssyn_flags & (flag)) ? 1 : 0)
279 #define slap_syntax_is_blob(s)          slap_syntax_is_flag((s),SLAP_SYNTAX_BLOB)
280 #define slap_syntax_is_binary(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_BINARY)
281 #define slap_syntax_is_ber(s)           slap_syntax_is_flag((s),SLAP_SYNTAX_BER)
282 #define slap_syntax_is_hidden(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_HIDE)
283
284 /* X -> Y Converter */
285 typedef int slap_mr_convert_func LDAP_P((
286         struct berval * in,
287         struct berval ** out ));
288
289 /* Normalizer */
290 typedef int slap_mr_normalize_func LDAP_P((
291         slap_mask_t use,
292         struct slap_syntax *syntax, /* NULL if in is asserted value */
293         struct slap_matching_rule *mr,
294         struct berval * in,
295         struct berval ** out ));
296
297 /* Match (compare) function */
298 typedef int slap_mr_match_func LDAP_P((
299         int *match,
300         slap_mask_t use,
301         struct slap_syntax *syntax,     /* syntax of stored value */
302         struct slap_matching_rule *mr,
303         struct berval * value,
304         void * assertValue ));
305
306 /* Index generation function */
307 typedef int slap_mr_indexer_func LDAP_P((
308         slap_mask_t use,
309         slap_mask_t mask,
310         struct slap_syntax *syntax,     /* syntax of stored value */
311         struct slap_matching_rule *mr,
312         struct berval *prefix,
313         struct berval **values,
314         struct berval ***keys ));
315
316 /* Filter index function */
317 typedef int slap_mr_filter_func LDAP_P((
318         slap_mask_t use,
319         slap_mask_t mask,
320         struct slap_syntax *syntax,     /* syntax of stored value */
321         struct slap_matching_rule *mr,
322         struct berval *prefix,
323         void * assertValue,
324         struct berval ***keys ));
325
326 typedef struct slap_matching_rule {
327         LDAPMatchingRule                smr_mrule;
328         slap_mask_t                             smr_usage;
329
330 #define SLAP_MR_TYPE_MASK               0xFF00U
331 #define SLAP_MR_SUBTYPE_MASK    0x00F0U
332 #define SLAP_MR_USAGE                   0x000FU
333
334 #define SLAP_MR_NONE                    0x0000U
335 #define SLAP_MR_EQUALITY                0x0100U
336 #define SLAP_MR_ORDERING                0x0200U
337 #define SLAP_MR_SUBSTR                  0x0400U
338 #define SLAP_MR_EXT                             0x0800U
339
340 #define SLAP_MR_EQUALITY_APPROX ( SLAP_MR_EQUALITY | 0x0010U )
341
342 #define SLAP_MR_SUBSTR_INITIAL  ( SLAP_MR_SUBSTR | 0x0010U )
343 #define SLAP_MR_SUBSTR_ANY              ( SLAP_MR_SUBSTR | 0x0020U )
344 #define SLAP_MR_SUBSTR_FINAL    ( SLAP_MR_SUBSTR | 0x0040U )
345
346 /* this is used to kludge objectClass testing */
347 #define SLAP_MR_MODIFY_MATCHING 0x0001U
348 /* are we matching from a mr asserted value or a real value */
349 #define SLAP_MR_VALUE_IS_IN_MR_SYNTAX   0x0002U
350
351         Syntax                                  *smr_syntax;
352         slap_mr_convert_func    *smr_convert;
353         slap_mr_normalize_func  *smr_normalize;
354         slap_mr_match_func              *smr_match;
355         slap_mr_indexer_func    *smr_indexer;
356         slap_mr_filter_func             *smr_filter;
357
358         struct slap_matching_rule       *smr_associated;
359         struct slap_matching_rule       *smr_next;
360
361 #define smr_oid                         smr_mrule.mr_oid
362 #define smr_names                       smr_mrule.mr_names
363 #define smr_desc                        smr_mrule.mr_desc
364 #define smr_obsolete            smr_mrule.mr_obsolete
365 #define smr_syntax_oid          smr_mrule.mr_syntax_oid
366 #define smr_extensions          smr_mrule.mr_extensions
367 } MatchingRule;
368
369 struct slap_attr_desc;
370
371 typedef struct slap_attribute_type {
372         LDAPAttributeType               sat_atype;
373         struct berval                   sat_cname;
374         struct slap_attribute_type      *sat_sup;
375         struct slap_attribute_type      **sat_subtypes;
376         MatchingRule                    *sat_equality;
377         MatchingRule                    *sat_approx;
378         MatchingRule                    *sat_ordering;
379         MatchingRule                    *sat_substr;
380         Syntax                          *sat_syntax;
381         struct slap_attr_desc           *sat_ad;
382         struct slap_attribute_type      *sat_next;
383         ldap_pvt_thread_mutex_t         sat_ad_mutex;
384 #define sat_oid                 sat_atype.at_oid
385 #define sat_names               sat_atype.at_names
386 #define sat_desc                sat_atype.at_desc
387 #define sat_obsolete            sat_atype.at_obsolete
388 #define sat_sup_oid             sat_atype.at_sup_oid
389 #define sat_equality_oid        sat_atype.at_equality_oid
390 #define sat_ordering_oid        sat_atype.at_ordering_oid
391 #define sat_substr_oid          sat_atype.at_substr_oid
392 #define sat_syntax_oid          sat_atype.at_syntax_oid
393 #define sat_single_value        sat_atype.at_single_value
394 #define sat_collective          sat_atype.at_collective
395 #define sat_no_user_mod         sat_atype.at_no_user_mod
396 #define sat_usage               sat_atype.at_usage
397 #define sat_extensions          sat_atype.at_extensions
398 } AttributeType;
399
400 #define is_at_operational(at)   ((at)->sat_usage)
401 #define is_at_single_value(at)  ((at)->sat_single_value)
402 #define is_at_collective(at)    ((at)->sat_collective)
403 #define is_at_obsolete(at)              ((at)->sat_obsolete)
404 #define is_at_no_user_mod(at)   ((at)->sat_no_user_mod)
405
406 typedef struct slap_object_class {
407         LDAPObjectClass         soc_oclass;
408         struct slap_object_class        **soc_sups;
409         AttributeType                   **soc_required;
410         AttributeType                   **soc_allowed;
411         struct slap_object_class        *soc_next;
412 #define soc_oid                 soc_oclass.oc_oid
413 #define soc_names               soc_oclass.oc_names
414 #define soc_desc                soc_oclass.oc_desc
415 #define soc_obsolete            soc_oclass.oc_obsolete
416 #define soc_sup_oids            soc_oclass.oc_sup_oids
417 #define soc_kind                soc_oclass.oc_kind
418 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
419 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
420 #define soc_extensions          soc_oclass.oc_extensions
421 } ObjectClass;
422
423
424 /*
425  * represents a recognized attribute description ( type + options )
426  */
427 typedef struct slap_attr_desc {
428         struct slap_attr_desc *ad_next;
429         AttributeType *ad_type;         /* attribute type, must be specified */
430         struct berval ad_cname;         /* canonical name, must be specified */
431         struct berval ad_lang;          /* empty if no language tags */
432         unsigned ad_flags;
433 #define SLAP_DESC_NONE          0x0U
434 #define SLAP_DESC_BINARY        0x1U
435 } AttributeDescription;
436
437 #define slap_ad_is_lang(ad)             ( (ad)->ad_lang.bv_len != 0 )
438 #define slap_ad_is_binary(ad)   ( (int)((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
439
440 /*
441  * pointers to schema elements used internally
442  */
443 struct slap_internal_schema {
444         /* objectClass */
445         ObjectClass *si_oc_top;
446         ObjectClass *si_oc_extensibleObject;
447         ObjectClass *si_oc_alias;
448         ObjectClass *si_oc_referral;
449         ObjectClass *si_oc_subentry;
450         ObjectClass *si_oc_subschema;
451         ObjectClass *si_oc_rootdse;
452
453         /* objectClass attribute descriptions */
454         AttributeDescription *si_ad_objectClass;
455
456         /* operational attribute descriptions */
457         AttributeDescription *si_ad_structuralObjectClass;
458         AttributeDescription *si_ad_creatorsName;
459         AttributeDescription *si_ad_createTimestamp;
460         AttributeDescription *si_ad_modifiersName;
461         AttributeDescription *si_ad_modifyTimestamp;
462         AttributeDescription *si_ad_subschemaSubentry;
463
464         /* root DSE attribute descriptions */
465         AttributeDescription *si_ad_namingContexts;
466         AttributeDescription *si_ad_supportedControl;
467         AttributeDescription *si_ad_supportedExtension;
468         AttributeDescription *si_ad_supportedLDAPVersion;
469         AttributeDescription *si_ad_supportedSASLMechanisms;
470         AttributeDescription *si_ad_supportedFeatures;
471
472         /* subschema subentry attribute descriptions */
473         AttributeDescription *si_ad_objectClasses;
474         AttributeDescription *si_ad_attributeTypes;
475         AttributeDescription *si_ad_ldapSyntaxes;
476         AttributeDescription *si_ad_matchingRules;
477         AttributeDescription *si_ad_matchingRulesUse;
478
479         /* Aliases & Referrals */
480         AttributeDescription *si_ad_aliasedObjectName;
481         AttributeDescription *si_ad_ref;
482
483         /* Access Control Internals */
484         AttributeDescription *si_ad_entry;
485         AttributeDescription *si_ad_children;
486 #ifdef SLAPD_ACI_ENABLED
487         AttributeDescription *si_ad_aci;
488 #endif
489
490         /* Other attributes descriptions */
491         AttributeDescription *si_ad_userPassword;
492         AttributeDescription *si_ad_authPassword;
493 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
494         AttributeDescription *si_ad_krbName;
495 #endif
496
497         /* Undefined Attribute Type */
498         AttributeType   *si_at_undefined;
499
500         /* Matching Rules */
501         MatchingRule    *si_mr_distinguishedNameMatch;
502         MatchingRule    *si_mr_integerMatch;
503
504         /* Syntaxes */
505         Syntax          *si_syn_distinguishedName;
506         Syntax          *si_syn_integer;
507 };
508
509 typedef struct slap_attr_assertion {
510         AttributeDescription    *aa_desc;
511         struct berval *aa_value;
512 } AttributeAssertion;
513
514 typedef struct slap_ss_assertion {
515         AttributeDescription    *sa_desc;
516         struct berval                   *sa_initial;
517         struct berval                   **sa_any;
518         struct berval                   *sa_final;
519 } SubstringsAssertion;
520
521 typedef struct slap_mr_assertion {
522         MatchingRule                            *ma_rule;       /* optional */
523         char                                    *ma_rule_text;  /* optional */
524         AttributeDescription    *ma_desc;       /* optional */
525         int                                             ma_dnattrs; /* boolean */
526         struct berval                   *ma_value;      /* required */
527 } MatchingRuleAssertion;
528
529
530 /*
531  * represents a search filter
532  */
533 typedef struct slap_filter {
534         ber_tag_t       f_choice;       /* values taken from ldap.h, plus: */
535 #define SLAPD_FILTER_COMPUTED   ((ber_tag_t) -1)
536 #define SLAPD_FILTER_DN_ONE             ((ber_tag_t) -2)
537 #define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3)
538
539
540         union f_un_u {
541                 /* precomputed result */
542                 ber_int_t f_un_result;
543
544                 /* DN */
545                 char *f_un_dn;
546
547                 /* present */
548                 AttributeDescription *f_un_desc;
549
550                 /* simple value assertion */
551                 AttributeAssertion *f_un_ava;
552
553                 /* substring assertion */
554                 SubstringsAssertion *f_un_ssa;
555
556                 /* matching rule assertion */
557                 MatchingRuleAssertion *f_un_mra;
558
559 #define f_dn                    f_un.f_un_dn
560 #define f_desc                  f_un.f_un_desc
561 #define f_ava                   f_un.f_un_ava
562 #define f_av_desc               f_un.f_un_ava->aa_desc
563 #define f_av_value              f_un.f_un_ava->aa_value
564 #define f_sub                   f_un.f_un_ssa
565 #define f_sub_desc              f_un.f_un_ssa->sa_desc
566 #define f_sub_initial   f_un.f_un_ssa->sa_initial
567 #define f_sub_any               f_un.f_un_ssa->sa_any
568 #define f_sub_final             f_un.f_un_ssa->sa_final
569 #define f_mra                   f_un.f_un_mra
570 #define f_mr_rule               f_un.f_un_mra->ma_rule
571 #define f_mr_rule_text          f_un.f_un_mra->ma_rule_text
572 #define f_mr_desc               f_un.f_un_mra->ma_desc
573 #define f_mr_value              f_un.f_un_mra->ma_value
574 #define f_mr_dnattrs    f_un.f_un_mra->ma_dnattrs
575
576                 /* and, or, not */
577                 struct slap_filter *f_un_complex;
578         } f_un;
579
580 #define f_result        f_un.f_un_result
581 #define f_and           f_un.f_un_complex
582 #define f_or            f_un.f_un_complex
583 #define f_not           f_un.f_un_complex
584 #define f_list          f_un.f_un_complex
585
586         struct slap_filter      *f_next;
587 } Filter;
588
589 /* compare routines can return undefined */
590 #define SLAPD_COMPARE_UNDEFINED ((ber_int_t) -1)
591
592 /*
593  * represents an attribute (description + values)
594  */
595 typedef struct slap_attr {
596         AttributeDescription *a_desc;
597         struct berval   **a_vals;
598         struct slap_attr        *a_next;
599 } Attribute;
600
601
602 /*
603  * the id used in the indexes to refer to an entry
604  */
605 typedef unsigned long   ID;
606 #define NOID    ((ID)~0)
607
608 /*
609  * represents an entry in core
610  */
611 typedef struct slap_entry {
612         /*
613          * The ID field should only be changed before entry is
614          * inserted into a cache.  The ID value is backend
615          * specific.
616          */
617         ID              e_id;
618
619         char            *e_dn;          /* DN of this entry */
620         char            *e_ndn;         /* normalized DN of this entry */
621         Attribute       *e_attrs;       /* list of attributes + values */
622
623         /* for use by the backend for any purpose */
624         void*   e_private;
625 } Entry;
626
627 /*
628  * A list of LDAPMods
629  */
630 typedef struct slap_mod {
631         int sm_op;
632         AttributeDescription *sm_desc;
633         struct berval **sm_bvalues;
634 } Modification;
635
636 typedef struct slap_mod_list {
637         Modification sml_mod;
638 #define sml_op          sml_mod.sm_op
639 #define sml_desc        sml_mod.sm_desc
640 #define sml_bvalues     sml_mod.sm_bvalues
641         struct slap_mod_list *sml_next;
642 } Modifications;
643
644 typedef struct slap_ldap_modlist {
645         LDAPMod ml_mod;
646         struct slap_ldap_modlist *ml_next;
647 #define ml_op           ml_mod.mod_op
648 #define ml_type         ml_mod.mod_type
649 #define ml_values       ml_mod.mod_values
650 #define ml_bvalues      ml_mod.mod_bvalues
651 } LDAPModList;
652
653 /*
654  * represents an access control list
655  */
656 typedef enum slap_access_e {
657         ACL_INVALID_ACCESS = -1,
658         ACL_NONE = 0,
659         ACL_AUTH,
660         ACL_COMPARE,
661         ACL_SEARCH,
662         ACL_READ,
663         ACL_WRITE
664 } slap_access_t;
665
666 typedef enum slap_control_e {
667         ACL_INVALID_CONTROL     = 0,
668         ACL_STOP,
669         ACL_CONTINUE,
670         ACL_BREAK
671 } slap_control_t;
672
673 typedef enum slap_style_e {
674         ACL_STYLE_REGEX = 0,
675         ACL_STYLE_BASE,
676         ACL_STYLE_ONE,
677         ACL_STYLE_SUBTREE,
678         ACL_STYLE_CHILDREN,
679         ACL_STYLE_ATTROF,
680
681         /* alternate names */
682         ACL_STYLE_EXACT = ACL_STYLE_BASE
683 } slap_style_t;
684
685 typedef struct slap_authz_info {
686         ber_tag_t       sai_method;             /* LDAP_AUTH_* from <ldap.h> */
687         char *          sai_mech;               /* SASL Mechanism */
688         char *          sai_dn;                 /* DN for reporting purposes */
689         char *          sai_ndn;                /* Normalized DN */
690
691         /* Security Strength Factors */
692         slap_ssf_t      sai_ssf;                        /* Overall SSF */
693         slap_ssf_t      sai_transport_ssf;      /* Transport SSF */
694         slap_ssf_t      sai_tls_ssf;            /* TLS SSF */
695         slap_ssf_t      sai_sasl_ssf;           /* SASL SSF */
696 } AuthorizationInformation;
697
698 /* the "by" part */
699 typedef struct slap_access {
700         slap_control_t a_type;
701
702 #define ACL_ACCESS2PRIV(access) (0x01U << (access))
703
704 #define ACL_PRIV_NONE                   ACL_ACCESS2PRIV( ACL_NONE )
705 #define ACL_PRIV_AUTH                   ACL_ACCESS2PRIV( ACL_AUTH )
706 #define ACL_PRIV_COMPARE                ACL_ACCESS2PRIV( ACL_COMPARE )
707 #define ACL_PRIV_SEARCH                 ACL_ACCESS2PRIV( ACL_SEARCH )
708 #define ACL_PRIV_READ                   ACL_ACCESS2PRIV( ACL_READ )
709 #define ACL_PRIV_WRITE                  ACL_ACCESS2PRIV( ACL_WRITE )
710
711 #define ACL_PRIV_MASK                   0x00ffUL
712
713 /* priv flags */
714 #define ACL_PRIV_LEVEL                  0x1000UL
715 #define ACL_PRIV_ADDITIVE               0x2000UL
716 #define ACL_PRIV_SUBSTRACTIVE   0x4000UL
717
718 /* invalid privs */
719 #define ACL_PRIV_INVALID                0x0UL
720
721 #define ACL_PRIV_ISSET(m,p)             (((m) & (p)) == (p))
722 #define ACL_PRIV_ASSIGN(m,p)    do { (m)  =  (p); } while(0)
723 #define ACL_PRIV_SET(m,p)               do { (m) |=  (p); } while(0)
724 #define ACL_PRIV_CLR(m,p)               do { (m) &= ~(p); } while(0)
725
726 #define ACL_INIT(m)                             ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
727 #define ACL_INVALIDATE(m)               ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
728
729 #define ACL_GRANT(m,a)                  ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
730
731 #define ACL_IS_INVALID(m)               ((m) == ACL_PRIV_INVALID)
732
733 #define ACL_IS_LEVEL(m)                 ACL_PRIV_ISSET((m),ACL_PRIV_LEVEL)
734 #define ACL_IS_ADDITIVE(m)              ACL_PRIV_ISSET((m),ACL_PRIV_ADDITIVE)
735 #define ACL_IS_SUBTRACTIVE(m)   ACL_PRIV_ISSET((m),ACL_PRIV_SUBSTRACTIVE)
736
737 #define ACL_LVL_NONE                    (ACL_PRIV_NONE|ACL_PRIV_LEVEL)
738 #define ACL_LVL_AUTH                    (ACL_PRIV_AUTH|ACL_LVL_NONE)
739 #define ACL_LVL_COMPARE                 (ACL_PRIV_COMPARE|ACL_LVL_AUTH)
740 #define ACL_LVL_SEARCH                  (ACL_PRIV_SEARCH|ACL_LVL_COMPARE)
741 #define ACL_LVL_READ                    (ACL_PRIV_READ|ACL_LVL_SEARCH)
742 #define ACL_LVL_WRITE                   (ACL_PRIV_WRITE|ACL_LVL_READ)
743
744 #define ACL_LVL(m,l)                    (((m)&ACL_PRIV_MASK) == ((l)&ACL_PRIV_MASK))
745 #define ACL_LVL_IS_NONE(m)              ACL_LVL((m),ACL_LVL_NONE)
746 #define ACL_LVL_IS_AUTH(m)              ACL_LVL((m),ACL_LVL_AUTH)
747 #define ACL_LVL_IS_COMPARE(m)   ACL_LVL((m),ACL_LVL_COMPARE)
748 #define ACL_LVL_IS_SEARCH(m)    ACL_LVL((m),ACL_LVL_SEARCH)
749 #define ACL_LVL_IS_READ(m)              ACL_LVL((m),ACL_LVL_READ)
750 #define ACL_LVL_IS_WRITE(m)             ACL_LVL((m),ACL_LVL_WRITE)
751
752 #define ACL_LVL_ASSIGN_NONE(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_NONE)
753 #define ACL_LVL_ASSIGN_AUTH(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_AUTH)
754 #define ACL_LVL_ASSIGN_COMPARE(m)       ACL_PRIV_ASSIGN((m),ACL_LVL_COMPARE)
755 #define ACL_LVL_ASSIGN_SEARCH(m)        ACL_PRIV_ASSIGN((m),ACL_LVL_SEARCH)
756 #define ACL_LVL_ASSIGN_READ(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_READ)
757 #define ACL_LVL_ASSIGN_WRITE(m)         ACL_PRIV_ASSIGN((m),ACL_LVL_WRITE)
758
759         slap_mask_t     a_access_mask;
760
761         AuthorizationInformation        a_authz;
762 #define a_dn_pat        a_authz.sai_dn
763
764         slap_style_t a_dn_style;
765         AttributeDescription    *a_dn_at;
766         int                     a_dn_self;
767
768         slap_style_t a_peername_style;
769         char            *a_peername_pat;
770         slap_style_t a_sockname_style;
771         char            *a_sockname_pat;
772
773         slap_style_t a_domain_style;
774         char            *a_domain_pat;
775         slap_style_t a_sockurl_style;
776         char            *a_sockurl_pat;
777         slap_style_t a_set_style;
778         char            *a_set_pat;
779
780 #ifdef SLAPD_ACI_ENABLED
781         AttributeDescription    *a_aci_at;
782 #endif
783
784         /* ACL Groups */
785         slap_style_t a_group_style;
786         char            *a_group_pat;
787         ObjectClass                             *a_group_oc;
788         AttributeDescription    *a_group_at;
789
790         struct slap_access      *a_next;
791 } Access;
792
793 /* the "to" part */
794 typedef struct slap_acl {
795         /* "to" part: the entries this acl applies to */
796         Filter          *acl_filter;
797         slap_style_t acl_dn_style;
798         regex_t         acl_dn_re;
799         char            *acl_dn_pat;
800         char            **acl_attrs;
801
802         /* "by" part: list of who has what access to the entries */
803         Access  *acl_access;
804
805         struct slap_acl *acl_next;
806 } AccessControl;
807
808 /*
809  * replog moddn param structure
810  */
811 struct replog_moddn {
812         char *newrdn;
813         int     deloldrdn;
814         char *newsup;
815 };
816
817 /*
818  * Backend-info
819  * represents a backend 
820  */
821
822 typedef struct slap_backend_info BackendInfo;   /* per backend type */
823 typedef struct slap_backend_db BackendDB;               /* per backend database */
824
825 LDAP_SLAPD_F (int) nBackendInfo;
826 LDAP_SLAPD_F (int) nBackendDB;
827 LDAP_SLAPD_F (BackendInfo       *) backendInfo;
828 LDAP_SLAPD_F (BackendDB *) backendDB;
829
830 LDAP_SLAPD_F (int) slapMode;    
831 #define SLAP_UNDEFINED_MODE     0x0000
832 #define SLAP_SERVER_MODE        0x0001
833 #define SLAP_TOOL_MODE          0x0002
834 #define SLAP_MODE                       0x0003
835
836 #define SLAP_TRUNCATE_MODE      0x0100
837
838 struct slap_replica_info {
839         char   *ri_host;        /* supersedes be_replica */
840         char  **ri_nsuffix;     /* array of suffixes this replica accepts */
841 };
842
843 struct slap_limits_set {
844         /* time limits */
845         int     lms_t_soft;
846         int     lms_t_hard;
847
848         /* size limits */
849         int     lms_s_soft;
850         int     lms_s_hard;
851         int     lms_s_unchecked;
852 };
853
854 struct slap_limits {
855         int     lm_type;        /* type of pattern */
856 #define SLAP_LIMITS_UNDEFINED   0x0000
857 #define SLAP_LIMITS_EXACT       0x0001
858 #define SLAP_LIMITS_REGEX       0x0002
859 #define SLAP_LIMITS_ANONYMOUS   0x0003
860         regex_t lm_dn_regex;    /* regex-based size and time limits */
861         char   *lm_dn_pat;      /* ndn for EXACT; pattern for REGEX */
862         struct slap_limits_set  lm_limits;
863 };
864
865 /* temporary aliases */
866 typedef BackendDB Backend;
867 #define nbackends nBackendDB
868 #define backends backendDB
869
870 struct slap_backend_db {
871         BackendInfo     *bd_info;       /* pointer to shared backend info */
872
873         /* BackendInfo accessors */
874 #define         be_config       bd_info->bi_db_config
875 #define         be_type         bd_info->bi_type
876
877 #define         be_bind         bd_info->bi_op_bind
878 #define         be_unbind       bd_info->bi_op_unbind
879 #define         be_add          bd_info->bi_op_add
880 #define         be_compare      bd_info->bi_op_compare
881 #define         be_delete       bd_info->bi_op_delete
882 #define         be_modify       bd_info->bi_op_modify
883 #define         be_modrdn       bd_info->bi_op_modrdn
884 #define         be_search       bd_info->bi_op_search
885
886 #define         be_extended     bd_info->bi_extended
887
888 #define         be_release      bd_info->bi_entry_release_rw
889 #define         be_chk_referrals        bd_info->bi_chk_referrals
890 #define         be_group        bd_info->bi_acl_group
891 #define         be_attribute    bd_info->bi_acl_attribute
892
893 #define         be_controls     bd_info->bi_controls
894
895 #define         be_connection_init      bd_info->bi_connection_init
896 #define         be_connection_destroy   bd_info->bi_connection_destroy
897
898 #ifdef SLAPD_TOOLS
899 #define         be_entry_open bd_info->bi_tool_entry_open
900 #define         be_entry_close bd_info->bi_tool_entry_close
901 #define         be_entry_first bd_info->bi_tool_entry_first
902 #define         be_entry_next bd_info->bi_tool_entry_next
903 #define         be_entry_reindex bd_info->bi_tool_entry_reindex
904 #define         be_entry_get bd_info->bi_tool_entry_get
905 #define         be_entry_put bd_info->bi_tool_entry_put
906 #define         be_sync bd_info->bi_tool_sync
907 #endif
908
909         slap_mask_t     be_restrictops;         /* restriction operations */
910 #define SLAP_RESTRICT_OP_ADD            0x0001U
911 #define SLAP_RESTRICT_OP_BIND           0x0002U
912 #define SLAP_RESTRICT_OP_COMPARE        0x0004U
913 #define SLAP_RESTRICT_OP_DELETE         0x0008U
914 #define SLAP_RESTRICT_OP_EXTENDED       0x0010U
915 #define SLAP_RESTRICT_OP_MODIFY         0x0020U
916 #define SLAP_RESTRICT_OP_RENAME         0x0040U
917 #define SLAP_RESTRICT_OP_SEARCH         0x0080U
918
919 #define SLAP_RESTRICT_OP_READS  \
920         ( SLAP_RESTRICT_OP_COMPARE    \
921         | SLAP_RESTRICT_OP_SEARCH )
922 #define SLAP_RESTRICT_OP_WRITES \
923         ( SLAP_RESTRICT_OP_ADD    \
924         | SLAP_RESTRICT_OP_DELETE \
925         | SLAP_RESTRICT_OP_MODIFY \
926         | SLAP_RESTRICT_OP_RENAME )
927
928 #define SLAP_ALLOW_TLS_2_ANON   0x0001U /* StartTLS -> Anonymous */
929
930 #define SLAP_DISALLOW_BIND_V2   0x0001U /* LDAPv2 bind */
931 #define SLAP_DISALLOW_BIND_ANON 0x0002U /* no anonymous */
932 #define SLAP_DISALLOW_BIND_ANON_CRED \
933                                                                 0x0004U /* cred should be empty */
934 #define SLAP_DISALLOW_BIND_ANON_DN \
935                                                                 0x0008U /* dn should be empty */
936
937 #define SLAP_DISALLOW_BIND_SIMPLE       0x0010U /* simple authentication */
938 #define SLAP_DISALLOW_BIND_KRBV4        0x0020U /* Kerberos V4 authentication */
939
940 #define SLAP_DISALLOW_TLS_AUTHC 0x0100U /* TLS while authenticated */
941
942         slap_mask_t     be_requires;    /* pre-operation requirements */
943 #define SLAP_REQUIRE_BIND               0x0001U /* bind before op */
944 #define SLAP_REQUIRE_LDAP_V3    0x0002U /* LDAPv3 before op */
945 #define SLAP_REQUIRE_AUTHC              0x0004U /* authentication before op */
946 #define SLAP_REQUIRE_SASL               0x0008U /* SASL before op  */
947 #define SLAP_REQUIRE_STRONG             0x0010U /* strong authentication before op */
948
949         /* Required Security Strength Factor */
950         slap_ssf_set_t be_ssf_set;
951
952         /* these should be renamed from be_ to bd_ */
953         char    **be_suffix;    /* the DN suffixes of data in this backend */
954         char    **be_nsuffix;   /* the normalized DN suffixes in this backend */
955         char    **be_suffixAlias; /* pairs of DN suffix aliases and deref values */
956         char    *be_root_dn;    /* the magic "root" dn for this db      */
957         char    *be_root_ndn;   /* the magic "root" normalized dn for this db   */
958         struct berval be_root_pw;       /* the magic "root" password for this db        */
959         unsigned int be_max_deref_depth;       /* limit for depth of an alias deref  */
960 #define be_sizelimit    be_def_limit.lms_s_soft
961 #define be_timelimit    be_def_limit.lms_t_soft
962         struct slap_limits_set be_def_limit; /* default limits */
963         struct slap_limits **be_limits; /* regex-based size and time limits */
964         AccessControl *be_acl;  /* access control list for this backend    */
965         slap_access_t   be_dfltaccess;  /* access given if no acl matches          */
966         struct slap_replica_info **be_replica;  /* replicas of this backend (in master) */
967         char    *be_replogfile; /* replication log file (in master)        */
968         char    *be_update_ndn; /* allowed to make changes (in replicas) */
969         struct berval **be_update_refs; /* where to refer modifying clients to */
970         int     be_lastmod;     /* keep track of lastmodified{by,time}     */
971
972         char    *be_realm;
973
974         void    *be_private;    /* anything the backend database needs     */
975 };
976
977 struct slap_conn;
978 struct slap_op;
979
980 typedef int (*SLAP_EXTENDED_FN) LDAP_P((
981     BackendDB           *be,
982     struct slap_conn    *conn,
983     struct slap_op              *op,
984         const char              *reqoid,
985     struct berval * reqdata,
986         char            **rspoid,
987     struct berval ** rspdata,
988         LDAPControl *** rspctrls,
989         const char **   text,
990         struct berval *** refs ));
991
992 struct slap_backend_info {
993         char    *bi_type;       /* type of backend */
994
995         /*
996          * per backend type routines:
997          * bi_init: called to allocate a backend_info structure,
998          *              called once BEFORE configuration file is read.
999          *              bi_init() initializes this structure hence is
1000          *              called directly from be_initialize()
1001          * bi_config: called per 'backend' specific option
1002          *              all such options must before any 'database' options
1003          *              bi_config() is called only from read_config()
1004          * bi_open: called to open each database, called
1005          *              once AFTER configuration file is read but
1006          *              BEFORE any bi_db_open() calls.
1007          *              bi_open() is called from backend_startup()
1008          * bi_close: called to close each database, called
1009          *              once during shutdown after all bi_db_close calls.
1010          *              bi_close() is called from backend_shutdown()
1011          * bi_destroy: called to destroy each database, called
1012          *              once during shutdown after all bi_db_destroy calls.
1013          *              bi_destory() is called from backend_destroy()
1014          */
1015         int (*bi_init)  LDAP_P((BackendInfo *bi));
1016         int     (*bi_config) LDAP_P((BackendInfo *bi,
1017                 const char *fname, int lineno, int argc, char **argv ));
1018         int (*bi_open) LDAP_P((BackendInfo *bi));
1019         int (*bi_close) LDAP_P((BackendInfo *bi));
1020         int (*bi_destroy) LDAP_P((BackendInfo *bi));
1021
1022         /*
1023          * per database routines:
1024          * bi_db_init: called to initialize each database,
1025          *      called upon reading 'database <type>' 
1026          *      called only from backend_db_init()
1027          * bi_db_config: called to configure each database,
1028          *  called per database to handle per database options
1029          *      called only from read_config()
1030          * bi_db_open: called to open each database
1031          *      called once per database immediately AFTER bi_open()
1032          *      calls but before daemon startup.
1033          *  called only by backend_startup()
1034          * bi_db_close: called to close each database
1035          *      called once per database during shutdown but BEFORE
1036          *  any bi_close call.
1037          *  called only by backend_shutdown()
1038          * bi_db_destroy: called to destroy each database
1039          *  called once per database during shutdown AFTER all
1040          *  bi_close calls but before bi_destory calls.
1041          *  called only by backend_destory()
1042          */
1043         int (*bi_db_init) LDAP_P((Backend *bd));
1044         int     (*bi_db_config) LDAP_P((Backend *bd,
1045                 const char *fname, int lineno, int argc, char **argv ));
1046         int (*bi_db_open) LDAP_P((Backend *bd));
1047         int (*bi_db_close) LDAP_P((Backend *bd));
1048         int (*bi_db_destroy) LDAP_P((Backend *db));
1049
1050         /* LDAP Operations Handling Routines */
1051         int     (*bi_op_bind)  LDAP_P(( BackendDB *bd,
1052                 struct slap_conn *c, struct slap_op *o,
1053                 const char *dn, const char *ndn, int method,
1054                 struct berval *cred, char** edn ));
1055         int (*bi_op_unbind) LDAP_P((BackendDB *bd,
1056                 struct slap_conn *c, struct slap_op *o ));
1057         int     (*bi_op_search) LDAP_P((BackendDB *bd,
1058                 struct slap_conn *c, struct slap_op *o,
1059                 const char *base, const char *nbase,
1060                 int scope, int deref,
1061                 int slimit, int tlimit,
1062                 Filter *f, const char *filterstr,
1063                 char **attrs, int attrsonly));
1064         int     (*bi_op_compare)LDAP_P((BackendDB *bd,
1065                 struct slap_conn *c, struct slap_op *o,
1066                 const char *dn, const char *ndn,
1067                 AttributeAssertion *ava));
1068         int     (*bi_op_modify) LDAP_P((BackendDB *bd,
1069                 struct slap_conn *c, struct slap_op *o,
1070                 const char *dn, const char *ndn, Modifications *m));
1071         int     (*bi_op_modrdn) LDAP_P((BackendDB *bd,
1072                 struct slap_conn *c, struct slap_op *o,
1073                 const char *dn, const char *ndn,
1074                 const char *newrdn, int deleteoldrdn,
1075                 const char *newSuperior));
1076         int     (*bi_op_add)    LDAP_P((BackendDB *bd,
1077                 struct slap_conn *c, struct slap_op *o,
1078                 Entry *e));
1079         int     (*bi_op_delete) LDAP_P((BackendDB *bd,
1080                 struct slap_conn *c, struct slap_op *o,
1081                 const char *dn, const char *ndn));
1082         int     (*bi_op_abandon) LDAP_P((BackendDB *bd,
1083                 struct slap_conn *c, struct slap_op *o,
1084                 ber_int_t msgid));
1085
1086         /* Extended Operations Helper */
1087         SLAP_EXTENDED_FN bi_extended;
1088
1089         /* Auxilary Functions */
1090         int     (*bi_entry_release_rw) LDAP_P((BackendDB *bd,
1091                 struct slap_conn *c, struct slap_op *o,
1092                 Entry *e, int rw));
1093
1094         int     (*bi_chk_referrals) LDAP_P((BackendDB *bd,
1095                 struct slap_conn *c, struct slap_op *o,
1096                 const char *dn, const char *ndn,
1097                 const char **text ));
1098
1099         int     (*bi_acl_group)  LDAP_P((Backend *bd,
1100                 struct slap_conn *c, struct slap_op *o,
1101                 Entry *e, const char *bdn, const char *edn,
1102                 ObjectClass *group_oc,
1103                 AttributeDescription *group_at ));
1104         int     (*bi_acl_attribute)  LDAP_P((Backend *bd,
1105                 struct slap_conn *c, struct slap_op *o,
1106                 Entry *e, const char *edn,
1107                 AttributeDescription *entry_at,
1108                 struct berval ***vals ));
1109
1110         int     (*bi_connection_init) LDAP_P((BackendDB *bd,
1111                 struct slap_conn *c));
1112         int     (*bi_connection_destroy) LDAP_P((BackendDB *bd,
1113                 struct slap_conn *c));
1114
1115         /* hooks for slap tools */
1116         int (*bi_tool_entry_open) LDAP_P(( BackendDB *be, int mode ));
1117         int (*bi_tool_entry_close) LDAP_P(( BackendDB *be ));
1118         ID (*bi_tool_entry_first) LDAP_P(( BackendDB *be ));
1119         ID (*bi_tool_entry_next) LDAP_P(( BackendDB *be ));
1120         Entry* (*bi_tool_entry_get) LDAP_P(( BackendDB *be, ID id ));
1121         ID (*bi_tool_entry_put) LDAP_P(( BackendDB *be, Entry *e ));
1122         int (*bi_tool_entry_reindex) LDAP_P(( BackendDB *be, ID id ));
1123         int (*bi_tool_sync) LDAP_P(( BackendDB *be ));
1124
1125 #define SLAP_INDEX_ADD_OP               0x0001
1126 #define SLAP_INDEX_DELETE_OP    0x0002
1127
1128         char **bi_controls;             /* supported controls */
1129
1130         unsigned int bi_nDB;    /* number of databases of this type */
1131         void    *bi_private;    /* anything the backend type needs */
1132 };
1133
1134 #define c_authtype      c_authz.sai_method
1135 #define c_authmech      c_authz.sai_mech
1136 #define c_dn            c_authz.sai_dn
1137 #define c_ssf                   c_authz.sai_ssf
1138 #define c_transport_ssf c_authz.sai_transport_ssf
1139 #define c_tls_ssf               c_authz.sai_tls_ssf
1140 #define c_sasl_ssf              c_authz.sai_sasl_ssf
1141
1142 #define o_authtype      o_authz.sai_method
1143 #define o_authmech      o_authz.sai_mech
1144 #define o_dn            o_authz.sai_dn
1145 #define o_ndn           o_authz.sai_ndn
1146 #define o_ssf                   o_authz.sai_ssf
1147 #define o_transport_ssf o_authz.sai_transport_ssf
1148 #define o_tls_ssf               o_authz.sai_tls_ssf
1149 #define o_sasl_ssf              o_authz.sai_sasl_ssf
1150
1151 /*
1152  * represents an operation pending from an ldap client
1153  */
1154 typedef struct slap_op {
1155         ber_int_t       o_opid;         /* id of this operation           */
1156         ber_int_t       o_msgid;        /* msgid of the request           */
1157 #ifdef LDAP_CONNECTIONLESS
1158         Sockaddr        o_peeraddr;     /* UDP peer address               */
1159 #endif
1160
1161         ldap_pvt_thread_t       o_tid;  /* thread handling this op        */
1162
1163         BerElement      *o_ber;         /* ber of the request             */
1164
1165         ber_tag_t       o_tag;          /* tag of the request             */
1166         time_t          o_time;         /* time op was initiated          */
1167
1168         AuthorizationInformation o_authz;
1169
1170         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
1171
1172         LDAPControl     **o_ctrls;       /* controls */
1173
1174         unsigned long   o_connid; /* id of conn initiating this op  */
1175
1176         ldap_pvt_thread_mutex_t o_abandonmutex; /* protects o_abandon  */
1177         int             o_abandon;      /* abandon flag */
1178
1179         struct slap_op  *o_next;        /* next operation in list         */
1180         void    *o_private;     /* anything the backend needs     */
1181 } Operation;
1182
1183 /*
1184  * Caches the result of a backend_group check for ACL evaluation
1185  */
1186 typedef struct slap_gacl {
1187         struct slap_gacl *next;
1188         Backend *be;
1189         ObjectClass *oc;
1190         AttributeDescription *at;
1191         int res;
1192         int len;
1193         char ndn[1];
1194 } GroupAssertion;
1195
1196 /*
1197  * represents a connection from an ldap client
1198  */
1199 typedef struct slap_conn {
1200         int                     c_struct_state; /* structure management state */
1201         int                     c_conn_state;   /* connection state */
1202
1203         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
1204         Sockbuf         *c_sb;                  /* ber connection stuff           */
1205
1206         /* only can be changed by connect_init */
1207         time_t          c_starttime;    /* when the connection was opened */
1208         time_t          c_activitytime; /* when the connection was last used */
1209         unsigned long           c_connid;       /* id of this connection for stats*/
1210
1211         char            *c_listener_url;        /* listener URL */
1212         char            *c_peer_domain; /* DNS name of client */
1213         char            *c_peer_name;   /* peer name (trans=addr:port) */
1214         char            *c_sock_name;   /* sock name (trans=addr:port) */
1215
1216         /* only can be changed by binding thread */
1217         int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
1218         char    *c_sasl_bind_mech;                      /* mech in progress */
1219         char    *c_cdn;
1220
1221         /* authentication backend */
1222         Backend *c_authc_backend;
1223
1224         /* authorization backend - normally same as c_authc_backend */
1225         Backend *c_authz_backend;
1226
1227         AuthorizationInformation c_authz;
1228         GroupAssertion *c_groups;
1229
1230         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
1231
1232         Operation       *c_ops;                 /* list of operations being processed */
1233         Operation       *c_pending_ops; /* list of pending operations */
1234
1235         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
1236         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
1237
1238         BerElement      *c_currentber;  /* ber we're attempting to read */
1239         int             c_writewaiter;  /* true if writer is waiting */
1240
1241 #ifdef LDAP_CONNECTIONLESS
1242         int     c_is_udp;               /* true if this is (C)LDAP over UDP */
1243 #endif
1244 #ifdef HAVE_TLS
1245         int     c_is_tls;               /* true if this LDAP over raw TLS */
1246         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
1247 #endif
1248         int             c_sasl_layers;   /* true if we need to install SASL i/o handlers */
1249         void    *c_sasl_context;        /* SASL session context */
1250         void    *c_sasl_extra;          /* SASL session extra stuff */
1251
1252         long    c_n_ops_received;               /* num of ops received (next op_id) */
1253         long    c_n_ops_executing;      /* num of ops currently executing */
1254         long    c_n_ops_pending;                /* num of ops pending execution */
1255         long    c_n_ops_completed;      /* num of ops completed */
1256
1257         long    c_n_get;                /* num of get calls */
1258         long    c_n_read;               /* num of read calls */
1259         long    c_n_write;              /* num of write calls */
1260 } Connection;
1261
1262 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
1263 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
1264         do { \
1265                 if ( ldap_debug & (level) ) \
1266                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
1267                 if ( ldap_syslog & (level) ) \
1268                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
1269                                 (arg2), (arg3) ); \
1270         } while (0)
1271 #else
1272 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
1273 #endif
1274
1275
1276 #define SASLREGEX_REPLACE 10
1277 #define SASL_AUTHZ_SOURCE_ATTR "saslAuthzTo"
1278 #define SASL_AUTHZ_DEST_ATTR "saslAuthzFrom"
1279
1280 typedef struct sasl_regexp {
1281   char *match;                            /* regexp match pattern */
1282   char *replace;                          /* regexp replace pattern */
1283   regex_t workspace;                      /* workspace for regexp engine */
1284   regmatch_t strings[SASLREGEX_REPLACE];  /* strings matching $1,$2 ... */
1285   int offset[SASLREGEX_REPLACE+2];        /* offsets of $1,$2... in *replace */
1286 } SaslRegexp_t;
1287
1288 /* Flags for telling slap_sasl_getdn() what type of identity is being passed */
1289 #define FLAG_GETDN_FINAL   1
1290 #define FLAG_GETDN_AUTHCID 2
1291 #define FLAG_GETDN_AUTHZID 4
1292
1293
1294 LDAP_END_DECL
1295
1296 #include "proto-slap.h"
1297
1298 #endif /* _SLAP_H_ */