]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Bring in LDBM error handling fixes
[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 LDAP_SLAPD_F (void) ad_free LDAP_P((
32         AttributeDescription *desc,
33         int freeit ));
34
35 #define ad_cmp(l,r)     ( strcasecmp( \
36         (l)->ad_cname->bv_val, (r)->ad_cname->bv_val ))
37
38 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
39         AttributeDescription *sub,
40         AttributeDescription *super ));
41
42 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
43         AttributeDescription *desc,
44         char **attrs ));
45
46 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
47         const char *,
48         AttributeDescription **ad,
49         const char **text ));
50
51 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
52         struct berval *bv,
53         AttributeDescription **ad,
54         const char **text ));
55
56 /*
57  * acl.c
58  */
59
60 LDAP_SLAPD_F (int) access_allowed LDAP_P((
61         Backend *be, Connection *conn, Operation *op,
62         Entry *e, AttributeDescription *desc, struct berval *val,
63         slap_access_t access ));
64 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
65         Backend *be, Connection *conn, Operation *op,
66         Entry *e, Modifications *ml ));
67
68 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
69
70 /*
71  * aclparse.c
72  */
73
74 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
75         const char *fname, int lineno,
76         int argc, char **argv ));
77
78 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
79 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
80
81 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
82 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
83 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
84
85 /*
86  * at.c
87  */
88
89 LDAP_SLAPD_F (void) at_config LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
90 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P(( const char *name ));
91 LDAP_SLAPD_F (int) at_find_in_list LDAP_P(( AttributeType *sat, AttributeType **list ));
92 LDAP_SLAPD_F (int) at_append_to_list LDAP_P(( AttributeType *sat, AttributeType ***listp ));
93 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P(( int pos, AttributeType ***listp ));
94 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
95 LDAP_SLAPD_F (int) at_add LDAP_P(( LDAPAttributeType *at, const char **err ));
96
97 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
98         AttributeType *sub,
99         AttributeType *super ));
100
101 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
102         AttributeType *at,
103         const char *oid ));
104
105 #       define at_canonical_name(at) ((at)->sat_cname)  
106
107
108 /*
109  * attr.c
110  */
111
112 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
113 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
114
115 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
116         AttributeDescription *desc,
117         struct berval **vals ));
118 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
119 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
120 LDAP_SLAPD_F (int) attr_delete LDAP_P(( Attribute **attrs, AttributeDescription *desc ));
121
122 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
123 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
124
125
126 /*
127  * ava.c
128  */
129 LDAP_SLAPD_F (int) get_ava LDAP_P((
130         BerElement *ber,
131         AttributeAssertion **ava,
132         unsigned usage,
133         const char **text ));
134 LDAP_SLAPD_F (void) ava_free LDAP_P((
135         AttributeAssertion *ava,
136         int freeit ));
137
138 /*
139  * backend.c
140  */
141
142 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
143 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
144 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
145 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
146 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
147 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
148
149 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
150 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
151
152 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
153         const char * dn,
154         int manageDSAit ));
155
156 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be, const char *suffix ));
157 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Backend *be, const char *ndn ));
158 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Backend *be,
159         Connection *conn, const char *ndn, struct berval *cred ));
160 LDAP_SLAPD_F (char *) be_root_dn LDAP_P(( Backend *be ));
161 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P(( Backend *be, Entry *e, int rw ));
162 #define be_entry_release_r( be, e ) be_entry_release_rw( be, e, 0 )
163 #define be_entry_release_w( be, e ) be_entry_release_rw( be, e, 1 )
164
165 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Connection *conn, Operation *op));
166
167 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
168         Backend *be,
169         Connection *conn,
170         Operation *op,
171         const void *opdata,
172         const char **text ));
173
174 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
175         Backend *be,
176         Connection *conn,
177         Operation *op,
178         const char *dn,
179         const char *ndn ));
180
181 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
182 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
183
184 LDAP_SLAPD_F (int) backend_group LDAP_P((Backend *be,
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((Backend *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( Backend *, Entry * );
202
203
204
205 /*
206  * ch_malloc.c
207  */
208
209 #ifdef CSRIMALLOC
210 #define ch_malloc malloc
211 #define ch_realloc realloc
212 #define ch_calloc calloc
213 #define ch_strdup strdup
214 #define ch_free free
215
216 #else
217 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
218 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
219 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
220 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
221 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
222
223 #ifndef CH_FREE
224 #undef free
225 #define free ch_free
226 #endif
227 #endif
228
229 /*
230  * charray.c
231  */
232
233 LDAP_SLAPD_F (void) charray_add LDAP_P(( char ***a, const char *s ));
234 LDAP_SLAPD_F (void) charray_add_n LDAP_P(( char ***a, const char *s, int l ));
235 LDAP_SLAPD_F (void) charray_merge LDAP_P(( char ***a, char **s ));
236 LDAP_SLAPD_F (void) charray_free LDAP_P(( char **array ));
237 LDAP_SLAPD_F (int) charray_inlist LDAP_P(( char **a, const char *s ));
238 LDAP_SLAPD_F (char **) charray_dup LDAP_P(( char **a ));
239 LDAP_SLAPD_F (char **) str2charray LDAP_P(( const char *str, const char *brkstr ));
240 LDAP_SLAPD_F (int) charray_strcmp LDAP_P(( const char **a1, const char **a2 ));
241 LDAP_SLAPD_F (int) charray_strcasecmp LDAP_P(( const char **a1, const char **a2 ));
242         
243
244 /*
245  * controls.c
246  */
247 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
248         Connection *co,
249         Operation *op,
250         int senderrors ));
251
252 LDAP_SLAPD_F (int) get_manageDSAit LDAP_P(( Operation *op ));
253
254 /*
255  * config.c
256  */
257
258 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname ));
259
260
261 /*
262  * index.c
263  */
264 LDAP_SLAPD_F (int) slap_index2prefix LDAP_P(( int indextype ));
265 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
266
267 /*
268  * connection.c
269  */
270 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
271 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
272 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
273 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
274
275 LDAP_SLAPD_F (long) connection_init LDAP_P((
276         ber_socket_t s,
277         const char* url,
278         const char* dnsname,
279         const char* peername,
280         const char* sockname,
281         int use_tls,
282         slap_ssf_t ssf,
283         char *id ));
284
285 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
286 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
287 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state )) LDAP_GCCATTR((const));
288
289 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
290 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
291
292 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
293
294 LDAP_SLAPD_F (Connection *) connection_first LDAP_P((ber_socket_t *));
295 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((Connection *, ber_socket_t *));
296 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
297
298 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
299
300 /*
301  * dn.c
302  */
303
304 LDAP_SLAPD_F (char *) dn_validate LDAP_P(( char *dn ));
305 LDAP_SLAPD_F (char *) dn_normalize LDAP_P(( char *dn ));
306 LDAP_SLAPD_F (char *) dn_parent LDAP_P(( Backend *be, const char *dn ));
307 LDAP_SLAPD_F (char **) dn_subtree LDAP_P(( Backend *be, const char *dn ));
308 LDAP_SLAPD_F (char *) dn_rdn LDAP_P(( Backend *be, const char *dn ));
309 LDAP_SLAPD_F (int) dn_issuffix LDAP_P(( const char *dn, const char *suffix ));
310 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( const char* str ));
311 LDAP_SLAPD_F (char *) rdn_attr_value LDAP_P(( const char * rdn ));
312 LDAP_SLAPD_F (char *) rdn_attr_type LDAP_P(( const char * rdn ));
313 LDAP_SLAPD_F (int) rdn_attrs LDAP_P(( const char * rdn, char ***ptypes, char ***pvals ));
314
315 LDAP_SLAPD_F (void) build_new_dn LDAP_P(( char ** new_dn,
316         const char *e_dn,
317         const char * p_dn,
318         const char * newrdn ));
319 /*
320  * entry.c
321  */
322
323 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
324
325 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
326 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
327
328 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
329 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval **bv ));
330
331 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
332 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
333 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( Entry *a, Entry *b ));
334 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( Entry *a, Entry *b ));
335
336 /*
337  * extended.c
338  */
339
340 typedef int (*SLAP_EXTOP_MAIN_FN) LDAP_P((
341         Connection *conn, Operation *op,
342         const char * reqoid,
343         struct berval * reqdata,
344         char ** rspoid,
345         struct berval ** rspdata,
346         LDAPControl *** rspctrls,
347         const char ** text,
348         struct berval *** refs ));
349
350 typedef int (*SLAP_EXTOP_GETOID_FN) LDAP_P((
351         int index, char *oid, int blen ));
352
353 LDAP_SLAPD_F (int) load_extension LDAP_P((const void *module, const char *file_name));
354 LDAP_SLAPD_F (char *) get_supported_extension LDAP_P((int index));
355
356 LDAP_SLAPD_F (int) load_extop LDAP_P((
357         const char *ext_oid,
358         SLAP_EXTOP_MAIN_FN ext_main ));
359
360 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
361
362 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
363
364 LDAP_SLAPD_F (char *) get_supported_extop LDAP_P((int index));
365
366 /*
367  * filter.c
368  */
369
370 LDAP_SLAPD_F (int) get_filter LDAP_P((
371         Connection *conn,
372         BerElement *ber,
373         Filter **filt,
374         char **fstr,
375         const char **text ));
376
377 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
378 LDAP_SLAPD_F (void) filter_print LDAP_P(( Filter *f ));
379
380 /*
381  * filterentry.c
382  */
383
384 LDAP_SLAPD_F (int) test_filter LDAP_P((
385         Backend *be, Connection *conn, Operation *op, Entry *e, Filter  *f ));
386
387 /*
388  * lock.c
389  */
390
391 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname, const char *type, FILE **lfp ));
392 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
393
394
395 /*
396  * modify.c
397  *      should be relocated to separate file
398  */
399 LDAP_SLAPD_F( void ) slap_mod_free LDAP_P(( Modification *mod, int freeit ));
400 LDAP_SLAPD_F( void ) slap_mods_free LDAP_P(( Modifications *mods ));
401 LDAP_SLAPD_F( void ) slap_modlist_free LDAP_P(( LDAPModList *ml ));
402
403 LDAP_SLAPD_F( int ) slap_modlist2mods(
404         LDAPModList *ml,
405         int update,
406         Modifications **mods,
407         const char **text,
408         char *textbuf,
409         size_t textlen );
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         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         const char *mech, struct berval *cred,
557         char **edn, slap_ssf_t *ssf ));
558
559 /* oc.c */
560 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
561
562 /* mr.c */
563 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
564
565 /* syntax.c */
566 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
567
568 /*
569  * schema.c
570  */
571
572 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
573         const char *ocname));
574
575 LDAP_SLAPD_F (int) oc_add LDAP_P((
576         LDAPObjectClass *oc,
577         const char **err));
578
579 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
580         ObjectClass *sub,
581         ObjectClass *sup ));
582
583
584 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((const char *synname));
585 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((const char *syndesc, int *slen));
586 #ifdef SLAPD_BINARY_CONVERSION
587 LDAP_SLAPD_F (int) syn_add LDAP_P((
588         LDAPSyntax *syn,
589         unsigned flags,
590         slap_syntax_validate_func *validate,
591         slap_syntax_transform_func *normalize,
592         slap_syntax_transform_func *pretty,
593         slap_syntax_transform_func *ber2str,
594         slap_syntax_transform_func *str2ber,
595         const char **err));
596 #else
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         const char **err));
604 #endif
605
606 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
607 LDAP_SLAPD_F (int) mr_add LDAP_P((LDAPMatchingRule *mr,
608         unsigned usage,
609         slap_mr_convert_func *convert,
610         slap_mr_normalize_func *normalize,
611         slap_mr_match_func *match,
612         slap_mr_indexer_func *indexer,
613         slap_mr_filter_func *filter,
614         MatchingRule * associated,
615         const char **err));
616
617 LDAP_SLAPD_F (int) register_syntax LDAP_P((
618         char *desc,
619         unsigned flags,
620         slap_syntax_validate_func *validate,
621         slap_syntax_transform_func *normalize,
622         slap_syntax_transform_func *pretty ));
623
624 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
625         char * desc,
626         unsigned usage,
627         slap_mr_convert_func *convert,
628         slap_mr_normalize_func *normalize,
629         slap_mr_match_func *match,
630         slap_mr_indexer_func *indexer,
631         slap_mr_filter_func *filter,
632         const char *associated ));
633
634 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
635
636 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
637         Entry *, ObjectClass *oc ));
638 #define is_entry_alias(e)               is_entry_objectclass((e), slap_schema.si_oc_alias)
639 #define is_entry_referral(e)    is_entry_objectclass((e), slap_schema.si_oc_referral)
640
641
642 /*
643  * schema_check.c
644  */
645 int oc_check_allowed(
646         AttributeType *type,
647         struct berval **oclist );
648 LDAP_SLAPD_F (int) entry_schema_check LDAP_P((
649         Entry *e, Attribute *attrs,
650         const char** text,
651         char *textbuf, size_t textlen ));
652
653
654 /*
655  * schema_init.c
656  */
657 LDAP_SLAPD_F (int) schema_init LDAP_P((void));
658 LDAP_SLAPD_F (int) schema_prep LDAP_P((void));
659
660
661 /*
662  * schemaparse.c
663  */
664
665 LDAP_SLAPD_F (int) parse_oc_old LDAP_P((
666         Backend *be, const char *fname, int lineno, int argc, char **argv ));
667 LDAP_SLAPD_F (int) parse_oc LDAP_P((
668         const char *fname, int lineno, char *line, char **argv ));
669 LDAP_SLAPD_F (int) parse_at LDAP_P((
670         const char *fname, int lineno, char *line, char **argv ));
671 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
672         const char *fname, int lineno, int argc, char **argv ));
673 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
674 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
675         char delim ));
676
677
678 /*
679  * starttls.c
680  */
681
682 LDAP_SLAPD_F (int) starttls_extop LDAP_P((
683         Connection *conn, Operation *op,
684         const char * reqoid,
685         struct berval * reqdata,
686         char ** rspoid,
687         struct berval ** rspdata,
688         LDAPControl ***rspctrls,
689         const char ** text,
690         struct berval *** refs ));
691
692
693 /*
694  * str2filter.c
695  */
696
697 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
698
699 /*
700  * suffixalias.c
701  */
702 LDAP_SLAPD_F (char *) suffix_alias LDAP_P(( Backend *be, char *ndn ));
703
704 /*
705  * value.c
706  */
707 LDAP_SLAPD_F (int) value_normalize LDAP_P((
708         AttributeDescription *ad,
709         unsigned usage,
710         struct berval *in,
711         struct berval **out,
712         const char ** text ));
713 LDAP_SLAPD_F (int) value_match LDAP_P((
714         int *match,
715         AttributeDescription *ad,
716         MatchingRule *mr,
717         unsigned flags,
718         struct berval *v1,
719         void *v2,
720         const char ** text ));
721 LDAP_SLAPD_F (int) value_find LDAP_P((
722         AttributeDescription *ad,
723         struct berval **values,
724         struct berval *value ));
725 LDAP_SLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
726
727 /*
728  * user.c
729  */
730 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
731 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
732 #endif
733
734 /*
735  * passwd.c
736  */
737 LDAP_SLAPD_F (int) passwd_extop LDAP_P((
738         Connection *conn, Operation *op,
739         const char * reqoid,
740         struct berval * reqdata,
741         char ** rspoid,
742         struct berval ** rspdata,
743         LDAPControl *** rspctrls,
744         const char ** text,
745         struct berval *** refs ));
746
747 LDAP_SLAPD_F (int) slap_passwd_check(
748         Connection                      *conn,
749         Attribute                       *attr,
750         struct berval           *cred );
751
752 LDAP_SLAPD_F (struct berval *) slap_passwd_generate( void );
753
754 LDAP_SLAPD_F (struct berval *) slap_passwd_hash(
755         struct berval           *cred );
756
757 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
758         struct berval           *cred );
759
760 LDAP_SLAPD_F (int) slap_passwd_parse(
761         struct berval *reqdata,
762         struct berval **id,
763         struct berval **oldpass,
764         struct berval **newpass,
765         const char **text );
766
767 /*
768  * kerberos.c
769  */
770 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
771 extern char             *ldap_srvtab;
772 LDAP_SLAPD_F (int)      krbv4_ldap_auth();
773 #endif
774
775 /*
776  * Other...
777  */
778 #define SLAP_SB_MAX_INCOMING_DEFAULT (1<<18 - 1)
779 #define SLAP_SB_MAX_INCOMING_AUTH (1<<24 - 1)
780
781 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming;
782 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming_auth;
783
784 LDAP_SLAPD_F (slap_mask_t)      global_restrictops;
785 LDAP_SLAPD_F (slap_mask_t)      global_allows;
786 LDAP_SLAPD_F (slap_mask_t)      global_disallows;
787 LDAP_SLAPD_F (slap_mask_t)      global_requires;
788 LDAP_SLAPD_F (slap_ssf_set_t)   global_ssf_set;
789
790 LDAP_SLAPD_F (struct berval **) default_referral;
791 LDAP_SLAPD_F (char *)           replogfile;
792 LDAP_SLAPD_F (const char)       Versionstr[];
793 LDAP_SLAPD_F (int)              defsize;
794 LDAP_SLAPD_F (int)              deftime;
795 LDAP_SLAPD_F (int)              g_argc;
796 LDAP_SLAPD_F (slap_access_t)    global_default_access;
797 LDAP_SLAPD_F (int)              global_lastmod;
798 LDAP_SLAPD_F (int)              global_idletimeout;
799 LDAP_SLAPD_F (int)              global_schemacheck;
800 LDAP_SLAPD_F (char)             *global_host;
801 LDAP_SLAPD_F (char)             *global_realm;
802 LDAP_SLAPD_F (int)              sasl_external_x509dn_convert;
803 LDAP_SLAPD_F (char)             *default_passwd_hash;
804 LDAP_SLAPD_F (int)              lber_debug;
805 LDAP_SLAPD_F (int)              ldap_syslog;
806 LDAP_SLAPD_F (char *)   default_search_base;
807 LDAP_SLAPD_F (char *)   default_search_nbase;
808
809 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_sent_mutex;
810 LDAP_SLAPD_F (long)             num_bytes_sent;
811 LDAP_SLAPD_F (long)             num_pdu_sent;
812 LDAP_SLAPD_F (long)             num_entries_sent;
813 LDAP_SLAPD_F (long)             num_refs_sent;
814
815 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_ops_mutex;
816 LDAP_SLAPD_F (long)             num_ops_completed;
817 LDAP_SLAPD_F (long)             num_ops_initiated;
818
819 LDAP_SLAPD_F (char *)           slapd_pid_file;
820 LDAP_SLAPD_F (char *)           slapd_args_file;
821 LDAP_SLAPD_F (char)             **g_argv;
822 LDAP_SLAPD_F (time_t)           starttime;
823
824 LDAP_SLAPD_F (time_t) slap_get_time LDAP_P((void));
825
826 LDAP_SLAPD_F (ldap_pvt_thread_pool_t)   connection_pool;
827
828 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  entry2str_mutex;
829 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  replog_mutex;
830
831 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
832 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  passwd_mutex;
833 #endif
834 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  gmtime_mutex;
835
836 LDAP_SLAPD_F (AccessControl *) global_acl;
837
838 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
839 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
840 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
841 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
842
843 struct sockaddr_in;
844
845 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
846 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
847 LDAP_SLAPD_F (int) slapd_daemon(void);
848
849 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
850 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
851 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
852 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
853
854 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
855
856 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
857 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
858
859 LDAP_SLAPD_F (int) config_info LDAP_P((
860         Entry **e, const char **text ));
861
862 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
863         Connection *conn,
864         Entry **e,
865         const char **text ));
866
867 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
868 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
869 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
870 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
871 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
872 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
873 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
874 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
875 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
876 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
877
878
879 LDAP_SLAPD_F (ber_socket_t) dtblsize;
880
881 LDAP_END_DECL
882
883 #endif /* _proto_slap */
884