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