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