]> git.sur5r.net Git - openldap/blob - servers/slapd/slap.h
Add ldap_*2name() in <include,libldap>/schema, use them in slapd/schema
[openldap] / servers / slapd / slap.h
1 /* slap.h - stand alone ldap server include file */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #ifndef _SLDAPD_H_
8 #define _SLDAPD_H_
9
10 #include <ac/stdlib.h>
11
12 #include <sys/types.h>
13 #include <ac/syslog.h>
14 #include <ac/regex.h>
15 #include <ac/socket.h>
16 #include <ac/time.h>
17
18 #ifdef HAVE_CYRUS_SASL
19 #include <sasl.h>
20 #endif
21
22 #include "avl.h"
23
24 #ifndef ldap_debug
25 #define ldap_debug slap_debug
26 #endif
27
28
29 #include "ldap_log.h"
30
31 #include <ldap.h>
32 #include <ldap_schema.h>
33
34 #include "ldap_pvt_thread.h"
35 #include "ldif.h"
36
37 LDAP_BEGIN_DECL
38
39 #ifdef f_next
40 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */
41 #endif
42
43 #define SERVICE_NAME  OPENLDAP_PACKAGE "-slapd"
44
45 /* LDAPMod.mod_op value ===> Must be kept in sync with ldap.h!
46  *
47  * This is a value used internally by the backends. It is needed to allow
48  * adding values that already exist without getting an error as required by
49  * modrdn when the new rdn was already an attribute value itself.
50  * JCG 05/1999 (gomez@engr.sgi.com)
51  */
52 #define LDAP_MOD_SOFTADD        0x1000
53
54 #ifdef DNS_DN
55 #define DN_DNS  0
56 #define DN_X500 1
57 #endif
58
59 #define ON      1
60 #define OFF     (-1)
61 #define UNDEFINED 0
62
63 #define MAXREMATCHES 10
64
65 /* XXYYZ: these macros assume 'x' is an ASCII x */
66 #define DNSEPARATOR(c)  ((c) == ',' || (c) == ';')
67 #define SEPARATOR(c)    ((c) == ',' || (c) == ';' || (c) == '+')
68 #define SPACE(c)        ((c) == ' ' || (c) == '\n')
69
70 #define ASCII_LOWER(c)  ( (c) >= 'a' && (c) <= 'z' )
71 #define ASCII_UPPER(c)  ( (c) >= 'A' && (c) <= 'Z' )
72 #define ASCII_ALPHA(c)  ( ASCII_LOWER(c) || ASCII_UPPER(c) )
73 #define ASCII_DIGIT(c)  ( (c) >= '0' && (c) <= '9' )
74 #define ASCII_ALNUM(c)  ( ASCII_ALPHA(c) || ASCII_DIGIT(c) )
75
76 #define LEADKEYCHAR(c)  ( ASCII_ALPHA(c) )
77 #define KEYCHAR(c)      ( ASCII_ALNUM(c) || (c) == '-' )
78 #define LEADOIDCHAR(c)  ( ASCII_DIGIT(c) )
79 #define OIDCHAR(c)      ( ASCII_DIGIT(c) || (c) == '.' )
80
81 #define LEADATTRCHAR(c) ( LEADKEYCHAR(c) || LEADOIDCHAR(c) )
82 #define ATTRCHAR(c)     ( KEYCHAR((c)) || (c) == '.' )
83
84 #define NEEDSESCAPE(c)  ((c) == '\\' || (c) == '"')
85
86 #define SLAP_SCHERR_OUTOFMEM            1
87 #define SLAP_SCHERR_CLASS_NOT_FOUND     2
88 #define SLAP_SCHERR_ATTR_NOT_FOUND      3
89 #define SLAP_SCHERR_DUP_CLASS           4
90 #define SLAP_SCHERR_DUP_ATTR            5
91 #define SLAP_SCHERR_DUP_SYNTAX          6
92 #define SLAP_SCHERR_DUP_RULE            7
93 #define SLAP_SCHERR_NO_NAME             8
94 #define SLAP_SCHERR_ATTR_INCOMPLETE     9
95 #define SLAP_SCHERR_MR_NOT_FOUND        10
96 #define SLAP_SCHERR_SYN_NOT_FOUND       11
97 #define SLAP_SCHERR_MR_INCOMPLETE       12
98
99 extern int slap_debug;
100
101 struct slap_op;
102 struct slap_conn;
103
104 struct replog_moddn {
105         char *newrdn;
106         int     deloldrdn;
107         char *newsup;
108 };
109
110 /*
111  * represents an attribute value assertion (i.e., attr=value)
112  */
113 typedef struct slap_ava {
114         char            *ava_type;
115         struct berval   ava_value;
116 } Ava;
117
118 typedef struct slap_mra {
119         char    *mra_rule;
120         char    *mra_type;
121         char    *mra_value;
122         int             mra_dnattrs;
123 } Mra;
124
125 /*
126  * represents a search filter
127  */
128 typedef struct slap_filter {
129         ber_tag_t       f_choice;       /* values taken from ldap.h */
130
131         union f_un_u {
132                 /* present */
133                 char            *f_un_type;
134
135                 /* equality, lessorequal, greaterorequal, approx */
136                 Ava             f_un_ava;
137
138                 /* extensible */
139                 Mra             f_un_fra;       
140
141                 /* and, or, not */
142                 struct slap_filter      *f_un_complex;
143
144                 /* substrings */
145                 struct sub {
146                         char    *f_un_sub_type;
147                         char    *f_un_sub_initial;
148                         char    **f_un_sub_any;
149                         char    *f_un_sub_final;
150                 } f_un_sub;
151         } f_un;
152
153 #define f_dn            f_un.f_un_type  /* used for DN indices */
154 #define f_type          f_un.f_un_type
155 #define f_ava           f_un.f_un_ava
156 #define f_avtype        f_un.f_un_ava.ava_type
157 #define f_avvalue       f_un.f_un_ava.ava_value
158 #define f_mra           f_un.f_un_mra
159 #define f_mrtype        f_un.f_un_mra.mra_type
160 #define f_mrvalue       f_un.f_un_mra.mra_value
161 #define f_mrdnaddrs     f_un.f_un_mra.mra_dnattrs
162 #define f_and           f_un.f_un_complex
163 #define f_or            f_un.f_un_complex
164 #define f_not           f_un.f_un_complex
165 #define f_list          f_un.f_un_complex
166 #define f_sub           f_un.f_un_sub
167 #define f_sub_type      f_un.f_un_sub.f_un_sub_type
168 #define f_sub_initial   f_un.f_un_sub.f_un_sub_initial
169 #define f_sub_any       f_un.f_un_sub.f_un_sub_any
170 #define f_sub_final     f_un.f_un_sub.f_un_sub_final
171
172         struct slap_filter      *f_next;
173 } Filter;
174
175 /*
176  * represents an attribute (type + values + syntax)
177  */
178 typedef struct slap_attr {
179         char            *a_type;
180         struct berval   **a_vals;
181         int             a_syntax;
182         struct slap_attr        *a_next;
183 } Attribute;
184
185 /*
186  * the attr_syntax() routine returns one of these values
187  * telling what kind of syntax an attribute supports.
188  */
189 #define SYNTAX_CIS      0x01    /* case insensitive string              */
190 #define SYNTAX_CES      0x02    /* case sensitive string                */
191 #define SYNTAX_BIN      0x04    /* binary data                          */
192 #define SYNTAX_TEL      0x08    /* telephone number string              */
193 #define SYNTAX_DN       0x10    /* dn string                            */
194
195 /*
196  * the id used in the indexes to refer to an entry
197  */
198 typedef unsigned long   ID;
199 #define NOID    ((ID)~0)
200
201 /*
202  * represents an entry in core
203  */
204 typedef struct slap_entry {
205         /*
206          * The ID field should only be changed before entry is
207          * inserted into a cache.  The ID value is backend
208          * specific.
209          */
210         ID              e_id;
211
212         char            *e_dn;          /* DN of this entry */
213         char            *e_ndn;         /* normalized DN of this entry */
214         Attribute       *e_attrs;       /* list of attributes + values */
215
216         /* for use by the backend for any purpose */
217         void*   e_private;
218 } Entry;
219
220 /*
221  * represents an access control list
222  */
223
224 /* the "by" part */
225 typedef struct slap_access {
226
227 #define ACL_NONE                0x0001
228 #define ACL_AUTH                0x0004
229 #define ACL_COMPARE             0x0008
230 #define ACL_SEARCH              0x0010
231 #define ACL_READ                0x0020
232 #define ACL_WRITE               0x0040
233 #define ACL_PRIV_MASK   0x00ff
234
235 #define ACL_SELF                0x4000
236 #define ACL_INVALID             (-1)
237
238 #define ACL_IS(a,lvl)   (((a) & (lvl)) == (lvl))
239
240 #define ACL_IS_NONE(a)          ACL_IS((a),ACL_SELF)
241 #define ACL_IS_AUTH(a)          ACL_IS((a),ACL_AUTH)
242 #define ACL_IS_COMPARE(a)       ACL_IS((a),ACL_COMPARE)
243 #define ACL_IS_SEARCH(a)        ACL_IS((a),ACL_SEARCH)
244 #define ACL_IS_READ(a)          ACL_IS((a),ACL_READ)
245 #define ACL_IS_WRITE(a)         ACL_IS((a),ACL_WRITE)
246 #define ACL_IS_SELF(a)          ACL_IS((a),ACL_SELF)
247 #define ACL_IS_INVALID(a)       ((a) == ACL_INVALID)
248
249 #define ACL_CLR(a)                      ((a) = 0)
250 #define ACL_SET(a,lvl)          ((a) |= (lvl))
251 #define ACL_SET_NONE(a)         ACL_SET((a),ACL_SELF)
252 #define ACL_SET_AUTH(a)         ACL_SET((a),ACL_AUTH)
253 #define ACL_SET_COMPARE(a)      ACL_SET((a),ACL_COMPARE)
254 #define ACL_SET_SEARCH(a)       ACL_SET((a),ACL_SEARCH)
255 #define ACL_SET_READ(a)         ACL_SET((a),ACL_READ)
256 #define ACL_SET_WRITE(a)        ACL_SET((a),ACL_WRITE)
257 #define ACL_SET_SELF(a)         ACL_SET((a),ACL_SELF)
258 #define ACL_SET_INVALID(a)      ((a) = ACL_INVALID)
259
260 #define ACL_PRIV(a)                     ((a) & ACL_PRIV_MASK)
261 #define ACL_GRANT(a,lvl)        (ACL_PRIV(a) >= (lvl))
262
263         int                     a_access;
264
265         char            *a_dn_pat;
266         char            *a_dn_at;
267
268         char            *a_peername_pat;
269         char            *a_sockname_pat;
270
271         char            *a_domain_pat;
272         char            *a_sockurl_pat;
273
274         /* ACL Groups */
275         char            *a_group_pat;
276         char            *a_group_oc;
277         char            *a_group_at;
278
279         struct slap_access      *a_next;
280 } Access;
281
282 /* the "to" part */
283 typedef struct slap_acl {
284         /* "to" part: the entries this acl applies to */
285         Filter          *acl_filter;
286         regex_t         acl_dn_re;
287         char            *acl_dn_pat;
288         char            **acl_attrs;
289
290         /* "by" part: list of who has what access to the entries */
291         Access  *acl_access;
292
293         struct slap_acl *acl_next;
294 } AccessControl;
295
296 /*
297  * A list of LDAPMods
298  */
299 typedef struct ldapmodlist {
300         struct ldapmod ml_mod;
301         struct ldapmodlist *ml_next;
302 #define ml_op           ml_mod.mod_op
303 #define ml_type         ml_mod.mod_type
304 #define ml_values       ml_mod.mod_values
305 #define ml_bvalues      ml_mod.mod_bvalues
306 } LDAPModList;
307
308 /*
309  * represents schema information for a database
310  */
311 typedef int slap_syntax_check_func LDAP_P((struct berval * val));
312
313 typedef struct slap_syntax {
314         LDAP_SYNTAX                     ssyn_syn;
315         slap_syntax_check_func          *ssyn_check;
316         struct slap_syntax              *ssyn_next;
317 } Syntax;
318 #define ssyn_oid                        ssyn_syn.syn_oid
319 #define ssyn_desc                       ssyn_syn.syn_desc
320
321 typedef int slap_mr_normalize_func LDAP_P((struct berval * val, struct berval **normalized));
322 typedef int slap_mr_compare_func LDAP_P((struct berval * val1, struct berval * val2));
323
324 typedef struct slap_matching_rule {
325         LDAP_MATCHING_RULE              smr_mrule;
326         slap_mr_normalize_func          *smr_normalize;
327         slap_mr_compare_func            *smr_compare;
328         Syntax                          *smr_syntax;
329         struct slap_matching_rule       *smr_next;
330 } MatchingRule;
331 #define smr_oid                         smr_mrule.mr_oid
332 #define smr_names                       smr_mrule.mr_names
333 #define smr_desc                        smr_mrule.mr_desc
334 #define smr_obsolete                    smr_mrule.mr_obsolete
335 #define smr_syntax_oid                  smr_mrule.mr_syntax_oid
336
337 typedef struct slap_attribute_type {
338         LDAP_ATTRIBUTE_TYPE             sat_atype;
339         struct slap_attribute_type      *sat_sup;
340         struct slap_attribute_type      **sat_subtypes;
341         MatchingRule                    *sat_equality;
342         MatchingRule                    *sat_ordering;
343         MatchingRule                    *sat_substr;
344         Syntax                          *sat_syntax;
345         /* The next one is created to help in the transition */
346         int                             sat_syntax_compat;
347         struct slap_attribute_type      *sat_next;
348 } AttributeType;
349 #define sat_oid                 sat_atype.at_oid
350 #define sat_names               sat_atype.at_names
351 #define sat_desc                sat_atype.at_desc
352 #define sat_obsolete            sat_atype.at_obsolete
353 #define sat_sup_oid             sat_atype.at_sup_oid
354 #define sat_equality_oid        sat_atype.at_equality_oid
355 #define sat_ordering_oid        sat_atype.at_ordering_oid
356 #define sat_substr_oid          sat_atype.at_substr_oid
357 #define sat_syntax_oid          sat_atype.at_syntax_oid
358 #define sat_syntax_len          sat_atype.at_syntax_len
359 #define sat_single_value        sat_atype.at_single_value
360 #define sat_collective          sat_atype.at_collective
361 #define sat_no_user_mods        sat_atype.at_no_user_mods
362 #define sat_usage               sat_atype.at_usage
363
364 typedef struct slap_object_class {
365         LDAP_OBJECT_CLASS               soc_oclass;
366         struct slap_object_class        **soc_sups;
367         AttributeType                   **soc_required;
368         AttributeType                   **soc_allowed;
369         struct slap_object_class        *soc_next;
370 } ObjectClass;
371 #define soc_oid                 soc_oclass.oc_oid
372 #define soc_names               soc_oclass.oc_names
373 #define soc_desc                soc_oclass.oc_desc
374 #define soc_obsolete            soc_oclass.oc_obsolete
375 #define soc_sup_oids            soc_oclass.oc_sup_oids
376 #define soc_kind                soc_oclass.oc_kind
377 #define soc_at_oids_must        soc_oclass.oc_at_oids_must
378 #define soc_at_oids_may         soc_oclass.oc_at_oids_may
379
380 /*
381  * Backend-info
382  * represents a backend 
383  */
384
385 typedef struct slap_backend_info BackendInfo;   /* per backend type */
386 typedef struct slap_backend_db BackendDB;               /* per backend database */
387
388 extern int nBackendInfo;
389 extern int nBackendDB;
390 extern BackendInfo      *backendInfo;
391 extern BackendDB        *backendDB;
392
393 extern int                      slapMode;       
394 #define SLAP_UNDEFINED_MODE     0
395 #define SLAP_SERVER_MODE        1
396 #define SLAP_TOOL_MODE          2
397 #ifdef SLAPD_BDB2
398 #  define SLAP_TIMEDSERVER_MODE  3
399 #  define SLAP_TOOLID_MODE       4
400 #endif
401
402 /* temporary aliases */
403 typedef BackendDB Backend;
404 #define nbackends nBackendDB
405 #define backends backendDB
406
407 struct slap_backend_db {
408         BackendInfo     *bd_info;       /* pointer to shared backend info */
409
410         /* BackendInfo accessors */
411 #define         be_config       bd_info->bi_db_config
412 #define         be_type         bd_info->bi_type
413
414 #define         be_bind         bd_info->bi_op_bind
415 #define         be_unbind       bd_info->bi_op_unbind
416 #define         be_add          bd_info->bi_op_add
417 #define         be_compare      bd_info->bi_op_compare
418 #define         be_delete       bd_info->bi_op_delete
419 #define         be_modify       bd_info->bi_op_modify
420 #define         be_modrdn       bd_info->bi_op_modrdn
421 #define         be_search       bd_info->bi_op_search
422
423 #define         be_release      bd_info->bi_entry_release_rw
424 #define         be_group        bd_info->bi_acl_group
425
426 #define         be_connection_init      bd_info->bi_connection_init
427 #define         be_connection_destroy   bd_info->bi_connection_destroy
428
429
430         /* these should be renamed from be_ to bd_ */
431         char    **be_suffix;    /* the DN suffixes of data in this backend */
432         char    **be_nsuffix;   /* the normalized DN suffixes in this backend */
433         char    **be_suffixAlias; /* pairs of DN suffix aliases and deref values */
434         char    *be_root_dn;    /* the magic "root" dn for this db      */
435         char    *be_root_ndn;   /* the magic "root" normalized dn for this db   */
436         char    *be_root_pw;    /* the magic "root" password for this db        */
437         int     be_readonly;    /* 1 => db is in "read only" mode          */
438         unsigned int be_max_deref_depth;       /* limit for depth of an alias deref  */
439         int     be_sizelimit;   /* size limit for this backend             */
440         int     be_timelimit;   /* time limit for this backend             */
441         AccessControl *be_acl;  /* access control list for this backend    */
442         int     be_dfltaccess;  /* access given if no acl matches          */
443         char    **be_replica;   /* replicas of this backend (in master)    */
444         char    *be_replogfile; /* replication log file (in master)        */
445         char    *be_update_ndn; /* allowed to make changes (in replicas)   */
446         struct berval **be_update_refs; /* where to refer modifying clients to */
447         int     be_lastmod;     /* keep track of lastmodified{by,time}     */
448
449         char    *be_realm;
450
451         void    *be_private;    /* anything the backend database needs     */
452 };
453
454 struct slap_backend_info {
455         char    *bi_type;       /* type of backend */
456
457         /*
458          * per backend type routines:
459          * bi_init: called to allocate a backend_info structure,
460          *              called once BEFORE configuration file is read.
461          *              bi_init() initializes this structure hence is
462          *              called directly from be_initialize()
463          * bi_config: called per 'backend' specific option
464          *              all such options must before any 'database' options
465          *              bi_config() is called only from read_config()
466          * bi_open: called to open each database, called
467          *              once AFTER configuration file is read but
468          *              BEFORE any bi_db_open() calls.
469          *              bi_open() is called from backend_startup()
470          * bi_close: called to close each database, called
471          *              once during shutdown after all bi_db_close calls.
472          *              bi_close() is called from backend_shutdown()
473          * bi_destroy: called to destroy each database, called
474          *              once during shutdown after all bi_db_destroy calls.
475          *              bi_destory() is called from backend_destroy()
476          */
477         int (*bi_init)  LDAP_P((BackendInfo *bi));
478         int     (*bi_config) LDAP_P((BackendInfo *bi,
479                 char *fname, int lineno, int argc, char **argv ));
480         int (*bi_open) LDAP_P((BackendInfo *bi));
481         int (*bi_close) LDAP_P((BackendInfo *bi));
482         int (*bi_destroy) LDAP_P((BackendInfo *bi));
483
484         /*
485          * per database routines:
486          * bi_db_init: called to initialize each database,
487          *      called upon reading 'database <type>' 
488          *      called only from backend_db_init()
489          * bi_db_config: called to configure each database,
490          *  called per database to handle per database options
491          *      called only from read_config()
492          * bi_db_open: called to open each database
493          *      called once per database immediately AFTER bi_open()
494          *      calls but before daemon startup.
495          *  called only by backend_startup()
496          * bi_db_close: called to close each database
497          *      called once per database during shutdown but BEFORE
498          *  any bi_close call.
499          *  called only by backend_shutdown()
500          * bi_db_destroy: called to destroy each database
501          *  called once per database during shutdown AFTER all
502          *  bi_close calls but before bi_destory calls.
503          *  called only by backend_destory()
504          */
505         int (*bi_db_init) LDAP_P((Backend *bd));
506         int     (*bi_db_config) LDAP_P((Backend *bd,
507                 char *fname, int lineno, int argc, char **argv ));
508         int (*bi_db_open) LDAP_P((Backend *bd));
509         int (*bi_db_close) LDAP_P((Backend *bd));
510         int (*bi_db_destroy) LDAP_P((Backend *db));
511
512         /* LDAP Operations Handling Routines */
513         int     (*bi_op_bind)  LDAP_P(( BackendDB *bd,
514                 struct slap_conn *c, struct slap_op *o,
515                 char *dn, int method, char* mechanism,
516                 struct berval *cred, char** edn ));
517         int (*bi_op_unbind) LDAP_P((BackendDB *bd,
518                 struct slap_conn *c, struct slap_op *o ));
519         int     (*bi_op_search) LDAP_P((BackendDB *bd,
520                 struct slap_conn *c, struct slap_op *o,
521                 char *base, int scope, int deref,
522                 int slimit, int tlimit,
523                 Filter *f, char *filterstr, char **attrs,
524                 int attrsonly));
525         int     (*bi_op_compare)LDAP_P((BackendDB *bd,
526                 struct slap_conn *c, struct slap_op *o,
527                 char *dn, Ava *ava));
528         int     (*bi_op_modify) LDAP_P((BackendDB *bd,
529                 struct slap_conn *c, struct slap_op *o,
530                 char *dn, LDAPModList *m));
531         int     (*bi_op_modrdn) LDAP_P((BackendDB *bd,
532                 struct slap_conn *c, struct slap_op *o,
533                 char *dn, char *newrdn, int deleteoldrdn,
534                 char *newSuperior));
535         int     (*bi_op_add)    LDAP_P((BackendDB *bd,
536                 struct slap_conn *c, struct slap_op *o,
537                 Entry *e));
538         int     (*bi_op_delete) LDAP_P((BackendDB *bd,
539                 struct slap_conn *c, struct slap_op *o,
540                 char *dn));
541         int     (*bi_op_abandon) LDAP_P((BackendDB *bd,
542                 struct slap_conn *c, struct slap_op *o,
543                 ber_int_t msgid));
544
545         /* Auxilary Functions */
546         int     (*bi_entry_release_rw) LDAP_P((BackendDB *bd, Entry *e, int rw));
547
548         int     (*bi_acl_group)  LDAP_P((Backend *bd,
549                 Entry *e, char *bdn, char *edn,
550                 char *objectclassValue, char *groupattrName ));
551
552         int     (*bi_connection_init) LDAP_P((BackendDB *bd,
553                 struct slap_conn *c));
554         int     (*bi_connection_destroy) LDAP_P((BackendDB *bd,
555                 struct slap_conn *c));
556
557
558         unsigned int bi_nDB;    /* number of databases of this type */
559         void    *bi_private;    /* anything the backend type needs */
560 };
561
562 /*
563  * represents an operation pending from an ldap client
564  */
565
566 typedef struct slap_op {
567         ber_int_t       o_opid;         /* id of this operation           */
568         ber_int_t       o_msgid;        /* msgid of the request           */
569
570         ldap_pvt_thread_t       o_tid;          /* thread handling this op        */
571
572         BerElement      *o_ber;         /* ber of the request             */
573
574         ber_tag_t       o_tag;          /* tag of the request             */
575         time_t          o_time;         /* time op was initiated          */
576
577         int             o_bind_in_progress;     /* multi-step bind in progress */
578
579         char            *o_dn;          /* dn bound when op was initiated */
580         char            *o_ndn;         /* normalized dn bound when op was initiated */
581         ber_int_t       o_protocol;     /* version of the LDAP protocol used by client */
582         ber_tag_t       o_authtype;     /* auth method used to bind dn    */
583                                         /* values taken from ldap.h       */
584                                         /* LDAP_AUTH_*                    */
585         char            *o_authmech; /* SASL mechanism used to bind dn */
586
587         LDAPControl     **o_ctrls;       /* controls */
588
589         unsigned long   o_connid; /* id of conn initiating this op  */
590
591 #ifdef LDAP_CONNECTIONLESS
592         int             o_cldap;        /* != 0 if this came in via CLDAP */
593         struct sockaddr o_clientaddr;   /* client address if via CLDAP    */
594         char            o_searchbase;   /* search base if via CLDAP       */
595 #endif
596
597         ldap_pvt_thread_mutex_t o_abandonmutex; /* protects o_abandon  */
598         int             o_abandon;      /* abandon flag */
599
600         struct slap_op  *o_next;        /* next operation in list         */
601         void    *o_private;     /* anything the backend needs     */
602 } Operation;
603
604 /*
605  * represents a connection from an ldap client
606  */
607
608 typedef struct slap_conn {
609         int                     c_struct_state; /* structure management state */
610         int                     c_conn_state;   /* connection state */
611
612         ldap_pvt_thread_mutex_t c_mutex; /* protect the connection */
613         Sockbuf         *c_sb;                  /* ber connection stuff           */
614
615         /* only can be changed by connect_init */
616         time_t          c_starttime;    /* when the connection was opened */
617         time_t          c_activitytime; /* when the connection was last used */
618         unsigned long           c_connid;       /* id of this connection for stats*/
619
620         char            *c_listener_url;        /* listener URL */
621         char            *c_peer_domain; /* DNS name of client */
622         char            *c_peer_name;   /* peer name (trans=addr:port) */
623         char            *c_sock_name;   /* sock name (trans=addr:port) */
624
625 #ifdef HAVE_CYRUS_SASL
626         sasl_conn_t     *c_sasl_context;
627 #endif
628
629         /* only can be changed by binding thread */
630         int             c_bind_in_progress;     /* multi-op bind in progress */
631
632         char    *c_cdn;         /* DN provided by the client */
633         char    *c_dn;          /* DN bound to this conn  */
634         ber_int_t       c_protocol;     /* version of the LDAP protocol used by client */
635         ber_tag_t       c_authtype;/* auth method used to bind c_dn  */
636         char    *c_authmech;    /* SASL mechanism used to bind c_dn */
637         void    *c_authstate;   /* SASL state data */
638
639         Operation       *c_ops;                 /* list of operations being processed */
640         Operation       *c_pending_ops; /* list of pending operations */
641
642         ldap_pvt_thread_mutex_t c_write_mutex;  /* only one pdu written at a time */
643         ldap_pvt_thread_cond_t  c_write_cv;             /* used to wait for sd write-ready*/
644
645         BerElement      *c_currentber;  /* ber we're attempting to read */
646         int             c_writewaiter;  /* true if writer is waiting */
647
648 #ifdef HAVE_TLS
649         int     c_is_tls;               /* true if this LDAP over raw TLS */
650         int     c_needs_tls_accept;     /* true if SSL_accept should be called */
651 #endif
652
653         long    c_n_ops_received;               /* num of ops received (next op_id) */
654         long    c_n_ops_executing;      /* num of ops currently executing */
655         long    c_n_ops_pending;                /* num of ops pending execution */
656         long    c_n_ops_completed;      /* num of ops completed */
657
658         long    c_n_get;                /* num of get calls */
659         long    c_n_read;               /* num of read calls */
660         long    c_n_write;              /* num of write calls */
661 } Connection;
662
663 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
664 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )  \
665         do { \
666                 if ( ldap_debug & (level) ) \
667                         fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
668                 if ( ldap_syslog & (level) ) \
669                         syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
670                                 (arg2), (arg3) ); \
671         } while (0)
672 #else
673 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
674 #endif
675
676 LDAP_END_DECL
677
678 #include "proto-slap.h"
679
680 #endif /* _slap_h_ */