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