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