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