]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
4b26475dfc5f3655f659b80c992a35a0c13dee93
[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 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P((
455         Connection *conn, Operation *op,
456         const char * reqoid,
457         struct berval * reqdata,
458         char ** rspoid,
459         struct berval ** rspdata,
460         LDAPControl *** rspctrls,
461         const char ** text,
462         BerVarray *refs ));
463
464 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
465         int index, char *oid, int blen ));
466
467 LDAP_SLAPD_F (int) load_extop LDAP_P((
468         const char *ext_oid,
469         SLAP_EXTOP_MAIN_FN *ext_main ));
470
471 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
472
473 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
474
475 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
476
477 /*
478  *  * cancel.c
479  *   */
480 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
481
482 /*
483  * filter.c
484  */
485 LDAP_SLAPD_F (int) get_filter LDAP_P((
486         Connection *conn,
487         BerElement *ber,
488         Filter **filt,
489         const char **text ));
490
491 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
492 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
493
494 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Connection *conn, BerElement *ber,
495         ValuesReturnFilter **f,
496         const char **text ));
497
498 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( ValuesReturnFilter *f ));
499 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( ValuesReturnFilter *f, struct berval *fstr ));
500
501 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
502
503 /*
504  * filterentry.c
505  */
506
507 LDAP_SLAPD_F (int) test_filter LDAP_P((
508         Backend *be, Connection *conn, Operation *op,
509         Entry *e, Filter *f ));
510
511 /*
512  * index.c
513  */
514 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
515
516 /*
517  * init.c
518  */
519 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
520 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
521 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
522 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
523
524 LDAP_SLAPD_V (char *)   slap_known_controls[];
525
526 /*
527  * kerberos.c
528  */
529 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
530 LDAP_SLAPD_V (char *)   ldap_srvtab;
531 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
532 #endif
533
534 /*
535  * limits.c
536  */
537 LDAP_SLAPD_F (int) get_limits LDAP_P((
538         Backend *be, struct berval *ndn,
539         struct slap_limits_set **limit ));
540 LDAP_SLAPD_F (int) parse_limits LDAP_P((
541         Backend *be, const char *fname, int lineno,
542         int argc, char **argv ));
543 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
544         struct slap_limits_set *limit ));
545
546 /*
547  * lock.c
548  */
549 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
550         const char *type, FILE **lfp ));
551 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
552
553 /*
554  * matchedValues.c
555  */
556 LDAP_SLAPD_F (int) filter_matched_values( 
557         Backend         *be,
558         Connection      *conn,
559         Operation       *op,
560         Attribute       *a,
561         char            ***e_flags );
562
563 /*
564  * modrdn.c
565  */
566 LDAP_SLAPD_F (int) slap_modrdn2mods(
567         Backend         *be,
568         Connection      *conn,
569         Operation       *op,
570         Entry           *e,
571         LDAPRDN         *oldrdn,
572         LDAPRDN         *newrdn,
573         int             deleteoldrdn,
574         Modifications   **pmod );
575
576 /*
577  * modify.c
578  */
579 LDAP_SLAPD_F( int ) slap_mods_check(
580         Modifications *ml,
581         int update,
582         const char **text,
583         char *textbuf, size_t textlen );
584
585 LDAP_SLAPD_F( int ) slap_mods_opattrs(
586         Backend *be,
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         BerElement *ber,
666         MatchingRuleAssertion **mra,
667         const char **text ));
668 LDAP_SLAPD_F (void) mra_free LDAP_P((
669         MatchingRuleAssertion *mra,
670         int freeit ));
671
672 /* oc.c */
673 LDAP_SLAPD_F (int) oc_add LDAP_P((
674         LDAPObjectClass *oc,
675         int user,
676         const char **err));
677 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
678
679 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
680         const char *ocname));
681 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
682         struct berval *ocname));
683 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
684         ObjectClass *sup,
685         ObjectClass *sub ));
686
687 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
688         Entry *, ObjectClass *oc, int set_flags ));
689 #define is_entry_alias(e)               \
690         (((e)->e_ocflags & SLAP_OC__END) \
691          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
692          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
693 #define is_entry_referral(e)    \
694         (((e)->e_ocflags & SLAP_OC__END) \
695          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
696          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
697 #define is_entry_subentry(e)    \
698         (((e)->e_ocflags & SLAP_OC__END) \
699          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
700          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
701 #define is_entry_collectiveAttributeSubentry(e) \
702         (((e)->e_ocflags & SLAP_OC__END) \
703          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
704          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
705 #define is_entry_dynamicObject(e)       \
706         (((e)->e_ocflags & SLAP_OC__END) \
707          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
708          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
709
710 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
711
712 /*
713  * oidm.c
714  */
715 LDAP_SLAPD_F(char *) oidm_find(char *oid);
716 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
717 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
718         const char *fname, int lineno, int argc, char **argv ));
719
720 /*
721  * operation.c
722  */
723 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
724 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
725         BerElement *ber, ber_int_t msgid,
726         ber_tag_t tag, ber_int_t id ));
727
728 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
729 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
730 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
731
732 /*
733  * operational.c
734  */
735 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
736 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
737
738 /*
739  * passwd.c
740  */
741 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
742
743 LDAP_SLAPD_F (int) slap_passwd_check(
744         Connection                      *conn,
745         Attribute                       *attr,
746         struct berval           *cred );
747
748 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
749
750 LDAP_SLAPD_F (void) slap_passwd_hash(
751         struct berval           *cred,
752         struct berval           *hash );
753
754 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
755         struct berval           *cred );
756
757 LDAP_SLAPD_F (int) slap_passwd_parse(
758         struct berval *reqdata,
759         struct berval *id,
760         struct berval *oldpass,
761         struct berval *newpass,
762         const char **text );
763
764 /*
765  * phonetic.c
766  */
767 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
768
769 /*
770  * referral.c
771  */
772 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
773         const char *url ));
774
775 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
776         Backend *be, Connection *conn, Operation *op, Entry *e ));
777
778 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
779         BerVarray refs,
780         struct berval *base,
781         struct berval *target,
782         int scope ));
783
784 /*
785  * repl.c
786  */
787 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
788         const char *host ));
789 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
790         int nr, const char *suffix ));
791 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
792         int nr, char *attrs, int exclude ));
793 LDAP_SLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op,
794         struct berval *dn, struct berval *ndn, void *change ));
795
796 /*
797  * result.c
798  */
799 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P((
800         Connection *conn, Operation *op,
801         ber_int_t err, const char *matched, const char *text,
802         BerVarray refs,
803         LDAPControl **ctrls ));
804
805 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P((
806         Connection *conn, Operation *op,
807         ber_int_t err, const char *matched,
808         const char *text,
809         BerVarray refs,
810         LDAPControl **ctrls,
811         struct berval *cred ));
812
813 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P((
814         Connection *conn, Operation *op,
815         ber_int_t err, const char *text ));
816
817 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P((
818         Connection *conn, Operation *op,
819         ber_int_t err, const char *matched,
820         const char *text, BerVarray refs,
821         const char *rspoid, struct berval *rspdata,
822         LDAPControl **ctrls ));
823
824 LDAP_SLAPD_F (void) slap_send_ldap_intermediate_resp 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) send_ldap_partial LDAP_P((
832         Connection *conn, Operation *op,
833         const char *rspoid, struct berval *rspdata,
834         LDAPControl **ctrls ));
835
836 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P((
837         Connection *conn, Operation *op,
838         ber_int_t err, const char *matched, const char *text,
839         BerVarray refs,
840         LDAPControl **ctrls,
841         int nentries ));
842
843 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P((
844         Backend *be, Connection *conn, Operation *op,
845         Entry *e, BerVarray refs,
846         LDAPControl **ctrls,
847         BerVarray *v2refs ));
848
849 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P((
850         Backend *be, Connection *conn, Operation *op,
851         Entry *e, AttributeName *attrs, int attrsonly,
852         LDAPControl **ctrls ));
853
854 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
855         int *code, char **matched, char **info ));
856
857 /*
858  * root_dse.c
859  */
860 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
861         Connection *conn,
862         Entry **e,
863         const char **text ));
864
865 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
866         const char *file));
867
868 /*
869  * sasl.c
870  */
871 LDAP_SLAPD_F (int) slap_sasl_init(void);
872 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
873 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
874
875 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
876 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
877
878 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
879         slap_ssf_t ssf, /* relative strength of external security */
880         const char *authid );   /* asserted authenication id */
881
882 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
883 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
884
885 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P((
886         Connection *conn, Operation *op, 
887         struct berval *dn, struct berval *ndn,
888         struct berval *cred,
889         struct berval *edn, slap_ssf_t *ssf ));
890
891 LDAP_SLAPD_F (int) slap_sasl_setpass(
892         Connection      *conn,
893         Operation       *op,
894         const char      *reqoid,
895         struct berval   *reqdata,
896         char            **rspoid,
897         struct berval   **rspdata,
898         LDAPControl     *** rspctrls,
899         const char      **text );
900
901 LDAP_SLAPD_F (int) slap_sasl_config(
902         int cargc,
903         char **cargv,
904         char *line,
905         const char *fname,
906         int lineno );
907
908 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn,
909         char *id, int len,
910         char *user_realm, struct berval *dn, int flags );
911
912 /*
913  * saslauthz.c
914  */
915 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
916         Connection *conn,
917         struct berval *saslname,
918         struct berval *dn ));
919 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
920         Connection *conn,
921         struct berval *authcid,
922         struct berval *authzid ));
923 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
924         const char *match, const char *replace ));
925 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
926 LDAP_SLAPD_F (slap_response) slap_cb_null_response;
927 LDAP_SLAPD_F (slap_sresult) slap_cb_null_sresult;
928 LDAP_SLAPD_F (slap_sendreference) slap_cb_null_sreference;
929
930
931 /*
932  * schema.c
933  */
934 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
935
936 /*
937  * schema_check.c
938  */
939 LDAP_SLAPD_F( int ) oc_check_allowed(
940         AttributeType *type,
941         BerVarray oclist,
942         ObjectClass *sc );
943
944 LDAP_SLAPD_F( int ) structural_class(
945         BerVarray ocs,
946         struct berval *scbv,
947         ObjectClass **sc,
948         const char **text,
949         char *textbuf, size_t textlen );
950
951 LDAP_SLAPD_F( int ) entry_schema_check(
952         Backend *be, Entry *e, Attribute *attrs,
953         const char** text,
954         char *textbuf, size_t textlen );
955
956 LDAP_SLAPD_F( int ) mods_structural_class(
957         Modifications *mods,
958         struct berval *oc,
959         const char** text,
960         char *textbuf, size_t textlen );
961
962 /*
963  * schema_init.c
964  */
965 LDAP_SLAPD_V( int ) schema_init_done;
966 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
967 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
968
969 LDAP_SLAPD_F( int ) octetStringIndexer(
970         slap_mask_t use,
971         slap_mask_t flags,
972         Syntax *syntax,
973         MatchingRule *mr,
974         struct berval *prefix,
975         BerVarray values,
976         BerVarray *keysp );
977
978 LDAP_SLAPD_F( int ) octetStringFilter(
979         slap_mask_t use,
980         slap_mask_t flags,
981         Syntax *syntax,
982         MatchingRule *mr,
983         struct berval *prefix,
984         void * assertValue,
985         BerVarray *keysp );
986
987 /*
988  * schema_prep.c
989  */
990 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
991 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
992 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
993
994 /*
995  * schemaparse.c
996  */
997 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
998
999 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1000         const char *fname, int lineno, char *line, char **argv ));
1001 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1002         const char *fname, int lineno, char *line, char **argv ));
1003 LDAP_SLAPD_F (int) parse_at LDAP_P((
1004         const char *fname, int lineno, char *line, char **argv ));
1005 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1006 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1007         char delim ));
1008
1009 /*
1010  * starttls.c
1011  */
1012 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1013
1014 /*
1015  * str2filter.c
1016  */
1017 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1018
1019 /*
1020  * suffixalias.c
1021  */
1022 LDAP_SLAPD_F (void) suffix_alias LDAP_P(( Backend *be, struct berval *ndn ));
1023
1024 /* syntax.c */
1025 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1026         const char *synname ));
1027 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1028         const char *syndesc, int *slen ));
1029 LDAP_SLAPD_F (int) syn_add LDAP_P((
1030         LDAPSyntax *syn,
1031         slap_syntax_defs_rec *def,
1032         const char **err ));
1033 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1034
1035 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1036         slap_syntax_defs_rec *def ));
1037
1038 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1039
1040 /*
1041  * user.c
1042  */
1043 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1044 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1045 #endif
1046
1047 /*
1048  * value.c
1049  */
1050 LDAP_SLAPD_F (int) value_validate LDAP_P((
1051         MatchingRule *mr,
1052         struct berval *in,
1053         const char ** text ));
1054 LDAP_SLAPD_F (int) value_normalize LDAP_P((
1055         AttributeDescription *ad,
1056         unsigned usage,
1057         struct berval *in,
1058         struct berval *out,
1059         const char ** text ));
1060 LDAP_SLAPD_F (int) value_validate_normalize LDAP_P((
1061         AttributeDescription *ad,
1062         unsigned usage,
1063         struct berval *in,
1064         struct berval *out,
1065         const char ** text ));
1066 LDAP_SLAPD_F (int) value_match LDAP_P((
1067         int *match,
1068         AttributeDescription *ad,
1069         MatchingRule *mr,
1070         unsigned flags,
1071         struct berval *v1,
1072         void *v2,
1073         const char ** text ));
1074 #define value_find(ad,values,value) (value_find_ex((ad),0,(values),(value)))
1075 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1076         AttributeDescription *ad,
1077         unsigned flags,
1078         BerVarray values,
1079         struct berval *value ));
1080 LDAP_SLAPD_F (int) value_add LDAP_P((
1081         BerVarray *vals,
1082         BerVarray addvals ));
1083 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1084         BerVarray *vals,
1085         struct berval *addval ));
1086
1087 /*
1088  * Other...
1089  */
1090 LDAP_SLAPD_V(unsigned) num_subordinates;
1091
1092 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1093 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1094
1095 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1096 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1097 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1098 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1099 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1100
1101 LDAP_SLAPD_V (BerVarray)                default_referral;
1102 LDAP_SLAPD_V (char *)           replogfile;
1103 LDAP_SLAPD_V (const char)       Versionstr[];
1104 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1105
1106 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1107 LDAP_SLAPD_V (int)              global_gentlehup;
1108 LDAP_SLAPD_V (int)              global_idletimeout;
1109 LDAP_SLAPD_V (int)              global_schemacheck;
1110 LDAP_SLAPD_V (char *)   global_host;
1111 LDAP_SLAPD_V (char *)   global_realm;
1112 LDAP_SLAPD_V (char *)   default_passwd_hash;
1113 LDAP_SLAPD_V (int)              lber_debug;
1114 LDAP_SLAPD_V (int)              ldap_syslog;
1115 LDAP_SLAPD_V (struct berval)    default_search_base;
1116 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1117
1118 LDAP_SLAPD_V (struct berval)    global_schemadn;
1119 LDAP_SLAPD_V (struct berval)    global_schemandn;
1120
1121 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1122 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1123 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1124 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1125 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1126
1127 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1128 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1129 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1130 #ifdef SLAPD_MONITOR
1131 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1132 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1133 #endif /* SLAPD_MONITOR */
1134
1135 LDAP_SLAPD_V (char *)           slapd_pid_file;
1136 LDAP_SLAPD_V (char *)           slapd_args_file;
1137 LDAP_SLAPD_V (time_t)           starttime;
1138
1139 /* use time(3) -- no mutex */
1140 #define slap_get_time() time( NULL )
1141
1142 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1143 LDAP_SLAPD_V (int)                      connection_pool_max;
1144
1145 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1146 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1147
1148 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1149 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1150 #endif
1151 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1152
1153 LDAP_SLAPD_V (AccessControl *) global_acl;
1154
1155 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1156
1157 LDAP_SLAPD_V (int)              use_reverse_lookup;
1158
1159 LDAP_SLAPD_V (struct berval)    AllUser;
1160 LDAP_SLAPD_V (struct berval)    AllOper;
1161 LDAP_SLAPD_V (struct berval)    NoAttrs;
1162
1163 /*
1164  * operations
1165  */
1166 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
1167 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
1168 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
1169 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
1170 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
1171 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
1172 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
1173 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
1174 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
1175 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
1176
1177 LDAP_END_DECL
1178
1179 #endif /* PROTO_SLAP_H */
1180