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