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