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