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