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