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