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