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