]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
Revert last change,
[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 #ifdef HAVE_CYRUS_SASL
23 #include <sasl.h>
24 #endif
25
26 #include "avl.h"
27
28 #ifndef ldap_debug
29 #define ldap_debug slap_debug
30 #endif
31
32
33 #include "ldap_log.h"
34
35 #include <ldap.h>
36 #include <ldap_schema.h>
37
38 #include "ldap_pvt_thread.h"
39 #include "ldif.h"
40
41 LDAP_BEGIN_DECL
42
43 #define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
44 #define SLAPD_ANONYMOUS "<anonymous>"
45
46 #ifdef f_next
47 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
48 #endif
49
50 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
51  *
52  * This is a value used internally by the backends. It is needed to allow
53  * adding values that already exist without getting an error as required by
54  * modrdn when the new rdn was already an attribute value itself.
55  * JCG 05/1999 (gomez@engr.sgi.com)
56  */
57 #define SLAP_MOD_SOFTADD        0x1000
58
59 #define ON      1
60 #define OFF     (-1)
61 #define UNDEFINED 0
62
63 #define MAXREMATCHES 10
64
65
66 /* psuedo error code indicating abandoned operation */
67 #define SLAPD_ABANDON (-1)
68
69 /* psuedo error code indicating disconnect */
70 #define SLAPD_DISCONNECT (-2)
71
72
73 /* We assume "C" locale, that is US-ASCII */
74 #define ASCII_SPACE(c)  ( (c) == ' ' )
75 #define ASCII_LOWER(c)  ( (c) >= 'a' && (c) <= 'z' )
76 #define ASCII_UPPER(c)  ( (c) >= 'A' && (c) <= 'Z' )
77 #define ASCII_ALPHA(c)  ( ASCII_LOWER(c) || ASCII_UPPER(c) )
78 #define ASCII_DIGIT(c)  ( (c) >= '0' && (c) <= '9' )
79 #define ASCII_ALNUM(c)  ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
80
81 #define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
82 #define RDN_SEPARATOR(c)        ((c) == ',' || (c) == ';' || (c) == '+')
83 #define RDN_NEEDSESCAPE(c)      ((c) == '\\' || (c) == '"')
84
85 #define DESC_LEADCHAR(c)        ( ASCII_ALPHA(c) )
86 #define DESC_CHAR(c)    ( ASCII_ALNUM(c) || (c) == '-' )
87 #define OID_LEADCHAR(c) ( ASCII_DIGIT(c) )
88 #define OID_CHAR(c)     ( ASCII_DIGIT(c) || (c) == '.' )
89
90 #define ATTR_LEADCHAR(c)        ( DESC_LEADCHAR(c) || OID_LEADCHAR(c) )
91 #define ATTR_CHAR(c)    ( DESC_CHAR((c)) || (c) == '.' )
92
93 #define AD_LEADCHAR(c)  ( ATTR_CHAR(c) )
94 #define AD_CHAR(c)              ( ATTR_CHAR(c) || (c) == ';' )
95
96 #define SLAPD_ACI_DEFAULT_ATTR          "aci"
97
98 /* schema needed by slapd */
99 #define SLAPD_OID_DN_SYNTAX "1.3.6.1.4.1.1466.115.121.1.12"
100 #define SLAPD_OID_ACI_SYNTAX "1.3.6.1.4.1.4203.666.2.1" /* experimental */
101
102 LIBSLAPD_F (int) slap_debug;
103
104 /*
105  * Index types
106  */
107 #define SLAP_INDEX_PRESENCE      0x0001U
108 #define SLAP_INDEX_EQUALITY      0x0002U
109 #define SLAP_INDEX_APPROX        0x0004U
110 #define SLAP_INDEX_SUBSTR        0x0008U
111 #define SLAP_INDEX_EXTENDED              0x0010U
112 #define SLAP_INDEX_UNDEFINED     0x1000U
113 #define SLAP_INDEX_FROMINIT      0x8000U        /* psuedo type */
114
115 /*
116  * represents schema information for a database
117  */
118 #define SLAP_SCHERR_OUTOFMEM            1
119 #define SLAP_SCHERR_CLASS_NOT_FOUND     2
120 #define SLAP_SCHERR_ATTR_NOT_FOUND      3
121 #define SLAP_SCHERR_DUP_CLASS           4
122 #define SLAP_SCHERR_DUP_ATTR            5
123 #define SLAP_SCHERR_DUP_SYNTAX          6
124 #define SLAP_SCHERR_DUP_RULE            7
125 #define SLAP_SCHERR_NO_NAME             8
126 #define SLAP_SCHERR_ATTR_INCOMPLETE     9
127 #define SLAP_SCHERR_MR_NOT_FOUND        10
128 #define SLAP_SCHERR_SYN_NOT_FOUND       11
129 #define SLAP_SCHERR_MR_INCOMPLETE       12
130
131 typedef struct slap_oid_macro {
132         struct berval som_oid;
133         char **som_names;
134         struct slap_oid_macro *som_next;
135 } OidMacro;
136
137 /* forward declarations */
138 struct slap_syntax;
139 struct slap_matching_rule;
140
141 typedef int slap_syntax_validate_func LDAP_P((
142         struct slap_syntax *syntax,
143         struct berval * in));
144
145 typedef int slap_syntax_transform_func LDAP_P((
146         struct slap_syntax *syntax,
147         struct berval * in,
148         struct berval ** out));
149
150 typedef struct slap_syntax {
151         LDAP_SYNTAX                     ssyn_syn;
152 #define ssyn_oid                ssyn_syn.syn_oid
153 #define ssyn_desc               ssyn_syn.syn_desc
154 #define ssyn_extensions         ssyn_syn.syn_extensions
155
156         unsigned        ssyn_flags;
157
158 #define SLAP_SYNTAX_NONE        0x0U
159 #define SLAP_SYNTAX_BLOB        0x1U /* syntax treated as blob (audio) */
160 #define SLAP_SYNTAX_BINARY      0x2U /* binary transfer required (certificate) */
161 #define SLAP_SYNTAX_BER         0x4U /* stored using BER encoding (binary,certificate) */
162
163         slap_syntax_validate_func       *ssyn_validate;
164
165 #ifdef SLAPD_BINARY_CONVERSION
166         /* convert to and from binary */
167         slap_syntax_transform_func      *ssyn_ber2str;
168         slap_syntax_transform_func      *ssyn_str2ber;
169 #endif
170
171         struct slap_syntax              *ssyn_next;
172 } Syntax;
173
174 #define slap_syntax_is_flag(s,flag) ((int)((s)->ssyn_flags & (flag)) ? 1 : 0)
175 #define slap_syntax_is_blob(s)          slap_syntax_is_flag((s),SLAP_SYNTAX_BLOB)
176 #define slap_syntax_is_binary(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_BINARY)
177 #define slap_syntax_is_ber(s)           slap_syntax_is_flag((s),SLAP_SYNTAX_BER)
178
179 /* XXX -> UCS-2 Converter */
180 typedef int slap_mr_convert_func LDAP_P((
181         struct berval * in,
182         struct berval ** out ));
183
184 /* Normalizer */
185 typedef int slap_mr_normalize_func LDAP_P((
186         unsigned use,
187         struct slap_syntax *syntax, /* NULL if in is asserted value */
188         struct slap_matching_rule *mr,
189         struct berval * in,
190         struct berval ** out ));
191
192 /* Match (compare) function */
193 typedef int slap_mr_match_func LDAP_P((
194         int *match,
195         unsigned use,
196         struct slap_syntax *syntax,     /* syntax of stored value */
197         struct slap_matching_rule *mr,
198         struct berval * value,
199         void * assertValue ));
200
201 /* Index generation function */
202 typedef int slap_mr_indexer_func LDAP_P((
203         unsigned use,
204         struct slap_syntax *syntax,     /* syntax of stored value */
205         struct slap_matching_rule *mr,
206         struct berval **values,
207         struct berval **keys ));
208
209 struct slap_filter;     /* forward declaration */
210
211 /* Filter index function */
212 typedef int slap_mr_filter_func LDAP_P((
213         unsigned use,
214         struct slap_syntax *syntax,     /* syntax of stored value */
215         struct slap_matching_rule *mr,
216         struct slap_filter *filter,
217         struct berval **keys ));
218
219 typedef struct slap_matching_rule {
220         LDAP_MATCHING_RULE              smr_mrule;
221         unsigned                                smr_usage;
222
223 #define SLAP_MR_TYPE_MASK               0xFF00U
224 #define SLAP_MR_SUBTYPE_MASK    0x00FFU
225
226 #define SLAP_MR_NONE                    0x0000U
227 #define SLAP_MR_EQUALITY                0x0100U
228 #define SLAP_MR_ORDERING                0x0200U
229 #define SLAP_MR_SUBSTR                  0x0400U
230 #define SLAP_MR_EXT                             0x0800U
231
232 #define SLAP_MR_EQUALITY_APPROX ( SLAP_MR_EQUALITY | 0x0001U )
233
234 #define SLAP_MR_SUBSTR_INITIAL  ( SLAP_MR_SUBSTR | 0x0001U )
235 #define SLAP_MR_SUBSTR_ANY              ( SLAP_MR_SUBSTR | 0x0002U )
236 #define SLAP_MR_SUBSTR_FINAL    ( SLAP_MR_SUBSTR | 0x0004U )
237
238         Syntax                                  *smr_syntax;
239         slap_mr_convert_func    *smr_convert;
240         slap_mr_normalize_func  *smr_normalize;
241         slap_mr_match_func              *smr_match;
242         slap_mr_indexer_func    *smr_indexer;
243         slap_mr_filter_func             *smr_filter;
244         struct slap_matching_rule       *smr_next;
245 #define smr_oid                         smr_mrule.mr_oid
246 #define smr_names                       smr_mrule.mr_names
247 #define smr_desc                        smr_mrule.mr_desc
248 #define smr_obsolete            smr_mrule.mr_obsolete
249 #define smr_syntax_oid          smr_mrule.mr_syntax_oid
250 #define smr_extensions          smr_mrule.mr_extensions
251 } MatchingRule;
252
253 typedef struct slap_attribute_type {
254 #ifdef SLAPD_SCHEMA_NOT_COMPAT
255         char                                    *sat_cname;
256 #endif
257         LDAP_ATTRIBUTE_TYPE             sat_atype;
258         struct slap_attribute_type      *sat_sup;
259         struct slap_attribute_type      **sat_subtypes;
260         MatchingRule                    *sat_equality;
261         MatchingRule                    *sat_ordering;
262         MatchingRule                    *sat_substr;
263         Syntax                          *sat_syntax;
264 #ifndef SLAPD_SCHEMA_NOT_COMPAT
265         /* The next one is created to help in the transition */
266         int                             sat_syntax_compat;
267 #endif
268         struct slap_attribute_type      *sat_next;
269 #define sat_oid                 sat_atype.at_oid
270 #define sat_names               sat_atype.at_names
271 #define sat_desc                sat_atype.at_desc
272 #define sat_obsolete            sat_atype.at_obsolete
273 #define sat_sup_oid             sat_atype.at_sup_oid
274 #define sat_equality_oid        sat_atype.at_equality_oid
275 #define sat_ordering_oid        sat_atype.at_ordering_oid
276 #define sat_substr_oid          sat_atype.at_substr_oid
277 #define sat_syntax_oid          sat_atype.at_syntax_oid
278 #define sat_single_value        sat_atype.at_single_value
279 #define sat_collective          sat_atype.at_collective
280 #define sat_no_user_mod         sat_atype.at_no_user_mod
281 #define sat_usage               sat_atype.at_usage
282 #define sat_extensions          sat_atype.at_extensions
283 } AttributeType;
284
285 #define is_at_operational(at)   ((at)->sat_usage)
286 #define is_at_single_value(at)  ((at)->sat_single_value)
287 #define is_at_collective(at)    ((at)->sat_collective)
288 #define is_at_no_user_mod(at)   ((at)->sat_no_user_mod)
289
290 typedef struct slap_object_class {
291         LDAP_OBJECT_CLASS               soc_oclass;
292         struct slap_object_class        **soc_sups;
293         AttributeType                   **soc_required;
294         AttributeType                   **soc_allowed;
295         struct slap_object_class        *soc_next;
296 #define soc_oid                 soc_oclass.oc_oid
297 #define soc_names               soc_oclass.oc_names
298 #define soc_desc                soc_oclass.oc_desc
299 #define soc_obsolete            soc_oclass.oc_obsolete
300 #define soc_sup_oids            soc_oclass.oc_sup_oids
301 #define soc_kind                soc_oclass.oc_kind
302 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
303 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
304 #define soc_extensions          soc_oclass.oc_extensions
305 } ObjectClass;
306
307
308 #ifdef SLAPD_SCHEMA_NOT_COMPAT
309 /*
310  * represents a recognized attribute description ( type + options )
311  */
312 typedef struct slap_attr_desc {
313         struct berval *ad_cname;        /* canonical name */
314         AttributeType *ad_type;         /* NULL if unknown */
315         char *ad_lang;                          /* NULL if no language tags */
316         unsigned ad_flags;
317 #define SLAP_DESC_NONE          0x0U
318 #define SLAP_DESC_BINARY        0x1U
319 } AttributeDescription;
320
321 #define slap_ad_is_binary(ad)   ( (int)((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
322
323 /*
324  * pointers to schema elements used internally
325  */
326 struct slap_internal_schema {
327         /* objectClass */
328         ObjectClass *si_oc_alias;
329         ObjectClass *si_oc_referral;
330
331         /* objectClass attribute */
332         AttributeDescription *si_ad_objectClass;
333
334         /* operational attributes */
335         AttributeDescription *si_ad_creatorsName;
336         AttributeDescription *si_ad_createTimestamp;
337         AttributeDescription *si_ad_modifiersName;
338         AttributeDescription *si_ad_modifyTimestamp;
339         AttributeDescription *si_ad_subschemaSubentry;
340
341         /* root DSE attributes */
342         AttributeDescription *si_ad_namingContexts;
343         AttributeDescription *si_ad_supportedControl;
344         AttributeDescription *si_ad_supportedExtension;
345         AttributeDescription *si_ad_supportedLDAPVersion;
346 #ifdef SLAPD_ACI_ENABLED
347         AttributeDescription *si_ad_supportedACIMechanisms;
348 #endif
349         AttributeDescription *si_ad_supportedSASLMechanisms;
350
351         /* subschema subentry attributes */
352         AttributeDescription *si_ad_objectClasses;
353         AttributeDescription *si_ad_attributeTypes;
354         AttributeDescription *si_ad_ldapSyntaxes;
355         AttributeDescription *si_ad_matchingRules;
356         AttributeDescription *si_ad_matchingRulesUse;
357
358         /* Aliases & Referrals */
359         AttributeDescription *si_ad_aliasedObjectName;
360         AttributeDescription *si_ad_ref;
361
362         /* ACL Internals */
363         AttributeDescription *si_ad_entry;
364         AttributeDescription *si_ad_children;
365
366         /* Other */
367         AttributeDescription *si_ad_userPassword;
368         AttributeDescription *si_ad_authPassword;
369 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
370         AttributeDescription *si_ad_krbName;
371 #endif
372 };
373
374 typedef struct slap_attr_assertion {
375         AttributeDescription    *aa_desc;
376         struct berval *aa_value;
377 } AttributeAssertion;
378
379 typedef struct slap_ss_assertion {
380         AttributeDescription    *sa_desc;
381         struct berval                   *sa_initial;
382         struct berval                   **sa_any;
383         struct berval                   *sa_final;
384 } SubstringAssertion;
385
386 typedef struct slap_mr_assertion {
387         char                                    *ma_rule;       /* optional */
388         AttributeDescription    *ma_desc;       /* optional */
389         int                                             ma_dnattrs; /* boolean */
390         struct berval                   *ma_value;      /* required */
391 } MatchingRuleAssertion;
392
393 #else
394
395 /*
396  * represents an attribute value assertion (i.e., attr;option=value)
397  */
398 typedef struct slap_ava {
399         char            *ava_type;      /* attribute description */
400         struct berval   ava_value;
401 } Ava;
402
403 /*
404  * represents an matching rule assertion
405  */
406 typedef struct slap_mra {
407         char    *mra_rule;      /* optional */
408         char    *mra_type;      /* attribute description -- optional */
409         int             mra_dnattrs;
410         struct berval   *mra_value;
411 } Mra;
412
413 #endif
414
415 /*
416  * represents a search filter
417  */
418
419 typedef struct slap_filter {
420         ber_tag_t       f_choice;       /* values taken from ldap.h, plus: */
421 #define SLAPD_FILTER_COMPUTED   ((ber_tag_t) -1)
422 #define SLAPD_FILTER_DN_ONE             ((ber_tag_t) -2)
423 #define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3)
424
425
426         union f_un_u {
427                 /* precomputed result */
428                 ber_int_t f_un_result;
429
430 #ifdef SLAPD_SCHEMA_NOT_COMPAT
431                 /* DN */
432                 char *f_un_dn;
433
434                 /* present */
435                 AttributeDescription *f_un_desc;
436
437                 /* simple value assertion */
438                 AttributeAssertion *f_un_ava;
439
440                 /* substring assertion */
441                 SubstringAssertion *f_un_ssa;
442
443                 /* matching rule assertion */
444                 MatchingRuleAssertion *f_un_mra;
445
446 #define f_dn                    f_un.f_un_dn
447 #define f_desc                  f_un.f_un_desc
448 #define f_ava                   f_un.f_un_ava
449 #define f_av_desc               f_un.f_un_ava->aa_desc
450 #define f_av_value              f_un.f_un_ava->aa_value
451 #define f_sub                   f_un.f_un_ssa
452 #define f_sub_desc              f_un.f_un_ssa->sa_desc
453 #define f_sub_initial   f_un.f_un_ssa->sa_initial
454 #define f_sub_any               f_un.f_un_ssa->sa_any
455 #define f_sub_final             f_un.f_un_ssa->sa_final
456 #define f_mra                   f_un.f_un_mra
457 #define f_mr_rule               f_un.f_un_mra->ma_rule
458 #define f_mr_desc               f_un.f_un_mra->ma_desc
459 #define f_mr_value              f_un.f_un_mra->ma_value
460 #define f_mr_dnaddrs    f_un.f_un_mra->ma_dnattrs
461 #else
462                 /* present */
463                 char            *f_un_type;
464
465                 /* equality, lessorequal, greaterorequal, approx */
466                 Ava             f_un_ava;
467
468                 /* extensible */
469                 Mra             f_un_fra;       
470
471                 /* substrings */
472                 struct sub {
473                         char    *f_un_sub_type;
474
475                         struct berval   *f_un_sub_initial;
476                         struct berval   **f_un_sub_any;
477                         struct berval   *f_un_sub_final;
478                 } f_un_sub;
479
480 #define f_dn            f_un.f_un_type  /* used for DN indices */
481 #define f_type          f_un.f_un_type
482 #define f_ava           f_un.f_un_ava
483 #define f_avtype        f_un.f_un_ava.ava_type
484 #define f_avvalue       f_un.f_un_ava.ava_value
485 #define f_mra           f_un.f_un_mra
486 #define f_mrtype        f_un.f_un_mra.mra_type
487 #define f_mrvalue       f_un.f_un_mra.mra_value
488 #define f_mrdnaddrs     f_un.f_un_mra.mra_dnattrs
489 #define f_sub           f_un.f_un_sub
490 #define f_sub_type      f_un.f_un_sub.f_un_sub_type
491 #define f_sub_initial   f_un.f_un_sub.f_un_sub_initial
492 #define f_sub_any       f_un.f_un_sub.f_un_sub_any
493 #define f_sub_final     f_un.f_un_sub.f_un_sub_final
494 #endif
495
496                 /* and, or, not */
497                 struct slap_filter *f_un_complex;
498         } f_un;
499
500 #define f_result        f_un.f_un_result
501 #define f_and           f_un.f_un_complex
502 #define f_or            f_un.f_un_complex
503 #define f_not           f_un.f_un_complex
504 #define f_list          f_un.f_un_complex
505
506         struct slap_filter      *f_next;
507 } Filter;
508
509 /* compare routines can return undefined */
510 #define SLAPD_COMPARE_UNDEFINED ((ber_tag_t) -1)
511
512 /*
513  * represents an attribute (description + values)
514  */
515 typedef struct slap_attr {
516 #ifdef SLAPD_SCHEMA_NOT_COMPAT
517         AttributeDescription *a_desc;
518 #else
519         char            *a_type;        /* description */
520         int             a_syntax;
521 #endif
522         struct berval   **a_vals;
523         struct slap_attr        *a_next;
524 } Attribute;
525
526 #ifndef SLAPD_SCHEMA_NOT_COMPAT
527 /*
528  * the attr_syntax() routine returns one of these values
529  * telling what kind of syntax an attribute supports.
530  */
531 #define SYNTAX_CIS      0x01    /* case insensitive string              */
532 #define SYNTAX_CES      0x02    /* case sensitive string                */
533 #define SYNTAX_BIN      0x04    /* binary data                          */
534 #define SYNTAX_TEL      0x08    /* telephone number string              */
535 #define SYNTAX_DN       0x10    /* dn string                            */
536 #endif
537
538 /*
539  * the id used in the indexes to refer to an entry
540  */
541 typedef unsigned long   ID;
542 #define NOID    ((ID)~0)
543
544 /*
545  * represents an entry in core
546  */
547 typedef struct slap_entry {
548         /*
549          * The ID field should only be changed before entry is
550          * inserted into a cache.  The ID value is backend
551          * specific.
552          */
553         ID              e_id;
554
555         char            *e_dn;          /* DN of this entry */
556         char            *e_ndn;         /* normalized DN of this entry */
557         Attribute       *e_attrs;       /* list of attributes + values */
558
559         /* for use by the backend for any purpose */
560         void*   e_private;
561 } Entry;
562
563 /*
564  * A list of LDAPMods
565  */
566 #ifdef SLAPD_SCHEMA_NOT_COMPAT
567 typedef struct slap_mod {
568         int sm_op;
569         AttributeDescription *sm_desc;
570         struct berval **sm_bvalues;
571 } Modification;
572 #else
573 #define Modification LDAPMod
574 #define sm_op mod_op
575 #define sm_desc mod_type
576 #define sm_bvalues mod_bvalues
577 #endif
578
579 typedef struct slap_mod_list {
580         Modification sml_mod;
581 #define sml_op          sml_mod.sm_op
582 #define sml_desc        sml_mod.sm_desc
583 #define sml_bvalues     sml_mod.sm_bvalues
584 #ifndef SLAPD_SCHEMA_NOT_COMPAT
585 #define sml_type        sml_mod.sm_desc
586 #endif
587         struct slap_mod_list *sml_next;
588 } Modifications;
589
590 #ifdef SLAPD_SCHEMA_NOT_COMPAT
591 typedef struct slap_ldap_modlist {
592         LDAPMod ml_mod;
593         struct slap_ldap_modlist *ml_next;
594 #define ml_op           ml_mod.mod_op
595 #define ml_type         ml_mod.mod_type
596 #define ml_values       ml_mod.mod_values
597 #define ml_bvalues      ml_mod.mod_bvalues
598 } LDAPModList;
599 #else
600 #define LDAPModList Modifications
601 #define ml_mod          sml_mod
602 #define ml_op           sml_mod.mod_op
603 #define ml_type         sml_mod.mod_type
604 #define ml_values       sml_mod.mod_values
605 #define ml_bvalues      sml_mod.mod_bvalues
606 #define ml_next         sml_next
607 #endif
608
609 /*
610  * represents an access control list
611  */
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 unsigned long slap_access_mask_t;
631
632 /* the "by" part */
633 typedef struct slap_access {
634         slap_control_t a_type;
635
636 #define ACL_ACCESS2PRIV(access) (0x01U << (access))
637
638 #define ACL_PRIV_NONE                   ACL_ACCESS2PRIV( ACL_NONE )
639 #define ACL_PRIV_AUTH                   ACL_ACCESS2PRIV( ACL_AUTH )
640 #define ACL_PRIV_COMPARE                ACL_ACCESS2PRIV( ACL_COMPARE )
641 #define ACL_PRIV_SEARCH                 ACL_ACCESS2PRIV( ACL_SEARCH )
642 #define ACL_PRIV_READ                   ACL_ACCESS2PRIV( ACL_READ )
643 #define ACL_PRIV_WRITE                  ACL_ACCESS2PRIV( ACL_WRITE )
644
645 #define ACL_PRIV_MASK                   0x00ffUL
646
647 /* priv flags */
648 #define ACL_PRIV_LEVEL                  0x1000UL
649 #define ACL_PRIV_ADDITIVE               0x2000UL
650 #define ACL_PRIV_SUBSTRACTIVE   0x4000UL
651
652 /* invalid privs */
653 #define ACL_PRIV_INVALID                0x0UL
654
655 #define ACL_PRIV_ISSET(m,p)             (((m) & (p)) == (p))
656 #define ACL_PRIV_ASSIGN(m,p)    do { (m)  =  (p); } while(0)
657 #define ACL_PRIV_SET(m,p)               do { (m) |=  (p); } while(0)
658 #define ACL_PRIV_CLR(m,p)               do { (m) &= ~(p); } while(0)
659
660 #define ACL_INIT(m)                             ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
661 #define ACL_INVALIDATE(m)               ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
662
663 #define ACL_GRANT(m,a)                  ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
664
665 #define ACL_IS_INVALID(m)               ((m) == ACL_PRIV_INVALID)
666
667 #define ACL_IS_LEVEL(m)                 ACL_PRIV_ISSET((m),ACL_PRIV_LEVEL)
668 #define ACL_IS_ADDITIVE(m)              ACL_PRIV_ISSET((m),ACL_PRIV_ADDITIVE)
669 #define ACL_IS_SUBTRACTIVE(m)   ACL_PRIV_ISSET((m),ACL_PRIV_SUBSTRACTIVE)
670
671 #define ACL_LVL_NONE                    (ACL_PRIV_NONE|ACL_PRIV_LEVEL)
672 #define ACL_LVL_AUTH                    (ACL_PRIV_AUTH|ACL_LVL_NONE)
673 #define ACL_LVL_COMPARE                 (ACL_PRIV_COMPARE|ACL_LVL_AUTH)
674 #define ACL_LVL_SEARCH                  (ACL_PRIV_SEARCH|ACL_LVL_COMPARE)
675 #define ACL_LVL_READ                    (ACL_PRIV_READ|ACL_LVL_SEARCH)
676 #define ACL_LVL_WRITE                   (ACL_PRIV_WRITE|ACL_LVL_READ)
677
678 #define ACL_LVL(m,l)                    (((m)&ACL_PRIV_MASK) == ((l)&ACL_PRIV_MASK))
679 #define ACL_LVL_IS_NONE(m)              ACL_LVL((m),ACL_LVL_NONE)
680 #define ACL_LVL_IS_AUTH(m)              ACL_LVL((m),ACL_LVL_AUTH)
681 #define ACL_LVL_IS_COMPARE(m)   ACL_LVL((m),ACL_LVL_COMPARE)
682 #define ACL_LVL_IS_SEARCH(m)    ACL_LVL((m),ACL_LVL_SEARCH)
683 #define ACL_LVL_IS_READ(m)              ACL_LVL((m),ACL_LVL_READ)
684 #define ACL_LVL_IS_WRITE(m)             ACL_LVL((m),ACL_LVL_WRITE)
685
686 #define ACL_LVL_ASSIGN_NONE(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_NONE)
687 #define ACL_LVL_ASSIGN_AUTH(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_AUTH)
688 #define ACL_LVL_ASSIGN_COMPARE(m)       ACL_PRIV_ASSIGN((m),ACL_LVL_COMPARE)
689 #define ACL_LVL_ASSIGN_SEARCH(m)        ACL_PRIV_ASSIGN((m),ACL_LVL_SEARCH)
690 #define ACL_LVL_ASSIGN_READ(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_READ)
691 #define ACL_LVL_ASSIGN_WRITE(m)         ACL_PRIV_ASSIGN((m),ACL_LVL_WRITE)
692
693         slap_access_mask_t      a_mask;
694
695         char            *a_dn_pat;
696 #ifdef SLAPD_SCHEMA_NOT_COMPAT
697         AttributeDescription    *a_dn_at;
698 #else
699         char            *a_dn_at;
700 #endif
701         int                     a_dn_self;
702
703         char            *a_peername_pat;
704         char            *a_sockname_pat;
705
706         char            *a_domain_pat;
707         char            *a_sockurl_pat;
708
709 #ifdef SLAPD_ACI_ENABLED
710 #ifdef SLAPD_SCHEMA_NOT_COMPAT
711         AttributeDescription    *a_aci_at;
712 #else
713         char            *a_aci_at;
714 #endif
715 #endif
716
717         /* ACL Groups */
718         char            *a_group_pat;
719         char            *a_group_oc;
720 #ifdef SLAPD_SCHEMA_NOT_COMPAT
721         AttributeDescription    *a_group_at;
722 #else
723         char            *a_group_at;
724 #endif
725
726         struct slap_access      *a_next;
727 } Access;
728
729 /* the "to" part */
730 typedef struct slap_acl {
731         /* "to" part: the entries this acl applies to */
732         Filter          *acl_filter;
733         regex_t         acl_dn_re;
734         char            *acl_dn_pat;
735         char            **acl_attrs;
736
737         /* "by" part: list of who has what access to the entries */
738         Access  *acl_access;
739
740         struct slap_acl *acl_next;
741 } AccessControl;
742
743 /*
744  * replog moddn param structure
745  */
746 struct replog_moddn {
747         char *newrdn;
748         int     deloldrdn;
749         char *newsup;
750 };
751
752 /*
753  * Backend-info
754  * represents a backend 
755  */
756
757 typedef struct slap_backend_info BackendInfo;   /* per backend type */
758 typedef struct slap_backend_db BackendDB;               /* per backend database */
759
760 LIBSLAPD_F (int) nBackendInfo;
761 LIBSLAPD_F (int) nBackendDB;
762 LIBSLAPD_F (BackendInfo *) backendInfo;
763 LIBSLAPD_F (BackendDB *) backendDB;
764
765 LIBSLAPD_F (int) slapMode;      
766 #define SLAP_UNDEFINED_MODE     0x0000
767 #define SLAP_SERVER_MODE        0x0001
768 #define SLAP_TOOL_MODE          0x0002
769 #define SLAP_MODE                       0x0003
770
771 #define SLAP_TRUNCATE_MODE      0x0100
772 #ifdef SLAPD_BDB2
773 #define SLAP_TIMED_MODE         0x1000
774 #endif
775
776 /* temporary aliases */
777 typedef BackendDB Backend;
778 #define nbackends nBackendDB
779 #define backends backendDB
780
781 struct slap_backend_db {
782         BackendInfo     *bd_info;       /* pointer to shared backend info */
783
784         /* BackendInfo accessors */
785 #define         be_config       bd_info->bi_db_config
786 #define         be_type         bd_info->bi_type
787
788 #define         be_bind         bd_info->bi_op_bind
789 #define         be_unbind       bd_info->bi_op_unbind
790 #define         be_add          bd_info->bi_op_add
791 #define         be_compare      bd_info->bi_op_compare
792 #define         be_delete       bd_info->bi_op_delete
793 #define         be_modify       bd_info->bi_op_modify
794 #define         be_modrdn       bd_info->bi_op_modrdn
795 #define         be_search       bd_info->bi_op_search
796
797 #define         be_extended     bd_info->bi_extended
798
799 #define         be_release      bd_info->bi_entry_release_rw
800 #define         be_group        bd_info->bi_acl_group
801
802 #define         be_controls     bd_info->bi_controls
803
804 #define         be_connection_init      bd_info->bi_connection_init
805 #define         be_connection_destroy   bd_info->bi_connection_destroy
806
807 #ifdef SLAPD_TOOLS
808 #define         be_entry_open bd_info->bi_tool_entry_open
809 #define         be_entry_close bd_info->bi_tool_entry_close
810 #define         be_entry_first bd_info->bi_tool_entry_first
811 #define         be_entry_next bd_info->bi_tool_entry_next
812 #define         be_entry_get bd_info->bi_tool_entry_get
813 #define         be_entry_put bd_info->bi_tool_entry_put
814 #define         be_index_attr bd_info->bi_tool_index_attr
815 #define         be_index_change bd_info->bi_tool_index_change
816 #define         be_sync bd_info->bi_tool_sync
817 #endif
818
819 #ifdef HAVE_CYRUS_SASL
820 #define         be_sasl_authorize bd_info->bi_sasl_authorize
821 #define         be_sasl_getsecret bd_info->bi_sasl_getsecret
822 #define         be_sasl_putsecret bd_info->bi_sasl_putsecret
823 #endif
824
825         /* these should be renamed from be_ to bd_ */
826         char    **be_suffix;    /* the DN suffixes of data in this backend */
827         char    **be_nsuffix;   /* the normalized DN suffixes in this backend */
828         char    **be_suffixAlias; /* pairs of DN suffix aliases and deref values */
829         char    *be_root_dn;    /* the magic "root" dn for this db      */
830         char    *be_root_ndn;   /* the magic "root" normalized dn for this db   */
831         struct berval be_root_pw;       /* the magic "root" password for this db        */
832         int     be_readonly;    /* 1 => db is in "read only" mode          */
833         unsigned int be_max_deref_depth;       /* limit for depth of an alias deref  */
834         int     be_sizelimit;   /* size limit for this backend             */
835         int     be_timelimit;   /* time limit for this backend             */
836         AccessControl *be_acl;  /* access control list for this backend    */
837         slap_access_t   be_dfltaccess;  /* access given if no acl matches          */
838         char    **be_replica;   /* replicas of this backend (in master)    */
839         char    *be_replogfile; /* replication log file (in master)        */
840         char    *be_update_ndn; /* allowed to make changes (in replicas) */
841         struct berval **be_update_refs; /* where to refer modifying clients to */
842         int     be_lastmod;     /* keep track of lastmodified{by,time}     */
843
844         char    *be_realm;
845
846         void    *be_private;    /* anything the backend database needs     */
847 };
848
849 struct slap_conn;
850 struct slap_op;
851
852 typedef int (*SLAP_EXTENDED_FN) LDAP_P((
853     Backend             *be,
854     struct slap_conn            *conn,
855     struct slap_op              *op,
856         const char              *reqoid,
857     struct berval * reqdata,
858         char            **rspoid,
859     struct berval ** rspdata,
860         LDAPControl *** rspctrls,
861         const char **   text,
862         struct berval *** refs ));
863
864 struct slap_backend_info {
865         char    *bi_type;       /* type of backend */
866
867         /*
868          * per backend type routines:
869          * bi_init: called to allocate a backend_info structure,
870          *              called once BEFORE configuration file is read.
871          *              bi_init() initializes this structure hence is
872          *              called directly from be_initialize()
873          * bi_config: called per 'backend' specific option
874          *              all such options must before any 'database' options
875          *              bi_config() is called only from read_config()
876          * bi_open: called to open each database, called
877          *              once AFTER configuration file is read but
878          *              BEFORE any bi_db_open() calls.
879          *              bi_open() is called from backend_startup()
880          * bi_close: called to close each database, called
881          *              once during shutdown after all bi_db_close calls.
882          *              bi_close() is called from backend_shutdown()
883          * bi_destroy: called to destroy each database, called
884          *              once during shutdown after all bi_db_destroy calls.
885          *              bi_destory() is called from backend_destroy()
886          */
887         int (*bi_init)  LDAP_P((BackendInfo *bi));
888         int     (*bi_config) LDAP_P((BackendInfo *bi,
889                 const char *fname, int lineno, int argc, char **argv ));
890         int (*bi_open) LDAP_P((BackendInfo *bi));
891         int (*bi_close) LDAP_P((BackendInfo *bi));
892         int (*bi_destroy) LDAP_P((BackendInfo *bi));
893
894         /*
895          * per database routines:
896          * bi_db_init: called to initialize each database,
897          *      called upon reading 'database <type>' 
898          *      called only from backend_db_init()
899          * bi_db_config: called to configure each database,
900          *  called per database to handle per database options
901          *      called only from read_config()
902          * bi_db_open: called to open each database
903          *      called once per database immediately AFTER bi_open()
904          *      calls but before daemon startup.
905          *  called only by backend_startup()
906          * bi_db_close: called to close each database
907          *      called once per database during shutdown but BEFORE
908          *  any bi_close call.
909          *  called only by backend_shutdown()
910          * bi_db_destroy: called to destroy each database
911          *  called once per database during shutdown AFTER all
912          *  bi_close calls but before bi_destory calls.
913          *  called only by backend_destory()
914          */
915         int (*bi_db_init) LDAP_P((Backend *bd));
916         int     (*bi_db_config) LDAP_P((Backend *bd,
917                 const char *fname, int lineno, int argc, char **argv ));
918         int (*bi_db_open) LDAP_P((Backend *bd));
919         int (*bi_db_close) LDAP_P((Backend *bd));
920         int (*bi_db_destroy) LDAP_P((Backend *db));
921
922         /* LDAP Operations Handling Routines */
923         int     (*bi_op_bind)  LDAP_P(( BackendDB *bd,
924                 struct slap_conn *c, struct slap_op *o,
925                 const char *dn, const char *ndn, int method,
926                 struct berval *cred, char** edn ));
927         int (*bi_op_unbind) LDAP_P((BackendDB *bd,
928                 struct slap_conn *c, struct slap_op *o ));
929         int     (*bi_op_search) LDAP_P((BackendDB *bd,
930                 struct slap_conn *c, struct slap_op *o,
931                 const char *base, const char *nbase,
932                 int scope, int deref,
933                 int slimit, int tlimit,
934                 Filter *f, const char *filterstr,
935                 char **attrs, int attrsonly));
936 #ifdef SLAPD_SCHEMA_NOT_COMPAT
937         int     (*bi_op_compare)LDAP_P((BackendDB *bd,
938                 struct slap_conn *c, struct slap_op *o,
939                 const char *dn, const char *ndn,
940                 AttributeAssertion *ava));
941 #else
942         int     (*bi_op_compare)LDAP_P((BackendDB *bd,
943                 struct slap_conn *c, struct slap_op *o,
944                 const char *dn, const char *ndn,
945                 Ava *ava));
946 #endif
947         int     (*bi_op_modify) LDAP_P((BackendDB *bd,
948                 struct slap_conn *c, struct slap_op *o,
949                 const char *dn, const char *ndn, Modifications *m));
950         int     (*bi_op_modrdn) LDAP_P((BackendDB *bd,
951                 struct slap_conn *c, struct slap_op *o,
952                 const char *dn, const char *ndn,
953                 const char *newrdn, int deleteoldrdn,
954                 const char *newSuperior));
955         int     (*bi_op_add)    LDAP_P((BackendDB *bd,
956                 struct slap_conn *c, struct slap_op *o,
957                 Entry *e));
958         int     (*bi_op_delete) LDAP_P((BackendDB *bd,
959                 struct slap_conn *c, struct slap_op *o,
960                 const char *dn, const char *ndn));
961         int     (*bi_op_abandon) LDAP_P((BackendDB *bd,
962                 struct slap_conn *c, struct slap_op *o,
963                 ber_int_t msgid));
964
965         /* Extended Operations Helper */
966         SLAP_EXTENDED_FN bi_extended;
967
968         /* Auxilary Functions */
969         int     (*bi_entry_release_rw) LDAP_P((BackendDB *bd, Entry *e, int rw));
970
971 #ifdef SLAPD_SCHEMA_NOT_COMPAT
972         int     (*bi_acl_group)  LDAP_P((Backend *bd,
973                 Entry *e, const char *bdn, const char *edn,
974                 const char *objectclassValue,
975                 AttributeDescription *group_at ));
976 #else
977         int     (*bi_acl_group)  LDAP_P((Backend *bd,
978                 Entry *e, const char *bdn, const char *edn,
979                 const char *objectclassValue,
980                 const char *group_at ));
981 #endif
982
983         int     (*bi_connection_init) LDAP_P((BackendDB *bd,
984                 struct slap_conn *c));
985         int     (*bi_connection_destroy) LDAP_P((BackendDB *bd,
986                 struct slap_conn *c));
987
988         /* hooks for slap tools */
989         int (*bi_tool_entry_open) LDAP_P(( BackendDB *be, int mode ));
990         int (*bi_tool_entry_close) LDAP_P(( BackendDB *be ));
991         ID (*bi_tool_entry_first) LDAP_P(( BackendDB *be ));
992         ID (*bi_tool_entry_next) LDAP_P(( BackendDB *be ));
993         Entry* (*bi_tool_entry_get) LDAP_P(( BackendDB *be, ID id ));
994         ID (*bi_tool_entry_put) LDAP_P(( BackendDB *be, Entry *e ));
995 #ifdef SLAPD_SCHEMA_NOT_COMPAT
996         int (*bi_tool_index_attr) LDAP_P(( BackendDB *be,
997                 AttributeDescription *desc ));
998         int (*bi_tool_index_change) LDAP_P(( BackendDB *be,
999                 AttributeDescription *desc,
1000                 struct berval **bv, ID id, int op ));
1001 #else
1002         int (*bi_tool_index_attr) LDAP_P(( BackendDB *be,
1003                 char* type ));
1004         int (*bi_tool_index_change) LDAP_P(( BackendDB *be,
1005                 char* type,
1006                 struct berval **bv, ID id, int op ));
1007 #endif
1008         int (*bi_tool_sync) LDAP_P(( BackendDB *be ));
1009
1010 #ifdef HAVE_CYRUS_SASL
1011         int (*bi_sasl_authorize) LDAP_P(( BackendDB *be,
1012                 const char *authnid, const char *authzid,
1013                 const char **canon_authzid, const char **errstr ));
1014         int (*bi_sasl_getsecret) LDAP_P(( BackendDB *be,
1015                 const char *mechanism, const char *authzid,
1016                 const char *realm, sasl_secret_t **secret ));
1017         int (*bi_sasl_putsecret) LDAP_P(( BackendDB *be,
1018                 const char *mechanism, const char *auth_identity,
1019                 const char *realm, const sasl_secret_t *secret ));
1020 #endif /* HAVE_CYRUS_SASL */
1021
1022 #define SLAP_INDEX_ADD_OP               0x0001
1023 #define SLAP_INDEX_DELETE_OP    0x0002
1024
1025         char **bi_controls;             /* supported controls */
1026
1027         unsigned int bi_nDB;    /* number of databases of this type */
1028         void    *bi_private;    /* anything the backend type needs */
1029 };
1030
1031 /*
1032  * represents an operation pending from an ldap client
1033  */
1034
1035 typedef struct slap_op {
1036         ber_int_t       o_opid;         /* id of this operation           */
1037         ber_int_t       o_msgid;        /* msgid of the request           */
1038
1039         ldap_pvt_thread_t       o_tid;          /* thread handling this op        */
1040
1041         BerElement      *o_ber;         /* ber of the request             */
1042
1043         ber_tag_t       o_tag;          /* tag of the request             */
1044         time_t          o_time;         /* time op was initiated          */
1045
1046 #ifdef SLAP_AUTHZID
1047         /* should only be used for reporting purposes */
1048         char    *o_authc_dn;    /* authentication DN */
1049
1050         /* should be used as the DN of the User */
1051         char    *o_authz_dn;    /* authorization DN */
1052         char    *o_authz_ndn;   /* authorizaiton NDN */
1053
1054 #else
1055         char            *o_dn;          /* dn bound when op was initiated */
1056         char            *o_ndn;         /* normalized dn bound when op was initiated */
1057 #endif
1058
1059         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
1060         ber_tag_t       o_authtype;     /* auth method used to bind dn    */
1061                                         /* values taken from ldap.h       */
1062                                         /* LDAP_AUTH_*                    */
1063         char            *o_authmech; /* SASL mechanism used to bind dn */
1064
1065         LDAPControl     **o_ctrls;       /* controls */
1066
1067         unsigned long   o_connid; /* id of conn initiating this op  */
1068
1069 #ifdef LDAP_CONNECTIONLESS
1070         int             o_cldap;        /* != 0 if this came in via CLDAP */
1071         struct sockaddr o_clientaddr;   /* client address if via CLDAP    */
1072         char            o_searchbase;   /* search base if via CLDAP       */
1073 #endif
1074
1075         ldap_pvt_thread_mutex_t o_abandonmutex; /* protects o_abandon  */
1076         int             o_abandon;      /* abandon flag */
1077
1078         struct slap_op  *o_next;        /* next operation in list         */
1079         void    *o_private;     /* anything the backend needs     */
1080 } Operation;
1081
1082 /*
1083  * represents a connection from an ldap client
1084  */
1085
1086 typedef struct slap_conn {
1087         int                     c_struct_state; /* structure management state */
1088         int                     c_conn_state;   /* connection state */
1089
1090         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
1091         Sockbuf         *c_sb;                  /* ber connection stuff           */
1092
1093         /* only can be changed by connect_init */
1094         time_t          c_starttime;    /* when the connection was opened */
1095         time_t          c_activitytime; /* when the connection was last used */
1096         unsigned long           c_connid;       /* id of this connection for stats*/
1097
1098         char            *c_listener_url;        /* listener URL */
1099         char            *c_peer_domain; /* DNS name of client */
1100         char            *c_peer_name;   /* peer name (trans=addr:port) */
1101         char            *c_sock_name;   /* sock name (trans=addr:port) */
1102
1103         /* only can be changed by binding thread */
1104         int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
1105         char    *c_sasl_bind_mech;                      /* mech in progress */
1106 #ifdef HAVE_CYRUS_SASL
1107         sasl_conn_t     *c_sasl_bind_context;   /* Cyrus SASL state data */
1108 #endif
1109
1110         /* authentication backend */
1111         Backend *c_authc_backend;
1112
1113         /* authorization backend - normally same as c_authc_backend */
1114         Backend *c_authz_backend;
1115
1116 #ifdef SLAP_AUTHZID
1117         /* authentication backend */
1118         /* should only be used for reporting purposes */
1119         char    *c_authc_dn;    /* authentication DN */
1120
1121         /* should be used as the DN of the User */
1122         char    *c_authz_dn;    /* authorization DN */
1123         char    *c_authz_ndn;   /* authorization NDN */
1124
1125 #else
1126         char    *c_cdn;         /* DN provided by the client */
1127         char    *c_dn;          /* DN bound to this conn  */
1128 #endif
1129
1130         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
1131         ber_tag_t       c_authtype;/* auth method used to bind c_dn  */
1132         char    *c_authmech;    /* SASL mechanism used to bind c_dn */
1133
1134         Operation       *c_ops;                 /* list of operations being processed */
1135         Operation       *c_pending_ops; /* list of pending operations */
1136
1137         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
1138         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
1139
1140         BerElement      *c_currentber;  /* ber we're attempting to read */
1141         int             c_writewaiter;  /* true if writer is waiting */
1142
1143 #ifdef HAVE_TLS
1144         int     c_is_tls;               /* true if this LDAP over raw TLS */
1145         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
1146 #endif
1147
1148         long    c_n_ops_received;               /* num of ops received (next op_id) */
1149         long    c_n_ops_executing;      /* num of ops currently executing */
1150         long    c_n_ops_pending;                /* num of ops pending execution */
1151         long    c_n_ops_completed;      /* num of ops completed */
1152
1153         long    c_n_get;                /* num of get calls */
1154         long    c_n_read;               /* num of read calls */
1155         long    c_n_write;              /* num of write calls */
1156 } Connection;
1157
1158 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
1159 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
1160         do { \
1161                 if ( ldap_debug & (level) ) \
1162                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
1163                 if ( ldap_syslog & (level) ) \
1164                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
1165                                 (arg2), (arg3) ); \
1166         } while (0)
1167 #else
1168 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
1169 #endif
1170
1171 LDAP_END_DECL
1172
1173 #include "proto-slap.h"
1174
1175 #endif /* _SLAP_H_ */