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