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