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