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