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