]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
0d48e5118bfd495cd512a18d0a4da9edadcb9c94
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2006 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  * aci.c
36  */
37 #ifdef SLAP_DYNACL
38 #ifdef SLAPD_ACI_ENABLED
39 LDAP_SLAPD_F (int) dynacl_aci_init LDAP_P(( void ));
40 #endif /* SLAPD_ACI_ENABLED */
41 #endif /* SLAP_DYNACL */
42
43 /*
44  * acl.c
45  */
46 LDAP_SLAPD_F (int) access_allowed_mask LDAP_P((
47         Operation *op,
48         Entry *e, AttributeDescription *desc, struct berval *val,
49         slap_access_t access,
50         AccessControlState *state,
51         slap_mask_t *mask ));
52 #define access_allowed(op,e,desc,val,access,state) access_allowed_mask(op,e,desc,val,access,state,NULL)
53 LDAP_SLAPD_F (int) slap_access_allowed LDAP_P((
54         Operation               *op,
55         Entry                   *e,
56         AttributeDescription    *desc,
57         struct berval           *val,
58         slap_access_t           access,
59         AccessControlState      *state,
60         slap_mask_t             *maskp ));
61 LDAP_SLAPD_F (int) slap_access_always_allowed LDAP_P((
62         Operation               *op,
63         Entry                   *e,
64         AttributeDescription    *desc,
65         struct berval           *val,
66         slap_access_t           access,
67         AccessControlState      *state,
68         slap_mask_t             *maskp ));
69
70 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
71         Operation *op, Entry *e, Modifications *ml ));
72
73 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a, int pos );
74
75 #ifdef SLAP_DYNACL
76 LDAP_SLAPD_F (int) slap_dynacl_register LDAP_P(( slap_dynacl_t *da ));
77 LDAP_SLAPD_F (slap_dynacl_t *) slap_dynacl_get LDAP_P(( const char *name ));
78 #endif /* SLAP_DYNACL */
79 LDAP_SLAPD_F (int) acl_init LDAP_P(( void ));
80
81 LDAP_SLAPD_F (int) acl_get_part LDAP_P((
82         struct berval   *list,
83         int             ix,
84         char            sep,
85         struct berval   *bv ));
86 LDAP_SLAPD_F (int) acl_match_set LDAP_P((
87         struct berval *subj,
88         Operation *op,
89         Entry *e,
90         struct berval *default_set_attribute ));
91 LDAP_SLAPD_F (int) acl_string_expand LDAP_P((
92         struct berval *newbuf, struct berval *pattern,
93         char *match, int nmatch, regmatch_t *matches ));
94
95 /*
96  * aclparse.c
97  */
98 LDAP_SLAPD_V (char *) style_strings[];
99
100 LDAP_SLAPD_F (int) parse_acl LDAP_P(( Backend *be,
101         const char *fname, int lineno,
102         int argc, char **argv, int pos ));
103
104 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
105 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
106
107 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
108 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char*, int debug ));
109 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
110 LDAP_SLAPD_F (void) acl_unparse LDAP_P(( AccessControl*, struct berval* ));
111 LDAP_SLAPD_F (void) acl_destroy LDAP_P(( AccessControl*, AccessControl* ));
112 LDAP_SLAPD_F (void) acl_free LDAP_P(( AccessControl *a ));
113
114
115 /*
116  * ad.c
117  */
118 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
119         const char *,
120         AttributeDescription **ad,
121         const char **text ));
122
123 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
124         struct berval *bv,
125         AttributeDescription **ad,
126         const char **text ));
127
128 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
129
130 #define ad_cmp(l,r)     (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
131         ? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
132                 ? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
133
134 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
135         AttributeDescription *sub,
136         AttributeDescription *super ));
137
138 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
139         AttributeDescription *desc,
140         AttributeName *attrs ));
141
142 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
143         const char *,
144         AttributeDescription **ad,
145         const char **text,
146         unsigned proxied ));
147
148 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
149         struct berval *bv,
150         AttributeDescription **ad,
151         const char **text,
152         unsigned proxied ));
153
154 LDAP_SLAPD_F (int) slap_ad_undef_promote LDAP_P((
155         char *name,
156         AttributeType *nat ));
157
158 LDAP_SLAPD_F (AttributeDescription *) ad_find_tags LDAP_P((
159         AttributeType *type,
160         struct berval *tags ));
161
162 LDAP_SLAPD_F (AttributeName *) str2anlist LDAP_P(( AttributeName *an,
163         char *str, const char *brkstr ));
164 LDAP_SLAPD_F (char **) anlist2charray_x LDAP_P((
165                                                                         AttributeName *an, int dup, void *ctx ));
166 LDAP_SLAPD_F (char **) anlist2charray LDAP_P(( AttributeName *an, int dup ));
167 LDAP_SLAPD_F (char **) anlist2attrs LDAP_P(( AttributeName *anlist ));
168 LDAP_SLAPD_F (AttributeName *) file2anlist LDAP_P((
169                         AttributeName *, const char *, const char * ));
170 LDAP_SLAPD_F (int) an_find LDAP_P(( AttributeName *a, struct berval *s ));
171 LDAP_SLAPD_F (int) ad_define_option LDAP_P(( const char *name,
172         const char *fname, int lineno ));
173 LDAP_SLAPD_F (void) ad_unparse_options LDAP_P(( BerVarray *res ));
174
175 LDAP_SLAPD_F (MatchingRule *) ad_mr(
176         AttributeDescription *ad,
177         unsigned usage );
178
179 LDAP_SLAPD_V( AttributeName * ) slap_anlist_no_attrs;
180 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_user_attributes;
181 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_operational_attributes;
182 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_attributes;
183
184 /*
185  * add.c
186  */
187 LDAP_SLAPD_F (int) slap_mods2entry LDAP_P(( Modifications *mods, Entry **e,
188         int initial, int dup, const char **text, char *textbuf, size_t textlen ));
189
190 LDAP_SLAPD_F (int) slap_entry2mods LDAP_P(( Entry *e,
191                                                 Modifications **mods, const char **text,
192                                                 char *textbuf, size_t textlen ));
193 LDAP_SLAPD_F( int ) slap_add_opattrs(
194         Operation *op,
195         const char **text,
196         char *textbuf, size_t textlen,
197         int manage_ctxcsn );
198
199
200 /*
201  * at.c
202  */
203 LDAP_SLAPD_V(int) at_oc_cache;
204 LDAP_SLAPD_F (void) at_config LDAP_P((
205         const char *fname, int lineno,
206         int argc, char **argv ));
207 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P((
208         const char *name ));
209 LDAP_SLAPD_F (AttributeType *) at_bvfind LDAP_P((
210         struct berval *name ));
211 LDAP_SLAPD_F (int) at_find_in_list LDAP_P((
212         AttributeType *sat, AttributeType **list ));
213 LDAP_SLAPD_F (int) at_append_to_list LDAP_P((
214         AttributeType *sat, AttributeType ***listp ));
215 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P((
216         int pos, AttributeType ***listp ));
217 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
218 LDAP_SLAPD_F (int) at_add LDAP_P((
219         LDAPAttributeType *at, int user,
220         AttributeType **sat, const char **err ));
221 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
222
223 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
224         AttributeType *sub,
225         AttributeType *super ));
226
227 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
228         AttributeType *at,
229         const char *oid ));
230
231 LDAP_SLAPD_F (int) at_start LDAP_P(( AttributeType **at ));
232 LDAP_SLAPD_F (int) at_next LDAP_P(( AttributeType **at ));
233
234 LDAP_SLAPD_F (void) at_unparse LDAP_P((
235         BerVarray *bva, AttributeType *start, AttributeType *end, int system ));
236
237 LDAP_SLAPD_F (int) register_at LDAP_P((
238         char *at,
239         AttributeDescription **ad,
240         int dupok ));
241
242 /*
243  * attr.c
244  */
245 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
246 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
247
248 #ifdef LDAP_COMP_MATCH
249 LDAP_SLAPD_F (void) comp_tree_free LDAP_P(( Attribute *a ));
250 #endif
251
252 #define attr_mergeit( e, d, v ) attr_merge( e, d, v, NULL /* FIXME */ )
253 #define attr_mergeit_one( e, d, v ) attr_merge_one( e, d, v, NULL /* FIXME */ )
254
255 LDAP_SLAPD_F (Attribute *) attr_alloc LDAP_P(( AttributeDescription *ad ));
256 LDAP_SLAPD_F (Attribute *) attrs_alloc LDAP_P(( int num ));
257 LDAP_SLAPD_F (int) attr_prealloc LDAP_P(( int num ));
258 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
259         AttributeDescription *desc,
260         BerVarray vals,
261         BerVarray nvals ));
262 LDAP_SLAPD_F (int) attr_merge_one LDAP_P(( Entry *e,
263         AttributeDescription *desc,
264         struct berval *val,
265         struct berval *nval ));
266 LDAP_SLAPD_F (int) attr_normalize LDAP_P(( AttributeDescription *desc,
267         BerVarray vals, BerVarray *nvalsp, void *memctx ));
268 LDAP_SLAPD_F (int) attr_normalize_one LDAP_P(( AttributeDescription *desc,
269         struct berval *val, struct berval *nval, void *memctx ));
270 LDAP_SLAPD_F (int) attr_merge_normalize LDAP_P(( Entry *e,
271         AttributeDescription *desc,
272         BerVarray vals, void *memctx ));
273 LDAP_SLAPD_F (int) attr_merge_normalize_one LDAP_P(( Entry *e,
274         AttributeDescription *desc,
275         struct berval *val, void *memctx ));
276 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P((
277         Attribute *a, AttributeDescription *desc ));
278 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P((
279         Attribute *a, AttributeDescription *desc ));
280 LDAP_SLAPD_F (int) attr_delete LDAP_P((
281         Attribute **attrs, AttributeDescription *desc ));
282
283 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
284 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
285 LDAP_SLAPD_F (int) attr_init LDAP_P(( void ));
286 LDAP_SLAPD_F (int) attr_destroy LDAP_P(( void ));
287
288
289 /*
290  * ava.c
291  */
292 LDAP_SLAPD_F (int) get_ava LDAP_P((
293         Operation *op,
294         BerElement *ber,
295         AttributeAssertion **ava,
296         unsigned usage,
297         const char **text ));
298 LDAP_SLAPD_F (void) ava_free LDAP_P((
299         Operation *op,
300         AttributeAssertion *ava,
301         int freeit ));
302
303 /*
304  * backend.c
305  */
306
307 #define be_match( be1, be2 )    ( (be1) == (be2) || \
308                                   ( (be1) && (be2) && (be1)->be_nsuffix == (be2)->be_nsuffix ) )
309
310 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
311 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
312 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
313 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
314 LDAP_SLAPD_F (int) backend_startup_one LDAP_P((Backend *be));
315 LDAP_SLAPD_F (int) backend_sync LDAP_P((Backend *be));
316 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
317 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
318 LDAP_SLAPD_F (void) backend_destroy_one LDAP_P((BackendDB *bd, int dynamic));
319
320 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
321 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type,
322         BackendDB *be ));
323
324 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
325         struct berval * dn,
326         int manageDSAit,
327         int noSubordinates ));
328
329 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be,
330         struct berval *suffix ));
331 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Operation *op ));
332 LDAP_SLAPD_F (int) be_isroot_dn LDAP_P(( Backend *be, struct berval *ndn ));
333 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Operation *op ));
334 LDAP_SLAPD_F (int) be_slurp_update LDAP_P(( Operation *op ));
335 #define be_isupdate( op ) be_slurp_update( (op) )
336 LDAP_SLAPD_F (int) be_shadow_update LDAP_P(( Operation *op ));
337 LDAP_SLAPD_F (int) be_isupdate_dn LDAP_P(( Backend *be, struct berval *ndn ));
338 LDAP_SLAPD_F (struct berval *) be_root_dn LDAP_P(( Backend *be ));
339 LDAP_SLAPD_F (int) be_entry_get_rw LDAP_P(( struct slap_op *o,
340                 struct berval *ndn, ObjectClass *oc,
341                 AttributeDescription *at, int rw, Entry **e ));
342 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P((
343         Operation *o, Entry *e, int rw ));
344 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 )
345 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 )
346
347 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Operation *op, SlapReply *rs));
348 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
349 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
350
351 LDAP_SLAPD_F( int ) backend_check_controls LDAP_P((
352         Operation *op,
353         SlapReply *rs ));
354 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
355         Operation *op,
356         SlapReply *rs,
357         struct berval *opdata ));
358
359 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
360         Operation *op,
361         SlapReply *rs ));
362
363 LDAP_SLAPD_F (int) backend_group LDAP_P((
364         Operation *op,
365         Entry *target,
366         struct berval *gr_ndn,
367         struct berval *op_ndn,
368         ObjectClass *group_oc,
369         AttributeDescription *group_at
370 ));
371
372 LDAP_SLAPD_F (int) backend_attribute LDAP_P((
373         Operation *op,
374         Entry *target,
375         struct berval *entry_ndn,
376         AttributeDescription *entry_at,
377         BerVarray *vals,
378         slap_access_t access
379 ));
380
381 LDAP_SLAPD_F (int) backend_access LDAP_P((
382         Operation               *op,
383         Entry                   *target,
384         struct berval           *edn,
385         AttributeDescription    *entry_at,
386         struct berval           *nval,
387         slap_access_t           access,
388         slap_mask_t             *mask ));
389
390 LDAP_SLAPD_F (int) backend_operational LDAP_P((
391         Operation *op,
392         SlapReply *rs 
393 ));
394
395 LDAP_SLAPD_V(BackendInfo) slap_binfo[]; 
396
397 /*
398  * backglue.c
399  */
400
401 LDAP_SLAPD_F (int) glue_sub_init( void );
402 LDAP_SLAPD_F (int) glue_sub_attach( void );
403 LDAP_SLAPD_F (int) glue_sub_add( BackendDB *be, int advert, int online );
404 LDAP_SLAPD_F (int) glue_sub_del( BackendDB *be );
405
406 /*
407  * backover.c
408  */
409 LDAP_SLAPD_F (int) overlay_register LDAP_P(( slap_overinst *on ));
410 LDAP_SLAPD_F (int) overlay_config LDAP_P(( BackendDB *be, const char *ov ));
411 LDAP_SLAPD_F (void) overlay_destroy_one LDAP_P((
412         BackendDB *be,
413         slap_overinst *on ));
414 LDAP_SLAPD_F (slap_overinst *) overlay_next LDAP_P(( slap_overinst *on ));
415 LDAP_SLAPD_F (slap_overinst *) overlay_find LDAP_P(( const char *name ));
416 LDAP_SLAPD_F (int) overlay_is_over LDAP_P(( BackendDB *be ));
417 LDAP_SLAPD_F (int) overlay_is_inst LDAP_P(( BackendDB *be, const char *name ));
418 LDAP_SLAPD_F (int) overlay_register_control LDAP_P((
419         BackendDB *be,
420         const char *oid ));
421 LDAP_SLAPD_F (int) overlay_op_walk LDAP_P((
422         Operation *op,
423         SlapReply *rs,
424         slap_operation_t which,
425         slap_overinfo *oi,
426         slap_overinst *on ));
427
428 /*
429  * bconfig.c
430  */
431 LDAP_SLAPD_F (int) slap_loglevel_register LDAP_P (( slap_mask_t m, struct berval *s ));
432 LDAP_SLAPD_F (int) slap_loglevel_get LDAP_P(( struct berval *s, int *l ));
433 LDAP_SLAPD_F (int) str2loglevel LDAP_P(( const char *s, int *l ));
434 LDAP_SLAPD_F (int) loglevel2bvarray LDAP_P(( int l, BerVarray *bva ));
435 LDAP_SLAPD_F (const char *) loglevel2str LDAP_P(( int l ));
436 LDAP_SLAPD_F (int) loglevel2bv LDAP_P(( int l, struct berval *bv ));
437 LDAP_SLAPD_F (int) loglevel_print LDAP_P(( FILE *out ));
438 LDAP_SLAPD_F (int) slap_cf_aux_table_parse LDAP_P(( const char *word, void *bc, slap_cf_aux_table *tab0, LDAP_CONST char *tabmsg ));
439 LDAP_SLAPD_F (int) slap_cf_aux_table_unparse LDAP_P(( void *bc, struct berval *bv, slap_cf_aux_table *tab0 ));
440
441 /*
442  * ch_malloc.c
443  */
444 LDAP_SLAPD_V (BerMemoryFunctions) ch_mfuncs;
445 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
446 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
447 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
448 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
449 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
450
451 #ifndef CH_FREE
452 #undef free
453 #define free ch_free
454 #endif
455
456 /*
457  * component.c
458  */
459 #ifdef LDAP_COMP_MATCH
460 struct comp_attribute_aliasing;
461
462 LDAP_SLAPD_F (int) test_comp_filter_entry LDAP_P((
463         Operation* op,
464         Entry* e,
465         MatchingRuleAssertion* mr));
466
467 LDAP_SLAPD_F (int) dup_comp_filter LDAP_P((
468         Operation* op,
469         struct berval *bv,
470         ComponentFilter *in_f,
471         ComponentFilter **out_f ));
472
473 LDAP_SLAPD_F (int) get_aliased_filter_aa LDAP_P((
474         Operation* op,
475         AttributeAssertion* a_assert,
476         struct comp_attribute_aliasing* aa,
477         const char** text ));
478
479 LDAP_SLAPD_F (int) get_aliased_filter LDAP_P((
480         Operation* op,
481         MatchingRuleAssertion* ma,
482         struct comp_attribute_aliasing* aa,
483         const char** text ));
484
485 LDAP_SLAPD_F (int) get_comp_filter LDAP_P((
486         Operation* op,
487         BerValue* bv,
488         ComponentFilter** filt,
489         const char **text ));
490
491 LDAP_SLAPD_F (int) insert_component_reference LDAP_P((
492         ComponentReference *cr,
493         ComponentReference** cr_list ));
494
495 LDAP_SLAPD_F (int) is_component_reference LDAP_P((
496         char *attr ));
497
498 LDAP_SLAPD_F (int) extract_component_reference LDAP_P((
499         char* attr,
500         ComponentReference** cr ));
501
502 LDAP_SLAPD_F (int) componentFilterMatch LDAP_P(( 
503         int *matchp, 
504         slap_mask_t flags, 
505         Syntax *syntax, 
506         MatchingRule *mr,
507         struct berval *value, 
508         void *assertedValue ));
509
510 LDAP_SLAPD_F (int) directoryComponentsMatch LDAP_P((
511         int *matchp,
512         slap_mask_t flags,
513         Syntax *syntax,
514         MatchingRule *mr,
515         struct berval *value,
516         void *assertedValue ));
517
518 LDAP_SLAPD_F (int) allComponentsMatch LDAP_P((
519         int *matchp,
520         slap_mask_t flags,
521         Syntax *syntax,
522         MatchingRule *mr,
523         struct berval *value,
524         void *assertedValue ));
525
526 LDAP_SLAPD_F (ComponentReference*) dup_comp_ref LDAP_P((
527         Operation *op,
528         ComponentReference *cr ));
529                                                                           
530 LDAP_SLAPD_F (int) componentFilterValidate LDAP_P(( 
531         Syntax *syntax,
532         struct berval* bv ));
533
534 LDAP_SLAPD_F (int) allComponentsValidate LDAP_P((
535         Syntax *syntax,
536         struct berval* bv ));
537
538 LDAP_SLAPD_F (void) component_free LDAP_P((
539         ComponentFilter *f ));
540
541 LDAP_SLAPD_F (void) free_ComponentData LDAP_P((
542         Attribute *a ));
543
544 LDAP_SLAPD_V (test_membership_func*) is_aliased_attribute;
545
546 LDAP_SLAPD_V (free_component_func*) component_destructor;
547
548 LDAP_SLAPD_V (get_component_info_func*) get_component_description;
549
550 LDAP_SLAPD_V (component_encoder_func*) component_encoder;
551
552 LDAP_SLAPD_V (convert_attr_to_comp_func*) attr_converter;
553
554 LDAP_SLAPD_V (alloc_nibble_func*) nibble_mem_allocator;
555
556 LDAP_SLAPD_V (free_nibble_func*) nibble_mem_free;
557 #endif
558
559 /*
560  * controls.c
561  */
562 LDAP_SLAPD_V( struct slap_control_ids ) slap_cids;
563 LDAP_SLAPD_F (void) slap_free_ctrls LDAP_P((
564         Operation *op,
565         LDAPControl **ctrls ));
566 LDAP_SLAPD_F (int) slap_parse_ctrl LDAP_P((
567         Operation *op,
568         SlapReply *rs,
569         LDAPControl *control,
570         const char **text ));
571 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
572         Operation *op,
573         SlapReply *rs,
574         int senderrors ));
575 LDAP_SLAPD_F (int) register_supported_control2 LDAP_P((
576         const char *controloid,
577         slap_mask_t controlmask,
578         char **controlexops,
579         SLAP_CTRL_PARSE_FN *controlparsefn,
580         unsigned flags,
581         int *controlcid ));
582 #define register_supported_control(oid, mask, exops, fn, cid) \
583         register_supported_control2((oid), (mask), (exops), (fn), 0, (cid))
584 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
585 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
586 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
587 LDAP_SLAPD_F (int) get_supported_controls LDAP_P ((
588         char ***ctrloidsp, slap_mask_t **ctrlmasks ));
589 LDAP_SLAPD_F (int) slap_find_control_id LDAP_P ((
590         const char *oid, int *cid ));
591 LDAP_SLAPD_F (int) slap_global_control LDAP_P ((
592         Operation *op, const char *oid, int *cid ));
593 LDAP_SLAPD_F (int) slap_remove_control LDAP_P((
594         Operation       *op,
595         SlapReply       *rs,
596         int             ctrl,
597         BI_chk_controls fnc ));
598
599 /*
600  * config.c
601  */
602 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, const char *dir ));
603 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
604 LDAP_SLAPD_F (char **) slap_str2clist LDAP_P((
605         char ***, char *, const char * ));
606 LDAP_SLAPD_F (int) bverb_to_mask LDAP_P((
607         struct berval *bword,  slap_verbmasks *v ));
608 LDAP_SLAPD_F (int) verb_to_mask LDAP_P((
609         const char *word,  slap_verbmasks *v ));
610 LDAP_SLAPD_F (int) verbs_to_mask LDAP_P((
611         int argc, char *argv[], slap_verbmasks *v, slap_mask_t *m ));
612 LDAP_SLAPD_F (int) mask_to_verbs LDAP_P((
613         slap_verbmasks *v, slap_mask_t m, BerVarray *bva ));
614 LDAP_SLAPD_F (int) enum_to_verb LDAP_P((
615         slap_verbmasks *v, slap_mask_t m, struct berval *bv ));
616 LDAP_SLAPD_F (int) slap_verbmasks_init LDAP_P(( slap_verbmasks **vp, slap_verbmasks *v ));
617 LDAP_SLAPD_F (int) slap_verbmasks_destroy LDAP_P(( slap_verbmasks *v ));
618 LDAP_SLAPD_F (int) slap_verbmasks_append LDAP_P(( slap_verbmasks **vp,
619         slap_mask_t m, struct berval *v, slap_mask_t *ignore ));
620 LDAP_SLAPD_F (int) bindconf_parse LDAP_P((
621         const char *word,  slap_bindconf *bc ));
622 LDAP_SLAPD_F (int) bindconf_unparse LDAP_P((
623         slap_bindconf *bc, struct berval *bv ));
624 LDAP_SLAPD_F (int) bindconf_tls_set LDAP_P((
625         slap_bindconf *bc, LDAP *ld ));
626 LDAP_SLAPD_F (void) bindconf_free LDAP_P(( slap_bindconf *bc ));
627 LDAP_SLAPD_F (int) slap_client_connect LDAP_P(( LDAP **ldp, slap_bindconf *sb ));
628 LDAP_SLAPD_F (int) config_generic_wrapper LDAP_P(( Backend *be,
629         const char *fname, int lineno, int argc, char **argv ));
630 LDAP_SLAPD_F (char *) anlist_unparse LDAP_P(( AttributeName *, char *, ber_len_t buflen ));
631
632 #ifdef LDAP_SLAPI
633 LDAP_SLAPD_V (int) slapi_plugins_used;
634 #endif
635
636 /*
637  * connection.c
638  */
639 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
640 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
641 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
642 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
643
644 LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
645         ber_socket_t s,
646         ldap_pvt_thread_start_t *func,
647         void *arg ));
648 LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
649 LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
650
651
652 LDAP_SLAPD_F (long) connection_init LDAP_P((
653         ber_socket_t s,
654         Listener* url,
655         const char* dnsname,
656         const char* peername,
657         int use_tls,
658         slap_ssf_t ssf,
659         struct berval *id ));
660
661 LDAP_SLAPD_F (void) connection_closing LDAP_P((
662         Connection *c, const char *why ));
663 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
664 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
665         LDAP_GCCATTR((const));
666
667 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
668 LDAP_SLAPD_F (int) connection_read_activate LDAP_P((ber_socket_t s));
669 #else
670 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
671 #endif
672 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
673
674 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
675
676 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
677 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
678         Connection *, ber_socket_t *));
679 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
680
681 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
682 LDAP_SLAPD_F (void) connection_fake_init LDAP_P((
683         Connection *conn,
684         Operation *op,
685         void *threadctx ));
686 LDAP_SLAPD_F (void) connection_assign_nextid LDAP_P((Connection *));
687
688 /*
689  * cr.c
690  */
691 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
692 LDAP_SLAPD_F (void) cr_unparse LDAP_P((
693         BerVarray *bva, ContentRule *start, ContentRule *end, int system ));
694
695 LDAP_SLAPD_F (int) cr_add LDAP_P((
696         LDAPContentRule *oc,
697         int user,
698         ContentRule **scr,
699         const char **err));
700
701 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
702
703 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
704         const char *crname));
705 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
706         struct berval *crname));
707
708 /*
709  * ctxcsn.c
710  */
711
712 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_bv;
713 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_cn_bv;
714 LDAP_SLAPD_F (void) slap_get_commit_csn LDAP_P((
715         Operation *, struct berval *maxcsn ));
716 LDAP_SLAPD_F (void) slap_rewind_commit_csn LDAP_P(( Operation * ));
717 LDAP_SLAPD_F (void) slap_graduate_commit_csn LDAP_P(( Operation * ));
718 LDAP_SLAPD_F (Entry *) slap_create_context_csn_entry LDAP_P(( Backend *, struct berval *));
719 LDAP_SLAPD_F (int) slap_get_csn LDAP_P(( Operation *, struct berval *, int ));
720 LDAP_SLAPD_F (void) slap_queue_csn LDAP_P(( Operation *, struct berval * ));
721
722 /*
723  * daemon.c
724  */
725 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s, int isactive);
726 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
727 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
728 LDAP_SLAPD_F (int) slapd_daemon(void);
729 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
730 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, Sockbuf *sb,
731         int wasactive, int wake, int locked ));
732 LDAP_SLAPD_F (void) slapd_sd_lock();
733 LDAP_SLAPD_F (void) slapd_sd_unlock();
734
735 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
736 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
737 LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
738
739 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
740 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
741 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
742 LDAP_SLAPD_F (int) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
743
744 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
745 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
746 LDAP_SLAPD_V (int) slapd_register_slp;
747 LDAP_SLAPD_V (const char *) slapd_slp_attrs;
748 LDAP_SLAPD_V (slap_ssf_t) local_ssf;
749 LDAP_SLAPD_V (struct runqueue_s) slapd_rq;
750
751 /*
752  * dn.c
753  */
754
755 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
756 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
757
758 LDAP_SLAPD_F (int) dnValidate LDAP_P((
759         Syntax *syntax, 
760         struct berval *val ));
761 LDAP_SLAPD_F (int) rdnValidate LDAP_P((
762         Syntax *syntax, 
763         struct berval *val ));
764
765 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
766
767 LDAP_SLAPD_F (slap_mr_normalize_func) rdnNormalize;
768
769 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
770
771 LDAP_SLAPD_F (slap_syntax_transform_func) rdnPretty;
772
773 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
774         Syntax *syntax, 
775         struct berval *val, 
776         struct berval *pretty,
777         struct berval *normal,
778         void *ctx ));
779
780 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
781         int *matchp, 
782         slap_mask_t flags, 
783         Syntax *syntax, 
784         MatchingRule *mr,
785         struct berval *value, 
786         void *assertedValue ));
787
788 LDAP_SLAPD_F (int) dnRelativeMatch LDAP_P(( 
789         int *matchp, 
790         slap_mask_t flags, 
791         Syntax *syntax, 
792         MatchingRule *mr,
793         struct berval *value, 
794         void *assertedValue ));
795
796 LDAP_SLAPD_F (int) rdnMatch LDAP_P(( 
797         int *matchp, 
798         slap_mask_t flags, 
799         Syntax *syntax, 
800         MatchingRule *mr,
801         struct berval *value, 
802         void *assertedValue ));
803
804
805 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
806         const struct berval *dn, const struct berval *suffix ));
807
808 LDAP_SLAPD_F (int) dnIsOneLevelRDN LDAP_P(( struct berval *rdn ));
809
810 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
811         struct berval *dn, struct berval *rdn, void *ctx ));
812
813 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( struct berval * rdn ));
814
815 LDAP_SLAPD_F (ber_len_t) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
816
817 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
818         struct berval * new_dn,
819         struct berval * parent_dn,
820         struct berval * newrdn,
821         void *memctx ));
822
823 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
824 LDAP_SLAPD_F (void) dnRdn LDAP_P(( struct berval *dn, struct berval *rdn ));
825
826 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
827
828 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
829
830 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
831 #define dnPrettyDN(syntax, val, dn, ctx) \
832         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
833 #define dnNormalDN(syntax, val, dn, ctx) \
834         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
835
836 typedef int (SLAP_CERT_MAP_FN) LDAP_P(( void *ssl, struct berval *dn ));
837 LDAP_SLAPD_F (int) register_certificate_map_function LDAP_P(( SLAP_CERT_MAP_FN *fn ));
838
839 /*
840  * entry.c
841  */
842 LDAP_SLAPD_V (const Entry) slap_entry_root;
843
844 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
845
846 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
847 LDAP_SLAPD_F (Entry *) str2entry2 LDAP_P(( char *s, int checkvals ));
848 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
849
850 LDAP_SLAPD_F (ber_len_t) entry_flatsize LDAP_P(( Entry *e, int norm ));
851 LDAP_SLAPD_F (void) entry_partsize LDAP_P(( Entry *e, ber_len_t *len,
852         int *nattrs, int *nvals, int norm ));
853
854 #ifdef SLAP_ZONE_ALLOC
855 LDAP_SLAPD_F (int) entry_decode LDAP_P((
856                                                 struct berval *bv, Entry **e, void *ctx ));
857 #else
858 LDAP_SLAPD_F (int) entry_decode LDAP_P((
859                                                 struct berval *bv, Entry **e ));
860 #endif
861 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
862
863 LDAP_SLAPD_F (void) entry_clean LDAP_P(( Entry *e ));
864 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
865 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
866 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
867 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
868 LDAP_SLAPD_F (Entry *) entry_dup LDAP_P(( Entry *e ));
869 LDAP_SLAPD_F (Entry *) entry_alloc LDAP_P((void));
870 LDAP_SLAPD_F (int) entry_prealloc LDAP_P((int num));
871
872 /*
873  * extended.c
874  */
875 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
876
877 #define exop_is_write( op )     ((op->ore_flags & SLAP_EXOP_WRITES) != 0)
878
879 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
880 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
881 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
882 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
883 #ifdef LDAP_X_TXN
884 LDAP_SLAPD_V( const struct berval ) slap_EXOP_TXN_START;
885 LDAP_SLAPD_V( const struct berval ) slap_EXOP_TXN_END;
886 #endif
887
888 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
889
890 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
891         int index, struct berval *oid, int blen ));
892
893 LDAP_SLAPD_F (int) load_extop2 LDAP_P((
894         const struct berval *ext_oid,
895         slap_mask_t flags,
896         SLAP_EXTOP_MAIN_FN *ext_main,
897         unsigned tmpflags ));
898 #define load_extop(ext_oid, flags, ext_main) \
899         load_extop2((ext_oid), (flags), (ext_main), 0)
900
901 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
902
903 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
904
905 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
906
907 /*
908  * txn.c
909  */
910 #ifdef LDAP_X_TXN
911 LDAP_SLAPD_F ( SLAP_CTRL_PARSE_FN ) txn_spec_ctrl;
912 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) txn_start_extop;
913 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) txn_end_extop;
914 #endif
915
916 /*
917  * cancel.c
918  */
919 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
920
921 /*
922  * filter.c
923  */
924 LDAP_SLAPD_F (int) get_filter LDAP_P((
925         Operation *op,
926         BerElement *ber,
927         Filter **filt,
928         const char **text ));
929
930 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
931 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
932 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
933 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
934 LDAP_SLAPD_F (Filter *) filter_dup LDAP_P(( Filter *f, void *memctx ));
935
936 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
937         ValuesReturnFilter **f,
938         const char **text ));
939
940 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
941 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
942
943 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
944 #define filter_escape_value( in, out )          ldap_bv2escaped_filter_value_x( (in), (out), 0, NULL )
945 #define filter_escape_value_x( in, out, ctx )   ldap_bv2escaped_filter_value_x( (in), (out), 0, ctx )
946
947 /*
948  * filterentry.c
949  */
950
951 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
952
953 /*
954  * frontend.c
955  */
956 LDAP_SLAPD_F (int) frontend_init LDAP_P(( void ));
957
958 /*
959  * globals.c
960  */
961
962 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
963 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
964 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
965 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
966 LDAP_SLAPD_V( struct slap_sync_cookie_s ) slap_sync_cookie;
967 LDAP_SLAPD_V( void * ) slap_tls_ctx;
968 LDAP_SLAPD_V( LDAP * ) slap_tls_ld;
969
970 /*
971  * index.c
972  */
973 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
974 LDAP_SLAPD_F (void) slap_index2bvlen LDAP_P(( slap_mask_t idx, struct berval *bv ));
975 LDAP_SLAPD_F (void) slap_index2bv LDAP_P(( slap_mask_t idx, struct berval *bv ));
976
977 /*
978  * init.c
979  */
980 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
981 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
982 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
983 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
984
985 LDAP_SLAPD_V (char *)   slap_known_controls[];
986
987 /*
988  * kerberos.c
989  */
990 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
991 LDAP_SLAPD_V (char *)   ldap_srvtab;
992 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
993 #endif
994
995 /*
996  * ldapsync.c
997  */
998 LDAP_SLAPD_F (void) slap_compose_sync_cookie LDAP_P((
999                                 Operation *, struct berval *, struct berval *, int ));
1000 LDAP_SLAPD_F (void) slap_sync_cookie_free LDAP_P((
1001                                 struct sync_cookie *, int free_cookie ));
1002 LDAP_SLAPD_F (int) slap_parse_sync_cookie LDAP_P((
1003                                 struct sync_cookie *, void *memctx ));
1004 LDAP_SLAPD_F (int) slap_init_sync_cookie_ctxcsn LDAP_P((
1005                                 struct sync_cookie * ));
1006 LDAP_SLAPD_F (struct sync_cookie *) slap_dup_sync_cookie LDAP_P((
1007                                 struct sync_cookie *, struct sync_cookie * ));
1008 LDAP_SLAPD_F (int) slap_build_syncUUID_set LDAP_P((
1009                                 Operation *, BerVarray *, Entry * ));
1010
1011 /*
1012  * limits.c
1013  */
1014 LDAP_SLAPD_F (int) limits_get LDAP_P((
1015         Operation *op, struct berval *ndn,
1016         struct slap_limits_set **limit ));
1017 LDAP_SLAPD_F (int) limits_parse LDAP_P((
1018         Backend *be, const char *fname, int lineno,
1019         int argc, char **argv ));
1020 LDAP_SLAPD_F (int) limits_parse_one LDAP_P(( const char *arg, 
1021         struct slap_limits_set *limit ));
1022 LDAP_SLAPD_F (int) limits_check LDAP_P((
1023         Operation *op, SlapReply *rs ));
1024 LDAP_SLAPD_F (int) limits_unparse_one LDAP_P(( 
1025         struct slap_limits_set *limit, int which, struct berval *bv, ber_len_t buflen ));
1026 LDAP_SLAPD_F (int) limits_unparse LDAP_P(( 
1027         struct slap_limits *limit, struct berval *bv, ber_len_t buflen ));
1028 LDAP_SLAPD_F (void) limits_destroy LDAP_P(( struct slap_limits **lm ));
1029
1030 /*
1031  * lock.c
1032  */
1033 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
1034         const char *type, FILE **lfp ));
1035 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
1036
1037 /*
1038  * main.c
1039  */
1040 LDAP_SLAPD_F (int)
1041 parse_debug_level LDAP_P(( const char *arg, int *levelp, char ***unknowns ));
1042 LDAP_SLAPD_F (int)
1043 parse_syslog_level LDAP_P(( const char *arg, int *levelp ));
1044 LDAP_SLAPD_F (int)
1045 parse_syslog_user LDAP_P(( const char *arg, int *syslogUser ));
1046 LDAP_SLAPD_F (int)
1047 parse_debug_unknowns LDAP_P(( char **unknowns, int *levelp ));
1048
1049 /*
1050  * matchedValues.c
1051  */
1052 LDAP_SLAPD_F (int) filter_matched_values( 
1053         Operation       *op,
1054         Attribute       *a,
1055         char            ***e_flags );
1056
1057 /*
1058  * modrdn.c
1059  */
1060 LDAP_SLAPD_F (int) slap_modrdn2mods LDAP_P((
1061         Operation       *op,
1062         SlapReply       *rs ));
1063
1064 /*
1065  * modify.c
1066  */
1067 LDAP_SLAPD_F( int ) slap_mods_obsolete_check(
1068         Operation *op,
1069         Modifications *ml,
1070         const char **text,
1071         char *textbuf, size_t textlen );
1072
1073 LDAP_SLAPD_F( int ) slap_mods_no_user_mod_check(
1074         Operation *op,
1075         Modifications *ml,
1076         const char **text,
1077         char *textbuf, size_t textlen );
1078
1079 LDAP_SLAPD_F ( int ) slap_mods_no_repl_user_mod_check(
1080         Operation *op,
1081         Modifications *ml,
1082         const char **text,
1083         char *textbuf,
1084         size_t textlen );
1085
1086 LDAP_SLAPD_F( int ) slap_mods_check(
1087         Modifications *ml,
1088         const char **text,
1089         char *textbuf, size_t textlen, void *ctx );
1090
1091 LDAP_SLAPD_F( void ) slap_timestamp(
1092         time_t *tm,
1093         struct berval *bv );
1094
1095 LDAP_SLAPD_F( void ) slap_mods_opattrs(
1096         Operation *op,
1097         Modifications **modsp,
1098         int manage_ctxcsn );
1099
1100 /*
1101  * mods.c
1102  */
1103 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
1104         Modification *mod,
1105         int permissive,
1106         const char **text, char *textbuf, size_t textlen );
1107 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
1108         Modification *mod,
1109         int permissive,
1110         const char **text, char *textbuf, size_t textlen );
1111 LDAP_SLAPD_F( int ) modify_delete_vindex( Entry *e,
1112         Modification *mod,
1113         int permissive,
1114         const char **text, char *textbuf, size_t textlen, int *idx );
1115 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
1116         Modification *mod,
1117         int permissive,
1118         const char **text, char *textbuf, size_t textlen );
1119 LDAP_SLAPD_F( int ) modify_increment_values( Entry *e,
1120         Modification *mod,
1121         int permissive,
1122         const char **text, char *textbuf, size_t textlen );
1123
1124 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
1125 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods, int freevals );
1126 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
1127
1128 /*
1129  * module.c
1130  */
1131 #ifdef SLAPD_MODULES
1132
1133 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
1134 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
1135
1136 LDAP_SLAPD_F (int) load_null_module(
1137         const void *module, const char *file_name);
1138 LDAP_SLAPD_F (int) load_extop_module(
1139         const void *module, const char *file_name);
1140
1141 LDAP_SLAPD_F (int) module_load LDAP_P((
1142         const char* file_name,
1143         int argc, char *argv[] ));
1144 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
1145
1146 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
1147         const void *module, const char *name));
1148
1149 #endif /* SLAPD_MODULES */
1150
1151 /* mr.c */
1152 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
1153 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
1154 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
1155         slap_mrule_defs_rec *def,
1156         MatchingRule * associated,
1157         const char **err ));
1158 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
1159
1160 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
1161         slap_mrule_defs_rec *def ));
1162
1163 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
1164 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
1165
1166 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
1167 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
1168
1169 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
1170         AttributeType *at );
1171
1172 /*
1173  * mra.c
1174  */
1175 LDAP_SLAPD_F (int) get_mra LDAP_P((
1176         Operation *op,
1177         BerElement *ber,
1178         MatchingRuleAssertion **mra,
1179         const char **text ));
1180 LDAP_SLAPD_F (void) mra_free LDAP_P((
1181         Operation *op,
1182         MatchingRuleAssertion *mra,
1183         int freeit ));
1184
1185 /* oc.c */
1186 LDAP_SLAPD_F (int) oc_add LDAP_P((
1187         LDAPObjectClass *oc,
1188         int user,
1189         ObjectClass **soc,
1190         const char **err));
1191 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
1192
1193 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
1194         const char *ocname));
1195 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
1196         struct berval *ocname));
1197 LDAP_SLAPD_F (ObjectClass *) oc_bvfind_undef LDAP_P((
1198         struct berval *ocname));
1199 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
1200         ObjectClass *sup,
1201         ObjectClass *sub ));
1202
1203 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
1204         Entry *, ObjectClass *oc, unsigned flags ));
1205 #define is_entry_objectclass_or_sub(e,oc) \
1206         (is_entry_objectclass((e),(oc),SLAP_OCF_CHECK_SUP))
1207 #define is_entry_alias(e)               \
1208         (((e)->e_ocflags & SLAP_OC__END) \
1209          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
1210          : is_entry_objectclass((e), slap_schema.si_oc_alias, SLAP_OCF_SET_FLAGS))
1211 #define is_entry_referral(e)    \
1212         (((e)->e_ocflags & SLAP_OC__END) \
1213          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
1214          : is_entry_objectclass((e), slap_schema.si_oc_referral, SLAP_OCF_SET_FLAGS))
1215 #define is_entry_subentry(e)    \
1216         (((e)->e_ocflags & SLAP_OC__END) \
1217          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
1218          : is_entry_objectclass((e), slap_schema.si_oc_subentry, SLAP_OCF_SET_FLAGS))
1219 #define is_entry_collectiveAttributeSubentry(e) \
1220         (((e)->e_ocflags & SLAP_OC__END) \
1221          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
1222          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, SLAP_OCF_SET_FLAGS))
1223 #define is_entry_dynamicObject(e)       \
1224         (((e)->e_ocflags & SLAP_OC__END) \
1225          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
1226          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, SLAP_OCF_SET_FLAGS))
1227 #define is_entry_glue(e)        \
1228         (((e)->e_ocflags & SLAP_OC__END) \
1229          ? (((e)->e_ocflags & SLAP_OC_GLUE) != 0) \
1230          : is_entry_objectclass((e), slap_schema.si_oc_glue, SLAP_OCF_SET_FLAGS))
1231 #define is_entry_syncProviderSubentry(e)        \
1232         (((e)->e_ocflags & SLAP_OC__END) \
1233          ? (((e)->e_ocflags & SLAP_OC_SYNCPROVIDERSUBENTRY) != 0) \
1234          : is_entry_objectclass((e), slap_schema.si_oc_syncProviderSubentry, SLAP_OCF_SET_FLAGS))
1235 #define is_entry_syncConsumerSubentry(e)        \
1236         (((e)->e_ocflags & SLAP_OC__END) \
1237          ? (((e)->e_ocflags & SLAP_OC_SYNCCONSUMERSUBENTRY) != 0) \
1238          : is_entry_objectclass((e), slap_schema.si_oc_syncConsumerSubentry, SLAP_OCF_SET_FLAGS))
1239
1240 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
1241 LDAP_SLAPD_F (void) oc_unparse LDAP_P((
1242         BerVarray *bva, ObjectClass *start, ObjectClass *end, int system ));
1243
1244 LDAP_SLAPD_F (int) register_oc LDAP_P((
1245         char *desc,
1246         ObjectClass **oc,
1247         int dupok ));
1248
1249 /*
1250  * oidm.c
1251  */
1252 LDAP_SLAPD_F(char *) oidm_find(char *oid);
1253 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
1254 LDAP_SLAPD_F (void) oidm_unparse LDAP_P((
1255         BerVarray *bva, OidMacro *start, OidMacro *end, int system ));
1256 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
1257         const char *fname, int lineno, int argc, char **argv, int user,
1258         OidMacro **om ));
1259
1260 /*
1261  * operation.c
1262  */
1263 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
1264 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
1265 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
1266 LDAP_SLAPD_F (void) slap_op_time LDAP_P(( time_t *t, int *n ));
1267 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
1268         BerElement *ber, ber_int_t msgid,
1269         ber_tag_t tag, ber_int_t id ));
1270
1271 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
1272 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
1273 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
1274 LDAP_SLAPD_F (slap_op_t) slap_req2op LDAP_P(( ber_tag_t tag ));
1275
1276 /*
1277  * operational.c
1278  */
1279 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
1280 LDAP_SLAPD_F (Attribute *) slap_operational_entryDN( Entry *e );
1281 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
1282
1283 /*
1284  * overlays.c
1285  */
1286 LDAP_SLAPD_F (int) overlay_init( void );
1287
1288 /*
1289  * passwd.c
1290  */
1291 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
1292
1293 LDAP_SLAPD_F (int) slap_passwd_check(
1294         Operation               *op,
1295         Entry                   *e,
1296         Attribute               *a,
1297         struct berval           *cred,
1298         const char              **text );
1299
1300 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
1301
1302 LDAP_SLAPD_F (void) slap_passwd_hash(
1303         struct berval           *cred,
1304         struct berval           *hash,
1305         const char              **text );
1306
1307 LDAP_SLAPD_F (void) slap_passwd_hash_type(
1308         struct berval           *cred,
1309         struct berval           *hash,
1310         char                    *htype,
1311         const char              **text );
1312
1313 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
1314         struct berval           *cred );
1315
1316 LDAP_SLAPD_F (int) slap_passwd_parse(
1317         struct berval           *reqdata,
1318         struct berval           *id,
1319         struct berval           *oldpass,
1320         struct berval           *newpass,
1321         const char              **text );
1322
1323 LDAP_SLAPD_F (void) slap_passwd_init (void);
1324
1325 /*
1326  * phonetic.c
1327  */
1328 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
1329
1330 /*
1331  * referral.c
1332  */
1333 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
1334         const char *url ));
1335
1336 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
1337         Operation *op, Entry *e ));
1338
1339 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
1340         BerVarray refs,
1341         struct berval *base,
1342         struct berval *target,
1343         int scope ));
1344
1345 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
1346         Entry *e,
1347         struct berval *ndn,
1348         int *err,
1349         const char **text ));
1350
1351 /*
1352  * repl.c
1353  */
1354 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
1355         const char *uri, const char *host ));
1356 LDAP_SLAPD_F (int) destroy_replica_info LDAP_P (( Backend *be ));
1357 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
1358         int nr, const char *suffix ));
1359 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
1360         int nr, char *attrs, int exclude ));
1361 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
1362
1363 /*
1364  * result.c
1365  */
1366 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
1367 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
1368 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
1369 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
1370 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
1371 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
1372 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
1373 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
1374 LDAP_SLAPD_F (int) slap_null_cb LDAP_P(( Operation *op, SlapReply *rs ));
1375 LDAP_SLAPD_F (int) slap_freeself_cb LDAP_P(( Operation *op, SlapReply *rs ));
1376 LDAP_SLAPD_F (int) slap_replog_cb LDAP_P(( Operation *op, SlapReply *rs ));
1377
1378 LDAP_SLAPD_V( const struct berval ) slap_pre_read_bv;
1379 LDAP_SLAPD_V( const struct berval ) slap_post_read_bv;
1380 LDAP_SLAPD_F (int) slap_read_controls LDAP_P(( Operation *op, SlapReply *rs,
1381         Entry *e, const struct berval *oid, LDAPControl **ctrl ));
1382
1383 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
1384         int *code, char **matched, char **info ));
1385 LDAP_SLAPD_F (int) slap_map_api2result LDAP_P(( SlapReply *rs ));
1386 LDAP_SLAPD_F (slap_mask_t) slap_attr_flags LDAP_P(( AttributeName *an ));
1387 LDAP_SLAPD_F (ber_tag_t) slap_req2res LDAP_P(( ber_tag_t tag ));
1388
1389 LDAP_SLAPD_V( const struct berval ) slap_dummy_bv;
1390
1391 /*
1392  * root_dse.c
1393  */
1394 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
1395         Connection *conn,
1396         Entry **e,
1397         const char **text ));
1398
1399 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
1400         const char *file));
1401
1402 LDAP_SLAPD_F (int) slap_discover_feature LDAP_P((
1403         slap_bindconf   *sb,
1404         const char      *attr,
1405         const char      *val ));
1406
1407 LDAP_SLAPD_F (int) supported_feature_load LDAP_P(( struct berval *f ));
1408 LDAP_SLAPD_F (int) supported_feature_destroy LDAP_P(( void ));
1409
1410 LDAP_SLAPD_F (int) entry_info_register LDAP_P(( SLAP_ENTRY_INFO_FN func, void *arg ));
1411 LDAP_SLAPD_F (int) entry_info_unregister LDAP_P(( SLAP_ENTRY_INFO_FN func, void *arg ));
1412 LDAP_SLAPD_F (void) entry_info_destroy LDAP_P(( void ));
1413
1414 /*
1415  * sasl.c
1416  */
1417 LDAP_SLAPD_F (int) slap_sasl_init(void);
1418 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
1419 LDAP_SLAPD_F (void) slap_sasl_secprops_unparse( struct berval * );
1420 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
1421
1422 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
1423 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
1424
1425 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
1426         slap_ssf_t ssf, /* relative strength of external security */
1427         struct berval *authid );        /* asserted authenication id */
1428
1429 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
1430 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
1431
1432 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
1433
1434 LDAP_SLAPD_F (int) slap_sasl_setpass(
1435         Operation       *op,
1436         SlapReply       *rs );
1437
1438 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
1439         struct berval *id, char *user_realm, struct berval *dn, int flags );
1440
1441 /*
1442  * saslauthz.c
1443  */
1444 LDAP_SLAPD_F (int) slap_parse_user LDAP_P((
1445         struct berval *id, struct berval *user,
1446         struct berval *realm, struct berval *mech ));
1447 LDAP_SLAPD_F (int) slap_sasl_matches LDAP_P((
1448         Operation *op, BerVarray rules,
1449         struct berval *assertDN, struct berval *authc ));
1450 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
1451         Operation *op,
1452         struct berval *saslname,
1453         struct berval *dn,
1454         int flags ));
1455 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
1456         Operation *op,
1457         struct berval *authcid,
1458         struct berval *authzid ));
1459 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
1460         const char *match, const char *replace ));
1461 LDAP_SLAPD_F (void) slap_sasl_regexp_unparse LDAP_P(( BerVarray *bva ));
1462 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
1463 LDAP_SLAPD_F (const char *) slap_sasl_getpolicy LDAP_P(( void ));
1464 #ifdef SLAP_AUTH_REWRITE
1465 LDAP_SLAPD_F (int) slap_sasl_rewrite_config LDAP_P(( 
1466         const char *fname,
1467         int lineno,
1468         int argc, 
1469         char **argv ));
1470 LDAP_SLAPD_F (void) slap_sasl_regexp_destroy LDAP_P(( void ));
1471 #endif /* SLAP_AUTH_REWRITE */
1472 LDAP_SLAPD_F (int) authzValidate LDAP_P((
1473         Syntax *syn, struct berval *in ));
1474 #if 0
1475 LDAP_SLAPD_F (int) authzMatch LDAP_P((
1476         int *matchp,
1477         slap_mask_t flags,
1478         Syntax *syntax,
1479         MatchingRule *mr,
1480         struct berval *value,
1481         void *assertedValue ));
1482 #endif
1483 LDAP_SLAPD_F (int) authzPretty LDAP_P((
1484         Syntax *syntax,
1485         struct berval *val,
1486         struct berval *out,
1487         void *ctx ));
1488 LDAP_SLAPD_F (int) authzNormalize LDAP_P((
1489         slap_mask_t usage,
1490         Syntax *syntax,
1491         MatchingRule *mr,
1492         struct berval *val,
1493         struct berval *normalized,
1494         void *ctx ));
1495
1496 /*
1497  * schema.c
1498  */
1499 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
1500
1501 /*
1502  * schema_check.c
1503  */
1504 LDAP_SLAPD_F( int ) oc_check_allowed(
1505         AttributeType *type,
1506         BerVarray oclist,
1507         ObjectClass *sc );
1508
1509 LDAP_SLAPD_F( int ) structural_class(
1510         BerVarray ocs,
1511         struct berval *scbv,
1512         ObjectClass **sc,
1513         const char **text,
1514         char *textbuf, size_t textlen );
1515
1516 LDAP_SLAPD_F( int ) entry_schema_check(
1517         Operation *op,
1518         Entry *e,
1519         Attribute *attrs,
1520         int manage,
1521         const char** text,
1522         char *textbuf, size_t textlen );
1523
1524 LDAP_SLAPD_F( int ) mods_structural_class(
1525         Modifications *mods,
1526         struct berval *oc,
1527         const char** text,
1528         char *textbuf, size_t textlen );
1529
1530 /*
1531  * schema_init.c
1532  */
1533 LDAP_SLAPD_V( int ) schema_init_done;
1534 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
1535 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
1536
1537 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
1538 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
1539
1540 LDAP_SLAPD_F( int ) numericoidValidate LDAP_P((
1541         struct slap_syntax *syntax,
1542         struct berval *in ));
1543 LDAP_SLAPD_F( int ) octetStringMatch LDAP_P((
1544         int *matchp,
1545         slap_mask_t flags,
1546         Syntax *syntax,
1547         MatchingRule *mr,
1548         struct berval *value,
1549         void *assertedValue ));
1550
1551 /*
1552  * schema_prep.c
1553  */
1554 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
1555 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
1556 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
1557
1558 /*
1559  * schemaparse.c
1560  */
1561 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
1562
1563 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1564         const char *fname, int lineno, char *line, char **argv,
1565         ContentRule **scr ));
1566 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1567         const char *fname, int lineno, char *line, char **argv,
1568         ObjectClass **soc ));
1569 LDAP_SLAPD_F (int) parse_at LDAP_P((
1570         const char *fname, int lineno, char *line, char **argv,
1571         AttributeType **sat ));
1572 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1573 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1574         char delim ));
1575
1576 /*
1577  * sessionlog.c
1578  */
1579 LDAP_SLAPD_F (int) slap_send_session_log LDAP_P((
1580                                         Operation *, Operation *, SlapReply *));
1581 LDAP_SLAPD_F (int) slap_add_session_log LDAP_P((
1582                                         Operation *, Operation *, Entry * ));
1583
1584 /*
1585  * sl_malloc.c
1586  */
1587 LDAP_SLAPD_F (void *) slap_sl_malloc LDAP_P((
1588         ber_len_t size, void *ctx ));
1589 LDAP_SLAPD_F (void *) slap_sl_realloc LDAP_P((
1590         void *block, ber_len_t size, void *ctx ));
1591 LDAP_SLAPD_F (void *) slap_sl_calloc LDAP_P((
1592         ber_len_t nelem, ber_len_t size, void *ctx ));
1593 LDAP_SLAPD_F (void) slap_sl_free LDAP_P((
1594         void *, void *ctx ));
1595
1596 LDAP_SLAPD_V (BerMemoryFunctions) slap_sl_mfuncs;
1597
1598 LDAP_SLAPD_F (void) slap_sl_mem_init LDAP_P(( void ));
1599 LDAP_SLAPD_F (void *) slap_sl_mem_create LDAP_P((
1600                                                 ber_len_t size, int stack, void *ctx ));
1601 LDAP_SLAPD_F (void) slap_sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
1602 LDAP_SLAPD_F (void) slap_sl_mem_destroy LDAP_P(( void *key, void *data ));
1603 LDAP_SLAPD_F (void *) slap_sl_context LDAP_P(( void *ptr ));
1604
1605 /*
1606  * starttls.c
1607  */
1608 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1609
1610 /*
1611  * str2filter.c
1612  */
1613 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1614 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
1615
1616 /*
1617  * syncrepl.c
1618  */
1619
1620 LDAP_SLAPD_F (int)  syncrepl_add_glue LDAP_P(( 
1621                                         Operation*, Entry* ));
1622 LDAP_SLAPD_F (void) syncinfo_free LDAP_P(( struct syncinfo_s * ));
1623
1624 /* syntax.c */
1625 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1626         const char *synname ));
1627 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1628         const char *syndesc, int *slen ));
1629 LDAP_SLAPD_F (int) syn_add LDAP_P((
1630         LDAPSyntax *syn,
1631         slap_syntax_defs_rec *def,
1632         const char **err ));
1633 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1634
1635 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1636         slap_syntax_defs_rec *def ));
1637
1638 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1639
1640 /*
1641  * user.c
1642  */
1643 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1644 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1645 #endif
1646
1647 /*
1648  * value.c
1649  */
1650 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1651         AttributeDescription *ad,
1652         MatchingRule *mr,
1653         unsigned usage,
1654         struct berval *in,
1655         struct berval *out,
1656         const char ** text,
1657         void *ctx ));
1658
1659 LDAP_SLAPD_F (int) value_match LDAP_P((
1660         int *match,
1661         AttributeDescription *ad,
1662         MatchingRule *mr,
1663         unsigned flags,
1664         struct berval *v1,
1665         void *v2,
1666         const char ** text ));
1667 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1668         AttributeDescription *ad,
1669         unsigned flags,
1670         BerVarray values,
1671         struct berval *value,
1672         void *ctx ));
1673
1674 LDAP_SLAPD_F (int) ordered_value_add LDAP_P((
1675         Entry *e,
1676         AttributeDescription *ad,
1677         Attribute *a,
1678         BerVarray vals,
1679         BerVarray nvals ));
1680
1681 LDAP_SLAPD_F (int) ordered_value_validate LDAP_P((
1682         AttributeDescription *ad,
1683         struct berval *in,
1684         int mop ));
1685
1686 LDAP_SLAPD_F (int) ordered_value_pretty LDAP_P((
1687         AttributeDescription *ad,
1688         struct berval *val,
1689         struct berval *out,
1690         void *ctx ));
1691
1692 LDAP_SLAPD_F (int) ordered_value_normalize LDAP_P((
1693         slap_mask_t usage,
1694         AttributeDescription *ad,
1695         MatchingRule *mr,
1696         struct berval *val,
1697         struct berval *normalized,
1698         void *ctx ));
1699
1700 LDAP_SLAPD_F (int) ordered_value_match LDAP_P((
1701         int *match,
1702         AttributeDescription *ad,
1703         MatchingRule *mr,
1704         unsigned flags,
1705         struct berval *v1,
1706         struct berval *v2,
1707         const char ** text ));
1708
1709 LDAP_SLAPD_F (void) ordered_value_renumber LDAP_P((
1710         Attribute *a,
1711         int vals ));
1712
1713 LDAP_SLAPD_F (int) ordered_value_sort LDAP_P((
1714         Attribute *a,
1715         int do_renumber ));
1716
1717 LDAP_SLAPD_F (int) value_add LDAP_P((
1718         BerVarray *vals,
1719         BerVarray addvals ));
1720 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1721         BerVarray *vals,
1722         struct berval *addval ));
1723
1724 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1725 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1726
1727 #ifdef SLAP_ZONE_ALLOC
1728 /*
1729  * zn_malloc.c
1730  */
1731 LDAP_SLAPD_F (void *) slap_zn_malloc LDAP_P((ber_len_t, void *));
1732 LDAP_SLAPD_F (void *) slap_zn_realloc LDAP_P((void *, ber_len_t, void *));
1733 LDAP_SLAPD_F (void *) slap_zn_calloc LDAP_P((ber_len_t, ber_len_t, void *));
1734 LDAP_SLAPD_F (void) slap_zn_free LDAP_P((void *, void *));
1735
1736 LDAP_SLAPD_F (void *) slap_zn_mem_create LDAP_P((
1737                                                         ber_len_t, ber_len_t, ber_len_t, ber_len_t));
1738 LDAP_SLAPD_F (void) slap_zn_mem_destroy LDAP_P((void *));
1739 LDAP_SLAPD_F (int) slap_zn_validate LDAP_P((void *, void *, int));
1740 LDAP_SLAPD_F (int) slap_zn_invalidate LDAP_P((void *, void *));
1741 LDAP_SLAPD_F (int) slap_zh_rlock LDAP_P((void*));
1742 LDAP_SLAPD_F (int) slap_zh_runlock LDAP_P((void*));
1743 LDAP_SLAPD_F (int) slap_zh_wlock LDAP_P((void*));
1744 LDAP_SLAPD_F (int) slap_zh_wunlock LDAP_P((void*));
1745 LDAP_SLAPD_F (int) slap_zn_rlock LDAP_P((void*, void*));
1746 LDAP_SLAPD_F (int) slap_zn_runlock LDAP_P((void*, void*));
1747 LDAP_SLAPD_F (int) slap_zn_wlock LDAP_P((void*, void*));
1748 LDAP_SLAPD_F (int) slap_zn_wunlock LDAP_P((void*, void*));
1749 #endif
1750
1751 /*
1752  * Other...
1753  */
1754 LDAP_SLAPD_V (unsigned int) index_substr_if_minlen;
1755 LDAP_SLAPD_V (unsigned int) index_substr_if_maxlen;
1756 LDAP_SLAPD_V (unsigned int) index_substr_any_len;
1757 LDAP_SLAPD_V (unsigned int) index_substr_any_step;
1758
1759 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1760 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1761 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1762 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1763
1764 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1765 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1766
1767 LDAP_SLAPD_V (BerVarray)        default_referral;
1768 LDAP_SLAPD_V (const char)       Versionstr[];
1769
1770 LDAP_SLAPD_V (int)              global_gentlehup;
1771 LDAP_SLAPD_V (int)              global_idletimeout;
1772 LDAP_SLAPD_V (char *)   global_host;
1773 LDAP_SLAPD_V (char *)   global_realm;
1774 LDAP_SLAPD_V (char **)  default_passwd_hash;
1775 LDAP_SLAPD_V (int)              lber_debug;
1776 LDAP_SLAPD_V (int)              ldap_syslog;
1777 LDAP_SLAPD_V (struct berval)    default_search_base;
1778 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1779
1780 LDAP_SLAPD_V (slap_counters_t)  slap_counters;
1781
1782 LDAP_SLAPD_V (char *)           slapd_pid_file;
1783 LDAP_SLAPD_V (char *)           slapd_args_file;
1784 LDAP_SLAPD_V (time_t)           starttime;
1785
1786 /* use time(3) -- no mutex */
1787 #define slap_get_time() time( NULL )
1788
1789 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1790 LDAP_SLAPD_V (int)                      connection_pool_max;
1791 LDAP_SLAPD_V (int)                      slap_tool_thread_max;
1792
1793 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1794 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1795
1796 #ifndef HAVE_GMTIME_R
1797 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1798 #endif
1799
1800 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  ad_undef_mutex;
1801 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  oc_undef_mutex;
1802
1803 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1804
1805 LDAP_SLAPD_V (int)              use_reverse_lookup;
1806
1807 LDAP_SLAPD_V (struct berval)    AllUser;
1808 LDAP_SLAPD_V (struct berval)    AllOper;
1809 LDAP_SLAPD_V (struct berval)    NoAttrs;
1810
1811 /*
1812  * operations
1813  */
1814 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1815 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1816 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1817 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1818 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1819 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1820 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1821 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1822 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1823 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1824
1825 /*
1826  * frontend operations
1827  */
1828 LDAP_SLAPD_F (int) fe_op_abandon LDAP_P((Operation *op, SlapReply *rs));
1829 LDAP_SLAPD_F (int) fe_op_add LDAP_P((Operation *op, SlapReply *rs));
1830 LDAP_SLAPD_F (int) fe_op_bind LDAP_P((Operation *op, SlapReply *rs));
1831 LDAP_SLAPD_F (int) fe_op_bind_success LDAP_P(( Operation *op, SlapReply *rs ));
1832 LDAP_SLAPD_F (int) fe_op_compare LDAP_P((Operation *op, SlapReply *rs));
1833 LDAP_SLAPD_F (int) fe_op_delete LDAP_P((Operation *op, SlapReply *rs));
1834 LDAP_SLAPD_F (int) fe_op_modify LDAP_P((Operation *op, SlapReply *rs));
1835 LDAP_SLAPD_F (int) fe_op_modrdn LDAP_P((Operation *op, SlapReply *rs));
1836 LDAP_SLAPD_F (int) fe_op_search LDAP_P((Operation *op, SlapReply *rs));
1837 LDAP_SLAPD_F (int) fe_aux_operational LDAP_P((Operation *op, SlapReply *rs));
1838 #if 0
1839 LDAP_SLAPD_F (int) fe_op_unbind LDAP_P((Operation *op, SlapReply *rs));
1840 #endif
1841 LDAP_SLAPD_F (int) fe_extended LDAP_P((Operation *op, SlapReply *rs));
1842 LDAP_SLAPD_F (int) fe_acl_group LDAP_P((
1843         Operation *op,
1844         Entry   *target,
1845         struct berval *gr_ndn,
1846         struct berval *op_ndn,
1847         ObjectClass *group_oc,
1848         AttributeDescription *group_at ));
1849 LDAP_SLAPD_F (int) fe_acl_attribute LDAP_P((
1850         Operation *op,
1851         Entry   *target,
1852         struct berval   *edn,
1853         AttributeDescription *entry_at,
1854         BerVarray *vals,
1855         slap_access_t access ));
1856 LDAP_SLAPD_F (int) fe_access_allowed LDAP_P((
1857         Operation               *op,
1858         Entry                   *e,
1859         AttributeDescription    *desc,
1860         struct berval           *val,
1861         slap_access_t           access,
1862         AccessControlState      *state,
1863         slap_mask_t             *maskp ));
1864
1865 /* NOTE: this macro assumes that bv has been allocated
1866  * by ber_* malloc functions or is { 0L, NULL } */
1867 #ifdef USE_MP_BIGNUM
1868 # define UI2BVX(bv,ui,ctx) \
1869         do { \
1870                 char            *val; \
1871                 ber_len_t       len; \
1872                 val = BN_bn2dec(ui); \
1873                 if (val) { \
1874                         len = strlen(val); \
1875                         if ( len > (bv)->bv_len ) { \
1876                                 (bv)->bv_val = ber_memrealloc_x( (bv)->bv_val, len + 1, (ctx) ); \
1877                         } \
1878                         AC_MEMCPY((bv)->bv_val, val, len + 1); \
1879                         (bv)->bv_len = len; \
1880                         OPENSSL_free(val); \
1881                 } else { \
1882                         ber_memfree_x( (bv)->bv_val, (ctx) ); \
1883                         BER_BVZERO( (bv) ); \
1884                 } \
1885         } while ( 0 )
1886
1887 #elif defined( USE_MP_GMP )
1888 /* NOTE: according to the documentation, the result 
1889  * of mpz_sizeinbase() can exceed the length of the
1890  * string representation of the number by 1
1891  */
1892 # define UI2BVX(bv,ui,ctx) \
1893         do { \
1894                 ber_len_t       len = mpz_sizeinbase( (ui), 10 ); \
1895                 if ( len > (bv)->bv_len ) { \
1896                         (bv)->bv_val = ber_memrealloc_x( (bv)->bv_val, len + 1, (ctx) ); \
1897                 } \
1898                 (void)mpz_get_str( (bv)->bv_val, 10, (ui) ); \
1899                 if ( (bv)->bv_val[ len - 1 ] == '\0' ) { \
1900                         len--; \
1901                 } \
1902                 (bv)->bv_len = len; \
1903         } while ( 0 )
1904
1905 #else
1906 # if USE_MP_LONG_LONG
1907 #  define UI2BV_FORMAT  "%llu"
1908 # elif USE_MP_LONG
1909 #  define UI2BV_FORMAT  "%lu"
1910 # elif HAVE_LONG_LONG
1911 #  define UI2BV_FORMAT  "%llu"
1912 # else
1913 #  define UI2BV_FORMAT  "%lu"
1914 # endif
1915
1916 # define UI2BVX(bv,ui,ctx) \
1917         do { \
1918                 char            buf[] = "+9223372036854775807L"; \
1919                 ber_len_t       len; \
1920                 len = snprintf( buf, sizeof( buf ), UI2BV_FORMAT, (ui) ); \
1921                 if ( len > (bv)->bv_len ) { \
1922                         (bv)->bv_val = ber_memrealloc_x( (bv)->bv_val, len + 1, (ctx) ); \
1923                 } \
1924                 (bv)->bv_len = len; \
1925                 AC_MEMCPY( (bv)->bv_val, buf, len + 1 ); \
1926         } while ( 0 )
1927 #endif
1928
1929 #define UI2BV(bv,ui)    UI2BVX(bv,ui,NULL)
1930
1931 LDAP_END_DECL
1932
1933 #endif /* PROTO_SLAP_H */
1934