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