]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
ITS#2607: improve socket() error logging with AF info
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #ifndef PROTO_SLAP_H
7 #define PROTO_SLAP_H
8
9 #include <ldap_cdefs.h>
10 #include "ldap_pvt.h"
11
12 LDAP_BEGIN_DECL
13
14 /*
15  * acl.c
16  */
17 LDAP_SLAPD_F (int) access_allowed LDAP_P((
18         Operation *op,
19         Entry *e, AttributeDescription *desc, struct berval *val,
20         slap_access_t access,
21         AccessControlState *state ));
22 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
23         Operation *op, Entry *e, Modifications *ml ));
24
25 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
26
27 /*
28  * aclparse.c
29  */
30 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
31         const char *fname, int lineno,
32         int argc, char **argv ));
33
34 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
35 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
36
37 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
38 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
39 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
40 LDAP_SLAPD_F (void) acl_destroy LDAP_P(( AccessControl*, AccessControl* ));
41 LDAP_SLAPD_F (void) acl_free LDAP_P(( AccessControl *a ));
42
43 /*
44  * ad.c
45  */
46 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
47         const char *,
48         AttributeDescription **ad,
49         const char **text ));
50
51 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
52         struct berval *bv,
53         AttributeDescription **ad,
54         const char **text ));
55
56 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
57
58 #define ad_cmp(l,r)     (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
59         ? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
60                 ? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
61
62 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
63         AttributeDescription *sub,
64         AttributeDescription *super ));
65
66 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
67         AttributeDescription *desc,
68         AttributeName *attrs ));
69
70 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
71         const char *,
72         AttributeDescription **ad,
73         const char **text ));
74
75 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
76         struct berval *bv,
77         AttributeDescription **ad,
78         const char **text ));
79
80 LDAP_SLAPD_F (AttributeDescription *) ad_find_tags LDAP_P((
81         AttributeType *type,
82         struct berval *tags ));
83
84 LDAP_SLAPD_F (AttributeName *) str2anlist LDAP_P(( AttributeName *an,
85         char *str, const char *brkstr ));
86 LDAP_SLAPD_F (int) an_find LDAP_P(( AttributeName *a, struct berval *s ));
87 LDAP_SLAPD_F (int) ad_define_option LDAP_P(( const char *name,
88         const char *fname, int lineno ));
89
90 LDAP_SLAPD_F (MatchingRule *) ad_mr(
91         AttributeDescription *ad,
92         unsigned usage );
93
94 /*
95  * add.c
96  */
97 LDAP_SLAPD_F (int) slap_mods2entry LDAP_P(( Modifications *mods, Entry **e,
98         int repl_user, const char **text, char *textbuf, size_t textlen ));
99
100 /*
101  * at.c
102  */
103 LDAP_SLAPD_F (void) at_config LDAP_P((
104         const char *fname, int lineno,
105         int argc, char **argv ));
106 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P((
107         const char *name ));
108 LDAP_SLAPD_F (AttributeType *) at_bvfind LDAP_P((
109         struct berval *name ));
110 LDAP_SLAPD_F (int) at_find_in_list LDAP_P((
111         AttributeType *sat, AttributeType **list ));
112 LDAP_SLAPD_F (int) at_append_to_list LDAP_P((
113         AttributeType *sat, AttributeType ***listp ));
114 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P((
115         int pos, AttributeType ***listp ));
116 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
117 LDAP_SLAPD_F (int) at_add LDAP_P((
118         LDAPAttributeType *at, const char **err ));
119 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
120
121 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
122         AttributeType *sub,
123         AttributeType *super ));
124
125 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
126         AttributeType *at,
127         const char *oid ));
128
129 LDAP_SLAPD_F (int) at_start LDAP_P(( AttributeType **at ));
130 LDAP_SLAPD_F (int) at_next LDAP_P(( AttributeType **at ));
131
132 /*
133  * attr.c
134  */
135 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
136 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
137
138 #define attr_mergeit( e, d, v ) attr_merge( e, d, v, NULL /* FIXME */ )
139 #define attr_mergeit_one( e, d, v ) attr_merge_one( e, d, v, NULL /* FIXME */ )
140
141 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
142         AttributeDescription *desc,
143         BerVarray vals,
144         BerVarray nvals ));
145 LDAP_SLAPD_F (int) attr_merge_one LDAP_P(( Entry *e,
146         AttributeDescription *desc,
147         struct berval *val,
148         struct berval *nval ));
149 LDAP_SLAPD_F (int) attr_merge_normalize LDAP_P(( Entry *e,
150         AttributeDescription *desc,
151         BerVarray vals, void *memctx ));
152 LDAP_SLAPD_F (int) attr_merge_normalize_one LDAP_P(( Entry *e,
153         AttributeDescription *desc,
154         struct berval *val, void *memctx ));
155 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P((
156         Attribute *a, AttributeDescription *desc ));
157 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P((
158         Attribute *a, AttributeDescription *desc ));
159 LDAP_SLAPD_F (int) attr_delete LDAP_P((
160         Attribute **attrs, AttributeDescription *desc ));
161
162 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
163 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
164
165
166 /*
167  * ava.c
168  */
169 LDAP_SLAPD_F (int) get_ava LDAP_P((
170         Operation *op,
171         BerElement *ber,
172         AttributeAssertion **ava,
173         unsigned usage,
174         const char **text ));
175 LDAP_SLAPD_F (void) ava_free LDAP_P((
176         Operation *op,
177         AttributeAssertion *ava,
178         int freeit ));
179
180 /*
181  * backend.c
182  */
183 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
184 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
185 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
186 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
187 LDAP_SLAPD_F (int) backend_sync LDAP_P((Backend *be));
188 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
189 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
190
191 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
192 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
193
194 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
195         struct berval * dn,
196         int manageDSAit,
197         int noSubordinates ));
198
199 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be,
200         struct berval *suffix ));
201 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Backend *be,
202         struct berval *ndn ));
203 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Operation *op ));
204 LDAP_SLAPD_F (int) be_isupdate LDAP_P(( Backend *be, struct berval *ndn ));
205 LDAP_SLAPD_F (struct berval *) be_root_dn LDAP_P(( Backend *be ));
206 LDAP_SLAPD_F (int) be_entry_get_rw LDAP_P(( struct slap_op *o,
207                 struct berval *ndn, ObjectClass *oc,
208                 AttributeDescription *at, int rw, Entry **e ));
209 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P((
210         Operation *o, Entry *e, int rw ));
211 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 )
212 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 )
213
214 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Operation *op, SlapReply *rs));
215 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
216 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
217
218 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
219         Operation *op,
220         SlapReply *rs,
221         struct berval *opdata ));
222
223 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
224         Operation *op,
225         SlapReply *rs ));
226
227 LDAP_SLAPD_F (int) backend_group LDAP_P((
228         Operation *op,
229         Entry *target,
230         struct berval *gr_ndn,
231         struct berval *op_ndn,
232         ObjectClass *group_oc,
233         AttributeDescription *group_at
234 ));
235
236 LDAP_SLAPD_F (int) backend_attribute LDAP_P((
237         Operation *op,
238         Entry *target,
239         struct berval *entry_ndn,
240         AttributeDescription *entry_at,
241         BerVarray *vals
242 ));
243
244 LDAP_SLAPD_F (Attribute *) backend_operational(
245         Operation *op,
246         SlapReply *rs,
247         int opattrs );
248
249 /*
250  * backglue.c
251  */
252
253 LDAP_SLAPD_F (int) glue_back_initialize( BackendInfo *bi );
254 LDAP_SLAPD_F (int) glue_sub_init( void );
255
256 /*
257  * backover.c
258  */
259
260 LDAP_SLAPD_F (int) overlay_register( slap_overinst *on );
261 LDAP_SLAPD_F (int) overlay_config( BackendDB *be, const char *ov );
262
263 /*
264  * ch_malloc.c
265  */
266 LDAP_SLAPD_V (BerMemoryFunctions) ch_mfuncs;
267 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
268 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
269 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
270 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
271 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
272
273 #ifndef CH_FREE
274 #undef free
275 #define free ch_free
276 #endif
277
278 /*
279  * controls.c
280  */
281 LDAP_SLAPD_F (void) slap_free_ctrls LDAP_P((
282         Operation *op,
283         LDAPControl **ctrls ));
284 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
285         Operation *op,
286         SlapReply *rs,
287         int senderrors ));
288 LDAP_SLAPD_F (int) register_supported_control LDAP_P((
289         const char *controloid,
290         slap_mask_t controlmask,
291         char **controlexops,
292         SLAP_CTRL_PARSE_FN *controlparsefn ));
293 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
294 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
295 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
296 LDAP_SLAPD_F (int) get_supported_controls LDAP_P (( char ***ctrloidsp, slap_mask_t **ctrlmasks ));
297
298 /*
299  * config.c
300  */
301 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, int depth ));
302 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
303
304 /*
305  * connection.c
306  */
307 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
308 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
309 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
310 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
311
312 LDAP_SLAPD_F (long) connection_init LDAP_P((
313         ber_socket_t s,
314         Listener* url,
315         const char* dnsname,
316         const char* peername,
317         int use_tls,
318         slap_ssf_t ssf,
319         const char *id ));
320
321 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
322 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
323 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
324         LDAP_GCCATTR((const));
325
326 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
327 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
328
329 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
330
331 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
332 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
333         Connection *, ber_socket_t *));
334 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
335
336 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
337
338 /*
339  * cr.c
340  */
341 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
342
343 LDAP_SLAPD_F (int) cr_add LDAP_P((
344         LDAPContentRule *oc,
345         int user,
346         const char **err));
347 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
348
349 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
350         const char *crname));
351 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
352         struct berval *crname));
353
354 /*
355  * daemon.c
356  */
357 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s);
358 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
359 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
360 LDAP_SLAPD_F (int) slapd_daemon(void);
361 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
362 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
363
364 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
365 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
366
367 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
368 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
369 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
370 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
371
372 /*
373  * dn.c
374  */
375
376 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
377 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
378
379 LDAP_SLAPD_F (int) dnValidate LDAP_P((
380         Syntax *syntax, 
381         struct berval *val ));
382
383 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
384
385 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
386
387 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
388         Syntax *syntax, 
389         struct berval *val, 
390         struct berval *pretty,
391         struct berval *normal,
392         void *ctx ));
393
394 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
395         int *matchp, 
396         slap_mask_t flags, 
397         Syntax *syntax, 
398         MatchingRule *mr,
399         struct berval *value, 
400         void *assertedValue ));
401
402 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
403         const struct berval *dn, const struct berval *suffix ));
404
405 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
406         struct berval *dn, struct berval *rdn, void *ctx ));
407
408 LDAP_SLAPD_F (int) rdnValidate LDAP_P(( struct berval * rdn ));
409
410 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
411
412 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
413         struct berval * new_dn,
414         struct berval * parent_dn,
415         struct berval * newrdn ));
416
417 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
418
419 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
420
421 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
422
423 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
424 #define dnPrettyDN(syntax, val, dn, ctx) \
425         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
426 #define dnNormalDN(syntax, val, dn, ctx) \
427         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
428
429
430 /*
431  * entry.c
432  */
433 LDAP_SLAPD_V (const Entry) slap_entry_root;
434
435 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
436
437 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
438 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
439
440 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
441         Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
442 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
443 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
444
445 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
446 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
447 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
448 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
449
450 /*
451  * extended.c
452  */
453 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
454
455 #ifdef LDAP_EXOP_X_CANCEL
456 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
457 #endif
458 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
459 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
460 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
461
462 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
463
464 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
465         int index, struct berval *oid, int blen ));
466
467 LDAP_SLAPD_F (int) load_extop LDAP_P((
468         struct berval *ext_oid,
469         slap_mask_t flags,
470         SLAP_EXTOP_MAIN_FN *ext_main ));
471
472 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
473
474 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
475
476 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
477
478 /*
479  *  * cancel.c
480  *   */
481 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
482
483 /*
484  * filter.c
485  */
486 LDAP_SLAPD_F (int) get_filter LDAP_P((
487         Operation *op,
488         BerElement *ber,
489         Filter **filt,
490         const char **text ));
491
492 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
493 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
494 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
495 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
496
497 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
498         ValuesReturnFilter **f,
499         const char **text ));
500
501 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
502 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
503
504 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
505 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
506         struct berval *out ));
507
508 /*
509  * filterentry.c
510  */
511
512 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
513
514 /*
515  * globals.c
516  */
517
518 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
519 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
520 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
521 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
522
523 /*
524  * index.c
525  */
526 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
527
528 /*
529  * init.c
530  */
531 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
532 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
533 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
534 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
535
536 LDAP_SLAPD_V (char **)  slap_known_controls;
537
538 /*
539  * kerberos.c
540  */
541 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
542 LDAP_SLAPD_V (char *)   ldap_srvtab;
543 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
544 #endif
545
546 /*
547  * limits.c
548  */
549 LDAP_SLAPD_F (int) get_limits LDAP_P((
550         Backend *be, struct berval *ndn,
551         struct slap_limits_set **limit ));
552 LDAP_SLAPD_F (int) parse_limits LDAP_P((
553         Backend *be, const char *fname, int lineno,
554         int argc, char **argv ));
555 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
556         struct slap_limits_set *limit ));
557
558 /*
559  * lock.c
560  */
561 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
562         const char *type, FILE **lfp ));
563 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
564
565 /*
566  * matchedValues.c
567  */
568 LDAP_SLAPD_F (int) filter_matched_values( 
569         Operation       *op,
570         Attribute       *a,
571         char            ***e_flags );
572
573 /*
574  * modrdn.c
575  */
576 LDAP_SLAPD_F (int) slap_modrdn2mods(
577         Operation       *op,
578         SlapReply       *rs,
579         Entry           *e,
580         LDAPRDN         oldrdn,
581         LDAPRDN         newrdn,
582         Modifications   **pmod );
583
584 /*
585  * modify.c
586  */
587 LDAP_SLAPD_F( int ) slap_mods_check(
588         Modifications *ml,
589         int update,
590         const char **text,
591         char *textbuf, size_t textlen, void *ctx );
592
593 LDAP_SLAPD_F( int ) slap_mods_opattrs(
594         Operation *op,
595         Modifications *mods,
596         Modifications **modlist,
597         const char **text,
598         char *textbuf, size_t textlen );
599
600 /*
601  * mods.c
602  */
603 LDAP_SLAPD_F( int ) modify_check_duplicates(
604         AttributeDescription *ad, MatchingRule *mr, 
605         BerVarray vals, BerVarray mods, int permissive, 
606         const char **text, char *textbuf, size_t textlen );
607 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
608         Modification *mod,
609         int permissive,
610         const char **text, char *textbuf, size_t textlen );
611 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
612         Modification *mod,
613         int permissive,
614         const char **text, char *textbuf, size_t textlen );
615 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
616         Modification *mod,
617         int permissive,
618         const char **text, char *textbuf, size_t textlen );
619
620 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
621 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
622 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
623
624 /*
625  * module.c
626  */
627 #ifdef SLAPD_MODULES
628
629 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
630 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
631
632 LDAP_SLAPD_F (int) load_null_module(
633         const void *module, const char *file_name);
634 LDAP_SLAPD_F (int) load_extop_module(
635         const void *module, const char *file_name);
636
637 LDAP_SLAPD_F (int) module_load LDAP_P((
638         const char* file_name,
639         int argc, char *argv[] ));
640 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
641
642 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
643         const void *module, const char *name));
644
645 #endif /* SLAPD_MODULES */
646
647 /* mr.c */
648 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
649 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
650 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
651         slap_mrule_defs_rec *def,
652         MatchingRule * associated,
653         const char **err ));
654 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
655
656 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
657         slap_mrule_defs_rec *def ));
658
659 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
660 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
661
662 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
663 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
664
665 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
666         AttributeType *at );
667
668 /*
669  * mra.c
670  */
671 LDAP_SLAPD_F (int) get_mra LDAP_P((
672         Operation *op,
673         BerElement *ber,
674         MatchingRuleAssertion **mra,
675         const char **text ));
676 LDAP_SLAPD_F (void) mra_free LDAP_P((
677         Operation *op,
678         MatchingRuleAssertion *mra,
679         int freeit ));
680
681 /* oc.c */
682 LDAP_SLAPD_F (int) oc_add LDAP_P((
683         LDAPObjectClass *oc,
684         int user,
685         const char **err));
686 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
687
688 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
689         const char *ocname));
690 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
691         struct berval *ocname));
692 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
693         ObjectClass *sup,
694         ObjectClass *sub ));
695
696 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
697         Entry *, ObjectClass *oc, int set_flags ));
698 #define is_entry_alias(e)               \
699         (((e)->e_ocflags & SLAP_OC__END) \
700          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
701          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
702 #define is_entry_referral(e)    \
703         (((e)->e_ocflags & SLAP_OC__END) \
704          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
705          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
706 #define is_entry_subentry(e)    \
707         (((e)->e_ocflags & SLAP_OC__END) \
708          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
709          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
710 #define is_entry_collectiveAttributeSubentry(e) \
711         (((e)->e_ocflags & SLAP_OC__END) \
712          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
713          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
714 #define is_entry_dynamicObject(e)       \
715         (((e)->e_ocflags & SLAP_OC__END) \
716          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
717          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
718
719 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
720
721 /*
722  * oidm.c
723  */
724 LDAP_SLAPD_F(char *) oidm_find(char *oid);
725 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
726 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
727         const char *fname, int lineno, int argc, char **argv ));
728
729 /*
730  * operation.c
731  */
732 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
733 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
734 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
735 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
736         BerElement *ber, ber_int_t msgid,
737         ber_tag_t tag, ber_int_t id ));
738
739 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
740 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
741 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
742
743 /*
744  * operational.c
745  */
746 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
747 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
748
749 /*
750  * passwd.c
751  */
752 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
753
754 LDAP_SLAPD_F (int) slap_passwd_check(
755         Connection                      *conn,
756         Attribute                       *attr,
757         struct berval           *cred,
758         const char                      **text );
759
760 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
761
762 LDAP_SLAPD_F (void) slap_passwd_hash(
763         struct berval           *cred,
764         struct berval           *hash,
765         const char              **text );
766
767 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
768         struct berval           *cred );
769
770 LDAP_SLAPD_F (int) slap_passwd_parse(
771         struct berval *reqdata,
772         struct berval *id,
773         struct berval *oldpass,
774         struct berval *newpass,
775         const char **text );
776
777 /*
778  * phonetic.c
779  */
780 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
781
782 /*
783  * referral.c
784  */
785 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
786         const char *url ));
787
788 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
789         Operation *op, Entry *e ));
790
791 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
792         BerVarray refs,
793         struct berval *base,
794         struct berval *target,
795         int scope ));
796
797 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
798         Entry *e,
799         struct berval *ndn,
800         int *err,
801         const char **text ));
802
803 /*
804  * repl.c
805  */
806 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
807         const char *host ));
808 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
809         int nr, const char *suffix ));
810 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
811         int nr, char *attrs, int exclude ));
812 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
813
814 /*
815  * result.c
816  */
817 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
818 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
819 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
820 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
821 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
822 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
823 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
824 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
825
826 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
827         int *code, char **matched, char **info ));
828
829 /*
830  * root_dse.c
831  */
832 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
833         Connection *conn,
834         Entry **e,
835         const char **text ));
836
837 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
838         const char *file));
839
840 /*
841  * sasl.c
842  */
843 LDAP_SLAPD_F (int) slap_sasl_init(void);
844 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
845 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
846
847 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
848 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
849
850 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
851         slap_ssf_t ssf, /* relative strength of external security */
852         const char *authid );   /* asserted authenication id */
853
854 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
855 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
856
857 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
858
859 LDAP_SLAPD_F (int) slap_sasl_setpass(
860         Operation       *op,
861         SlapReply       *rs );
862
863 LDAP_SLAPD_F (int) slap_sasl_config(
864         int cargc,
865         char **cargv,
866         char *line,
867         const char *fname,
868         int lineno );
869
870 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
871         char *id, int len,
872         char *user_realm, struct berval *dn, int flags );
873
874 /*
875  * saslauthz.c
876  */
877 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
878         Operation *op,
879         struct berval *saslname,
880         struct berval *dn ));
881 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
882         Operation *op,
883         struct berval *authcid,
884         struct berval *authzid ));
885 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
886         const char *match, const char *replace ));
887 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
888
889
890 /*
891  * schema.c
892  */
893 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
894
895 /*
896  * schema_check.c
897  */
898 LDAP_SLAPD_F( int ) oc_check_allowed(
899         AttributeType *type,
900         BerVarray oclist,
901         ObjectClass *sc );
902
903 LDAP_SLAPD_F( int ) structural_class(
904         BerVarray ocs,
905         struct berval *scbv,
906         ObjectClass **sc,
907         const char **text,
908         char *textbuf, size_t textlen );
909
910 LDAP_SLAPD_F( int ) entry_schema_check(
911         Backend *be, Entry *e, Attribute *attrs,
912         const char** text,
913         char *textbuf, size_t textlen );
914
915 LDAP_SLAPD_F( int ) mods_structural_class(
916         Modifications *mods,
917         struct berval *oc,
918         const char** text,
919         char *textbuf, size_t textlen );
920
921 /*
922  * schema_init.c
923  */
924 LDAP_SLAPD_V( int ) schema_init_done;
925 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
926 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
927
928 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
929
930 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
931
932 /*
933  * schema_prep.c
934  */
935 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
936 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
937 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
938
939 /*
940  * schemaparse.c
941  */
942 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
943
944 LDAP_SLAPD_F (int) parse_cr LDAP_P((
945         const char *fname, int lineno, char *line, char **argv ));
946 LDAP_SLAPD_F (int) parse_oc LDAP_P((
947         const char *fname, int lineno, char *line, char **argv ));
948 LDAP_SLAPD_F (int) parse_at LDAP_P((
949         const char *fname, int lineno, char *line, char **argv ));
950 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
951 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
952         char delim ));
953
954 /*
955  * sl_malloc.c
956  */
957 LDAP_SLAPD_V (BerMemoryFunctions) sl_mfuncs;
958 LDAP_SLAPD_F (void *) sl_malloc LDAP_P(( ber_len_t size, void *ctx ));
959 LDAP_SLAPD_F (void *) sl_realloc LDAP_P(( void *block, ber_len_t size, void *ctx ));
960 LDAP_SLAPD_F (void *) sl_calloc LDAP_P(( ber_len_t nelem, ber_len_t size, void *ctx ));
961 LDAP_SLAPD_F (void) sl_free LDAP_P(( void *, void *ctx ));
962 LDAP_SLAPD_F (void) sl_mem_init LDAP_P(( void ));
963 LDAP_SLAPD_F (void *) sl_mem_create LDAP_P(( ber_len_t size, void *ctx ));
964 LDAP_SLAPD_F (void) sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
965 LDAP_SLAPD_F (void) sl_mem_destroy LDAP_P(( void *key, void *data ));
966 LDAP_SLAPD_F (void *) sl_mark LDAP_P(( void *ctx ));
967 LDAP_SLAPD_F (void) sl_release LDAP_P(( void *, void *ctx ));
968 LDAP_SLAPD_F (void *) sl_context LDAP_P(( void *ptr ));
969
970 /*
971  * starttls.c
972  */
973 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
974
975 /*
976  * str2filter.c
977  */
978 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
979 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
980
981 /* syntax.c */
982 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
983         const char *synname ));
984 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
985         const char *syndesc, int *slen ));
986 LDAP_SLAPD_F (int) syn_add LDAP_P((
987         LDAPSyntax *syn,
988         slap_syntax_defs_rec *def,
989         const char **err ));
990 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
991
992 LDAP_SLAPD_F (int) register_syntax LDAP_P((
993         slap_syntax_defs_rec *def ));
994
995 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
996
997 /*
998  * user.c
999  */
1000 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1001 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1002 #endif
1003
1004 /*
1005  * value.c
1006  */
1007 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1008         AttributeDescription *ad,
1009         MatchingRule *mr,
1010         unsigned usage,
1011         struct berval *in,
1012         struct berval *out,
1013         const char ** text,
1014         void *ctx ));
1015
1016 LDAP_SLAPD_F (int) value_match LDAP_P((
1017         int *match,
1018         AttributeDescription *ad,
1019         MatchingRule *mr,
1020         unsigned flags,
1021         struct berval *v1,
1022         void *v2,
1023         const char ** text ));
1024 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1025         AttributeDescription *ad,
1026         unsigned flags,
1027         BerVarray values,
1028         struct berval *value,
1029         void *ctx ));
1030
1031 LDAP_SLAPD_F (int) value_add LDAP_P((
1032         BerVarray *vals,
1033         BerVarray addvals ));
1034 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1035         BerVarray *vals,
1036         struct berval *addval ));
1037
1038 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1039 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1040
1041 /*
1042  * Other...
1043  */
1044 LDAP_SLAPD_V(unsigned) num_subordinates;
1045
1046 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1047 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1048 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1049 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1050
1051 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1052 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1053 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1054 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1055 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1056
1057 LDAP_SLAPD_V (BerVarray)                default_referral;
1058 LDAP_SLAPD_V (char *)           replogfile;
1059 LDAP_SLAPD_V (const char)       Versionstr[];
1060 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1061
1062 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1063 LDAP_SLAPD_V (int)              global_gentlehup;
1064 LDAP_SLAPD_V (int)              global_idletimeout;
1065 LDAP_SLAPD_V (int)              global_schemacheck;
1066 LDAP_SLAPD_V (char *)   global_host;
1067 LDAP_SLAPD_V (char *)   global_realm;
1068 LDAP_SLAPD_V (char *)   default_passwd_hash;
1069 LDAP_SLAPD_V (int)              lber_debug;
1070 LDAP_SLAPD_V (int)              ldap_syslog;
1071 LDAP_SLAPD_V (struct berval)    default_search_base;
1072 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1073
1074 LDAP_SLAPD_V (struct berval)    global_schemadn;
1075 LDAP_SLAPD_V (struct berval)    global_schemandn;
1076
1077 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1078 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1079 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1080 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1081 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1082
1083 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1084 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1085 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1086 #ifdef SLAPD_MONITOR
1087 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1088 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1089 #endif /* SLAPD_MONITOR */
1090
1091 LDAP_SLAPD_V (char *)           slapd_pid_file;
1092 LDAP_SLAPD_V (char *)           slapd_args_file;
1093 LDAP_SLAPD_V (time_t)           starttime;
1094
1095 /* use time(3) -- no mutex */
1096 #define slap_get_time() time( NULL )
1097
1098 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1099 LDAP_SLAPD_V (int)                      connection_pool_max;
1100
1101 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1102 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1103
1104 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1105 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1106 #endif
1107 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1108
1109 LDAP_SLAPD_V (AccessControl *) global_acl;
1110
1111 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1112
1113 LDAP_SLAPD_V (int)              use_reverse_lookup;
1114
1115 LDAP_SLAPD_V (struct berval)    AllUser;
1116 LDAP_SLAPD_V (struct berval)    AllOper;
1117 LDAP_SLAPD_V (struct berval)    NoAttrs;
1118
1119 /*
1120  * operations
1121  */
1122 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1123 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1124 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1125 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1126 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1127 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1128 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1129 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1130 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1131 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1132
1133 /*
1134  * syncrepl
1135  */
1136
1137 #ifdef LDAP_SYNCREPL
1138 LDAP_SLAPD_V (struct runqueue_s) syncrepl_rq;
1139
1140 LDAP_SLAPD_F (void) init_syncrepl LDAP_P(());
1141 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1142 LDAP_SLAPD_F (int) ldap_sync_search LDAP_P((
1143                                                         syncinfo_t *, LDAP *, LDAPControl **, LDAPControl **, int *));
1144 LDAP_SLAPD_F (Entry*) syncrepl_message_to_entry LDAP_P((
1145                                                         syncinfo_t *, LDAP *, Operation *, LDAPMessage *,
1146                                                         Modifications **, int*, struct berval *, struct berval * ));
1147 LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
1148                                                         syncinfo_t *, LDAP *, Operation*, Entry*,
1149                                                         Modifications*,int, struct berval*, struct berval*, int ));
1150 LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
1151                                                         syncinfo_t *, LDAP *, Operation *, struct berval *,
1152                                                         struct berval * ));
1153 LDAP_SLAPD_F (char **) str2clist LDAP_P(( char **, char *, const char * ));
1154 #endif
1155
1156 LDAP_END_DECL
1157
1158 #endif /* PROTO_SLAP_H */
1159