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