]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Fix inverted bvmatch logic in modrdn
[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         struct berval *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 /*
271  * controls.c
272  */
273 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
274         Connection *co,
275         Operation *op,
276         int senderrors ));
277
278 LDAP_SLAPD_F (char *) get_supported_ctrl LDAP_P((int index));
279
280 /*
281  * config.c
282  */
283 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, int depth ));
284 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
285
286 /*
287  * connection.c
288  */
289 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
290 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
291 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
292 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
293
294 LDAP_SLAPD_F (long) connection_init LDAP_P((
295         ber_socket_t s,
296         const char* url,
297         const char* dnsname,
298         const char* peername,
299         const char* sockname,
300         int use_tls,
301         slap_ssf_t ssf,
302         const char *id ));
303
304 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
305 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
306 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
307         LDAP_GCCATTR((const));
308
309 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
310 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
311
312 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
313
314 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
315 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
316         Connection *, ber_socket_t *));
317 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
318
319 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
320
321 /*
322  * daemon.c
323  */
324 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s);
325 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
326 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
327 LDAP_SLAPD_F (int) slapd_daemon(void);
328 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
329 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
330
331 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
332 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
333
334 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
335 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
336 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
337 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
338
339 /*
340  * dn.c
341  */
342
343 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
344 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
345
346 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
347
348 LDAP_SLAPD_F (int) dnValidate LDAP_P((
349         Syntax *syntax, 
350         struct berval *val ));
351
352 LDAP_SLAPD_F (int) dnNormalize LDAP_P((
353         Syntax *syntax, 
354         struct berval *val, 
355         struct berval **normalized ));
356
357 LDAP_SLAPD_F (int) dnNormalize2 LDAP_P((
358         Syntax *syntax, 
359         struct berval *val, 
360         struct berval *normalized ));
361
362 LDAP_SLAPD_F (int) dnPretty LDAP_P(( 
363         Syntax *syntax, 
364         struct berval *val, 
365         struct berval **pretty ));
366
367 LDAP_SLAPD_F (int) dnPretty2 LDAP_P(( 
368         Syntax *syntax, 
369         struct berval *val, 
370         struct berval *pretty ));
371
372 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
373         Syntax *syntax, 
374         struct berval *val, 
375         struct berval *pretty,
376         struct berval *normal ));
377
378 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
379         int *matchp, 
380         slap_mask_t flags, 
381         Syntax *syntax, 
382         MatchingRule *mr,
383         struct berval *value, 
384         void *assertedValue ));
385
386 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
387         const struct berval *dn, const struct berval *suffix ));
388
389 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
390         struct berval *dn, struct berval *rdn ));
391
392 LDAP_SLAPD_F (int) rdnValidate LDAP_P(( struct berval * rdn ));
393
394 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
395
396 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
397         struct berval * new_dn,
398         struct berval * parent_dn,
399         struct berval * newrdn ));
400
401 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
402
403 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
404
405 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
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 LDAP_SLAPD_F (int) get_vrFilter( Connection *conn, BerElement *ber,
464         ValuesReturnFilter **f,
465         const char **text );
466
467 LDAP_SLAPD_F (void) vrFilter_free( ValuesReturnFilter *f );
468 LDAP_SLAPD_F (void) vrFilter2bv( ValuesReturnFilter *f, struct berval *fstr );
469
470
471 /*
472  * filterentry.c
473  */
474 LDAP_SLAPD_F (int) test_filter LDAP_P((
475         Backend *be, Connection *conn, Operation *op,
476         Entry *e, Filter *f ));
477
478 /*
479  * index.c
480  */
481 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
482
483 /*
484  * init.c
485  */
486 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
487 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
488 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
489 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
490
491 /*
492  * kerberos.c
493  */
494 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
495 LDAP_SLAPD_V (char *)   ldap_srvtab;
496 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
497 #endif
498
499 /*
500  * limits.c
501  */
502 LDAP_SLAPD_F (int) get_limits LDAP_P((
503         Backend *be, struct berval *ndn,
504         struct slap_limits_set **limit ));
505 LDAP_SLAPD_F (int) parse_limits LDAP_P((
506         Backend *be, const char *fname, int lineno,
507         int argc, char **argv ));
508 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
509         struct slap_limits_set *limit ));
510
511 /*
512  * lock.c
513  */
514 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
515         const char *type, FILE **lfp ));
516 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
517
518 /*
519  * matchedValues.c
520  */
521 LDAP_SLAPD_F (int) filter_matched_values( 
522         Backend         *be,
523         Connection      *conn,
524         Operation       *op,
525         Attribute       *a,
526         char            ***e_flags );
527
528 /*
529  * modify.c
530  */
531 LDAP_SLAPD_F( int ) slap_mods_check(
532         Modifications *ml,
533         int update,
534         const char **text,
535         char *textbuf, size_t textlen );
536
537 LDAP_SLAPD_F( int ) slap_mods_opattrs(
538         Backend *be,
539         Operation *op,
540         Modifications *mods,
541         Modifications **modlist,
542         const char **text,
543         char *textbuf, size_t textlen );
544
545 /*
546  * mods.c
547  */
548 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
549         Modification *mod,
550         const char **text, char *textbuf, size_t textlen );
551 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
552         Modification *mod,
553         const char **text, char *textbuf, size_t textlen );
554 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
555         Modification *mod,
556         const char **text, char *textbuf, size_t textlen );
557
558 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
559 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
560 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
561
562 /*
563  * module.c
564  */
565 #ifdef SLAPD_MODULES
566
567 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
568 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
569
570 LDAP_SLAPD_F (int) load_null_module(
571         const void *module, const char *file_name);
572 LDAP_SLAPD_F (int) load_extop_module(
573         const void *module, const char *file_name);
574
575 LDAP_SLAPD_F (int) module_load LDAP_P((
576         const char* file_name,
577         int argc, char *argv[] ));
578 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
579
580 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
581         const void *module, const char *name));
582
583 #endif /* SLAPD_MODULES */
584
585 /* mr.c */
586 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
587 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
588 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
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         MatchingRule * associated,
596         const char **err ));
597 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
598
599 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
600         const char * desc,
601         unsigned usage,
602         slap_mr_convert_func *convert,
603         slap_mr_normalize_func *normalize,
604         slap_mr_match_func *match,
605         slap_mr_indexer_func *indexer,
606         slap_mr_filter_func *filter,
607         const char *associated ));
608
609 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
610 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
611
612 /*
613  * mra.c
614  */
615 LDAP_SLAPD_F (int) get_mra LDAP_P((
616         BerElement *ber,
617         MatchingRuleAssertion **mra,
618         const char **text ));
619 LDAP_SLAPD_F (void) mra_free LDAP_P((
620         MatchingRuleAssertion *mra,
621         int freeit ));
622
623 /* oc.c */
624 LDAP_SLAPD_F (int) oc_add LDAP_P((
625         LDAPObjectClass *oc,
626         int user,
627         const char **err));
628 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
629
630 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
631         const char *ocname));
632 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
633         struct berval *ocname));
634 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
635         ObjectClass *sup,
636         ObjectClass *sub ));
637
638 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
639         Entry *, ObjectClass *oc, int set_flags ));
640 #define is_entry_alias(e)               \
641         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_ALIAS) : \
642         is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
643 #define is_entry_referral(e)    \
644         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_REFERRAL) : \
645         is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
646 #define is_entry_subentry(e)    \
647         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_SUBENTRY) : \
648         is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
649 #define is_entry_collectiveAttributeSubentry(e) \
650         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) : \
651         is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
652 #define is_entry_dynamicObject(e)       \
653         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) : \
654         is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
655
656 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
657
658 /*
659  * oidm.c
660  */
661 LDAP_SLAPD_F(char *) oidm_find(char *oid);
662 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
663 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
664         const char *fname, int lineno, int argc, char **argv ));
665
666 /*
667  * operation.c
668  */
669 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
670 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
671         BerElement *ber, ber_int_t msgid,
672         ber_tag_t tag, ber_int_t id ));
673
674 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
675 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
676 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
677
678 /*
679  * operational.c
680  */
681 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
682 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
683
684 /*
685  * passwd.c
686  */
687 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
688
689 LDAP_SLAPD_F (int) slap_passwd_check(
690         Connection                      *conn,
691         Attribute                       *attr,
692         struct berval           *cred );
693
694 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
695
696 LDAP_SLAPD_F (void) slap_passwd_hash(
697         struct berval           *cred,
698         struct berval           *hash );
699
700 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
701         struct berval           *cred );
702
703 LDAP_SLAPD_F (int) slap_passwd_parse(
704         struct berval *reqdata,
705         struct berval *id,
706         struct berval *oldpass,
707         struct berval *newpass,
708         const char **text );
709
710 /*
711  * phonetic.c
712  */
713 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
714
715 /*
716  * referral.c
717  */
718 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
719         const char *url ));
720
721 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
722         Backend *be, Connection *conn, Operation *op, Entry *e ));
723
724 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
725         BerVarray refs,
726         struct berval *base,
727         struct berval *target,
728         int scope ));
729
730 /*
731  * repl.c
732  */
733 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
734         const char *host ));
735 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
736         int nr, const char *suffix ));
737 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
738         int nr, char *attrs, int exclude ));
739 LDAP_SLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op,
740         struct berval *dn, struct berval *ndn, void *change ));
741
742 /*
743  * result.c
744  */
745 LDAP_SLAPD_F (void) send_ldap_result LDAP_P((
746         Connection *conn, Operation *op,
747         ber_int_t err, const char *matched, const char *text,
748         BerVarray refs,
749         LDAPControl **ctrls ));
750
751 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P((
752         Connection *conn, Operation *op,
753         ber_int_t err, const char *matched,
754         const char *text,
755         BerVarray refs,
756         LDAPControl **ctrls,
757         struct berval *cred ));
758
759 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P((
760         Connection *conn, Operation *op,
761         ber_int_t err, const char *text ));
762
763 LDAP_SLAPD_F (void) send_ldap_extended LDAP_P((
764         Connection *conn, Operation *op,
765         ber_int_t err, const char *matched,
766         const char *text, BerVarray refs,
767         const char *rspoid, struct berval *rspdata,
768         LDAPControl **ctrls ));
769
770 LDAP_SLAPD_F (void) send_ldap_partial LDAP_P((
771         Connection *conn, Operation *op,
772         const char *rspoid, struct berval *rspdata,
773         LDAPControl **ctrls ));
774
775 LDAP_SLAPD_F (void) send_search_result LDAP_P((
776         Connection *conn, Operation *op,
777         ber_int_t err, const char *matched, const char *text,
778         BerVarray refs,
779         LDAPControl **ctrls,
780         int nentries ));
781
782 LDAP_SLAPD_F (int) send_search_reference LDAP_P((
783         Backend *be, Connection *conn, Operation *op,
784         Entry *e, BerVarray refs,
785         LDAPControl **ctrls,
786         BerVarray *v2refs ));
787
788 LDAP_SLAPD_F (int) send_search_entry LDAP_P((
789         Backend *be, Connection *conn, Operation *op,
790         Entry *e, AttributeName *attrs, int attrsonly,
791         LDAPControl **ctrls ));
792
793 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
794         int *code, char **matched, char **info ));
795
796 /*
797  * root_dse.c
798  */
799 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
800         Connection *conn,
801         Entry **e,
802         const char **text ));
803
804 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
805         const char *file));
806
807 /*
808  * sasl.c
809  */
810 LDAP_SLAPD_F (int) slap_sasl_init(void);
811 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
812 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
813
814 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
815 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
816
817 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
818         slap_ssf_t ssf, /* relative strength of external security */
819         const char *authid );   /* asserted authenication id */
820
821 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
822 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
823
824 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P((
825         Connection *conn, Operation *op, 
826         struct berval *dn, struct berval *ndn,
827         struct berval *cred,
828         struct berval *edn, slap_ssf_t *ssf ));
829
830 LDAP_SLAPD_F (int) slap_sasl_setpass(
831         Connection      *conn,
832         Operation       *op,
833         const char      *reqoid,
834         struct berval   *reqdata,
835         char            **rspoid,
836         struct berval   **rspdata,
837         LDAPControl     *** rspctrls,
838         const char      **text );
839
840 LDAP_SLAPD_F (int) slap_sasl_config(
841         int cargc,
842         char **cargv,
843         char *line,
844         const char *fname,
845         int lineno );
846
847
848 /*
849  * saslauthz.c
850  */
851 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
852         Connection *conn,
853         struct berval *saslname,
854         struct berval *dn ));
855 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
856         Connection *conn,
857         struct berval *authcid,
858         struct berval *authzid ));
859 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
860         const char *match, const char *replace ));
861 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
862
863
864 /*
865  * schema.c
866  */
867 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
868
869 /*
870  * schema_check.c
871  */
872 LDAP_SLAPD_F( int ) oc_check_allowed(
873         AttributeType *type,
874         BerVarray oclist,
875         ObjectClass *sc );
876
877 LDAP_SLAPD_F( int ) structural_class(
878         BerVarray ocs,
879         struct berval *scbv,
880         ObjectClass **sc,
881         const char **text,
882         char *textbuf, size_t textlen );
883
884 LDAP_SLAPD_F( int ) entry_schema_check(
885         Backend *be, Entry *e, Attribute *attrs,
886         const char** text,
887         char *textbuf, size_t textlen );
888
889 LDAP_SLAPD_F( int ) mods_structural_class(
890         Modifications *mods,
891         struct berval *oc,
892         const char** text,
893         char *textbuf, size_t textlen );
894
895 /*
896  * schema_init.c
897  */
898 LDAP_SLAPD_V( int ) schema_init_done;
899 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
900 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
901
902 /*
903  * schema_prep.c
904  */
905 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
906 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
907 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
908
909 /*
910  * schemaparse.c
911  */
912 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
913
914 LDAP_SLAPD_F (int) parse_oc_old LDAP_P((
915         Backend *be, const char *fname, int lineno, int argc, char **argv ));
916 LDAP_SLAPD_F (int) parse_oc LDAP_P((
917         const char *fname, int lineno, char *line, char **argv ));
918 LDAP_SLAPD_F (int) parse_at LDAP_P((
919         const char *fname, int lineno, char *line, char **argv ));
920 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
921 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
922         char delim ));
923
924 /*
925  * starttls.c
926  */
927 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
928
929 /*
930  * str2filter.c
931  */
932 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
933
934 /*
935  * suffixalias.c
936  */
937 LDAP_SLAPD_F (void) suffix_alias LDAP_P(( Backend *be, struct berval *ndn ));
938
939 /* syntax.c */
940 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
941         const char *synname ));
942 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
943         const char *syndesc, int *slen ));
944 #ifdef SLAPD_BINARY_CONVERSION
945 LDAP_SLAPD_F (int) syn_add LDAP_P((
946         LDAPSyntax *syn,
947         unsigned flags,
948         slap_syntax_validate_func *validate,
949         slap_syntax_transform_func *normalize,
950         slap_syntax_transform_func *pretty,
951         slap_syntax_transform_func *ber2str,
952         slap_syntax_transform_func *str2ber,
953         const char **err ));
954 #else
955 LDAP_SLAPD_F (int) syn_add LDAP_P((
956         LDAPSyntax *syn,
957         unsigned flags,
958         slap_syntax_validate_func *validate,
959         slap_syntax_transform_func *normalize,
960         slap_syntax_transform_func *pretty,
961         const char **err ));
962 #endif
963 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
964
965 LDAP_SLAPD_F (int) register_syntax LDAP_P((
966         const char *desc,
967         unsigned flags,
968         slap_syntax_validate_func *validate,
969         slap_syntax_transform_func *normalize,
970         slap_syntax_transform_func *pretty ));
971
972 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
973
974 /*
975  * user.c
976  */
977 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
978 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
979 #endif
980
981 /*
982  * value.c
983  */
984 LDAP_SLAPD_F (int) value_validate LDAP_P((
985         MatchingRule *mr,
986         struct berval *in,
987         const char ** text ));
988 LDAP_SLAPD_F (int) value_normalize LDAP_P((
989         AttributeDescription *ad,
990         unsigned usage,
991         struct berval *in,
992         struct berval *out,
993         const char ** text ));
994 LDAP_SLAPD_F (int) value_validate_normalize LDAP_P((
995         AttributeDescription *ad,
996         unsigned usage,
997         struct berval *in,
998         struct berval *out,
999         const char ** text ));
1000 LDAP_SLAPD_F (int) value_match LDAP_P((
1001         int *match,
1002         AttributeDescription *ad,
1003         MatchingRule *mr,
1004         unsigned flags,
1005         struct berval *v1,
1006         void *v2,
1007         const char ** text ));
1008 #define value_find(ad,values,value) (value_find_ex((ad),0,(values),(value)))
1009 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1010         AttributeDescription *ad,
1011         unsigned flags,
1012         BerVarray values,
1013         struct berval *value ));
1014 LDAP_SLAPD_F (int) value_add LDAP_P((
1015         BerVarray *vals,
1016         BerVarray addvals ));
1017
1018 /*
1019  * Other...
1020  */
1021 LDAP_SLAPD_V(unsigned) num_subordinates;
1022
1023 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1024 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1025
1026 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1027 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1028 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1029 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1030 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1031
1032 LDAP_SLAPD_V (BerVarray)                default_referral;
1033 LDAP_SLAPD_V (char *)           replogfile;
1034 LDAP_SLAPD_V (const char)       Versionstr[];
1035 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1036
1037 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1038 LDAP_SLAPD_V (int)              global_gentlehup;
1039 LDAP_SLAPD_V (int)              global_idletimeout;
1040 LDAP_SLAPD_V (int)              global_schemacheck;
1041 LDAP_SLAPD_V (char *)   global_host;
1042 LDAP_SLAPD_V (char *)   global_realm;
1043 LDAP_SLAPD_V (char *)   default_passwd_hash;
1044 LDAP_SLAPD_V (int)              lber_debug;
1045 LDAP_SLAPD_V (int)              ldap_syslog;
1046 LDAP_SLAPD_V (struct berval)    default_search_base;
1047 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1048
1049 #ifdef SLAPD_SCHEMA_DN
1050 LDAP_SLAPD_V (struct berval)    global_schemadn;
1051 LDAP_SLAPD_V (struct berval)    global_schemandn;
1052 #endif
1053
1054 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1055 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1056 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1057 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1058 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1059
1060 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1061 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1062 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1063 #ifdef SLAPD_MONITOR
1064 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1065 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1066 #endif /* SLAPD_MONITOR */
1067
1068 LDAP_SLAPD_V (char *)           slapd_pid_file;
1069 LDAP_SLAPD_V (char *)           slapd_args_file;
1070 LDAP_SLAPD_V (time_t)           starttime;
1071
1072 /* use time(3) -- no mutex */
1073 #define slap_get_time() time( NULL )
1074
1075 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1076 LDAP_SLAPD_V (int)                      connection_pool_max;
1077
1078 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1079 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1080
1081 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1082 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1083 #endif
1084 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1085
1086 LDAP_SLAPD_V (AccessControl *) global_acl;
1087
1088 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1089
1090 LDAP_SLAPD_V (int)              use_reverse_lookup;
1091
1092 /*
1093  * operations
1094  */
1095 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
1096 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
1097 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
1098 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
1099 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
1100 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
1101 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
1102 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
1103 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
1104 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
1105
1106 LDAP_END_DECL
1107
1108 #endif /* PROTO_SLAP_H */
1109