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