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