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