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