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