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