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