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