]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Added general limits retrieval
[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 #ifdef LDAP_SLAPI
447 LDAP_SLAPD_V (int) slapi_plugins_used;
448 #endif
449
450 /*
451  * connection.c
452  */
453 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
454 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
455 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
456 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
457
458 LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
459         ber_socket_t s,
460         ldap_pvt_thread_start_t *func,
461         void *arg ));
462 LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
463 LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
464
465
466 LDAP_SLAPD_F (long) connection_init LDAP_P((
467         ber_socket_t s,
468         Listener* url,
469         const char* dnsname,
470         const char* peername,
471         int use_tls,
472         slap_ssf_t ssf,
473         struct berval *id ));
474
475 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
476 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
477 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
478         LDAP_GCCATTR((const));
479
480 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
481 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
482
483 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
484
485 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
486 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
487         Connection *, ber_socket_t *));
488 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
489
490 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
491 LDAP_SLAPD_F (void) connection_fake_init LDAP_P((
492         Connection *conn,
493         Operation *op,
494         void *threadctx ));
495 LDAP_SLAPD_F (void) connection_assign_nextid LDAP_P((Connection *));
496
497 /*
498  * cr.c
499  */
500 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
501
502 LDAP_SLAPD_F (int) cr_add LDAP_P((
503         LDAPContentRule *oc,
504         int user,
505         const char **err));
506 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
507
508 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
509         const char *crname));
510 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
511         struct berval *crname));
512
513 /*
514  * ctxcsn.c
515  */
516
517 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_bv;
518 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_cn_bv;
519 LDAP_SLAPD_F (void) slap_get_commit_csn LDAP_P((
520         Operation *, struct berval *maxcsn, struct berval *curcsn ));
521 LDAP_SLAPD_F (void) slap_rewind_commit_csn LDAP_P(( Operation * ));
522 LDAP_SLAPD_F (void) slap_graduate_commit_csn LDAP_P(( Operation * ));
523 LDAP_SLAPD_F (Entry *) slap_create_context_csn_entry LDAP_P(( Backend *, struct berval *));
524 LDAP_SLAPD_F (int) slap_get_csn LDAP_P(( Operation *, char *, int, struct berval *, int ));
525 LDAP_SLAPD_F (void) slap_queue_csn LDAP_P(( Operation *, struct berval * ));
526
527 /*
528  * daemon.c
529  */
530 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s, int isactive);
531 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
532 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
533 LDAP_SLAPD_F (int) slapd_daemon(void);
534 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
535 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wasactive, int wake));
536
537 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
538 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
539 LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
540
541 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
542 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
543 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
544 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
545
546 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
547 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
548 LDAP_SLAPD_V (int) slapd_register_slp;
549 LDAP_SLAPD_V (slap_ssf_t) local_ssf;
550 LDAP_SLAPD_V (struct runqueue_s) slapd_rq;
551
552 /*
553  * dn.c
554  */
555
556 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
557 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
558
559 LDAP_SLAPD_F (int) dnValidate LDAP_P((
560         Syntax *syntax, 
561         struct berval *val ));
562 LDAP_SLAPD_F (int) rdnValidate LDAP_P((
563         Syntax *syntax, 
564         struct berval *val ));
565
566 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
567
568 LDAP_SLAPD_F (slap_mr_normalize_func) rdnNormalize;
569
570 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
571
572 LDAP_SLAPD_F (slap_syntax_transform_func) rdnPretty;
573
574 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
575         Syntax *syntax, 
576         struct berval *val, 
577         struct berval *pretty,
578         struct berval *normal,
579         void *ctx ));
580
581 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
582         int *matchp, 
583         slap_mask_t flags, 
584         Syntax *syntax, 
585         MatchingRule *mr,
586         struct berval *value, 
587         void *assertedValue ));
588
589 LDAP_SLAPD_F (int) dnRelativeMatch LDAP_P(( 
590         int *matchp, 
591         slap_mask_t flags, 
592         Syntax *syntax, 
593         MatchingRule *mr,
594         struct berval *value, 
595         void *assertedValue ));
596
597 LDAP_SLAPD_F (int) rdnMatch LDAP_P(( 
598         int *matchp, 
599         slap_mask_t flags, 
600         Syntax *syntax, 
601         MatchingRule *mr,
602         struct berval *value, 
603         void *assertedValue ));
604
605
606 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
607         const struct berval *dn, const struct berval *suffix ));
608
609 LDAP_SLAPD_F (int) dnIsOneLevelRDN LDAP_P(( struct berval *rdn ));
610
611 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
612         struct berval *dn, struct berval *rdn, void *ctx ));
613
614 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( struct berval * rdn ));
615
616 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
617
618 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
619         struct berval * new_dn,
620         struct berval * parent_dn,
621         struct berval * newrdn,
622         void *memctx ));
623
624 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
625 LDAP_SLAPD_F (void) dnRdn LDAP_P(( struct berval *dn, struct berval *rdn ));
626
627 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
628
629 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
630
631 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
632 #define dnPrettyDN(syntax, val, dn, ctx) \
633         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
634 #define dnNormalDN(syntax, val, dn, ctx) \
635         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
636
637 typedef int (SLAP_CERT_MAP_FN) LDAP_P(( void *ssl, struct berval *dn ));
638 LDAP_SLAPD_F (int) register_certificate_map_function LDAP_P(( SLAP_CERT_MAP_FN *fn ));
639
640 /*
641  * entry.c
642  */
643 LDAP_SLAPD_V (const Entry) slap_entry_root;
644
645 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
646
647 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
648 LDAP_SLAPD_F (Entry *) str2entry2 LDAP_P(( char *s, int checkvals ));
649 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
650
651 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
652         Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
653 #ifdef SLAP_ZONE_ALLOC
654 LDAP_SLAPD_F (int) entry_decode LDAP_P((
655                                                 struct berval *bv, Entry **e, void *ctx ));
656 #else
657 LDAP_SLAPD_F (int) entry_decode LDAP_P((
658                                                 struct berval *bv, Entry **e ));
659 #endif
660 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
661
662 LDAP_SLAPD_F (void) entry_clean LDAP_P(( Entry *e ));
663 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
664 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
665 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
666 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
667 LDAP_SLAPD_F (Entry *) entry_dup LDAP_P(( Entry *e ));
668
669 /*
670  * extended.c
671  */
672 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
673
674 #define exop_is_write( op )     ((op->ore_flags & SLAP_EXOP_WRITES) != 0)
675
676 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
677 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
678 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
679 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
680
681 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
682
683 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
684         int index, struct berval *oid, int blen ));
685
686 LDAP_SLAPD_F (int) load_extop LDAP_P((
687         struct berval *ext_oid,
688         slap_mask_t flags,
689         SLAP_EXTOP_MAIN_FN *ext_main ));
690
691 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
692
693 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
694
695 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
696
697 /*
698  * cancel.c
699  */
700 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
701
702 /*
703  * filter.c
704  */
705 LDAP_SLAPD_F (int) get_filter LDAP_P((
706         Operation *op,
707         BerElement *ber,
708         Filter **filt,
709         const char **text ));
710
711 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
712 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
713 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
714 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
715
716 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
717         ValuesReturnFilter **f,
718         const char **text ));
719
720 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
721 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
722
723 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
724 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
725         struct berval *out ));
726
727 /*
728  * filterentry.c
729  */
730
731 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
732
733 /*
734  * frontend.c
735  */
736 LDAP_SLAPD_F (int) frontend_init LDAP_P(( void ));
737
738 /*
739  * globals.c
740  */
741
742 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
743 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
744 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
745 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
746 LDAP_SLAPD_V( struct slap_sync_cookie_s ) slap_sync_cookie;
747 LDAP_SLAPD_V( void * ) slap_tls_ctx;
748
749 /*
750  * index.c
751  */
752 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
753
754 /*
755  * init.c
756  */
757 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
758 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
759 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
760 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
761
762 LDAP_SLAPD_V (char *)   slap_known_controls[];
763
764 /*
765  * kerberos.c
766  */
767 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
768 LDAP_SLAPD_V (char *)   ldap_srvtab;
769 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
770 #endif
771
772 /*
773  * ldapsync.c
774  */
775 LDAP_SLAPD_F (void) slap_compose_sync_cookie LDAP_P((
776                                 Operation *, struct berval *, struct berval *, int ));
777 LDAP_SLAPD_F (void) slap_sync_cookie_free LDAP_P((
778                                 struct sync_cookie *, int free_cookie ));
779 LDAP_SLAPD_F (int) slap_parse_sync_cookie LDAP_P((
780                                 struct sync_cookie * ));
781 LDAP_SLAPD_F (int) slap_init_sync_cookie_ctxcsn LDAP_P((
782                                 struct sync_cookie * ));
783 LDAP_SLAPD_F (struct sync_cookie *) slap_dup_sync_cookie LDAP_P((
784                                 struct sync_cookie *, struct sync_cookie * ));
785 LDAP_SLAPD_F (int) slap_build_syncUUID_set LDAP_P((
786                                 Operation *, BerVarray *, Entry * ));
787
788 /*
789  * limits.c
790  */
791 LDAP_SLAPD_F (int) limits_get LDAP_P((
792         Operation *op, struct berval *ndn,
793         struct slap_limits_set **limit ));
794 LDAP_SLAPD_F (int) limits_parse LDAP_P((
795         Backend *be, const char *fname, int lineno,
796         int argc, char **argv ));
797 LDAP_SLAPD_F (int) limits_parse_one LDAP_P(( const char *arg, 
798         struct slap_limits_set *limit ));
799 LDAP_SLAPD_F (int) limits_check LDAP_P((
800         Operation *op, SlapReply *rs ));
801 LDAP_SLAPD_F (void) limits_unparse_one LDAP_P(( 
802         struct slap_limits_set *limit, int which, struct berval *bv ));
803 LDAP_SLAPD_F (void) limits_unparse LDAP_P(( 
804         struct slap_limits *limit, struct berval *bv ));
805
806 /*
807  * lock.c
808  */
809 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
810         const char *type, FILE **lfp ));
811 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
812
813 /*
814  * matchedValues.c
815  */
816 LDAP_SLAPD_F (int) filter_matched_values( 
817         Operation       *op,
818         Attribute       *a,
819         char            ***e_flags );
820
821 /*
822  * modrdn.c
823  */
824 LDAP_SLAPD_F (int) slap_modrdn2mods(
825         Operation       *op,
826         SlapReply       *rs,
827         Entry           *e,
828         LDAPRDN         oldrdn,
829         LDAPRDN         newrdn,
830         Modifications   **pmod );
831
832 /*
833  * modify.c
834  */
835 LDAP_SLAPD_F( int ) slap_mods_no_update_check(
836         Modifications *ml,
837         const char **text,
838         char *textbuf, size_t textlen );
839
840 LDAP_SLAPD_F( int ) slap_mods_check(
841         Modifications *ml,
842         const char **text,
843         char *textbuf, size_t textlen, void *ctx );
844
845 LDAP_SLAPD_F( int ) slap_mods_opattrs(
846         Operation *op,
847         Modifications *mods,
848         Modifications **modlist,
849         const char **text,
850         char *textbuf, size_t textlen,
851         int manage_ctxcsn );
852
853 /*
854  * mods.c
855  */
856 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
857         Modification *mod,
858         int permissive,
859         const char **text, char *textbuf, size_t textlen );
860 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
861         Modification *mod,
862         int permissive,
863         const char **text, char *textbuf, size_t textlen );
864 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
865         Modification *mod,
866         int permissive,
867         const char **text, char *textbuf, size_t textlen );
868 LDAP_SLAPD_F( int ) modify_increment_values( Entry *e,
869         Modification *mod,
870         int permissive,
871         const char **text, char *textbuf, size_t textlen );
872
873 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
874 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
875 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
876
877 /*
878  * module.c
879  */
880 #ifdef SLAPD_MODULES
881
882 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
883 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
884
885 LDAP_SLAPD_F (int) load_null_module(
886         const void *module, const char *file_name);
887 LDAP_SLAPD_F (int) load_extop_module(
888         const void *module, const char *file_name);
889
890 LDAP_SLAPD_F (int) module_load LDAP_P((
891         const char* file_name,
892         int argc, char *argv[] ));
893 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
894
895 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
896         const void *module, const char *name));
897
898 #endif /* SLAPD_MODULES */
899
900 /* mr.c */
901 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
902 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
903 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
904         slap_mrule_defs_rec *def,
905         MatchingRule * associated,
906         const char **err ));
907 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
908
909 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
910         slap_mrule_defs_rec *def ));
911
912 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
913 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
914
915 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
916 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
917
918 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
919         AttributeType *at );
920
921 /*
922  * mra.c
923  */
924 LDAP_SLAPD_F (int) get_mra LDAP_P((
925         Operation *op,
926         BerElement *ber,
927         MatchingRuleAssertion **mra,
928         const char **text ));
929 LDAP_SLAPD_F (void) mra_free LDAP_P((
930         Operation *op,
931         MatchingRuleAssertion *mra,
932         int freeit ));
933
934 /* oc.c */
935 LDAP_SLAPD_F (int) oc_add LDAP_P((
936         LDAPObjectClass *oc,
937         int user,
938         const char **err));
939 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
940
941 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
942         const char *ocname));
943 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
944         struct berval *ocname));
945 LDAP_SLAPD_F (ObjectClass *) oc_bvfind_undef LDAP_P((
946         struct berval *ocname));
947 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
948         ObjectClass *sup,
949         ObjectClass *sub ));
950
951 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
952         Entry *, ObjectClass *oc, int set_flags ));
953 #define is_entry_alias(e)               \
954         (((e)->e_ocflags & SLAP_OC__END) \
955          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
956          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
957 #define is_entry_referral(e)    \
958         (((e)->e_ocflags & SLAP_OC__END) \
959          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
960          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
961 #define is_entry_subentry(e)    \
962         (((e)->e_ocflags & SLAP_OC__END) \
963          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
964          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
965 #define is_entry_collectiveAttributeSubentry(e) \
966         (((e)->e_ocflags & SLAP_OC__END) \
967          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
968          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
969 #define is_entry_dynamicObject(e)       \
970         (((e)->e_ocflags & SLAP_OC__END) \
971          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
972          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
973 #define is_entry_glue(e)        \
974         (((e)->e_ocflags & SLAP_OC__END) \
975          ? (((e)->e_ocflags & SLAP_OC_GLUE) != 0) \
976          : is_entry_objectclass((e), slap_schema.si_oc_glue, 1))
977 #define is_entry_syncProviderSubentry(e)        \
978         (((e)->e_ocflags & SLAP_OC__END) \
979          ? (((e)->e_ocflags & SLAP_OC_SYNCPROVIDERSUBENTRY) != 0) \
980          : is_entry_objectclass((e), slap_schema.si_oc_syncProviderSubentry, 1))
981 #define is_entry_syncConsumerSubentry(e)        \
982         (((e)->e_ocflags & SLAP_OC__END) \
983          ? (((e)->e_ocflags & SLAP_OC_SYNCCONSUMERSUBENTRY) != 0) \
984          : is_entry_objectclass((e), slap_schema.si_oc_syncConsumerSubentry, 1))
985
986 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
987
988 /*
989  * oidm.c
990  */
991 LDAP_SLAPD_F(char *) oidm_find(char *oid);
992 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
993 LDAP_SLAPD_F (void) oidm_unparse LDAP_P(( BerVarray *bva ));
994 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
995         const char *fname, int lineno, int argc, char **argv ));
996
997 /*
998  * operation.c
999  */
1000 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
1001 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
1002 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
1003 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
1004         BerElement *ber, ber_int_t msgid,
1005         ber_tag_t tag, ber_int_t id ));
1006
1007 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
1008 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
1009 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
1010
1011 /*
1012  * operational.c
1013  */
1014 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
1015 LDAP_SLAPD_F (Attribute *) slap_operational_entryDN( Entry *e );
1016 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
1017
1018 /*
1019  * overlays.c
1020  */
1021 LDAP_SLAPD_F (int) overlay_init( void );
1022
1023 /*
1024  * passwd.c
1025  */
1026 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
1027
1028 LDAP_SLAPD_F (int) slap_passwd_check(
1029         Operation               *op,
1030         Entry                   *e,
1031         Attribute               *a,
1032         struct berval           *cred,
1033         const char              **text );
1034
1035 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
1036
1037 LDAP_SLAPD_F (void) slap_passwd_hash(
1038         struct berval           *cred,
1039         struct berval           *hash,
1040         const char              **text );
1041
1042 LDAP_SLAPD_F (void) slap_passwd_hash_type(
1043         struct berval           *cred,
1044         struct berval           *hash,
1045         char                    *htype,
1046         const char              **text );
1047
1048 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
1049         struct berval           *cred );
1050
1051 LDAP_SLAPD_F (int) slap_passwd_parse(
1052         struct berval           *reqdata,
1053         struct berval           *id,
1054         struct berval           *oldpass,
1055         struct berval           *newpass,
1056         const char              **text );
1057
1058 /*
1059  * phonetic.c
1060  */
1061 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
1062
1063 /*
1064  * referral.c
1065  */
1066 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
1067         const char *url ));
1068
1069 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
1070         Operation *op, Entry *e ));
1071
1072 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
1073         BerVarray refs,
1074         struct berval *base,
1075         struct berval *target,
1076         int scope ));
1077
1078 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
1079         Entry *e,
1080         struct berval *ndn,
1081         int *err,
1082         const char **text ));
1083
1084 /*
1085  * repl.c
1086  */
1087 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
1088         const char *uri, const char *host ));
1089 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
1090         int nr, const char *suffix ));
1091 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
1092         int nr, char *attrs, int exclude ));
1093 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
1094
1095 /*
1096  * result.c
1097  */
1098 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
1099 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
1100 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
1101 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
1102 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
1103 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
1104 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
1105 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
1106 LDAP_SLAPD_F (int) slap_null_cb LDAP_P(( Operation *op, SlapReply *rs ));
1107 LDAP_SLAPD_F (int) slap_freeself_cb LDAP_P(( Operation *op, SlapReply *rs ));
1108 LDAP_SLAPD_F (int) slap_replog_cb LDAP_P(( Operation *op, SlapReply *rs ));
1109
1110 LDAP_SLAPD_V( const struct berval ) slap_pre_read_bv;
1111 LDAP_SLAPD_V( const struct berval ) slap_post_read_bv;
1112 LDAP_SLAPD_F (int) slap_read_controls LDAP_P(( Operation *op, SlapReply *rs,
1113         Entry *e, const struct berval *oid, LDAPControl **ctrl ));
1114
1115 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
1116         int *code, char **matched, char **info ));
1117 LDAP_SLAPD_F (int) slap_map_api2result LDAP_P(( SlapReply *rs ));
1118 LDAP_SLAPD_F (slap_mask_t) slap_attr_flags LDAP_P(( AttributeName *an ));
1119
1120 LDAP_SLAPD_V( const struct berval ) slap_dummy_bv;
1121
1122 /*
1123  * root_dse.c
1124  */
1125 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
1126         Connection *conn,
1127         Entry **e,
1128         const char **text ));
1129
1130 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
1131         const char *file));
1132
1133 /*
1134  * sasl.c
1135  */
1136 LDAP_SLAPD_F (int) slap_sasl_init(void);
1137 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
1138 LDAP_SLAPD_F (void) slap_sasl_secprops_unparse( struct berval * );
1139 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
1140
1141 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
1142 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
1143
1144 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
1145         slap_ssf_t ssf, /* relative strength of external security */
1146         struct berval *authid );        /* asserted authenication id */
1147
1148 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
1149 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
1150
1151 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
1152
1153 LDAP_SLAPD_F (int) slap_sasl_setpass(
1154         Operation       *op,
1155         SlapReply       *rs );
1156
1157 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
1158         struct berval *id, char *user_realm, struct berval *dn, int flags );
1159
1160 /*
1161  * saslauthz.c
1162  */
1163 LDAP_SLAPD_F (int) slap_parse_user LDAP_P((
1164         struct berval *id, struct berval *user,
1165         struct berval *realm, struct berval *mech ));
1166 LDAP_SLAPD_F (int) slap_sasl_matches LDAP_P((
1167         Operation *op, BerVarray rules,
1168         struct berval *assertDN, struct berval *authc ));
1169 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
1170         Operation *op,
1171         struct berval *saslname,
1172         struct berval *dn,
1173         int flags ));
1174 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
1175         Operation *op,
1176         struct berval *authcid,
1177         struct berval *authzid ));
1178 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
1179         const char *match, const char *replace ));
1180 LDAP_SLAPD_F (void) slap_sasl_regexp_unparse LDAP_P(( BerVarray *bva ));
1181 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
1182 LDAP_SLAPD_F (const char *) slap_sasl_getpolicy LDAP_P(( void ));
1183 #ifdef SLAP_AUTH_REWRITE
1184 LDAP_SLAPD_F (int) slap_sasl_rewrite_config LDAP_P(( 
1185         const char *fname,
1186         int lineno,
1187         int argc, 
1188         char **argv ));
1189 #endif /* SLAP_AUTH_REWRITE */
1190
1191 /*
1192  * schema.c
1193  */
1194 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
1195
1196 /*
1197  * schema_check.c
1198  */
1199 LDAP_SLAPD_F( int ) oc_check_allowed(
1200         AttributeType *type,
1201         BerVarray oclist,
1202         ObjectClass *sc );
1203
1204 LDAP_SLAPD_F( int ) structural_class(
1205         BerVarray ocs,
1206         struct berval *scbv,
1207         ObjectClass **sc,
1208         const char **text,
1209         char *textbuf, size_t textlen );
1210
1211 LDAP_SLAPD_F( int ) entry_schema_check(
1212         Backend *be, Entry *e, Attribute *attrs,
1213         const char** text,
1214         char *textbuf, size_t textlen );
1215
1216 LDAP_SLAPD_F( int ) mods_structural_class(
1217         Modifications *mods,
1218         struct berval *oc,
1219         const char** text,
1220         char *textbuf, size_t textlen );
1221
1222 /*
1223  * schema_init.c
1224  */
1225 LDAP_SLAPD_V( int ) schema_init_done;
1226 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
1227 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
1228
1229 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
1230 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
1231
1232
1233 /*
1234  * schema_prep.c
1235  */
1236 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
1237 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
1238 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
1239
1240 /*
1241  * schemaparse.c
1242  */
1243 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
1244
1245 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1246         const char *fname, int lineno, char *line, char **argv ));
1247 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1248         const char *fname, int lineno, char *line, char **argv ));
1249 LDAP_SLAPD_F (int) parse_at LDAP_P((
1250         const char *fname, int lineno, char *line, char **argv ));
1251 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1252 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1253         char delim ));
1254
1255 /*
1256  * sessionlog.c
1257  */
1258 LDAP_SLAPD_F (int) slap_send_session_log LDAP_P((
1259                                         Operation *, Operation *, SlapReply *));
1260 LDAP_SLAPD_F (int) slap_add_session_log LDAP_P((
1261                                         Operation *, Operation *, Entry * ));
1262
1263 /*
1264  * sl_malloc.c
1265  */
1266 LDAP_SLAPD_F (void *) slap_sl_malloc LDAP_P((
1267         ber_len_t size, void *ctx ));
1268 LDAP_SLAPD_F (void *) slap_sl_realloc LDAP_P((
1269         void *block, ber_len_t size, void *ctx ));
1270 LDAP_SLAPD_F (void *) slap_sl_calloc LDAP_P((
1271         ber_len_t nelem, ber_len_t size, void *ctx ));
1272 LDAP_SLAPD_F (void) slap_sl_free LDAP_P((
1273         void *, void *ctx ));
1274
1275 LDAP_SLAPD_V (BerMemoryFunctions) slap_sl_mfuncs;
1276
1277 LDAP_SLAPD_F (void) slap_sl_mem_init LDAP_P(( void ));
1278 LDAP_SLAPD_F (void *) slap_sl_mem_create LDAP_P((
1279                                                 ber_len_t size, int stack, void *ctx ));
1280 LDAP_SLAPD_F (void) slap_sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
1281 LDAP_SLAPD_F (void) slap_sl_mem_destroy LDAP_P(( void *key, void *data ));
1282 LDAP_SLAPD_F (void *) slap_sl_context LDAP_P(( void *ptr ));
1283
1284 /*
1285  * starttls.c
1286  */
1287 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1288
1289 /*
1290  * str2filter.c
1291  */
1292 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1293 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
1294
1295 /*
1296  * syncrepl.c
1297  */
1298
1299 LDAP_SLAPD_F (void) init_syncrepl LDAP_P((syncinfo_t *));
1300 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1301 LDAP_SLAPD_F (int) syncrepl_message_to_entry LDAP_P((
1302                                         syncinfo_t *, Operation *, LDAPMessage *,
1303                                         Modifications **, Entry **, int ));
1304 LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
1305                                         syncinfo_t *, Operation*, Entry*,
1306                                         Modifications**,int, struct berval*,
1307                                         struct sync_cookie *,
1308                                         struct berval * ));
1309 LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
1310                                         syncinfo_t *, Operation *, struct berval *,
1311                                         struct sync_cookie * ));
1312 LDAP_SLAPD_F (void)  syncrepl_add_glue LDAP_P(( 
1313                                         Operation*, Entry* ));
1314 LDAP_SLAPD_F (Entry*) slap_create_syncrepl_entry LDAP_P((
1315                                         Backend *, struct berval *,
1316                                         struct berval *, struct berval * ));
1317 LDAP_SLAPD_F (struct berval *) slap_uuidstr_from_normalized LDAP_P((
1318                                         struct berval *, struct berval *, void * ));
1319 LDAP_SLAPD_F (void) syncinfo_free LDAP_P(( syncinfo_t * ));
1320
1321 /* syntax.c */
1322 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1323         const char *synname ));
1324 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1325         const char *syndesc, int *slen ));
1326 LDAP_SLAPD_F (int) syn_add LDAP_P((
1327         LDAPSyntax *syn,
1328         slap_syntax_defs_rec *def,
1329         const char **err ));
1330 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1331
1332 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1333         slap_syntax_defs_rec *def ));
1334
1335 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1336
1337 /*
1338  * user.c
1339  */
1340 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1341 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1342 #endif
1343
1344 /*
1345  * value.c
1346  */
1347 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1348         AttributeDescription *ad,
1349         MatchingRule *mr,
1350         unsigned usage,
1351         struct berval *in,
1352         struct berval *out,
1353         const char ** text,
1354         void *ctx ));
1355
1356 LDAP_SLAPD_F (int) value_match LDAP_P((
1357         int *match,
1358         AttributeDescription *ad,
1359         MatchingRule *mr,
1360         unsigned flags,
1361         struct berval *v1,
1362         void *v2,
1363         const char ** text ));
1364 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1365         AttributeDescription *ad,
1366         unsigned flags,
1367         BerVarray values,
1368         struct berval *value,
1369         void *ctx ));
1370
1371 LDAP_SLAPD_F (int) value_add LDAP_P((
1372         BerVarray *vals,
1373         BerVarray addvals ));
1374 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1375         BerVarray *vals,
1376         struct berval *addval ));
1377
1378 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1379 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1380
1381 #ifdef SLAP_ZONE_ALLOC
1382 /*
1383  * zn_malloc.c
1384  */
1385 LDAP_SLAPD_F (void *) slap_zn_malloc LDAP_P((ber_len_t, void *));
1386 LDAP_SLAPD_F (void *) slap_zn_realloc LDAP_P((void *, ber_len_t, void *));
1387 LDAP_SLAPD_F (void *) slap_zn_calloc LDAP_P((ber_len_t, ber_len_t, void *));
1388 LDAP_SLAPD_F (void) slap_zn_free LDAP_P((void *, void *));
1389
1390 LDAP_SLAPD_F (void *) slap_zn_mem_create LDAP_P((
1391                                                         ber_len_t, ber_len_t, ber_len_t, ber_len_t));
1392 LDAP_SLAPD_F (void) slap_zn_mem_destroy LDAP_P((void *));
1393 LDAP_SLAPD_F (int) slap_zn_validate LDAP_P((void *, void *, int));
1394 LDAP_SLAPD_F (int) slap_zn_invalidate LDAP_P((void *, void *));
1395 LDAP_SLAPD_F (int) slap_zh_rlock LDAP_P((void*));
1396 LDAP_SLAPD_F (int) slap_zh_runlock LDAP_P((void*));
1397 LDAP_SLAPD_F (int) slap_zh_wlock LDAP_P((void*));
1398 LDAP_SLAPD_F (int) slap_zh_wunlock LDAP_P((void*));
1399 LDAP_SLAPD_F (int) slap_zn_rlock LDAP_P((void*, void*));
1400 LDAP_SLAPD_F (int) slap_zn_runlock LDAP_P((void*, void*));
1401 LDAP_SLAPD_F (int) slap_zn_wlock LDAP_P((void*, void*));
1402 LDAP_SLAPD_F (int) slap_zn_wunlock LDAP_P((void*, void*));
1403 #endif
1404
1405 /*
1406  * Other...
1407  */
1408 LDAP_SLAPD_V (unsigned int) index_substr_if_minlen;
1409 LDAP_SLAPD_V (unsigned int) index_substr_if_maxlen;
1410 LDAP_SLAPD_V (unsigned int) index_substr_any_len;
1411 LDAP_SLAPD_V (unsigned int) index_substr_any_step;
1412
1413 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1414 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1415 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1416 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1417
1418 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1419 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1420
1421 LDAP_SLAPD_V (BerVarray)        default_referral;
1422 LDAP_SLAPD_V (const char)       Versionstr[];
1423
1424 LDAP_SLAPD_V (int)              global_gentlehup;
1425 LDAP_SLAPD_V (int)              global_idletimeout;
1426 LDAP_SLAPD_V (int)              global_schemacheck;
1427 LDAP_SLAPD_V (char *)   global_host;
1428 LDAP_SLAPD_V (char *)   global_realm;
1429 LDAP_SLAPD_V (char **)  default_passwd_hash;
1430 LDAP_SLAPD_V (int)              lber_debug;
1431 LDAP_SLAPD_V (int)              ldap_syslog;
1432 LDAP_SLAPD_V (struct berval)    default_search_base;
1433 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1434
1435 LDAP_SLAPD_V (slap_counters_t)  slap_counters;
1436
1437 LDAP_SLAPD_V (char *)           slapd_pid_file;
1438 LDAP_SLAPD_V (char *)           slapd_args_file;
1439 LDAP_SLAPD_V (time_t)           starttime;
1440
1441 /* use time(3) -- no mutex */
1442 #define slap_get_time() time( NULL )
1443
1444 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1445 LDAP_SLAPD_V (int)                      connection_pool_max;
1446
1447 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1448 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1449
1450 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1451 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1452 #endif
1453 #ifndef HAVE_GMTIME_R
1454 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1455 #endif
1456
1457 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1458
1459 LDAP_SLAPD_V (int)              use_reverse_lookup;
1460
1461 LDAP_SLAPD_V (struct berval)    AllUser;
1462 LDAP_SLAPD_V (struct berval)    AllOper;
1463 LDAP_SLAPD_V (struct berval)    NoAttrs;
1464
1465 /*
1466  * operations
1467  */
1468 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1469 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1470 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1471 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1472 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1473 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1474 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1475 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1476 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1477 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1478
1479 /*
1480  * frontend operations
1481  */
1482 LDAP_SLAPD_F (int) fe_op_abandon LDAP_P((Operation *op, SlapReply *rs));
1483 LDAP_SLAPD_F (int) fe_op_add LDAP_P((Operation *op, SlapReply *rs));
1484 LDAP_SLAPD_F (int) fe_op_bind LDAP_P((Operation *op, SlapReply *rs));
1485 LDAP_SLAPD_F (int) fe_op_compare LDAP_P((Operation *op, SlapReply *rs));
1486 LDAP_SLAPD_F (int) fe_op_delete LDAP_P((Operation *op, SlapReply *rs));
1487 LDAP_SLAPD_F (int) fe_op_modify LDAP_P((Operation *op, SlapReply *rs));
1488 LDAP_SLAPD_F (int) fe_op_modrdn LDAP_P((Operation *op, SlapReply *rs));
1489 LDAP_SLAPD_F (int) fe_op_search LDAP_P((Operation *op, SlapReply *rs));
1490 #if 0
1491 LDAP_SLAPD_F (int) fe_op_unbind LDAP_P((Operation *op, SlapReply *rs));
1492 #endif
1493 LDAP_SLAPD_F (int) fe_extended LDAP_P((Operation *op, SlapReply *rs));
1494
1495 LDAP_END_DECL
1496
1497 #endif /* PROTO_SLAP_H */
1498