]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
fixes
[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  * ch_malloc.c
258  */
259 LDAP_SLAPD_V (BerMemoryFunctions) ch_mfuncs;
260 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
261 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
262 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
263 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
264 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
265
266 #ifndef CH_FREE
267 #undef free
268 #define free ch_free
269 #endif
270
271 /*
272  * controls.c
273  */
274 LDAP_SLAPD_F (void) slap_free_ctrls LDAP_P((
275         Operation *op,
276         LDAPControl **ctrls ));
277 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
278         Operation *op,
279         SlapReply *rs,
280         int senderrors ));
281 LDAP_SLAPD_F (int) register_supported_control LDAP_P((
282         const char *controloid,
283         slap_mask_t controlmask,
284         char **controlexops,
285         SLAP_CTRL_PARSE_FN *controlparsefn ));
286 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
287 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
288 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
289 LDAP_SLAPD_F (int) get_supported_controls LDAP_P (( char ***ctrloidsp, slap_mask_t **ctrlmasks ));
290
291 /*
292  * config.c
293  */
294 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, int depth ));
295 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
296
297 /*
298  * connection.c
299  */
300 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
301 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
302 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
303 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
304
305 LDAP_SLAPD_F (long) connection_init LDAP_P((
306         ber_socket_t s,
307         Listener* url,
308         const char* dnsname,
309         const char* peername,
310         int use_tls,
311         slap_ssf_t ssf,
312         const char *id ));
313
314 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
315 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
316 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
317         LDAP_GCCATTR((const));
318
319 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
320 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
321
322 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
323
324 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
325 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
326         Connection *, ber_socket_t *));
327 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
328
329 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
330
331 /*
332  * cr.c
333  */
334 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
335
336 LDAP_SLAPD_F (int) cr_add LDAP_P((
337         LDAPContentRule *oc,
338         int user,
339         const char **err));
340 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
341
342 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
343         const char *crname));
344 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
345         struct berval *crname));
346
347 /*
348  * daemon.c
349  */
350 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s);
351 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
352 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
353 LDAP_SLAPD_F (int) slapd_daemon(void);
354 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
355 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
356
357 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
358 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
359
360 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
361 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
362 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
363 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
364
365 /*
366  * dn.c
367  */
368
369 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
370 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
371
372 LDAP_SLAPD_F (int) dnValidate LDAP_P((
373         Syntax *syntax, 
374         struct berval *val ));
375
376 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
377
378 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
379
380 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
381         Syntax *syntax, 
382         struct berval *val, 
383         struct berval *pretty,
384         struct berval *normal,
385         void *ctx ));
386
387 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
388         int *matchp, 
389         slap_mask_t flags, 
390         Syntax *syntax, 
391         MatchingRule *mr,
392         struct berval *value, 
393         void *assertedValue ));
394
395 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
396         const struct berval *dn, const struct berval *suffix ));
397
398 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
399         struct berval *dn, struct berval *rdn, void *ctx ));
400
401 LDAP_SLAPD_F (int) rdnValidate LDAP_P(( struct berval * rdn ));
402
403 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
404
405 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
406         struct berval * new_dn,
407         struct berval * parent_dn,
408         struct berval * newrdn ));
409
410 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
411
412 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
413
414 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
415
416 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
417 #define dnPrettyDN(syntax, val, dn, ctx) \
418         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
419 #define dnNormalDN(syntax, val, dn, ctx) \
420         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
421
422
423 /*
424  * entry.c
425  */
426 LDAP_SLAPD_V (const Entry) slap_entry_root;
427
428 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
429
430 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
431 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
432
433 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
434         Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
435 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
436 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
437
438 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
439 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
440 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
441 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
442
443 /*
444  * extended.c
445  */
446 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
447
448 #ifdef LDAP_EXOP_X_CANCEL
449 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
450 #endif
451 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
452 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
453 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
454
455 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
456
457 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
458         int index, struct berval *oid, int blen ));
459
460 LDAP_SLAPD_F (int) load_extop LDAP_P((
461         struct berval *ext_oid,
462         slap_mask_t flags,
463         SLAP_EXTOP_MAIN_FN *ext_main ));
464
465 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
466
467 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
468
469 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
470
471 /*
472  *  * cancel.c
473  *   */
474 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
475
476 /*
477  * filter.c
478  */
479 LDAP_SLAPD_F (int) get_filter LDAP_P((
480         Operation *op,
481         BerElement *ber,
482         Filter **filt,
483         const char **text ));
484
485 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
486 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
487 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
488 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
489
490 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
491         ValuesReturnFilter **f,
492         const char **text ));
493
494 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
495 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
496
497 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
498 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
499         struct berval *out ));
500
501 /*
502  * filterentry.c
503  */
504
505 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
506
507 /*
508  * globals.c
509  */
510
511 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
512 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
513 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
514 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
515
516 /*
517  * index.c
518  */
519 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
520
521 /*
522  * init.c
523  */
524 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
525 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
526 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
527 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
528
529 LDAP_SLAPD_V (char **)  slap_known_controls;
530
531 /*
532  * kerberos.c
533  */
534 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
535 LDAP_SLAPD_V (char *)   ldap_srvtab;
536 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
537 #endif
538
539 /*
540  * limits.c
541  */
542 LDAP_SLAPD_F (int) get_limits LDAP_P((
543         Backend *be, struct berval *ndn,
544         struct slap_limits_set **limit ));
545 LDAP_SLAPD_F (int) parse_limits LDAP_P((
546         Backend *be, const char *fname, int lineno,
547         int argc, char **argv ));
548 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
549         struct slap_limits_set *limit ));
550
551 /*
552  * lock.c
553  */
554 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
555         const char *type, FILE **lfp ));
556 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
557
558 /*
559  * matchedValues.c
560  */
561 LDAP_SLAPD_F (int) filter_matched_values( 
562         Operation       *op,
563         Attribute       *a,
564         char            ***e_flags );
565
566 /*
567  * modrdn.c
568  */
569 LDAP_SLAPD_F (int) slap_modrdn2mods(
570         Operation       *op,
571         SlapReply       *rs,
572         Entry           *e,
573         LDAPRDN         oldrdn,
574         LDAPRDN         newrdn,
575         Modifications   **pmod );
576
577 /*
578  * modify.c
579  */
580 LDAP_SLAPD_F( int ) slap_mods_check(
581         Modifications *ml,
582         int update,
583         const char **text,
584         char *textbuf, size_t textlen, void *ctx );
585
586 LDAP_SLAPD_F( int ) slap_mods_opattrs(
587         Operation *op,
588         Modifications *mods,
589         Modifications **modlist,
590         const char **text,
591         char *textbuf, size_t textlen );
592
593 /*
594  * mods.c
595  */
596 LDAP_SLAPD_F( int ) modify_check_duplicates(
597         AttributeDescription *ad, MatchingRule *mr, 
598         BerVarray vals, BerVarray mods, int permissive, 
599         const char **text, char *textbuf, size_t textlen );
600 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
601         Modification *mod,
602         int permissive,
603         const char **text, char *textbuf, size_t textlen );
604 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
605         Modification *mod,
606         int permissive,
607         const char **text, char *textbuf, size_t textlen );
608 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
609         Modification *mod,
610         int permissive,
611         const char **text, char *textbuf, size_t textlen );
612
613 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
614 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
615 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
616
617 /*
618  * module.c
619  */
620 #ifdef SLAPD_MODULES
621
622 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
623 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
624
625 LDAP_SLAPD_F (int) load_null_module(
626         const void *module, const char *file_name);
627 LDAP_SLAPD_F (int) load_extop_module(
628         const void *module, const char *file_name);
629
630 LDAP_SLAPD_F (int) module_load LDAP_P((
631         const char* file_name,
632         int argc, char *argv[] ));
633 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
634
635 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
636         const void *module, const char *name));
637
638 #endif /* SLAPD_MODULES */
639
640 /* mr.c */
641 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
642 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
643 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
644         slap_mrule_defs_rec *def,
645         MatchingRule * associated,
646         const char **err ));
647 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
648
649 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
650         slap_mrule_defs_rec *def ));
651
652 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
653 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
654
655 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
656 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
657
658 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
659         AttributeType *at );
660
661 /*
662  * mra.c
663  */
664 LDAP_SLAPD_F (int) get_mra LDAP_P((
665         Operation *op,
666         BerElement *ber,
667         MatchingRuleAssertion **mra,
668         const char **text ));
669 LDAP_SLAPD_F (void) mra_free LDAP_P((
670         Operation *op,
671         MatchingRuleAssertion *mra,
672         int freeit ));
673
674 /* oc.c */
675 LDAP_SLAPD_F (int) oc_add LDAP_P((
676         LDAPObjectClass *oc,
677         int user,
678         const char **err));
679 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
680
681 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
682         const char *ocname));
683 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
684         struct berval *ocname));
685 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
686         ObjectClass *sup,
687         ObjectClass *sub ));
688
689 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
690         Entry *, ObjectClass *oc, int set_flags ));
691 #define is_entry_alias(e)               \
692         (((e)->e_ocflags & SLAP_OC__END) \
693          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
694          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
695 #define is_entry_referral(e)    \
696         (((e)->e_ocflags & SLAP_OC__END) \
697          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
698          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
699 #define is_entry_subentry(e)    \
700         (((e)->e_ocflags & SLAP_OC__END) \
701          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
702          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
703 #define is_entry_collectiveAttributeSubentry(e) \
704         (((e)->e_ocflags & SLAP_OC__END) \
705          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
706          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
707 #define is_entry_dynamicObject(e)       \
708         (((e)->e_ocflags & SLAP_OC__END) \
709          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
710          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
711
712 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
713
714 /*
715  * oidm.c
716  */
717 LDAP_SLAPD_F(char *) oidm_find(char *oid);
718 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
719 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
720         const char *fname, int lineno, int argc, char **argv ));
721
722 /*
723  * operation.c
724  */
725 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
726 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
727 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
728 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
729         BerElement *ber, ber_int_t msgid,
730         ber_tag_t tag, ber_int_t id ));
731
732 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
733 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
734 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
735
736 /*
737  * operational.c
738  */
739 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
740 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
741
742 /*
743  * passwd.c
744  */
745 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
746
747 LDAP_SLAPD_F (int) slap_passwd_check(
748         Connection                      *conn,
749         Attribute                       *attr,
750         struct berval           *cred,
751         const char                      **text );
752
753 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
754
755 LDAP_SLAPD_F (void) slap_passwd_hash(
756         struct berval           *cred,
757         struct berval           *hash,
758         const char              **text );
759
760 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
761         struct berval           *cred );
762
763 LDAP_SLAPD_F (int) slap_passwd_parse(
764         struct berval *reqdata,
765         struct berval *id,
766         struct berval *oldpass,
767         struct berval *newpass,
768         const char **text );
769
770 /*
771  * phonetic.c
772  */
773 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
774
775 /*
776  * referral.c
777  */
778 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
779         const char *url ));
780
781 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
782         Operation *op, Entry *e ));
783
784 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
785         BerVarray refs,
786         struct berval *base,
787         struct berval *target,
788         int scope ));
789
790 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
791         Entry *e,
792         struct berval *ndn,
793         int *err,
794         const char **text ));
795
796 /*
797  * repl.c
798  */
799 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
800         const char *host ));
801 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
802         int nr, const char *suffix ));
803 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
804         int nr, char *attrs, int exclude ));
805 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
806
807 /*
808  * result.c
809  */
810 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
811 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
812 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
813 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
814 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
815 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
816 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
817 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
818
819 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
820         int *code, char **matched, char **info ));
821
822 /*
823  * root_dse.c
824  */
825 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
826         Connection *conn,
827         Entry **e,
828         const char **text ));
829
830 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
831         const char *file));
832
833 /*
834  * sasl.c
835  */
836 LDAP_SLAPD_F (int) slap_sasl_init(void);
837 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
838 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
839
840 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
841 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
842
843 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
844         slap_ssf_t ssf, /* relative strength of external security */
845         const char *authid );   /* asserted authenication id */
846
847 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
848 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
849
850 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
851
852 LDAP_SLAPD_F (int) slap_sasl_setpass(
853         Operation       *op,
854         SlapReply       *rs );
855
856 LDAP_SLAPD_F (int) slap_sasl_config(
857         int cargc,
858         char **cargv,
859         char *line,
860         const char *fname,
861         int lineno );
862
863 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
864         char *id, int len,
865         char *user_realm, struct berval *dn, int flags );
866
867 /*
868  * saslauthz.c
869  */
870 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
871         Operation *op,
872         struct berval *saslname,
873         struct berval *dn ));
874 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
875         Operation *op,
876         struct berval *authcid,
877         struct berval *authzid ));
878 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
879         const char *match, const char *replace ));
880 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
881
882
883 /*
884  * schema.c
885  */
886 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
887
888 /*
889  * schema_check.c
890  */
891 LDAP_SLAPD_F( int ) oc_check_allowed(
892         AttributeType *type,
893         BerVarray oclist,
894         ObjectClass *sc );
895
896 LDAP_SLAPD_F( int ) structural_class(
897         BerVarray ocs,
898         struct berval *scbv,
899         ObjectClass **sc,
900         const char **text,
901         char *textbuf, size_t textlen );
902
903 LDAP_SLAPD_F( int ) entry_schema_check(
904         Backend *be, Entry *e, Attribute *attrs,
905         const char** text,
906         char *textbuf, size_t textlen );
907
908 LDAP_SLAPD_F( int ) mods_structural_class(
909         Modifications *mods,
910         struct berval *oc,
911         const char** text,
912         char *textbuf, size_t textlen );
913
914 /*
915  * schema_init.c
916  */
917 LDAP_SLAPD_V( int ) schema_init_done;
918 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
919 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
920
921 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
922
923 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
924
925 /*
926  * schema_prep.c
927  */
928 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
929 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
930 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
931
932 /*
933  * schemaparse.c
934  */
935 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
936
937 LDAP_SLAPD_F (int) parse_cr LDAP_P((
938         const char *fname, int lineno, char *line, char **argv ));
939 LDAP_SLAPD_F (int) parse_oc LDAP_P((
940         const char *fname, int lineno, char *line, char **argv ));
941 LDAP_SLAPD_F (int) parse_at LDAP_P((
942         const char *fname, int lineno, char *line, char **argv ));
943 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
944 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
945         char delim ));
946
947 /*
948  * sl_malloc.c
949  */
950 LDAP_SLAPD_V (BerMemoryFunctions) sl_mfuncs;
951 LDAP_SLAPD_F (void *) sl_malloc LDAP_P(( ber_len_t size, void *ctx ));
952 LDAP_SLAPD_F (void *) sl_realloc LDAP_P(( void *block, ber_len_t size, void *ctx ));
953 LDAP_SLAPD_F (void *) sl_calloc LDAP_P(( ber_len_t nelem, ber_len_t size, void *ctx ));
954 LDAP_SLAPD_F (void) sl_free LDAP_P(( void *, void *ctx ));
955 LDAP_SLAPD_F (void) sl_mem_init LDAP_P(( void ));
956 LDAP_SLAPD_F (void *) sl_mem_create LDAP_P(( ber_len_t size, void *ctx ));
957 LDAP_SLAPD_F (void) sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
958 LDAP_SLAPD_F (void) sl_mem_destroy LDAP_P(( void *key, void *data ));
959 LDAP_SLAPD_F (void *) sl_mark LDAP_P(( void *ctx ));
960 LDAP_SLAPD_F (void) sl_release LDAP_P(( void *, void *ctx ));
961 LDAP_SLAPD_F (void *) sl_context LDAP_P(( void *ptr ));
962
963 /*
964  * starttls.c
965  */
966 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
967
968 /*
969  * str2filter.c
970  */
971 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
972 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
973
974 /* syntax.c */
975 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
976         const char *synname ));
977 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
978         const char *syndesc, int *slen ));
979 LDAP_SLAPD_F (int) syn_add LDAP_P((
980         LDAPSyntax *syn,
981         slap_syntax_defs_rec *def,
982         const char **err ));
983 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
984
985 LDAP_SLAPD_F (int) register_syntax LDAP_P((
986         slap_syntax_defs_rec *def ));
987
988 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
989
990 /*
991  * user.c
992  */
993 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
994 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
995 #endif
996
997 /*
998  * value.c
999  */
1000 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1001         AttributeDescription *ad,
1002         MatchingRule *mr,
1003         unsigned usage,
1004         struct berval *in,
1005         struct berval *out,
1006         const char ** text,
1007         void *ctx ));
1008
1009 LDAP_SLAPD_F (int) value_match LDAP_P((
1010         int *match,
1011         AttributeDescription *ad,
1012         MatchingRule *mr,
1013         unsigned flags,
1014         struct berval *v1,
1015         void *v2,
1016         const char ** text ));
1017 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1018         AttributeDescription *ad,
1019         unsigned flags,
1020         BerVarray values,
1021         struct berval *value,
1022         void *ctx ));
1023
1024 LDAP_SLAPD_F (int) value_add LDAP_P((
1025         BerVarray *vals,
1026         BerVarray addvals ));
1027 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1028         BerVarray *vals,
1029         struct berval *addval ));
1030
1031 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1032 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1033
1034 /*
1035  * Other...
1036  */
1037 LDAP_SLAPD_V(unsigned) num_subordinates;
1038
1039 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1040 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1041 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1042 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1043
1044 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1045 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1046 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1047 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1048 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1049
1050 LDAP_SLAPD_V (BerVarray)                default_referral;
1051 LDAP_SLAPD_V (char *)           replogfile;
1052 LDAP_SLAPD_V (const char)       Versionstr[];
1053 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1054
1055 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1056 LDAP_SLAPD_V (int)              global_gentlehup;
1057 LDAP_SLAPD_V (int)              global_idletimeout;
1058 LDAP_SLAPD_V (int)              global_schemacheck;
1059 LDAP_SLAPD_V (char *)   global_host;
1060 LDAP_SLAPD_V (char *)   global_realm;
1061 LDAP_SLAPD_V (char *)   default_passwd_hash;
1062 LDAP_SLAPD_V (int)              lber_debug;
1063 LDAP_SLAPD_V (int)              ldap_syslog;
1064 LDAP_SLAPD_V (struct berval)    default_search_base;
1065 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1066
1067 LDAP_SLAPD_V (struct berval)    global_schemadn;
1068 LDAP_SLAPD_V (struct berval)    global_schemandn;
1069
1070 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1071 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1072 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1073 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1074 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1075
1076 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1077 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1078 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1079 #ifdef SLAPD_MONITOR
1080 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1081 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1082 #endif /* SLAPD_MONITOR */
1083
1084 LDAP_SLAPD_V (char *)           slapd_pid_file;
1085 LDAP_SLAPD_V (char *)           slapd_args_file;
1086 LDAP_SLAPD_V (time_t)           starttime;
1087
1088 /* use time(3) -- no mutex */
1089 #define slap_get_time() time( NULL )
1090
1091 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1092 LDAP_SLAPD_V (int)                      connection_pool_max;
1093
1094 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1095 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1096
1097 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1098 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1099 #endif
1100 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1101
1102 LDAP_SLAPD_V (AccessControl *) global_acl;
1103
1104 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1105
1106 LDAP_SLAPD_V (int)              use_reverse_lookup;
1107
1108 LDAP_SLAPD_V (struct berval)    AllUser;
1109 LDAP_SLAPD_V (struct berval)    AllOper;
1110 LDAP_SLAPD_V (struct berval)    NoAttrs;
1111
1112 /*
1113  * operations
1114  */
1115 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1116 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1117 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1118 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1119 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1120 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1121 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1122 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1123 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1124 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1125
1126 /*
1127  * syncrepl
1128  */
1129
1130 #ifdef LDAP_SYNCREPL
1131 LDAP_SLAPD_V (struct runqueue_s) syncrepl_rq;
1132
1133 LDAP_SLAPD_F (void) init_syncrepl LDAP_P(());
1134 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1135
1136 LDAP_SLAPD_F (char **) str2clist( char **, char *, const char * );
1137 #endif
1138
1139 LDAP_END_DECL
1140
1141 #endif /* PROTO_SLAP_H */
1142