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