]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Add 'defaultSearchBase' configuration directive to help support
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #ifndef _PROTO_SLAP
7 #define _PROTO_SLAP
8
9 #include <ldap_cdefs.h>
10
11 LDAP_BEGIN_DECL
12
13 LDAP_SLAPD_F( int ) schema_init_done;
14 LDAP_SLAPD_F( struct slap_internal_schema ) slap_schema;
15
16 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
17         const char *,
18         AttributeDescription **ad,
19         const char **text ));
20
21 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
22         struct berval *bv,
23         AttributeDescription **ad,
24         const char **text ));
25
26 LDAP_SLAPD_F (AttributeDescription *) ad_dup LDAP_P((
27         AttributeDescription *desc ));
28
29 LDAP_SLAPD_F (void) ad_free LDAP_P((
30         AttributeDescription *desc,
31         int freeit ));
32
33 #define ad_cmp(l,r)     ( strcasecmp( \
34         (l)->ad_cname->bv_val, (r)->ad_cname->bv_val ))
35
36 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
37         AttributeDescription *sub,
38         AttributeDescription *super ));
39
40 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
41         AttributeDescription *desc,
42         char **attrs ));
43
44 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
45         const char *,
46         AttributeDescription **ad,
47         const char **text ));
48
49 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
50         struct berval *bv,
51         AttributeDescription **ad,
52         const char **text ));
53
54 /*
55  * acl.c
56  */
57
58 LDAP_SLAPD_F (int) access_allowed LDAP_P((
59         Backend *be, Connection *conn, Operation *op,
60         Entry *e, AttributeDescription *desc, struct berval *val,
61         slap_access_t access ));
62 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
63         Backend *be, Connection *conn, Operation *op,
64         Entry *e, Modifications *ml ));
65
66 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
67
68 /*
69  * aclparse.c
70  */
71
72 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
73         const char *fname, int lineno,
74         int argc, char **argv ));
75
76 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
77 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
78
79 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
80 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
81 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
82
83 /*
84  * at.c
85  */
86
87 LDAP_SLAPD_F (void) at_config LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
88 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P(( const char *name ));
89 LDAP_SLAPD_F (int) at_find_in_list LDAP_P(( AttributeType *sat, AttributeType **list ));
90 LDAP_SLAPD_F (int) at_append_to_list LDAP_P(( AttributeType *sat, AttributeType ***listp ));
91 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P(( int pos, AttributeType ***listp ));
92 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
93 LDAP_SLAPD_F (int) at_add LDAP_P(( LDAPAttributeType *at, const char **err ));
94
95 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
96         AttributeType *sub,
97         AttributeType *super ));
98
99 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
100         AttributeType *at,
101         const char *oid ));
102
103 #       define at_canonical_name(at) ((at)->sat_cname)  
104
105
106 /*
107  * attr.c
108  */
109
110 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
111 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
112
113 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
114         AttributeDescription *desc,
115         struct berval **vals ));
116 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
117 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
118 LDAP_SLAPD_F (int) attr_delete LDAP_P(( Attribute **attrs, AttributeDescription *desc ));
119
120 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
121 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
122
123
124 /*
125  * ava.c
126  */
127 LDAP_SLAPD_F (int) get_ava LDAP_P((
128         BerElement *ber,
129         AttributeAssertion **ava,
130         unsigned usage,
131         const char **text ));
132 LDAP_SLAPD_F (void) ava_free LDAP_P((
133         AttributeAssertion *ava,
134         int freeit ));
135
136 /*
137  * backend.c
138  */
139
140 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
141 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
142 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
143 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
144 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
145 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
146
147 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
148 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
149
150 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P(( const char * dn ));
151
152 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be, const char *suffix ));
153 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Backend *be, const char *ndn ));
154 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Backend *be, const char *ndn, struct berval *cred ));
155 LDAP_SLAPD_F (char *) be_root_dn LDAP_P(( Backend *be ));
156 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P(( Backend *be, Entry *e, int rw ));
157 #define be_entry_release_r( be, e ) be_entry_release_rw( be, e, 0 )
158 #define be_entry_release_w( be, e ) be_entry_release_rw( be, e, 1 )
159
160 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Connection *conn, Operation *op));
161
162 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
163         Backend *be,
164         Connection *conn,
165         Operation *op,
166         const char *extoid,
167         const char **text ));
168
169 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
170         Backend *be,
171         Connection *conn,
172         Operation *op,
173         const char *dn,
174         const char *ndn ));
175
176 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
177 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
178
179 LDAP_SLAPD_F (int) backend_group LDAP_P((Backend *be,
180         Entry *target,
181         const char *gr_ndn,
182         const char *op_ndn,
183         ObjectClass *group_oc,
184         AttributeDescription *group_at
185 ));
186
187 LDAP_SLAPD_F (int) backend_attribute LDAP_P((Backend *be,
188         Connection *conn,
189         Operation *op,
190         Entry *target,
191         const char *e_ndn,
192         AttributeDescription *entry_at,
193         struct berval ***vals
194 ));
195
196 LDAP_SLAPD_F (Attribute *) backend_operational( Backend *, Entry * );
197
198
199
200 /*
201  * ch_malloc.c
202  */
203
204 #ifdef CSRIMALLOC
205 #define ch_malloc malloc
206 #define ch_realloc realloc
207 #define ch_calloc calloc
208 #define ch_strdup strdup
209 #define ch_free free
210
211 #else
212 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
213 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
214 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
215 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
216 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
217
218 #ifndef CH_FREE
219 #undef free
220 #define free ch_free
221 #endif
222 #endif
223
224 /*
225  * charray.c
226  */
227
228 LDAP_SLAPD_F (void) charray_add LDAP_P(( char ***a, const char *s ));
229 LDAP_SLAPD_F (void) charray_merge LDAP_P(( char ***a, char **s ));
230 LDAP_SLAPD_F (void) charray_free LDAP_P(( char **array ));
231 LDAP_SLAPD_F (int) charray_inlist LDAP_P(( char **a, const char *s ));
232 LDAP_SLAPD_F (char **) charray_dup LDAP_P(( char **a ));
233 LDAP_SLAPD_F (char **) str2charray LDAP_P(( const char *str, const char *brkstr ));
234
235 /*
236  * controls.c
237  */
238 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
239         Connection *co,
240         Operation *op,
241         int senderrors ));
242
243 LDAP_SLAPD_F (int) get_manageDSAit LDAP_P(( Operation *op ));
244
245 /*
246  * config.c
247  */
248
249 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname ));
250
251
252 /*
253  * index.c
254  */
255 LDAP_SLAPD_F (int) slap_index2prefix LDAP_P(( int indextype ));
256 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
257
258 /*
259  * connection.c
260  */
261 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
262 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
263 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
264 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
265
266 LDAP_SLAPD_F (long) connection_init LDAP_P((
267         ber_socket_t s,
268         const char* url,
269         const char* dnsname,
270         const char* peername,
271         const char* sockname,
272         int use_tls,
273         slap_ssf_t ssf,
274         char *id ));
275
276 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
277 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
278 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state )) LDAP_GCCATTR((const));
279
280 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
281 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
282
283 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
284
285 LDAP_SLAPD_F (Connection *) connection_first LDAP_P((ber_socket_t *));
286 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((Connection *, ber_socket_t *));
287 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
288
289 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
290
291 /*
292  * dn.c
293  */
294
295 LDAP_SLAPD_F (char *) dn_validate LDAP_P(( char *dn ));
296 LDAP_SLAPD_F (char *) dn_normalize LDAP_P(( char *dn ));
297 LDAP_SLAPD_F (char *) dn_parent LDAP_P(( Backend *be, const char *dn ));
298 LDAP_SLAPD_F (char **) dn_subtree LDAP_P(( Backend *be, const char *dn ));
299 LDAP_SLAPD_F (char *) dn_rdn LDAP_P(( Backend *be, const char *dn ));
300 LDAP_SLAPD_F (int) dn_issuffix LDAP_P(( const char *dn, const char *suffix ));
301 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( const char* str ));
302 LDAP_SLAPD_F (char *) rdn_attr_value LDAP_P(( const char * rdn ));
303 LDAP_SLAPD_F (char *) rdn_attr_type LDAP_P(( const char * rdn ));
304
305 LDAP_SLAPD_F (void) build_new_dn LDAP_P(( char ** new_dn,
306         const char *e_dn,
307         const char * p_dn,
308         const char * newrdn ));
309 /*
310  * entry.c
311  */
312
313 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
314
315 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
316 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
317 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
318
319 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
320 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( Entry *a, Entry *b ));
321 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( Entry *a, Entry *b ));
322
323 /*
324  * extended.c
325  */
326
327 typedef int (*SLAP_EXTOP_MAIN_FN) LDAP_P((
328         Connection *conn, Operation *op,
329         const char * reqoid,
330         struct berval * reqdata,
331         char ** rspoid,
332         struct berval ** rspdata,
333         LDAPControl *** rspctrls,
334         const char ** text,
335         struct berval *** refs ));
336
337 typedef int (*SLAP_EXTOP_GETOID_FN) LDAP_P((
338         int index, char *oid, int blen ));
339
340 LDAP_SLAPD_F (int) load_extension LDAP_P((const void *module, const char *file_name));
341 LDAP_SLAPD_F (char *) get_supported_extension LDAP_P((int index));
342
343 LDAP_SLAPD_F (int) load_extop LDAP_P((
344         const char *ext_oid,
345         SLAP_EXTOP_MAIN_FN ext_main ));
346
347 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
348
349 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
350
351 LDAP_SLAPD_F (char *) get_supported_extop LDAP_P((int index));
352
353 /*
354  * filter.c
355  */
356
357 LDAP_SLAPD_F (int) get_filter LDAP_P((
358         Connection *conn,
359         BerElement *ber,
360         Filter **filt,
361         char **fstr,
362         const char **text ));
363
364 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
365 LDAP_SLAPD_F (void) filter_print LDAP_P(( Filter *f ));
366
367 /*
368  * filterentry.c
369  */
370
371 LDAP_SLAPD_F (int) test_filter LDAP_P((
372         Backend *be, Connection *conn, Operation *op, Entry *e, Filter  *f ));
373
374 /*
375  * lock.c
376  */
377
378 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname, const char *type, FILE **lfp ));
379 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
380
381
382 /*
383  * modify.c
384  *      should be relocated to separate file
385  */
386 LDAP_SLAPD_F( void ) slap_mod_free LDAP_P(( Modification *mod, int freeit ));
387 LDAP_SLAPD_F( void ) slap_mods_free LDAP_P(( Modifications *mods ));
388 LDAP_SLAPD_F( void ) slap_modlist_free LDAP_P(( LDAPModList *ml ));
389
390 LDAP_SLAPD_F( int ) slap_modlist2mods(
391         LDAPModList *ml,
392         int update,
393         Modifications **mods,
394         const char **text );
395
396 LDAP_SLAPD_F( int ) slap_mods_opattrs(
397         Operation *op,
398         Modifications **modlist,
399         const char **text );
400
401 /*
402  * module.c
403  */
404
405 #ifdef SLAPD_MODULES
406
407 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
408 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
409
410 LDAP_SLAPD_F (int) load_null_module(
411         const void *module, const char *file_name);
412 LDAP_SLAPD_F (int) load_extop_module(
413         const void *module, const char *file_name);
414
415 LDAP_SLAPD_F (int) module_load LDAP_P((
416         const char* file_name,
417         int argc, char *argv[] ));
418 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
419
420 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
421         const void *module, const char *name));
422
423 #endif /* SLAPD_MODULES */
424
425 /*
426  * monitor.c
427  */
428 LDAP_SLAPD_F (char *) supportedControls[];
429
430 LDAP_SLAPD_F (int) monitor_info LDAP_P((
431         Entry **entry, const char **text ));
432
433 /*
434  * operation.c
435  */
436
437 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
438 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
439         BerElement *ber, ber_int_t msgid,
440         ber_tag_t tag, ber_int_t id ));
441
442 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
443 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
444 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
445
446 /*
447  * phonetic.c
448  */
449
450 LDAP_SLAPD_F (char *) first_word LDAP_P(( char *s ));
451 LDAP_SLAPD_F (char *) next_word LDAP_P(( char *s ));
452 LDAP_SLAPD_F (char *) word_dup LDAP_P(( char *w ));
453 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
454
455 /*
456  * repl.c
457  */
458
459 LDAP_SLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op, char *dn, void *change ));
460
461 /*
462  * result.c
463  */
464
465 LDAP_SLAPD_F (struct berval **) get_entry_referrals LDAP_P((
466         Backend *be, Connection *conn, Operation *op,
467         Entry *e ));
468
469 LDAP_SLAPD_F (void) send_ldap_result LDAP_P((
470         Connection *conn, Operation *op,
471         ber_int_t err, const char *matched, const char *text,
472         struct berval **refs,
473         LDAPControl **ctrls ));
474
475 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P((
476         Connection *conn, Operation *op,
477         ber_int_t err, const char *matched,
478         const char *text,
479         struct berval **refs,
480         LDAPControl **ctrls,
481         struct berval *cred ));
482
483 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P((
484         Connection *conn, Operation *op,
485         ber_int_t err, const char *text ));
486
487 LDAP_SLAPD_F (void) send_ldap_extended LDAP_P((
488         Connection *conn, Operation *op,
489         ber_int_t err, const char *matched,
490         const char *text, struct berval **refs,
491         const char *rspoid, struct berval *rspdata,
492         LDAPControl **ctrls ));
493
494 LDAP_SLAPD_F (void) send_ldap_partial LDAP_P((
495         Connection *conn, Operation *op,
496         const char *rspoid, struct berval *rspdata,
497         LDAPControl **ctrls ));
498
499 LDAP_SLAPD_F (void) send_search_result LDAP_P((
500         Connection *conn, Operation *op,
501         ber_int_t err, const char *matched, const char *text,
502         struct berval **refs,
503         LDAPControl **ctrls,
504         int nentries ));
505
506 LDAP_SLAPD_F (int) send_search_reference LDAP_P((
507         Backend *be, Connection *conn, Operation *op,
508         Entry *e, struct berval **refs, int scope,
509         LDAPControl **ctrls,
510         struct berval ***v2refs ));
511
512 LDAP_SLAPD_F (int) send_search_entry LDAP_P((
513         Backend *be, Connection *conn, Operation *op,
514         Entry *e, char **attrs, int attrsonly,
515         LDAPControl **ctrls ));
516
517 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
518         int *code, char **matched, char **info ));
519
520 /*
521  * sasl.c
522  */
523
524 LDAP_SLAPD_F (int) slap_sasl_init(void);
525 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
526 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
527
528 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
529 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
530
531 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
532         slap_ssf_t ssf, /* relative strength of external security */
533         char *authid ); /* asserted authenication id */
534
535 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
536 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
537
538 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P((
539         Connection *conn, Operation *op, 
540         const char *dn, const char *ndn,
541         const char *mech, struct berval *cred,
542         char **edn, slap_ssf_t *ssf ));
543
544 /* oc.c */
545 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
546
547 /* mr.c */
548 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
549
550 /* syntax.c */
551 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
552
553 /*
554  * schema.c
555  */
556
557 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
558         const char *ocname));
559
560 LDAP_SLAPD_F (int) oc_add LDAP_P((
561         LDAPObjectClass *oc,
562         const char **err));
563
564 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
565         ObjectClass *sub,
566         ObjectClass *sup ));
567
568
569 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((const char *synname));
570 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((const char *syndesc, int *slen));
571 #ifdef SLAPD_BINARY_CONVERSION
572 LDAP_SLAPD_F (int) syn_add LDAP_P((
573         LDAPSyntax *syn,
574         unsigned flags,
575         slap_syntax_validate_func *validate,
576         slap_syntax_transform_func *normalize,
577         slap_syntax_transform_func *pretty,
578         slap_syntax_transform_func *ber2str,
579         slap_syntax_transform_func *str2ber,
580         const char **err));
581 #else
582 LDAP_SLAPD_F (int) syn_add LDAP_P((
583         LDAPSyntax *syn,
584         unsigned flags,
585         slap_syntax_validate_func *validate,
586         slap_syntax_transform_func *normalize,
587         slap_syntax_transform_func *pretty,
588         const char **err));
589 #endif
590
591 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
592 LDAP_SLAPD_F (int) mr_add LDAP_P((LDAPMatchingRule *mr,
593         unsigned usage,
594         slap_mr_convert_func *convert,
595         slap_mr_normalize_func *normalize,
596         slap_mr_match_func *match,
597         slap_mr_indexer_func *indexer,
598         slap_mr_filter_func *filter,
599         MatchingRule * associated,
600         const char **err));
601
602 LDAP_SLAPD_F (int) register_syntax LDAP_P((
603         char *desc,
604         unsigned flags,
605         slap_syntax_validate_func *validate,
606         slap_syntax_transform_func *ber2str,
607         slap_syntax_transform_func *str2ber ));
608
609 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
610         char * desc,
611         unsigned usage,
612         slap_mr_convert_func *convert,
613         slap_mr_normalize_func *normalize,
614         slap_mr_match_func *match,
615         slap_mr_indexer_func *indexer,
616         slap_mr_filter_func *filter,
617         const char *associated ));
618
619 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
620
621 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
622         Entry *, ObjectClass *oc ));
623 #define is_entry_alias(e)               is_entry_objectclass((e), slap_schema.si_oc_alias)
624 #define is_entry_referral(e)    is_entry_objectclass((e), slap_schema.si_oc_referral)
625
626
627 /*
628  * schema_check.c
629  */
630 int oc_check_allowed(
631         AttributeType *type,
632         struct berval **oclist );
633 LDAP_SLAPD_F (int) entry_schema_check LDAP_P((
634         Entry *e, Attribute *attrs,
635         const char** text ));
636
637
638 /*
639  * schema_init.c
640  */
641 LDAP_SLAPD_F (int) schema_init LDAP_P((void));
642 LDAP_SLAPD_F (int) schema_prep LDAP_P((void));
643
644
645 /*
646  * schemaparse.c
647  */
648
649 LDAP_SLAPD_F (void) parse_oc_old LDAP_P(( Backend *be, const char *fname, int lineno, int argc, char **argv ));
650 LDAP_SLAPD_F (void) parse_oc LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
651 LDAP_SLAPD_F (void) parse_at LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
652 LDAP_SLAPD_F (void) parse_oidm LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
653 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
654 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del, char delim ));
655
656
657 /*
658  * starttls.c
659  */
660
661 LDAP_SLAPD_F (int) starttls_extop LDAP_P((
662         Connection *conn, Operation *op,
663         const char * reqoid,
664         struct berval * reqdata,
665         char ** rspoid,
666         struct berval ** rspdata,
667         LDAPControl ***rspctrls,
668         const char ** text,
669         struct berval *** refs ));
670
671
672 /*
673  * str2filter.c
674  */
675
676 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
677
678 /*
679  * suffixalias.c
680  */
681 LDAP_SLAPD_F (char *) suffix_alias LDAP_P(( Backend *be, char *ndn ));
682
683 /*
684  * value.c
685  */
686 LDAP_SLAPD_F (int) value_normalize LDAP_P((
687         AttributeDescription *ad,
688         unsigned usage,
689         struct berval *in,
690         struct berval **out,
691         const char ** text ));
692 LDAP_SLAPD_F (int) value_match LDAP_P((
693         int *match,
694         AttributeDescription *ad,
695         MatchingRule *mr,
696         unsigned flags,
697         struct berval *v1,
698         void *v2,
699         const char ** text ));
700 LDAP_SLAPD_F (int) value_find LDAP_P((
701         AttributeDescription *ad,
702         struct berval **values,
703         struct berval *value ));
704 LDAP_SLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
705
706 /*
707  * user.c
708  */
709 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
710 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
711 #endif
712
713 /*
714  * passwd.c
715  */
716 LDAP_SLAPD_F (int) passwd_extop LDAP_P((
717         Connection *conn, Operation *op,
718         const char * reqoid,
719         struct berval * reqdata,
720         char ** rspoid,
721         struct berval ** rspdata,
722         LDAPControl *** rspctrls,
723         const char ** text,
724         struct berval *** refs ));
725
726 LDAP_SLAPD_F (int) slap_passwd_check(
727         Attribute                       *attr,
728         struct berval           *cred );
729
730 LDAP_SLAPD_F (struct berval *) slap_passwd_generate( void );
731
732 LDAP_SLAPD_F (struct berval *) slap_passwd_hash(
733         struct berval           *cred );
734
735 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
736         struct berval           *cred );
737
738 LDAP_SLAPD_F (int) slap_passwd_parse(
739         struct berval *reqdata,
740         struct berval **id,
741         struct berval **oldpass,
742         struct berval **newpass,
743         const char **text );
744
745 /*
746  * kerberos.c
747  */
748 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
749 extern char             *ldap_srvtab;
750 LDAP_SLAPD_F (int)      krbv4_ldap_auth();
751 #endif
752
753 /*
754  * Other...
755  */
756
757 LDAP_SLAPD_F (slap_mask_t)      global_restrictops;
758 LDAP_SLAPD_F (slap_mask_t)      global_allows;
759 LDAP_SLAPD_F (slap_mask_t)      global_disallows;
760 LDAP_SLAPD_F (slap_mask_t)      global_requires;
761 LDAP_SLAPD_F (slap_ssf_set_t)   global_ssf_set;
762
763 LDAP_SLAPD_F (struct berval **) default_referral;
764 LDAP_SLAPD_F (char *)           replogfile;
765 LDAP_SLAPD_F (const char)       Versionstr[];
766 LDAP_SLAPD_F (int)              defsize;
767 LDAP_SLAPD_F (int)              deftime;
768 LDAP_SLAPD_F (int)              g_argc;
769 LDAP_SLAPD_F (slap_access_t)    global_default_access;
770 LDAP_SLAPD_F (int)              global_lastmod;
771 LDAP_SLAPD_F (int)              global_idletimeout;
772 LDAP_SLAPD_F (int)              global_schemacheck;
773 LDAP_SLAPD_F (char)             *global_host;
774 LDAP_SLAPD_F (char)             *global_realm;
775 LDAP_SLAPD_F (char)             *global_ucdata_path;
776 LDAP_SLAPD_F (char)             *default_passwd_hash;
777 LDAP_SLAPD_F (int)              lber_debug;
778 LDAP_SLAPD_F (int)              ldap_syslog;
779 LDAP_SLAPD_F (char *)   default_search_base;
780 LDAP_SLAPD_F (char *)   default_search_nbase;
781
782 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_sent_mutex;
783 LDAP_SLAPD_F (long)             num_bytes_sent;
784 LDAP_SLAPD_F (long)             num_pdu_sent;
785 LDAP_SLAPD_F (long)             num_entries_sent;
786 LDAP_SLAPD_F (long)             num_refs_sent;
787
788 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_ops_mutex;
789 LDAP_SLAPD_F (long)             num_ops_completed;
790 LDAP_SLAPD_F (long)             num_ops_initiated;
791
792 LDAP_SLAPD_F (char *)           slapd_pid_file;
793 LDAP_SLAPD_F (char *)           slapd_args_file;
794 LDAP_SLAPD_F (char)             **g_argv;
795 LDAP_SLAPD_F (time_t)           starttime;
796
797 LDAP_SLAPD_F (time_t) slap_get_time LDAP_P((void));
798
799 LDAP_SLAPD_F (ldap_pvt_thread_pool_t)   connection_pool;
800
801 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  entry2str_mutex;
802 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  replog_mutex;
803
804 #ifdef SLAPD_CRYPT
805 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  crypt_mutex;
806 #endif
807 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  gmtime_mutex;
808
809 LDAP_SLAPD_F (AccessControl *) global_acl;
810
811 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
812 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
813 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
814 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
815
816 struct sockaddr_in;
817
818 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
819 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
820 LDAP_SLAPD_F (int) slapd_daemon(void);
821
822 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
823 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
824 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
825 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
826
827 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
828
829 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
830 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
831
832 LDAP_SLAPD_F (int) config_info LDAP_P((
833         Entry **e, const char **text ));
834
835 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
836         Connection *conn,
837         Entry **e,
838         const char **text ));
839
840 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
841 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
842 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
843 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
844 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
845 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
846 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
847 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
848 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
849 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
850
851
852 LDAP_SLAPD_F (ber_socket_t) dtblsize;
853
854 LDAP_END_DECL
855
856 #endif /* _proto_slap */
857