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