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