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