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