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