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