]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
a8efb056e8807d0b20785add3b20c8b4ea6e8309
[openldap] / servers / slapd / slap.h
1 /* slap.h - stand alone ldap server include file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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 <stdio.h>
14 #include <ac/stdlib.h>
15
16 #include <sys/types.h>
17 #include <ac/syslog.h>
18 #include <ac/regex.h>
19 #include <ac/signal.h>
20 #include <ac/socket.h>
21 #include <ac/time.h>
22 #include <ac/param.h>
23
24 #include "avl.h"
25
26 #ifndef ldap_debug
27 #define ldap_debug slap_debug
28 #endif
29
30 #include "ldap_log.h"
31
32 #include <ldap.h>
33 #include <ldap_schema.h>
34
35 #include "ldap_pvt_thread.h"
36 #include "ldap_queue.h"
37
38 LDAP_BEGIN_DECL
39 /*
40  * SLAPD Memory allocation macros
41  *
42  * Unlike ch_*() routines, these routines do not assert() upon
43  * allocation error.  They are intended to be used instead of
44  * ch_*() routines where the caller has implemented proper
45  * checking for and handling of allocation errors.
46  *
47  * Patches to convert ch_*() calls to SLAP_*() calls welcomed.
48  */
49 #define SLAP_MALLOC(s)      ber_memalloc((s))
50 #define SLAP_CALLOC(n,s)    ber_memcalloc((n),(s))
51 #define SLAP_REALLOC(p,s)   ber_memrealloc((p),(s))
52 #define SLAP_FREE(p)        ber_memfree((p))
53 #define SLAP_VFREE(v)       ber_memvfree((void**)(v))
54 #define SLAP_STRDUP(s)      ber_strdup((s))
55 #define SLAP_STRNDUP(s,l)   ber_strndup((s),(l))
56
57 #ifdef f_next
58 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
59 #endif
60
61 #define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
62 #define SLAPD_ANONYMOUS "cn=anonymous"
63
64 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
65  *
66  * This is a value used internally by the backends. It is needed to allow
67  * adding values that already exist without getting an error as required by
68  * modrdn when the new rdn was already an attribute value itself.
69  * JCG 05/1999 (gomez@engr.sgi.com)
70  */
71 #define SLAP_MOD_SOFTADD        0x1000
72
73 #define MAXREMATCHES (100)
74
75 #define SLAP_MAX_WORKER_THREADS         (32)
76
77 #define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
78 #define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)
79
80 #define SLAP_TEXT_BUFLEN (256)
81
82 /* psuedo error code indicating abandoned operation */
83 #define SLAPD_ABANDON (-1)
84
85 /* psuedo error code indicating disconnect */
86 #define SLAPD_DISCONNECT (-2)
87
88
89 /* We assume "C" locale, that is US-ASCII */
90 #define ASCII_SPACE(c)  ( (c) == ' ' )
91 #define ASCII_LOWER(c)  ( (c) >= 'a' && (c) <= 'z' )
92 #define ASCII_UPPER(c)  ( (c) >= 'A' && (c) <= 'Z' )
93 #define ASCII_ALPHA(c)  ( ASCII_LOWER(c) || ASCII_UPPER(c) )
94 #define ASCII_DIGIT(c)  ( (c) >= '0' && (c) <= '9' )
95 #define ASCII_ALNUM(c)  ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
96 #define ASCII_PRINTABLE(c) ( (c) >= ' ' && (c) <= '~' )
97
98 #define SLAP_NIBBLE(c) ((c)&0x0f)
99 #define SLAP_ESCAPE_CHAR ('\\')
100 #define SLAP_ESCAPE_LO(c) ( "0123456789ABCDEF"[SLAP_NIBBLE(c)] )
101 #define SLAP_ESCAPE_HI(c) ( SLAP_ESCAPE_LO((c)>>4) )
102
103 #define FILTER_ESCAPE(c) ( (c) == '*' || (c) == '\\' \
104         || (c) == '(' || (c) == ')' || !ASCII_PRINTABLE(c) )
105
106 #define DN_ESCAPE(c)    ((c) == SLAP_ESCAPE_CHAR)
107 #define DN_SEPARATOR(c) ((c) == ',' || (c) == ';')
108 #define RDN_ATTRTYPEANDVALUE_SEPARATOR(c) ((c) == '+') /* RFC 2253 */
109 #define RDN_SEPARATOR(c) (DN_SEPARATOR(c) || RDN_ATTRTYPEANDVALUE_SEPARATOR(c))
110 #define RDN_NEEDSESCAPE(c)      ((c) == '\\' || (c) == '"')
111
112 #define DESC_LEADCHAR(c)        ( ASCII_ALPHA(c) )
113 #define DESC_CHAR(c)    ( ASCII_ALNUM(c) || (c) == '-' )
114 #define OID_LEADCHAR(c) ( ASCII_DIGIT(c) )
115 #define OID_SEPARATOR(c)        ( (c) == '.' )
116 #define OID_CHAR(c)     ( OID_LEADCHAR(c) || OID_SEPARATOR(c) )
117
118 #define ATTR_LEADCHAR(c)        ( DESC_LEADCHAR(c) || OID_LEADCHAR(c) )
119 #define ATTR_CHAR(c)    ( DESC_CHAR((c)) || (c) == '.' )
120
121 #define AD_LEADCHAR(c)  ( ATTR_CHAR(c) )
122 #define AD_CHAR(c)              ( ATTR_CHAR(c) || (c) == ';' )
123
124 #define SLAP_NUMERIC(c) ( ASCII_DIGIT(c) || ASCII_SPACE(c) )
125
126 #define SLAP_PRINTABLE(c)       ( ASCII_ALNUM(c) || (c) == '\'' || \
127         (c) == '(' || (c) == ')' || (c) == '+' || (c) == ',' || \
128         (c) == '-' || (c) == '.' || (c) == '/' || (c) == ':' || \
129         (c) == '?' || (c) == ' ' || (c) == '=' )
130 #define SLAP_PRINTABLES(c)      ( SLAP_PRINTABLE(c) || (c) == '$' )
131
132 /* must match in schema_init.c */
133 #define SLAPD_DN_SYNTAX                 "1.3.6.1.4.1.1466.115.121.1.12"
134 #define SLAPD_NAMEUID_SYNTAX    "1.3.6.1.4.1.1466.115.121.1.34"
135 #define SLAPD_GROUP_ATTR                "member"
136 #define SLAPD_GROUP_CLASS               "groupOfNames"
137 #define SLAPD_ROLE_ATTR                 "roleOccupant"
138 #define SLAPD_ROLE_CLASS                "organizationalRole"
139
140 #ifdef SLAPD_ACI_ENABLED
141 #define SLAPD_ACI_SYNTAX                "1.3.6.1.4.1.4203.666.2.1"
142 #endif
143
144 #define SLAPD_OCTETSTRING_SYNTAX "1.3.6.1.4.1.1466.115.121.1.40"
145
146 /* change this to "OpenLDAPset" */
147 #define SLAPD_ACI_SET_ATTR              "template"
148
149 #define SLAPD_TOP_OID                   "2.5.6.0"
150
151 LDAP_SLAPD_V (int) slap_debug;
152
153 typedef unsigned long slap_mask_t;
154
155 /* Security Strength Factor */
156 typedef unsigned slap_ssf_t;
157
158 typedef struct slap_ssf_set {
159         slap_ssf_t sss_ssf;
160         slap_ssf_t sss_transport;
161         slap_ssf_t sss_tls;
162         slap_ssf_t sss_sasl;
163         slap_ssf_t sss_update_ssf;
164         slap_ssf_t sss_update_transport;
165         slap_ssf_t sss_update_tls;
166         slap_ssf_t sss_update_sasl;
167 } slap_ssf_set_t;
168
169 /*
170  * Index types
171  */
172 #define SLAP_INDEX_TYPE           0x00FFUL
173 #define SLAP_INDEX_UNDEFINED      0x0001UL
174 #define SLAP_INDEX_PRESENT        0x0002UL
175 #define SLAP_INDEX_EQUALITY       0x0004UL
176 #define SLAP_INDEX_APPROX         0x0008UL
177 #define SLAP_INDEX_SUBSTR         0x0010UL
178 #define SLAP_INDEX_EXTENDED               0x0020UL
179
180 #define SLAP_INDEX_DEFAULT        SLAP_INDEX_EQUALITY
181
182 #define IS_SLAP_INDEX(mask, type)       (((mask) & (type)) == (type))
183
184 #define SLAP_INDEX_SUBSTR_TYPE    0x0F00UL
185
186 #define SLAP_INDEX_SUBSTR_INITIAL ( SLAP_INDEX_SUBSTR | 0x0100UL ) 
187 #define SLAP_INDEX_SUBSTR_ANY     ( SLAP_INDEX_SUBSTR | 0x0200UL )
188 #define SLAP_INDEX_SUBSTR_FINAL   ( SLAP_INDEX_SUBSTR | 0x0400UL )
189 #define SLAP_INDEX_SUBSTR_DEFAULT \
190         ( SLAP_INDEX_SUBSTR \
191         | SLAP_INDEX_SUBSTR_INITIAL \
192         | SLAP_INDEX_SUBSTR_ANY \
193         | SLAP_INDEX_SUBSTR_FINAL )
194
195 #define SLAP_INDEX_SUBSTR_MINLEN        2
196 #define SLAP_INDEX_SUBSTR_MAXLEN        4
197 #define SLAP_INDEX_SUBSTR_STEP  2
198
199 #define SLAP_INDEX_FLAGS         0xF000UL
200 #define SLAP_INDEX_NOSUBTYPES    0x1000UL /* don't use index w/ subtypes */
201 #define SLAP_INDEX_NOLANG        0x2000UL /* don't use index w/ lang */
202
203 /*
204  * there is a single index for each attribute.  these prefixes ensure
205  * that there is no collision among keys.
206  */
207 #define SLAP_INDEX_EQUALITY_PREFIX      '='     /* prefix for equality keys     */
208 #define SLAP_INDEX_APPROX_PREFIX        '~'             /* prefix for approx keys       */
209 #define SLAP_INDEX_SUBSTR_PREFIX        '*'             /* prefix for substring keys    */
210 #define SLAP_INDEX_SUBSTR_INITIAL_PREFIX '^'
211 #define SLAP_INDEX_SUBSTR_FINAL_PREFIX '$'
212 #define SLAP_INDEX_CONT_PREFIX          '.'             /* prefix for continuation keys */
213
214 #define SLAP_SYNTAX_MATCHINGRULES_OID   "1.3.6.1.4.1.1466.115.121.1.30"
215 #define SLAP_SYNTAX_ATTRIBUTETYPES_OID  "1.3.6.1.4.1.1466.115.121.1.3"
216 #define SLAP_SYNTAX_OBJECTCLASSES_OID   "1.3.6.1.4.1.1466.115.121.1.37"
217
218 /*
219  * represents schema information for a database
220  */
221 #define SLAP_SCHERR_OUTOFMEM            1
222 #define SLAP_SCHERR_CLASS_NOT_FOUND     2
223 #define SLAP_SCHERR_CLASS_BAD_USAGE     3
224 #define SLAP_SCHERR_CLASS_OPERATIONAL 4
225 #define SLAP_SCHERR_ATTR_NOT_FOUND      5
226 #define SLAP_SCHERR_ATTR_BAD_USAGE      6
227 #define SLAP_SCHERR_DUP_CLASS           7
228 #define SLAP_SCHERR_DUP_ATTR            8
229 #define SLAP_SCHERR_DUP_SYNTAX          9
230 #define SLAP_SCHERR_DUP_RULE            10
231 #define SLAP_SCHERR_NO_NAME                     11
232 #define SLAP_SCHERR_ATTR_INCOMPLETE     12
233 #define SLAP_SCHERR_MR_NOT_FOUND        13
234 #define SLAP_SCHERR_SYN_NOT_FOUND       14
235 #define SLAP_SCHERR_MR_INCOMPLETE       15
236 #define SLAP_SCHERR_NOT_SUPPORTED       16
237 #define SLAP_SCHERR_BAD_DESCR           17
238 #define SLAP_SCHERR_OIDM                        18
239 #define SLAP_SCHERR_LAST                        SLAP_SCHERR_OIDM
240
241 typedef union slap_sockaddr {
242         struct sockaddr sa_addr;
243         struct sockaddr_in sa_in_addr;
244 #ifdef LDAP_PF_INET6
245         struct sockaddr_in6 sa_in6_addr;
246 #endif
247 #ifdef LDAP_PF_LOCAL
248         struct sockaddr_un sa_un_addr;
249 #endif
250 } Sockaddr;
251
252 typedef struct slap_oid_macro {
253         struct berval som_oid;
254         char **som_names;
255         struct slap_oid_macro *som_next;
256 } OidMacro;
257
258 /* forward declarations */
259 struct slap_syntax;
260 struct slap_matching_rule;
261
262 typedef int slap_syntax_validate_func LDAP_P((
263         struct slap_syntax *syntax,
264         struct berval * in));
265
266 typedef int slap_syntax_transform_func LDAP_P((
267         struct slap_syntax *syntax,
268         struct berval * in,
269         struct berval * out));
270
271 typedef struct slap_syntax {
272         LDAPSyntax                      ssyn_syn;
273 #define ssyn_oid                ssyn_syn.syn_oid
274 #define ssyn_desc               ssyn_syn.syn_desc
275 #define ssyn_extensions         ssyn_syn.syn_extensions
276         ber_len_t       ssyn_oidlen;
277
278         unsigned int ssyn_flags;
279
280 #define SLAP_SYNTAX_NONE        0x0000U
281 #define SLAP_SYNTAX_BLOB        0x0001U /* syntax treated as blob (audio) */
282 #define SLAP_SYNTAX_BINARY      0x0002U /* binary transfer required (certificate) */
283 #define SLAP_SYNTAX_BER         0x0004U /* stored in BER encoding (certificate) */
284 #define SLAP_SYNTAX_HIDE        0x8000U /* hide (do not publish) */
285
286         slap_syntax_validate_func       *ssyn_validate;
287         slap_syntax_transform_func      *ssyn_normalize;
288         slap_syntax_transform_func      *ssyn_pretty;
289
290 #ifdef SLAPD_BINARY_CONVERSION
291         /* convert to and from binary */
292         slap_syntax_transform_func      *ssyn_ber2str;
293         slap_syntax_transform_func      *ssyn_str2ber;
294 #endif
295
296         struct slap_syntax              *ssyn_next;
297 } Syntax;
298
299 #define slap_syntax_is_flag(s,flag) ((int)((s)->ssyn_flags & (flag)) ? 1 : 0)
300 #define slap_syntax_is_blob(s)          slap_syntax_is_flag((s),SLAP_SYNTAX_BLOB)
301 #define slap_syntax_is_binary(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_BINARY)
302 #define slap_syntax_is_ber(s)           slap_syntax_is_flag((s),SLAP_SYNTAX_BER)
303 #define slap_syntax_is_hidden(s)        slap_syntax_is_flag((s),SLAP_SYNTAX_HIDE)
304
305 /* X -> Y Converter */
306 typedef int slap_mr_convert_func LDAP_P((
307         struct berval * in,
308         struct berval * out ));
309
310 /* Normalizer */
311 typedef int slap_mr_normalize_func LDAP_P((
312         slap_mask_t use,
313         struct slap_syntax *syntax, /* NULL if in is asserted value */
314         struct slap_matching_rule *mr,
315         struct berval * in,
316         struct berval * out ));
317
318 /* Match (compare) function */
319 typedef int slap_mr_match_func LDAP_P((
320         int *match,
321         slap_mask_t use,
322         struct slap_syntax *syntax,     /* syntax of stored value */
323         struct slap_matching_rule *mr,
324         struct berval * value,
325         void * assertValue ));
326
327 /* Index generation function */
328 typedef int slap_mr_indexer_func LDAP_P((
329         slap_mask_t use,
330         slap_mask_t mask,
331         struct slap_syntax *syntax,     /* syntax of stored value */
332         struct slap_matching_rule *mr,
333         struct berval *prefix,
334         BerVarray values,
335         BerVarray *keys ));
336
337 /* Filter index function */
338 typedef int slap_mr_filter_func LDAP_P((
339         slap_mask_t use,
340         slap_mask_t mask,
341         struct slap_syntax *syntax,     /* syntax of stored value */
342         struct slap_matching_rule *mr,
343         struct berval *prefix,
344         void * assertValue,
345         BerVarray *keys ));
346
347 typedef struct slap_matching_rule {
348         LDAPMatchingRule                smr_mrule;
349         ber_len_t                               smr_oidlen;
350         slap_mask_t                             smr_usage;
351
352 #define SLAP_MR_HIDE                    0x8000U
353
354 #define SLAP_MR_TYPE_MASK               0x0F00U
355 #define SLAP_MR_SUBTYPE_MASK    0x00F0U
356 #define SLAP_MR_USAGE                   0x000FU
357
358 #define SLAP_MR_NONE                    0x0000U
359 #define SLAP_MR_EQUALITY                0x0100U
360 #define SLAP_MR_ORDERING                0x0200U
361 #define SLAP_MR_SUBSTR                  0x0400U
362 #define SLAP_MR_EXT                             0x0800U
363
364 #define SLAP_MR_EQUALITY_APPROX ( SLAP_MR_EQUALITY | 0x0010U )
365 #define SLAP_MR_DN_FOLD                 0x0008U
366
367 #define SLAP_MR_SUBSTR_INITIAL  ( SLAP_MR_SUBSTR | 0x0010U )
368 #define SLAP_MR_SUBSTR_ANY              ( SLAP_MR_SUBSTR | 0x0020U )
369 #define SLAP_MR_SUBSTR_FINAL    ( SLAP_MR_SUBSTR | 0x0040U )
370
371 /*
372  * normally the provided value is expected to conform to
373  * assertion syntax specified in the matching rule, however
374  * at times (such as during individual value modification),
375  * the provided value is expected to conform to the
376  * attribute's value syntax.
377  */
378 #define SLAP_MR_ASSERTION_SYNTAX_MATCH                  0x0000U
379 #define SLAP_MR_VALUE_SYNTAX_MATCH                              0x0001U
380 #define SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH    0x0003U
381
382 #define SLAP_IS_MR_ASSERTION_SYNTAX_MATCH( usage ) \
383         (!((usage) & SLAP_MR_VALUE_SYNTAX_MATCH))
384 #define SLAP_IS_MR_VALUE_SYNTAX_MATCH( usage ) \
385         ((usage) & SLAP_MR_VALUE_SYNTAX_MATCH)
386
387 #define SLAP_IS_MR_VALUE_SYNTAX_CONVERTED_MATCH( usage ) \
388         (((usage) & SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH) \
389                 == SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH)
390 #define SLAP_IS_MR_VALUE_SYNTAX_NONCONVERTED_MATCH( usage ) \
391         (((usage) & SLAP_MR_VALUE_SYNTAX_CONVERTED_MATCH) \
392                 == SLAP_MR_VALUE_SYNTAX_MATCH)
393
394         Syntax                                  *smr_syntax;
395         slap_mr_convert_func    *smr_convert;
396         slap_mr_normalize_func  *smr_normalize;
397         slap_mr_match_func              *smr_match;
398         slap_mr_indexer_func    *smr_indexer;
399         slap_mr_filter_func             *smr_filter;
400
401         struct slap_matching_rule       *smr_associated;
402         struct slap_matching_rule       *smr_next;
403
404 #define smr_oid                         smr_mrule.mr_oid
405 #define smr_names                       smr_mrule.mr_names
406 #define smr_desc                        smr_mrule.mr_desc
407 #define smr_obsolete            smr_mrule.mr_obsolete
408 #define smr_syntax_oid          smr_mrule.mr_syntax_oid
409 #define smr_extensions          smr_mrule.mr_extensions
410 } MatchingRule;
411
412 struct slap_backend_db;
413 struct slap_entry;
414 struct slap_attr;
415
416 typedef int (AttributeTypeSchemaCheckFN)(
417         struct slap_backend_db *be,
418         struct slap_entry *e,
419         struct slap_attr *attr,
420         const char** text,
421         char *textbuf, size_t textlen );
422
423 typedef struct slap_attribute_type {
424         LDAPAttributeType               sat_atype;
425         struct berval                   sat_cname;
426         struct slap_attribute_type      *sat_sup;
427         struct slap_attribute_type      **sat_subtypes;
428         MatchingRule                    *sat_equality;
429         MatchingRule                    *sat_approx;
430         MatchingRule                    *sat_ordering;
431         MatchingRule                    *sat_substr;
432         Syntax                                  *sat_syntax;
433
434         AttributeTypeSchemaCheckFN      *sat_check;
435
436 #define SLAP_AT_NONE    0x0000U
437 #define SLAP_AT_HIDE    0x0001U /* hide attribute */
438         slap_mask_t                                     sat_flags;
439
440         struct slap_attribute_type      *sat_next;
441
442 #define sat_oid                         sat_atype.at_oid
443 #define sat_names                       sat_atype.at_names
444 #define sat_desc                        sat_atype.at_desc
445 #define sat_obsolete            sat_atype.at_obsolete
446 #define sat_sup_oid                     sat_atype.at_sup_oid
447 #define sat_equality_oid        sat_atype.at_equality_oid
448 #define sat_ordering_oid        sat_atype.at_ordering_oid
449 #define sat_substr_oid          sat_atype.at_substr_oid
450 #define sat_syntax_oid          sat_atype.at_syntax_oid
451 #define sat_single_value        sat_atype.at_single_value
452 #define sat_collective          sat_atype.at_collective
453 #define sat_no_user_mod         sat_atype.at_no_user_mod
454 #define sat_usage                       sat_atype.at_usage
455 #define sat_extensions          sat_atype.at_extensions
456
457         struct slap_attr_desc           *sat_ad;
458         ldap_pvt_thread_mutex_t         sat_ad_mutex;
459 } AttributeType;
460
461 #define is_at_operational(at)   ((at)->sat_usage)
462 #define is_at_single_value(at)  ((at)->sat_single_value)
463 #define is_at_collective(at)    ((at)->sat_collective)
464 #define is_at_obsolete(at)              ((at)->sat_obsolete)
465 #define is_at_no_user_mod(at)   ((at)->sat_no_user_mod)
466
467 struct slap_object_class;
468
469 typedef int (ObjectClassSchemaCheckFN)(
470         struct slap_backend_db *be,
471         struct slap_entry *e,
472         struct slap_object_class *oc,
473         const char** text,
474         char *textbuf, size_t textlen );
475
476 typedef struct slap_object_class {
477         LDAPObjectClass         soc_oclass;
478         struct slap_object_class        **soc_sups;
479         AttributeType                           **soc_required;
480         AttributeType                           **soc_allowed;
481         ObjectClassSchemaCheckFN        *soc_check;
482         slap_mask_t                                     soc_flags;
483 #define soc_oid                         soc_oclass.oc_oid
484 #define soc_names                       soc_oclass.oc_names
485 #define soc_desc                        soc_oclass.oc_desc
486 #define soc_obsolete            soc_oclass.oc_obsolete
487 #define soc_sup_oids            soc_oclass.oc_sup_oids
488 #define soc_kind                        soc_oclass.oc_kind
489 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
490 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
491 #define soc_extensions          soc_oclass.oc_extensions
492
493         struct slap_object_class        *soc_next;
494 } ObjectClass;
495
496 #define SLAP_OC_ALIAS           0x0001
497 #define SLAP_OC_REFERRAL        0x0002
498 #define SLAP_OC_SUBENTRY        0x0004
499 #define SLAP_OC_DYNAMICOBJECT   0x0008
500 #define SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY     0x0010
501 #define SLAP_OC__MASK           0x001F
502 #define SLAP_OC__END            0x0020
503 #define SLAP_OC_OPERATIONAL     0x4000
504 #define SLAP_OC_HIDE            0x8000
505
506 #ifdef LDAP_EXTENDED_SCHEMA
507 /*
508  * DIT content rule
509  */
510 typedef struct slap_content_rule {
511         LDAPContentRule         scr_crule;
512         ObjectClass                     *scr_sclass;
513         ObjectClass                     **scr_auxiliaries;      /* optional */
514         AttributeType           **scr_required;         /* optional */
515         AttributeType           **scr_allowed;          /* optional */
516         AttributeType           **scr_precluded;        /* optional */
517 #define scr_oid                 scr_crule.cr_oid
518 #define scr_names               scr_crule.cr_names
519 #define scr_desc                scr_crule.cr_desc
520 #define scr_obsolete            soc_oclass.cr_obsolete
521 #define scr_cr_oids_aux         soc_oclass.cr_oc_oids_aux
522 #define scr_cr_oids_must        soc_oclass.cr_at_oids_must
523 #define scr_cr_oids_may         soc_oclass.cr_at_oids_may
524 #define scr_cr_oids_not         soc_oclass.cr_at_oids_not
525 } ContentRule;
526 #endif
527
528 /*
529  * represents a recognized attribute description ( type + options )
530  */
531 typedef struct slap_attr_desc {
532         struct slap_attr_desc *ad_next;
533         AttributeType *ad_type;         /* attribute type, must be specified */
534         struct berval ad_cname;         /* canonical name, must be specified */
535         struct berval ad_lang;          /* empty if no language tags */
536         unsigned ad_flags;
537 #define SLAP_DESC_NONE                  0x00U
538 #define SLAP_DESC_BINARY                0x01U
539 #define SLAP_DESC_LANG_RANGE    0x80U
540 } AttributeDescription;
541
542 typedef struct slap_attr_name {
543         struct berval an_name;
544         AttributeDescription *an_desc;
545         ObjectClass *an_oc;
546 } AttributeName;
547
548 #define slap_ad_is_lang(ad)                     ( (ad)->ad_lang.bv_len != 0 )
549 #define slap_ad_is_lang_range(ad)       \
550         ( ((ad)->ad_flags & SLAP_DESC_LANG_RANGE) ? 1 : 0 )
551 #define slap_ad_is_binary(ad)           \
552         ( ((ad)->ad_flags & SLAP_DESC_BINARY) ? 1 : 0 )
553
554 /*
555  * pointers to schema elements used internally
556  */
557 struct slap_internal_schema {
558         /* objectClass */
559         ObjectClass *si_oc_top;
560         ObjectClass *si_oc_extensibleObject;
561         ObjectClass *si_oc_alias;
562         ObjectClass *si_oc_referral;
563         ObjectClass *si_oc_rootdse;
564         ObjectClass *si_oc_subentry;
565         ObjectClass *si_oc_subschema;
566         ObjectClass *si_oc_monitor;
567         ObjectClass *si_oc_collectiveAttributeSubentry;
568         ObjectClass *si_oc_dynamicObject;
569
570         /* objectClass attribute descriptions */
571         AttributeDescription *si_ad_objectClass;
572
573         /* operational attribute descriptions */
574         AttributeDescription *si_ad_structuralObjectClass;
575         AttributeDescription *si_ad_creatorsName;
576         AttributeDescription *si_ad_createTimestamp;
577         AttributeDescription *si_ad_modifiersName;
578         AttributeDescription *si_ad_modifyTimestamp;
579         AttributeDescription *si_ad_hasSubordinates;
580         AttributeDescription *si_ad_subschemaSubentry;
581         AttributeDescription *si_ad_collectiveSubentries;
582         AttributeDescription *si_ad_collectiveExclusions;
583         AttributeDescription *si_ad_entryUUID;
584         AttributeDescription *si_ad_entryCSN;
585
586         /* root DSE attribute descriptions */
587         AttributeDescription *si_ad_altServer;
588         AttributeDescription *si_ad_namingContexts;
589         AttributeDescription *si_ad_supportedControl;
590         AttributeDescription *si_ad_supportedExtension;
591         AttributeDescription *si_ad_supportedLDAPVersion;
592         AttributeDescription *si_ad_supportedSASLMechanisms;
593         AttributeDescription *si_ad_supportedFeatures;
594         AttributeDescription *si_ad_vendorName;
595         AttributeDescription *si_ad_vendorVersion;
596
597         /* subentry attribute descriptions */
598         AttributeDescription *si_ad_administrativeRole;
599         AttributeDescription *si_ad_subtreeSpecification;
600
601         /* subschema subentry attribute descriptions */
602         AttributeDescription *si_ad_ditStructureRules;
603         AttributeDescription *si_ad_ditContentRules;
604         AttributeDescription *si_ad_nameForms;
605         AttributeDescription *si_ad_objectClasses;
606         AttributeDescription *si_ad_attributeTypes;
607         AttributeDescription *si_ad_ldapSyntaxes;
608         AttributeDescription *si_ad_matchingRules;
609         AttributeDescription *si_ad_matchingRuleUse;
610
611         /* Aliases & Referrals */
612         AttributeDescription *si_ad_aliasedObjectName;
613         AttributeDescription *si_ad_ref;
614
615         /* Access Control Internals */
616         AttributeDescription *si_ad_entry;
617         AttributeDescription *si_ad_children;
618 #ifdef SLAPD_ACI_ENABLED
619         AttributeDescription *si_ad_aci;
620 #endif
621
622         /* dynamic entries */
623         AttributeDescription *si_ad_entryTtl;
624         AttributeDescription *si_ad_dynamicSubtrees;
625
626         /* Other attributes descriptions */
627         AttributeDescription *si_ad_distinguishedName;
628         AttributeDescription *si_ad_name;
629         AttributeDescription *si_ad_cn;
630         AttributeDescription *si_ad_userPassword;
631 #ifdef SLAPD_AUTHPASSWD
632         AttributeDescription *si_ad_authPassword;
633 #endif
634 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
635         AttributeDescription *si_ad_krbName;
636 #endif
637
638         /* Undefined Attribute Type */
639         AttributeType   *si_at_undefined;
640
641         /* Matching Rules */
642         MatchingRule    *si_mr_distinguishedNameMatch;
643         MatchingRule    *si_mr_integerMatch;
644
645         /* Syntaxes */
646         Syntax          *si_syn_octetString;
647         Syntax          *si_syn_distinguishedName;
648         Syntax          *si_syn_integer;
649 };
650
651 typedef struct slap_attr_assertion {
652         AttributeDescription    *aa_desc;
653         struct berval aa_value;
654 } AttributeAssertion;
655
656 typedef struct slap_ss_assertion {
657         AttributeDescription    *sa_desc;
658         struct berval           sa_initial;
659         struct berval           *sa_any;
660         struct berval           sa_final;
661 } SubstringsAssertion;
662
663 typedef struct slap_mr_assertion {
664         MatchingRule            *ma_rule;       /* optional */
665         struct berval           ma_rule_text;  /* optional */
666         AttributeDescription    *ma_desc;       /* optional */
667         int                                             ma_dnattrs; /* boolean */
668         struct berval           ma_value;       /* required */
669 } MatchingRuleAssertion;
670
671 /*
672  * represents a search filter
673  */
674 typedef struct slap_filter {
675         ber_tag_t       f_choice;       /* values taken from ldap.h, plus: */
676 #define SLAPD_FILTER_COMPUTED   ((ber_tag_t) -1)
677 #define SLAPD_FILTER_DN_ONE             ((ber_tag_t) -2)
678 #define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3)
679
680         union f_un_u {
681                 /* precomputed result */
682                 ber_int_t f_un_result;
683
684                 /* DN */
685                 struct berval *f_un_dn;
686
687                 /* present */
688                 AttributeDescription *f_un_desc;
689
690                 /* simple value assertion */
691                 AttributeAssertion *f_un_ava;
692
693                 /* substring assertion */
694                 SubstringsAssertion *f_un_ssa;
695
696                 /* matching rule assertion */
697                 MatchingRuleAssertion *f_un_mra;
698
699 #define f_dn                    f_un.f_un_dn
700 #define f_desc                  f_un.f_un_desc
701 #define f_ava                   f_un.f_un_ava
702 #define f_av_desc               f_un.f_un_ava->aa_desc
703 #define f_av_value              f_un.f_un_ava->aa_value
704 #define f_sub                   f_un.f_un_ssa
705 #define f_sub_desc              f_un.f_un_ssa->sa_desc
706 #define f_sub_initial   f_un.f_un_ssa->sa_initial
707 #define f_sub_any               f_un.f_un_ssa->sa_any
708 #define f_sub_final             f_un.f_un_ssa->sa_final
709 #define f_mra                   f_un.f_un_mra
710 #define f_mr_rule               f_un.f_un_mra->ma_rule
711 #define f_mr_rule_text  f_un.f_un_mra->ma_rule_text
712 #define f_mr_desc               f_un.f_un_mra->ma_desc
713 #define f_mr_value              f_un.f_un_mra->ma_value
714 #define f_mr_dnattrs    f_un.f_un_mra->ma_dnattrs
715
716                 /* and, or, not */
717                 struct slap_filter *f_un_complex;
718         } f_un;
719
720 #define f_result        f_un.f_un_result
721 #define f_and           f_un.f_un_complex
722 #define f_or            f_un.f_un_complex
723 #define f_not           f_un.f_un_complex
724 #define f_list          f_un.f_un_complex
725
726         struct slap_filter      *f_next;
727 } Filter;
728
729 /* compare routines can return undefined */
730 #define SLAPD_COMPARE_UNDEFINED ((ber_int_t) -1)
731
732 typedef struct slap_valuesreturnfilter {
733         ber_tag_t       f_choice;
734
735         union vrf_un_u {
736                 /* precomputed result */
737                 ber_int_t f_un_result;
738
739                 /* DN */
740                 char *f_un_dn;
741
742                 /* present */
743                 AttributeDescription *f_un_desc;
744
745                 /* simple value assertion */
746                 AttributeAssertion *f_un_ava;
747
748                 /* substring assertion */
749                 SubstringsAssertion *f_un_ssa;
750
751                 /* matching rule assertion */
752                 MatchingRuleAssertion *f_un_mra;
753         } f_un;
754
755         struct slap_valuesreturnfilter  *f_next;
756 } ValuesReturnFilter;
757
758 /*
759  * represents an attribute (description + values)
760  */
761 typedef struct slap_attr {
762         AttributeDescription *a_desc;
763         BerVarray       a_vals;
764         struct slap_attr        *a_next;
765         unsigned a_flags;
766 #define SLAP_ATTR_IXADD         0x1U
767 #define SLAP_ATTR_IXDEL         0x2U
768 } Attribute;
769
770
771 /*
772  * the id used in the indexes to refer to an entry
773  */
774 typedef unsigned long   ID;
775 #define NOID    ((ID)~0)
776
777 /*
778  * represents an entry in core
779  */
780 typedef struct slap_entry {
781         /*
782          * The ID field should only be changed before entry is
783          * inserted into a cache.  The ID value is backend
784          * specific.
785          */
786         ID              e_id;
787
788         struct berval e_name;   /* name (DN) of this entry */
789         struct berval e_nname;  /* normalized name (DN) of this entry */
790
791         /* for migration purposes */
792 #define e_dn e_name.bv_val
793 #define e_ndn e_nname.bv_val
794
795         Attribute       *e_attrs;       /* list of attributes + values */
796
797         slap_mask_t     e_ocflags;
798
799         struct berval   e_bv;           /* For entry_encode/entry_decode */
800
801         /* for use by the backend for any purpose */
802         void*   e_private;
803 } Entry;
804
805 /*
806  * A list of LDAPMods
807  */
808 typedef struct slap_mod {
809         int sm_op;
810         AttributeDescription *sm_desc;
811         struct berval sm_type;
812         BerVarray sm_bvalues;
813 } Modification;
814
815 typedef struct slap_mod_list {
816         Modification sml_mod;
817 #define sml_op          sml_mod.sm_op
818 #define sml_desc        sml_mod.sm_desc
819 #define sml_type        sml_mod.sm_type
820 #define sml_bvalues     sml_mod.sm_bvalues
821         struct slap_mod_list *sml_next;
822 } Modifications;
823
824 typedef struct slap_ldap_modlist {
825         LDAPMod ml_mod;
826         struct slap_ldap_modlist *ml_next;
827 #define ml_op           ml_mod.mod_op
828 #define ml_type         ml_mod.mod_type
829 #define ml_values       ml_mod.mod_values
830 #define ml_bvalues      ml_mod.mod_bvalues
831 } LDAPModList;
832
833 /*
834  * represents an access control list
835  */
836 typedef enum slap_access_e {
837         ACL_INVALID_ACCESS = -1,
838         ACL_NONE = 0,
839         ACL_AUTH,
840         ACL_COMPARE,
841         ACL_SEARCH,
842         ACL_READ,
843         ACL_WRITE
844 } slap_access_t;
845
846 typedef enum slap_control_e {
847         ACL_INVALID_CONTROL     = 0,
848         ACL_STOP,
849         ACL_CONTINUE,
850         ACL_BREAK
851 } slap_control_t;
852
853 typedef enum slap_style_e {
854         ACL_STYLE_REGEX = 0,
855         ACL_STYLE_BASE,
856         ACL_STYLE_ONE,
857         ACL_STYLE_SUBTREE,
858         ACL_STYLE_CHILDREN,
859         ACL_STYLE_ATTROF,
860
861         /* alternate names */
862         ACL_STYLE_EXACT = ACL_STYLE_BASE
863 } slap_style_t;
864
865 typedef struct slap_authz_info {
866         ber_tag_t       sai_method;             /* LDAP_AUTH_* from <ldap.h> */
867         struct berval   sai_mech;               /* SASL Mechanism */
868         struct berval   sai_dn;                 /* DN for reporting purposes */
869         struct berval   sai_ndn;                /* Normalized DN */
870
871         /* Security Strength Factors */
872         slap_ssf_t      sai_ssf;                        /* Overall SSF */
873         slap_ssf_t      sai_transport_ssf;      /* Transport SSF */
874         slap_ssf_t      sai_tls_ssf;            /* TLS SSF */
875         slap_ssf_t      sai_sasl_ssf;           /* SASL SSF */
876 } AuthorizationInformation;
877
878 /* the "by" part */
879 typedef struct slap_access {
880         slap_control_t a_type;
881
882 #define ACL_ACCESS2PRIV(access) (0x01U << (access))
883
884 #define ACL_PRIV_NONE                   ACL_ACCESS2PRIV( ACL_NONE )
885 #define ACL_PRIV_AUTH                   ACL_ACCESS2PRIV( ACL_AUTH )
886 #define ACL_PRIV_COMPARE                ACL_ACCESS2PRIV( ACL_COMPARE )
887 #define ACL_PRIV_SEARCH                 ACL_ACCESS2PRIV( ACL_SEARCH )
888 #define ACL_PRIV_READ                   ACL_ACCESS2PRIV( ACL_READ )
889 #define ACL_PRIV_WRITE                  ACL_ACCESS2PRIV( ACL_WRITE )
890
891 #define ACL_PRIV_MASK                   0x00ffUL
892
893 /* priv flags */
894 #define ACL_PRIV_LEVEL                  0x1000UL
895 #define ACL_PRIV_ADDITIVE               0x2000UL
896 #define ACL_PRIV_SUBSTRACTIVE   0x4000UL
897
898 /* invalid privs */
899 #define ACL_PRIV_INVALID                0x0UL
900
901 #define ACL_PRIV_ISSET(m,p)             (((m) & (p)) == (p))
902 #define ACL_PRIV_ASSIGN(m,p)    do { (m)  =  (p); } while(0)
903 #define ACL_PRIV_SET(m,p)               do { (m) |=  (p); } while(0)
904 #define ACL_PRIV_CLR(m,p)               do { (m) &= ~(p); } while(0)
905
906 #define ACL_INIT(m)                             ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
907 #define ACL_INVALIDATE(m)               ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
908
909 #define ACL_GRANT(m,a)                  ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
910
911 #define ACL_IS_INVALID(m)               ((m) == ACL_PRIV_INVALID)
912
913 #define ACL_IS_LEVEL(m)                 ACL_PRIV_ISSET((m),ACL_PRIV_LEVEL)
914 #define ACL_IS_ADDITIVE(m)              ACL_PRIV_ISSET((m),ACL_PRIV_ADDITIVE)
915 #define ACL_IS_SUBTRACTIVE(m)   ACL_PRIV_ISSET((m),ACL_PRIV_SUBSTRACTIVE)
916
917 #define ACL_LVL_NONE                    (ACL_PRIV_NONE|ACL_PRIV_LEVEL)
918 #define ACL_LVL_AUTH                    (ACL_PRIV_AUTH|ACL_LVL_NONE)
919 #define ACL_LVL_COMPARE                 (ACL_PRIV_COMPARE|ACL_LVL_AUTH)
920 #define ACL_LVL_SEARCH                  (ACL_PRIV_SEARCH|ACL_LVL_COMPARE)
921 #define ACL_LVL_READ                    (ACL_PRIV_READ|ACL_LVL_SEARCH)
922 #define ACL_LVL_WRITE                   (ACL_PRIV_WRITE|ACL_LVL_READ)
923
924 #define ACL_LVL(m,l)                    (((m)&ACL_PRIV_MASK) == ((l)&ACL_PRIV_MASK))
925 #define ACL_LVL_IS_NONE(m)              ACL_LVL((m),ACL_LVL_NONE)
926 #define ACL_LVL_IS_AUTH(m)              ACL_LVL((m),ACL_LVL_AUTH)
927 #define ACL_LVL_IS_COMPARE(m)   ACL_LVL((m),ACL_LVL_COMPARE)
928 #define ACL_LVL_IS_SEARCH(m)    ACL_LVL((m),ACL_LVL_SEARCH)
929 #define ACL_LVL_IS_READ(m)              ACL_LVL((m),ACL_LVL_READ)
930 #define ACL_LVL_IS_WRITE(m)             ACL_LVL((m),ACL_LVL_WRITE)
931
932 #define ACL_LVL_ASSIGN_NONE(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_NONE)
933 #define ACL_LVL_ASSIGN_AUTH(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_AUTH)
934 #define ACL_LVL_ASSIGN_COMPARE(m)       ACL_PRIV_ASSIGN((m),ACL_LVL_COMPARE)
935 #define ACL_LVL_ASSIGN_SEARCH(m)        ACL_PRIV_ASSIGN((m),ACL_LVL_SEARCH)
936 #define ACL_LVL_ASSIGN_READ(m)          ACL_PRIV_ASSIGN((m),ACL_LVL_READ)
937 #define ACL_LVL_ASSIGN_WRITE(m)         ACL_PRIV_ASSIGN((m),ACL_LVL_WRITE)
938
939         slap_mask_t     a_access_mask;
940
941         AuthorizationInformation        a_authz;
942 #define a_dn_pat        a_authz.sai_dn
943
944         slap_style_t a_dn_style;
945         AttributeDescription    *a_dn_at;
946         int                     a_dn_self;
947         int                     a_dn_expand;
948
949         slap_style_t a_peername_style;
950         struct berval   a_peername_pat;
951         slap_style_t a_sockname_style;
952         struct berval   a_sockname_pat;
953
954         slap_style_t a_domain_style;
955         struct berval   a_domain_pat;
956         int             a_domain_expand;
957
958         slap_style_t a_sockurl_style;
959         struct berval   a_sockurl_pat;
960         slap_style_t a_set_style;
961         struct berval   a_set_pat;
962
963 #ifdef SLAPD_ACI_ENABLED
964         AttributeDescription    *a_aci_at;
965 #endif
966
967         /* ACL Groups */
968         slap_style_t a_group_style;
969         struct berval   a_group_pat;
970         ObjectClass                             *a_group_oc;
971         AttributeDescription    *a_group_at;
972
973         struct slap_access      *a_next;
974 } Access;
975
976 /* the "to" part */
977 typedef struct slap_acl {
978         /* "to" part: the entries this acl applies to */
979         Filter          *acl_filter;
980         slap_style_t acl_dn_style;
981         regex_t         acl_dn_re;
982         struct berval   acl_dn_pat;
983         AttributeName   *acl_attrs;
984
985         /* "by" part: list of who has what access to the entries */
986         Access  *acl_access;
987
988         struct slap_acl *acl_next;
989 } AccessControl;
990
991 typedef struct slap_acl_state {
992         unsigned as_recorded;
993 #define ACL_STATE_NOT_RECORDED                  0x0
994 #define ACL_STATE_RECORDED_VD                   0x1
995 #define ACL_STATE_RECORDED_NV                   0x2
996 #define ACL_STATE_RECORDED                              0x3
997
998         /* Access state */
999         AccessControl *as_vd_acl;
1000         slap_mask_t as_vd_acl_mask;
1001         regmatch_t as_vd_acl_matches[MAXREMATCHES];
1002         int as_vd_acl_count;
1003
1004         Access *as_vd_access;
1005         int as_vd_access_count;
1006
1007         int as_result;
1008 } AccessControlState;
1009 #define ACL_STATE_INIT { ACL_STATE_NOT_RECORDED, NULL, 0UL, { { 0, 0 } }, 0, NULL, 0, 0 }
1010
1011 /*
1012  * replog moddn param structure
1013  */
1014 struct slap_replog_moddn {
1015         struct berval *newrdn;
1016         int     deloldrdn;
1017         struct berval *newsup;
1018 };
1019
1020 /*
1021  * Backend-info
1022  * represents a backend 
1023  */
1024
1025 typedef struct slap_backend_info BackendInfo;   /* per backend type */
1026 typedef struct slap_backend_db BackendDB;               /* per backend database */
1027
1028 LDAP_SLAPD_V (int) nBackendInfo;
1029 LDAP_SLAPD_V (int) nBackendDB;
1030 LDAP_SLAPD_V (BackendInfo *) backendInfo;
1031 LDAP_SLAPD_V (BackendDB *) backendDB;
1032
1033 LDAP_SLAPD_V (int) slapMode;    
1034 #define SLAP_UNDEFINED_MODE     0x0000
1035 #define SLAP_SERVER_MODE        0x0001
1036 #define SLAP_TOOL_MODE          0x0002
1037 #define SLAP_MODE                       0x0003
1038
1039 #define SLAP_TRUNCATE_MODE      0x0100
1040
1041 struct slap_replica_info {
1042         char *ri_host;                          /* supersedes be_replica */
1043         BerVarray ri_nsuffix;   /* array of suffixes this replica accepts */
1044         AttributeName *ri_attrs;        /* attrs to replicate, NULL=all */
1045         int ri_exclude;                 /* 1 => exclude ri_attrs */
1046 };
1047
1048 struct slap_limits_set {
1049         /* time limits */
1050         int     lms_t_soft;
1051         int     lms_t_hard;
1052
1053         /* size limits */
1054         int     lms_s_soft;
1055         int     lms_s_hard;
1056         int     lms_s_unchecked;
1057 };
1058
1059 struct slap_limits {
1060         int     lm_type;        /* type of pattern */
1061 #define SLAP_LIMITS_UNDEFINED   0x0000
1062 #define SLAP_LIMITS_EXACT       0x0001
1063 #define SLAP_LIMITS_BASE        SLAP_LIMITS_EXACT
1064 #define SLAP_LIMITS_ONE         0x0002
1065 #define SLAP_LIMITS_SUBTREE     0x0003
1066 #define SLAP_LIMITS_CHILDREN    0x0004
1067 #define SLAP_LIMITS_REGEX       0x0005
1068 #define SLAP_LIMITS_ANONYMOUS   0x0006
1069 #define SLAP_LIMITS_USERS       0x0007
1070 #define SLAP_LIMITS_ANY         0x0008
1071         regex_t lm_dn_regex;            /* regex data for REGEX */
1072
1073         /*
1074          * normalized DN for EXACT, BASE, ONE, SUBTREE, CHILDREN;
1075          * pattern for REGEX; NULL for ANONYMOUS, USERS
1076          */
1077         struct berval lm_dn_pat;
1078
1079         struct slap_limits_set  lm_limits;
1080 };
1081
1082 /* temporary aliases */
1083 typedef BackendDB Backend;
1084 #define nbackends nBackendDB
1085 #define backends backendDB
1086
1087 struct slap_backend_db {
1088         BackendInfo     *bd_info;       /* pointer to shared backend info */
1089
1090         /* BackendInfo accessors */
1091 #define         be_config       bd_info->bi_db_config
1092 #define         be_type         bd_info->bi_type
1093
1094 #define         be_bind         bd_info->bi_op_bind
1095 #define         be_unbind       bd_info->bi_op_unbind
1096 #define         be_add          bd_info->bi_op_add
1097 #define         be_compare      bd_info->bi_op_compare
1098 #define         be_delete       bd_info->bi_op_delete
1099 #define         be_modify       bd_info->bi_op_modify
1100 #define         be_modrdn       bd_info->bi_op_modrdn
1101 #define         be_search       bd_info->bi_op_search
1102
1103 #define         be_extended     bd_info->bi_extended
1104
1105 #define         be_release      bd_info->bi_entry_release_rw
1106 #define         be_chk_referrals        bd_info->bi_chk_referrals
1107 #define         be_group        bd_info->bi_acl_group
1108 #define         be_attribute    bd_info->bi_acl_attribute
1109 #define         be_operational  bd_info->bi_operational
1110
1111 #define         be_controls     bd_info->bi_controls
1112
1113 #define         be_connection_init      bd_info->bi_connection_init
1114 #define         be_connection_destroy   bd_info->bi_connection_destroy
1115
1116 #ifdef SLAPD_TOOLS
1117 #define         be_entry_open bd_info->bi_tool_entry_open
1118 #define         be_entry_close bd_info->bi_tool_entry_close
1119 #define         be_entry_first bd_info->bi_tool_entry_first
1120 #define         be_entry_next bd_info->bi_tool_entry_next
1121 #define         be_entry_reindex bd_info->bi_tool_entry_reindex
1122 #define         be_entry_get bd_info->bi_tool_entry_get
1123 #define         be_entry_put bd_info->bi_tool_entry_put
1124 #define         be_sync bd_info->bi_tool_sync
1125 #endif
1126
1127 #define SLAP_BFLAG_NOLASTMOD            0x0001U
1128 #define SLAP_BFLAG_GLUE_INSTANCE        0x0010U /* a glue backend */
1129 #define SLAP_BFLAG_GLUE_SUBORDINATE     0x0020U /* child of a glue hierarchy */
1130 #define SLAP_BFLAG_GLUE_LINKED          0x0040U /* child is connected to parent */
1131 #define SLAP_BFLAG_ALIASES              0x0100U
1132 #define SLAP_BFLAG_REFERRALS    0x0200U
1133 #define SLAP_BFLAG_SUBENTRIES   0x0400U
1134 #define SLAP_BFLAG_MONITOR              0x1000U
1135 #define SLAP_BFLAG_DYNAMIC              0x2000U
1136         slap_mask_t     be_flags;
1137 #define SLAP_LASTMOD(be)        (!((be)->be_flags & SLAP_BFLAG_NOLASTMOD))
1138 #define SLAP_ALIASES(be)        ((be)->be_flags & SLAP_BFLAG_ALIASES)
1139 #define SLAP_REFERRALS(be)      ((be)->be_flags & SLAP_BFLAG_REFERRALS)
1140 #define SLAP_SUBENTRIES(be)     ((be)->be_flags & SLAP_BFLAG_SUBENTRIES)
1141 #define SLAP_MONITOR(be)        ((be)->be_flags & SLAP_BFLAG_MONITOR)
1142 #define SLAP_DYNAMIC(be)        ((be)->be_flags & SLAP_BFLAG_DYNAMIC)
1143
1144         slap_mask_t     be_restrictops;         /* restriction operations */
1145 #define SLAP_RESTRICT_OP_ADD            0x0001U
1146 #define SLAP_RESTRICT_OP_BIND           0x0002U
1147 #define SLAP_RESTRICT_OP_COMPARE        0x0004U
1148 #define SLAP_RESTRICT_OP_DELETE         0x0008U
1149 #define SLAP_RESTRICT_OP_EXTENDED       0x0010U
1150 #define SLAP_RESTRICT_OP_MODIFY         0x0020U
1151 #define SLAP_RESTRICT_OP_RENAME         0x0040U
1152 #define SLAP_RESTRICT_OP_SEARCH         0x0080U
1153
1154 #define SLAP_RESTRICT_OP_READS  \
1155         ( SLAP_RESTRICT_OP_COMPARE    \
1156         | SLAP_RESTRICT_OP_SEARCH )
1157 #define SLAP_RESTRICT_OP_WRITES \
1158         ( SLAP_RESTRICT_OP_ADD    \
1159         | SLAP_RESTRICT_OP_DELETE \
1160         | SLAP_RESTRICT_OP_MODIFY \
1161         | SLAP_RESTRICT_OP_RENAME )
1162
1163 #define SLAP_ALLOW_BIND_V2                      0x0001U /* LDAPv2 bind */
1164 #define SLAP_ALLOW_BIND_ANON_CRED       0x0002U /* cred should be empty */
1165 #define SLAP_ALLOW_BIND_ANON_DN         0x0003U /* dn should be empty */
1166
1167 #define SLAP_DISALLOW_BIND_ANON         0x0001U /* no anonymous */
1168 #define SLAP_DISALLOW_BIND_SIMPLE       0x0002U /* simple authentication */
1169 #define SLAP_DISALLOW_BIND_KRBV4        0x0004U /* Kerberos V4 authentication */
1170
1171 #define SLAP_DISALLOW_TLS_2_ANON        0x0010U /* StartTLS -> Anonymous */
1172 #define SLAP_DISALLOW_TLS_AUTHC         0x0020U /* TLS while authenticated */
1173
1174         slap_mask_t     be_requires;    /* pre-operation requirements */
1175 #define SLAP_REQUIRE_BIND               0x0001U /* bind before op */
1176 #define SLAP_REQUIRE_LDAP_V3    0x0002U /* LDAPv3 before op */
1177 #define SLAP_REQUIRE_AUTHC              0x0004U /* authentication before op */
1178 #define SLAP_REQUIRE_SASL               0x0008U /* SASL before op  */
1179 #define SLAP_REQUIRE_STRONG             0x0010U /* strong authentication before op */
1180
1181         /* Required Security Strength Factor */
1182         slap_ssf_set_t be_ssf_set;
1183
1184         /* these should be renamed from be_ to bd_ */
1185         BerVarray       be_suffix;      /* the DN suffixes of data in this backend */
1186         BerVarray       be_nsuffix;     /* the normalized DN suffixes in this backend */
1187         BerVarray       be_suffixAlias; /* pairs of DN suffix aliases and deref values */
1188         struct berval be_rootdn;        /* the magic "root" name (DN) for this db */
1189         struct berval be_rootndn;       /* the magic "root" normalized name (DN) for this db */
1190         struct berval be_rootpw;        /* the magic "root" password for this db        */
1191         unsigned int be_max_deref_depth;       /* limit for depth of an alias deref  */
1192 #define be_sizelimit    be_def_limit.lms_s_soft
1193 #define be_timelimit    be_def_limit.lms_t_soft
1194         struct slap_limits_set be_def_limit; /* default limits */
1195         struct slap_limits **be_limits; /* regex-based size and time limits */
1196         AccessControl *be_acl;  /* access control list for this backend    */
1197         slap_access_t   be_dfltaccess;  /* access given if no acl matches          */
1198         struct slap_replica_info **be_replica;  /* replicas of this backend (in master) */
1199         char    *be_replogfile; /* replication log file (in master)        */
1200         struct berval be_update_ndn;    /* allowed to make changes (in replicas) */
1201         BerVarray       be_update_refs; /* where to refer modifying clients to */
1202         char    *be_realm;
1203         void    *be_private;    /* anything the backend database needs     */
1204 };
1205
1206 struct slap_conn;
1207 struct slap_op;
1208
1209 /* Backend function typedefs */
1210 typedef int (BI_init) LDAP_P((BackendInfo *bi));
1211 typedef int (BI_config) LDAP_P((BackendInfo *bi,
1212         const char *fname, int lineno,
1213         int argc, char **argv));
1214 typedef int (BI_open) LDAP_P((BackendInfo *bi));
1215 typedef int (BI_close) LDAP_P((BackendInfo *bi));
1216 typedef int (BI_destroy) LDAP_P((BackendInfo *bi));
1217
1218 typedef int (BI_db_init) LDAP_P((Backend *bd));
1219 typedef int (BI_db_config) LDAP_P((Backend *bd,
1220         const char *fname, int lineno,
1221         int argc, char **argv));
1222 typedef int (BI_db_open) LDAP_P((Backend *bd));
1223 typedef int (BI_db_close) LDAP_P((Backend *bd));
1224 typedef int (BI_db_destroy) LDAP_P((Backend *bd));
1225
1226 typedef int (BI_op_bind)  LDAP_P(( BackendDB *bd,
1227                 struct slap_conn *c, struct slap_op *o,
1228                 struct berval *dn, struct berval *ndn, int method,
1229                 struct berval *cred, struct berval *edn ));
1230 typedef int (BI_op_unbind) LDAP_P((BackendDB *bd,
1231                 struct slap_conn *c, struct slap_op *o ));
1232 typedef int (BI_op_search) LDAP_P((BackendDB *bd,
1233                 struct slap_conn *c, struct slap_op *o,
1234                 struct berval *base, struct berval *nbase,
1235                 int scope, int deref,
1236                 int slimit, int tlimit,
1237                 Filter *f, struct berval *filterstr,
1238                 AttributeName *attrs, int attrsonly));
1239 typedef int (BI_op_compare)LDAP_P((BackendDB *bd,
1240                 struct slap_conn *c, struct slap_op *o,
1241                 struct berval *dn, struct berval *ndn,
1242                 AttributeAssertion *ava));
1243 typedef int (BI_op_modify) LDAP_P((BackendDB *bd,
1244                 struct slap_conn *c, struct slap_op *o,
1245                 struct berval *dn, struct berval *ndn,
1246                 Modifications *m));
1247 typedef int (BI_op_modrdn) LDAP_P((BackendDB *bd,
1248                 struct slap_conn *c, struct slap_op *o,
1249                 struct berval *dn, struct berval *ndn,
1250                 struct berval *newrdn, struct berval *nnewrdn,
1251                 int deleteoldrdn,
1252                 struct berval *newSup, struct berval *nnewSup ));
1253 typedef int (BI_op_add)    LDAP_P((BackendDB *bd,
1254                 struct slap_conn *c, struct slap_op *o,
1255                 Entry *e));
1256 typedef int (BI_op_delete) LDAP_P((BackendDB *bd,
1257                 struct slap_conn *c, struct slap_op *o,
1258                 struct berval *dn, struct berval *ndn));
1259 typedef int (BI_op_abandon) LDAP_P((BackendDB *bd,
1260                 struct slap_conn *c, struct slap_op *o,
1261                 ber_int_t msgid));
1262
1263 typedef int (BI_op_extended) LDAP_P((
1264     BackendDB           *be,
1265     struct slap_conn    *conn,
1266     struct slap_op              *op,
1267         const char              *reqoid,
1268     struct berval * reqdata,
1269         char            **rspoid,
1270     struct berval ** rspdata,
1271         LDAPControl *** rspctrls,
1272         const char **   text,
1273         BerVarray *refs ));
1274
1275 typedef int (BI_entry_release_rw) LDAP_P((BackendDB *bd,
1276                 struct slap_conn *c, struct slap_op *o,
1277                 Entry *e, int rw));
1278
1279 typedef int (BI_chk_referrals) LDAP_P((BackendDB *bd,
1280                 struct slap_conn *c, struct slap_op *o,
1281                 struct berval *dn, struct berval *ndn,
1282                 const char **text ));
1283
1284 typedef int (BI_acl_group)  LDAP_P((Backend *bd,
1285                 struct slap_conn *c, struct slap_op *o,
1286                 Entry *e,
1287                 struct berval *bdn,
1288                 struct berval *edn,
1289                 ObjectClass *group_oc,
1290                 AttributeDescription *group_at ));
1291
1292 typedef int (BI_acl_attribute)  LDAP_P((Backend *bd,
1293                 struct slap_conn *c, struct slap_op *o,
1294                 Entry *e, struct berval *edn,
1295                 AttributeDescription *entry_at,
1296                 BerVarray *vals ));
1297
1298 typedef int (BI_operational)  LDAP_P((Backend *bd,
1299                 struct slap_conn *c, struct slap_op *o,
1300                 Entry *e, AttributeName *attrs, int opattrs, Attribute **a ));
1301
1302 typedef int (BI_connection_init) LDAP_P((BackendDB *bd,
1303                 struct slap_conn *c));
1304 typedef int (BI_connection_destroy) LDAP_P((BackendDB *bd,
1305                 struct slap_conn *c));
1306
1307 typedef int (BI_tool_entry_open) LDAP_P(( BackendDB *be, int mode ));
1308 typedef int (BI_tool_entry_close) LDAP_P(( BackendDB *be ));
1309 typedef ID (BI_tool_entry_first) LDAP_P(( BackendDB *be ));
1310 typedef ID (BI_tool_entry_next) LDAP_P(( BackendDB *be ));
1311 typedef Entry* (BI_tool_entry_get) LDAP_P(( BackendDB *be, ID id ));
1312 typedef ID (BI_tool_entry_put) LDAP_P(( BackendDB *be, Entry *e, 
1313                         struct berval *text ));
1314 typedef int (BI_tool_entry_reindex) LDAP_P(( BackendDB *be, ID id ));
1315 typedef int (BI_tool_sync) LDAP_P(( BackendDB *be ));
1316
1317 struct slap_backend_info {
1318         char    *bi_type; /* type of backend */
1319
1320         /*
1321          * per backend type routines:
1322          * bi_init: called to allocate a backend_info structure,
1323          *              called once BEFORE configuration file is read.
1324          *              bi_init() initializes this structure hence is
1325          *              called directly from be_initialize()
1326          * bi_config: called per 'backend' specific option
1327          *              all such options must before any 'database' options
1328          *              bi_config() is called only from read_config()
1329          * bi_open: called to open each database, called
1330          *              once AFTER configuration file is read but
1331          *              BEFORE any bi_db_open() calls.
1332          *              bi_open() is called from backend_startup()
1333          * bi_close: called to close each database, called
1334          *              once during shutdown after all bi_db_close calls.
1335          *              bi_close() is called from backend_shutdown()
1336          * bi_destroy: called to destroy each database, called
1337          *              once during shutdown after all bi_db_destroy calls.
1338          *              bi_destory() is called from backend_destroy()
1339          */
1340         BI_init *bi_init;
1341         BI_config       *bi_config;
1342         BI_open *bi_open;
1343         BI_close        *bi_close;
1344         BI_destroy      *bi_destroy;
1345
1346         /*
1347          * per database routines:
1348          * bi_db_init: called to initialize each database,
1349          *      called upon reading 'database <type>' 
1350          *      called only from backend_db_init()
1351          * bi_db_config: called to configure each database,
1352          *  called per database to handle per database options
1353          *      called only from read_config()
1354          * bi_db_open: called to open each database
1355          *      called once per database immediately AFTER bi_open()
1356          *      calls but before daemon startup.
1357          *  called only by backend_startup()
1358          * bi_db_close: called to close each database
1359          *      called once per database during shutdown but BEFORE
1360          *  any bi_close call.
1361          *  called only by backend_shutdown()
1362          * bi_db_destroy: called to destroy each database
1363          *  called once per database during shutdown AFTER all
1364          *  bi_close calls but before bi_destory calls.
1365          *  called only by backend_destory()
1366          */
1367         BI_db_init      *bi_db_init;
1368         BI_db_config    *bi_db_config;
1369         BI_db_open      *bi_db_open;
1370         BI_db_close     *bi_db_close;
1371         BI_db_destroy   *bi_db_destroy;
1372
1373         /* LDAP Operations Handling Routines */
1374         BI_op_bind      *bi_op_bind;
1375         BI_op_unbind    *bi_op_unbind;
1376         BI_op_search    *bi_op_search;
1377         BI_op_compare   *bi_op_compare;
1378         BI_op_modify    *bi_op_modify;
1379         BI_op_modrdn    *bi_op_modrdn;
1380         BI_op_add       *bi_op_add;
1381         BI_op_delete    *bi_op_delete;
1382         BI_op_abandon   *bi_op_abandon;
1383
1384         /* Extended Operations Helper */
1385         BI_op_extended  *bi_extended;
1386
1387         /* Auxilary Functions */
1388         BI_entry_release_rw     *bi_entry_release_rw;
1389         BI_chk_referrals        *bi_chk_referrals;
1390
1391         BI_acl_group    *bi_acl_group;
1392         BI_acl_attribute        *bi_acl_attribute;
1393
1394         BI_operational  *bi_operational;
1395
1396         BI_connection_init      *bi_connection_init;
1397         BI_connection_destroy   *bi_connection_destroy;
1398
1399         /* hooks for slap tools */
1400         BI_tool_entry_open      *bi_tool_entry_open;
1401         BI_tool_entry_close     *bi_tool_entry_close;
1402         BI_tool_entry_first     *bi_tool_entry_first;
1403         BI_tool_entry_next      *bi_tool_entry_next;
1404         BI_tool_entry_get       *bi_tool_entry_get;
1405         BI_tool_entry_put       *bi_tool_entry_put;
1406         BI_tool_entry_reindex   *bi_tool_entry_reindex;
1407         BI_tool_sync            *bi_tool_sync;
1408
1409 #define SLAP_INDEX_ADD_OP               0x0001
1410 #define SLAP_INDEX_DELETE_OP    0x0002
1411
1412         char **bi_controls;             /* supported controls */
1413
1414         unsigned int bi_nDB;    /* number of databases of this type */
1415         void    *bi_private;    /* anything the backend type needs */
1416 };
1417
1418 #define c_authtype      c_authz.sai_method
1419 #define c_authmech      c_authz.sai_mech
1420 #define c_dn            c_authz.sai_dn
1421 #define c_ndn           c_authz.sai_ndn
1422 #define c_ssf                   c_authz.sai_ssf
1423 #define c_transport_ssf c_authz.sai_transport_ssf
1424 #define c_tls_ssf               c_authz.sai_tls_ssf
1425 #define c_sasl_ssf              c_authz.sai_sasl_ssf
1426
1427 #define o_authtype      o_authz.sai_method
1428 #define o_authmech      o_authz.sai_mech
1429 #define o_dn            o_authz.sai_dn
1430 #define o_ndn           o_authz.sai_ndn
1431 #define o_ssf                   o_authz.sai_ssf
1432 #define o_transport_ssf o_authz.sai_transport_ssf
1433 #define o_tls_ssf               o_authz.sai_tls_ssf
1434 #define o_sasl_ssf              o_authz.sai_sasl_ssf
1435
1436 typedef void (slap_response)( struct slap_conn *, struct slap_op *,
1437         ber_tag_t, ber_int_t, ber_int_t, const char *, const char *,
1438         BerVarray, const char *, struct berval *,
1439         struct berval *, LDAPControl ** );
1440
1441 typedef void (slap_sresult)( struct slap_conn *, struct slap_op *,
1442         ber_int_t, const char *, const char *, BerVarray,
1443         LDAPControl **, int nentries);
1444
1445 typedef int (slap_sendentry)( BackendDB *, struct slap_conn *,
1446         struct slap_op *, Entry *, AttributeName *, int, LDAPControl **);
1447
1448 typedef struct slap_callback {
1449         slap_response *sc_response;
1450         slap_sresult *sc_sresult;
1451         slap_sendentry *sc_sendentry;
1452         void *sc_private;
1453 } slap_callback;
1454
1455 /*
1456  * Paged Results state
1457  */
1458 typedef unsigned long PagedResultsCookie;
1459 typedef struct slap_paged_state {
1460         Backend *ps_be;
1461         PagedResultsCookie ps_cookie;
1462         ID ps_id;
1463 } PagedResultsState;
1464
1465 /*
1466  * represents an operation pending from an ldap client
1467  */
1468 typedef struct slap_op {
1469         unsigned long o_opid;   /* id of this operation */
1470         unsigned long o_connid; /* id of conn initiating this op */
1471
1472         ber_int_t       o_msgid;        /* msgid of the request */
1473         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
1474         ber_tag_t       o_tag;          /* tag of the request */
1475         time_t          o_time;         /* time op was initiated */
1476
1477         ldap_pvt_thread_t       o_tid;  /* thread handling this op */
1478
1479         volatile sig_atomic_t o_abandon;        /* abandon flag */
1480
1481 #define SLAP_NO_CONTROL 0
1482 #define SLAP_NONCRITICAL_CONTROL 1
1483 #define SLAP_CRITICAL_CONTROL 2
1484         char o_managedsait;
1485         char o_noop;
1486         char o_subentries;
1487         char o_subentries_visibility;
1488         char o_valuesreturnfilter;
1489
1490         char o_pagedresults;
1491         ber_int_t o_pagedresults_size;
1492         PagedResultsState o_pagedresults_state;
1493
1494 #ifdef LDAP_CONNECTIONLESS
1495         Sockaddr        o_peeraddr;     /* UDP peer address               */
1496 #endif
1497         AuthorizationInformation o_authz;
1498
1499         BerElement      *o_ber;         /* ber of the request             */
1500         slap_callback   *o_callback;    /* callback pointers */
1501         LDAPControl     **o_ctrls;       /* controls */
1502
1503         void    *o_private;     /* anything the backend needs */
1504
1505         LDAP_STAILQ_ENTRY(slap_op)      o_next; /* next operation in list         */
1506         ValuesReturnFilter *vrFilter; /* Structure represents ValuesReturnFilter */
1507 } Operation;
1508
1509 #define get_manageDSAit(op)                             ((int)(op)->o_managedsait)
1510 #define get_subentries(op)                              ((int)(op)->o_subentries)
1511 #define get_subentries_visibility(op)   ((int)(op)->o_subentries_visibility)
1512
1513 /*
1514  * Caches the result of a backend_group check for ACL evaluation
1515  */
1516 typedef struct slap_gacl {
1517         struct slap_gacl *ga_next;
1518         Backend *ga_be;
1519         ObjectClass *ga_oc;
1520         AttributeDescription *ga_at;
1521         int ga_res;
1522         ber_len_t ga_len;
1523         char ga_ndn[1];
1524 } GroupAssertion;
1525
1526 /*
1527  * represents a connection from an ldap client
1528  */
1529 typedef struct slap_conn {
1530         int                     c_struct_state; /* structure management state */
1531         int                     c_conn_state;   /* connection state */
1532
1533         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
1534         Sockbuf         *c_sb;                  /* ber connection stuff           */
1535
1536         /* only can be changed by connect_init */
1537         time_t          c_starttime;    /* when the connection was opened */
1538         time_t          c_activitytime; /* when the connection was last used */
1539         unsigned long           c_connid;       /* id of this connection for stats*/
1540
1541         struct berval   c_listener_url; /* listener URL */
1542         struct berval   c_peer_domain;  /* DNS name of client */
1543         struct berval   c_peer_name;    /* peer name (trans=addr:port) */
1544         struct berval   c_sock_name;    /* sock name (trans=addr:port) */
1545
1546         /* only can be changed by binding thread */
1547         int             c_sasl_bind_in_progress;        /* multi-op bind in progress */
1548         struct berval   c_sasl_bind_mech;                       /* mech in progress */
1549         struct berval   c_cdn;
1550
1551         /* authorization backend */
1552         Backend *c_authz_backend;
1553
1554         AuthorizationInformation c_authz;
1555         GroupAssertion *c_groups;
1556
1557         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
1558
1559         LDAP_STAILQ_HEAD(c_o, slap_op) c_ops;   /* list of operations being processed */
1560         LDAP_STAILQ_HEAD(c_po, slap_op) c_pending_ops;  /* list of pending operations */
1561
1562         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
1563         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
1564
1565         BerElement      *c_currentber;  /* ber we're attempting to read */
1566         int             c_writewaiter;  /* true if writer is waiting */
1567
1568 #ifdef LDAP_CONNECTIONLESS
1569         int     c_is_udp;               /* true if this is (C)LDAP over UDP */
1570 #endif
1571 #ifdef HAVE_TLS
1572         int     c_is_tls;               /* true if this LDAP over raw TLS */
1573         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
1574 #endif
1575         int             c_sasl_layers;   /* true if we need to install SASL i/o handlers */
1576         void    *c_sasl_context;        /* SASL session context */
1577         void    *c_sasl_extra;          /* SASL session extra stuff */
1578
1579         PagedResultsState c_pagedresults_state; /* paged result state */
1580
1581         long    c_n_ops_received;       /* num of ops received (next op_id) */
1582         long    c_n_ops_executing;      /* num of ops currently executing */
1583         long    c_n_ops_pending;        /* num of ops pending execution */
1584         long    c_n_ops_completed;      /* num of ops completed */
1585
1586         long    c_n_get;                /* num of get calls */
1587         long    c_n_read;               /* num of read calls */
1588         long    c_n_write;              /* num of write calls */
1589 } Connection;
1590
1591 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
1592 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
1593         do { \
1594                 if ( ldap_debug & (level) ) \
1595                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
1596                 if ( ldap_syslog & (level) ) \
1597                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
1598                                 (arg2), (arg3) ); \
1599         } while (0)
1600 #else
1601 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
1602 #endif
1603
1604
1605 #define SASLREGEX_REPLACE 10
1606 #define SASL_AUTHZ_SOURCE_ATTR "saslAuthzTo"
1607 #define SASL_AUTHZ_DEST_ATTR "saslAuthzFrom"
1608
1609 typedef struct sasl_uri {
1610   struct berval dn;
1611   struct berval filter;
1612   int scope;
1613 } SaslUri_t;
1614
1615 typedef struct sasl_regexp {
1616   char *sr_match;                                                       /* regexp match pattern */
1617   SaslUri_t sr_replace;                                                 /* regexp replace pattern */
1618   regex_t sr_workspace;                                         /* workspace for regexp engine */
1619   regmatch_t sr_strings[SASLREGEX_REPLACE];     /* strings matching $1,$2 ... */
1620   int sr_dn_offset[SASLREGEX_REPLACE+2];                /* offsets of $1,$2... in *replace */
1621   int sr_fi_offset[SASLREGEX_REPLACE+2];                /* offsets of $1,$2... in *replace */
1622 } SaslRegexp_t;
1623
1624 /*
1625  * listener; need to access it from monitor backend
1626  */
1627 typedef struct slap_listener {
1628         char* sl_url;
1629         char* sl_name;
1630 #ifdef HAVE_TLS
1631         int             sl_is_tls;
1632 #endif
1633 #ifdef LDAP_CONNECTIONLESS
1634         int     sl_is_udp;              /* UDP listener is also data port */
1635 #endif
1636         ber_socket_t sl_sd;
1637         Sockaddr sl_sa;
1638 #define sl_addr sl_sa.sa_in_addr
1639 } Listener;
1640
1641 #ifdef SLAPD_MONITOR
1642 /*
1643  * Operation indices
1644  */
1645 enum {
1646         SLAP_OP_BIND = 0,
1647         SLAP_OP_UNBIND,
1648         SLAP_OP_ADD,
1649         SLAP_OP_DELETE,
1650         SLAP_OP_MODRDN,
1651         SLAP_OP_MODIFY,
1652         SLAP_OP_COMPARE,
1653         SLAP_OP_SEARCH,
1654         SLAP_OP_ABANDON,
1655         SLAP_OP_EXTENDED,
1656         SLAP_OP_LAST
1657 };
1658 #endif /* SLAPD_MONITOR */
1659
1660 LDAP_END_DECL
1661
1662 #include "proto-slap.h"
1663
1664 #endif /* _SLAP_H_ */