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