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