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