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