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