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