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