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