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