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