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