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