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