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