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