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