]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Add NAME check
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 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_F( int ) schema_init_done;
14 LDAP_SLAPD_F( 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 LDAP_SLAPD_F (void) ad_free LDAP_P((
32         AttributeDescription *desc,
33         int freeit ));
34
35 #define ad_cmp(l,r)     ( strcasecmp( \
36         (l)->ad_cname->bv_val, (r)->ad_cname->bv_val ))
37
38 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
39         AttributeDescription *sub,
40         AttributeDescription *super ));
41
42 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
43         AttributeDescription *desc,
44         char **attrs ));
45
46 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
47         const char *,
48         AttributeDescription **ad,
49         const char **text ));
50
51 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
52         struct berval *bv,
53         AttributeDescription **ad,
54         const char **text ));
55
56 /*
57  * acl.c
58  */
59
60 LDAP_SLAPD_F (int) access_allowed LDAP_P((
61         Backend *be, Connection *conn, Operation *op,
62         Entry *e, AttributeDescription *desc, struct berval *val,
63         slap_access_t access ));
64 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
65         Backend *be, Connection *conn, Operation *op,
66         Entry *e, Modifications *ml ));
67
68 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
69
70 /*
71  * aclparse.c
72  */
73
74 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
75         const char *fname, int lineno,
76         int argc, char **argv ));
77
78 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
79 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
80
81 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
82 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
83 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
84
85 /*
86  * at.c
87  */
88
89 LDAP_SLAPD_F (void) at_config LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
90 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P(( const char *name ));
91 LDAP_SLAPD_F (int) at_find_in_list LDAP_P(( AttributeType *sat, AttributeType **list ));
92 LDAP_SLAPD_F (int) at_append_to_list LDAP_P(( AttributeType *sat, AttributeType ***listp ));
93 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P(( int pos, AttributeType ***listp ));
94 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
95 LDAP_SLAPD_F (int) at_add LDAP_P(( LDAPAttributeType *at, const char **err ));
96
97 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
98         AttributeType *sub,
99         AttributeType *super ));
100
101 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
102         AttributeType *at,
103         const char *oid ));
104
105 #       define at_canonical_name(at) ((at)->sat_cname)  
106
107
108 /*
109  * attr.c
110  */
111
112 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
113 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
114
115 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
116         AttributeDescription *desc,
117         struct berval **vals ));
118 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
119 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P(( Attribute *a, AttributeDescription *desc ));
120 LDAP_SLAPD_F (int) attr_delete LDAP_P(( Attribute **attrs, AttributeDescription *desc ));
121
122 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
123 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
124
125
126 /*
127  * ava.c
128  */
129 LDAP_SLAPD_F (int) get_ava LDAP_P((
130         BerElement *ber,
131         AttributeAssertion **ava,
132         unsigned usage,
133         const char **text ));
134 LDAP_SLAPD_F (void) ava_free LDAP_P((
135         AttributeAssertion *ava,
136         int freeit ));
137
138 /*
139  * backend.c
140  */
141
142 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
143 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
144 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
145 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
146 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
147 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
148
149 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
150 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
151
152 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
153         const char * dn,
154         int manageDSAit ));
155
156 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be, const char *suffix ));
157 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Backend *be, const char *ndn ));
158 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Backend *be,
159         Connection *conn, const char *ndn, struct berval *cred ));
160 LDAP_SLAPD_F (char *) be_root_dn LDAP_P(( Backend *be ));
161 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P(( Backend *be, Entry *e, int rw ));
162 #define be_entry_release_r( be, e ) be_entry_release_rw( be, e, 0 )
163 #define be_entry_release_w( be, e ) be_entry_release_rw( be, e, 1 )
164
165 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Connection *conn, Operation *op));
166
167 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
168         Backend *be,
169         Connection *conn,
170         Operation *op,
171         const void *opdata,
172         const char **text ));
173
174 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
175         Backend *be,
176         Connection *conn,
177         Operation *op,
178         const char *dn,
179         const char *ndn ));
180
181 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
182 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
183
184 LDAP_SLAPD_F (int) backend_group LDAP_P((Backend *be,
185         Entry *target,
186         const char *gr_ndn,
187         const char *op_ndn,
188         ObjectClass *group_oc,
189         AttributeDescription *group_at
190 ));
191
192 LDAP_SLAPD_F (int) backend_attribute LDAP_P((Backend *be,
193         Connection *conn,
194         Operation *op,
195         Entry *target,
196         const char *e_ndn,
197         AttributeDescription *entry_at,
198         struct berval ***vals
199 ));
200
201 LDAP_SLAPD_F (Attribute *) backend_operational( Backend *, Entry * );
202
203
204
205 /*
206  * ch_malloc.c
207  */
208
209 #ifdef CSRIMALLOC
210 #define ch_malloc malloc
211 #define ch_realloc realloc
212 #define ch_calloc calloc
213 #define ch_strdup strdup
214 #define ch_free free
215
216 #else
217 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
218 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
219 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
220 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
221 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
222
223 #ifndef CH_FREE
224 #undef free
225 #define free ch_free
226 #endif
227 #endif
228
229 /*
230  * charray.c
231  */
232
233 LDAP_SLAPD_F (void) charray_add LDAP_P(( char ***a, const char *s ));
234 LDAP_SLAPD_F (void) charray_merge LDAP_P(( char ***a, char **s ));
235 LDAP_SLAPD_F (void) charray_free LDAP_P(( char **array ));
236 LDAP_SLAPD_F (int) charray_inlist LDAP_P(( char **a, const char *s ));
237 LDAP_SLAPD_F (char **) charray_dup LDAP_P(( char **a ));
238 LDAP_SLAPD_F (char **) str2charray LDAP_P(( const char *str, const char *brkstr ));
239
240 /*
241  * controls.c
242  */
243 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
244         Connection *co,
245         Operation *op,
246         int senderrors ));
247
248 LDAP_SLAPD_F (int) get_manageDSAit LDAP_P(( Operation *op ));
249
250 /*
251  * config.c
252  */
253
254 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname ));
255
256
257 /*
258  * index.c
259  */
260 LDAP_SLAPD_F (int) slap_index2prefix LDAP_P(( int indextype ));
261 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
262
263 /*
264  * connection.c
265  */
266 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
267 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
268 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
269 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
270
271 LDAP_SLAPD_F (long) connection_init LDAP_P((
272         ber_socket_t s,
273         const char* url,
274         const char* dnsname,
275         const char* peername,
276         const char* sockname,
277         int use_tls,
278         slap_ssf_t ssf,
279         char *id ));
280
281 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
282 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
283 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state )) LDAP_GCCATTR((const));
284
285 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
286 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
287
288 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
289
290 LDAP_SLAPD_F (Connection *) connection_first LDAP_P((ber_socket_t *));
291 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((Connection *, ber_socket_t *));
292 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
293
294 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
295
296 /*
297  * dn.c
298  */
299
300 LDAP_SLAPD_F (char *) dn_validate LDAP_P(( char *dn ));
301 LDAP_SLAPD_F (char *) dn_normalize LDAP_P(( char *dn ));
302 LDAP_SLAPD_F (char *) dn_parent LDAP_P(( Backend *be, const char *dn ));
303 LDAP_SLAPD_F (char **) dn_subtree LDAP_P(( Backend *be, const char *dn ));
304 LDAP_SLAPD_F (char *) dn_rdn LDAP_P(( Backend *be, const char *dn ));
305 LDAP_SLAPD_F (int) dn_issuffix LDAP_P(( const char *dn, const char *suffix ));
306 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( const char* str ));
307 LDAP_SLAPD_F (char *) rdn_attr_value LDAP_P(( const char * rdn ));
308 LDAP_SLAPD_F (char *) rdn_attr_type LDAP_P(( const char * rdn ));
309
310 LDAP_SLAPD_F (void) build_new_dn LDAP_P(( char ** new_dn,
311         const char *e_dn,
312         const char * p_dn,
313         const char * newrdn ));
314 /*
315  * entry.c
316  */
317
318 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
319
320 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
321 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
322
323 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
324 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval **bv ));
325
326 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
327 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
328 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( Entry *a, Entry *b ));
329 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( Entry *a, Entry *b ));
330
331 /*
332  * extended.c
333  */
334
335 typedef int (*SLAP_EXTOP_MAIN_FN) LDAP_P((
336         Connection *conn, Operation *op,
337         const char * reqoid,
338         struct berval * reqdata,
339         char ** rspoid,
340         struct berval ** rspdata,
341         LDAPControl *** rspctrls,
342         const char ** text,
343         struct berval *** refs ));
344
345 typedef int (*SLAP_EXTOP_GETOID_FN) LDAP_P((
346         int index, char *oid, int blen ));
347
348 LDAP_SLAPD_F (int) load_extension LDAP_P((const void *module, const char *file_name));
349 LDAP_SLAPD_F (char *) get_supported_extension LDAP_P((int index));
350
351 LDAP_SLAPD_F (int) load_extop LDAP_P((
352         const char *ext_oid,
353         SLAP_EXTOP_MAIN_FN ext_main ));
354
355 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
356
357 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
358
359 LDAP_SLAPD_F (char *) get_supported_extop LDAP_P((int index));
360
361 /*
362  * filter.c
363  */
364
365 LDAP_SLAPD_F (int) get_filter LDAP_P((
366         Connection *conn,
367         BerElement *ber,
368         Filter **filt,
369         char **fstr,
370         const char **text ));
371
372 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
373 LDAP_SLAPD_F (void) filter_print LDAP_P(( Filter *f ));
374
375 /*
376  * filterentry.c
377  */
378
379 LDAP_SLAPD_F (int) test_filter LDAP_P((
380         Backend *be, Connection *conn, Operation *op, Entry *e, Filter  *f ));
381
382 /*
383  * lock.c
384  */
385
386 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname, const char *type, FILE **lfp ));
387 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
388
389
390 /*
391  * modify.c
392  *      should be relocated to separate file
393  */
394 LDAP_SLAPD_F( void ) slap_mod_free LDAP_P(( Modification *mod, int freeit ));
395 LDAP_SLAPD_F( void ) slap_mods_free LDAP_P(( Modifications *mods ));
396 LDAP_SLAPD_F( void ) slap_modlist_free LDAP_P(( LDAPModList *ml ));
397
398 LDAP_SLAPD_F( int ) slap_modlist2mods(
399         LDAPModList *ml,
400         int update,
401         Modifications **mods,
402         const char **text,
403         char *textbuf,
404         size_t textlen );
405
406 LDAP_SLAPD_F( int ) slap_mods_opattrs(
407         Operation *op,
408         Modifications **modlist,
409         const char **text );
410
411 /*
412  * module.c
413  */
414
415 #ifdef SLAPD_MODULES
416
417 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
418 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
419
420 LDAP_SLAPD_F (int) load_null_module(
421         const void *module, const char *file_name);
422 LDAP_SLAPD_F (int) load_extop_module(
423         const void *module, const char *file_name);
424
425 LDAP_SLAPD_F (int) module_load LDAP_P((
426         const char* file_name,
427         int argc, char *argv[] ));
428 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
429
430 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
431         const void *module, const char *name));
432
433 #endif /* SLAPD_MODULES */
434
435 /*
436  * monitor.c
437  */
438 LDAP_SLAPD_F (char *) supportedControls[];
439
440 LDAP_SLAPD_F (int) monitor_info LDAP_P((
441         Entry **entry, const char **text ));
442
443 /*
444  * operation.c
445  */
446
447 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
448 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
449         BerElement *ber, ber_int_t msgid,
450         ber_tag_t tag, ber_int_t id ));
451
452 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
453 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
454 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
455
456 /*
457  * phonetic.c
458  */
459
460 LDAP_SLAPD_F (char *) first_word LDAP_P(( char *s ));
461 LDAP_SLAPD_F (char *) next_word LDAP_P(( char *s ));
462 LDAP_SLAPD_F (char *) word_dup LDAP_P(( char *w ));
463 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
464
465 /*
466  * repl.c
467  */
468
469 LDAP_SLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op, char *dn, void *change ));
470
471 /*
472  * result.c
473  */
474
475 LDAP_SLAPD_F (struct berval **) get_entry_referrals LDAP_P((
476         Backend *be, Connection *conn, Operation *op,
477         Entry *e ));
478
479 LDAP_SLAPD_F (void) send_ldap_result LDAP_P((
480         Connection *conn, Operation *op,
481         ber_int_t err, const char *matched, const char *text,
482         struct berval **refs,
483         LDAPControl **ctrls ));
484
485 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P((
486         Connection *conn, Operation *op,
487         ber_int_t err, const char *matched,
488         const char *text,
489         struct berval **refs,
490         LDAPControl **ctrls,
491         struct berval *cred ));
492
493 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P((
494         Connection *conn, Operation *op,
495         ber_int_t err, const char *text ));
496
497 LDAP_SLAPD_F (void) send_ldap_extended LDAP_P((
498         Connection *conn, Operation *op,
499         ber_int_t err, const char *matched,
500         const char *text, struct berval **refs,
501         const char *rspoid, struct berval *rspdata,
502         LDAPControl **ctrls ));
503
504 LDAP_SLAPD_F (void) send_ldap_partial LDAP_P((
505         Connection *conn, Operation *op,
506         const char *rspoid, struct berval *rspdata,
507         LDAPControl **ctrls ));
508
509 LDAP_SLAPD_F (void) send_search_result LDAP_P((
510         Connection *conn, Operation *op,
511         ber_int_t err, const char *matched, const char *text,
512         struct berval **refs,
513         LDAPControl **ctrls,
514         int nentries ));
515
516 LDAP_SLAPD_F (int) send_search_reference LDAP_P((
517         Backend *be, Connection *conn, Operation *op,
518         Entry *e, struct berval **refs, int scope,
519         LDAPControl **ctrls,
520         struct berval ***v2refs ));
521
522 LDAP_SLAPD_F (int) send_search_entry LDAP_P((
523         Backend *be, Connection *conn, Operation *op,
524         Entry *e, char **attrs, int attrsonly,
525         LDAPControl **ctrls ));
526
527 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
528         int *code, char **matched, char **info ));
529
530 /*
531  * sasl.c
532  */
533
534 LDAP_SLAPD_F (int) slap_sasl_init(void);
535 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
536 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
537
538 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
539 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
540
541 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
542         slap_ssf_t ssf, /* relative strength of external security */
543         char *authid ); /* asserted authenication id */
544
545 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
546 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
547
548 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P((
549         Connection *conn, Operation *op, 
550         const char *dn, const char *ndn,
551         const char *mech, struct berval *cred,
552         char **edn, slap_ssf_t *ssf ));
553
554 /* oc.c */
555 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
556
557 /* mr.c */
558 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
559
560 /* syntax.c */
561 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
562
563 /*
564  * schema.c
565  */
566
567 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
568         const char *ocname));
569
570 LDAP_SLAPD_F (int) oc_add LDAP_P((
571         LDAPObjectClass *oc,
572         const char **err));
573
574 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
575         ObjectClass *sub,
576         ObjectClass *sup ));
577
578
579 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((const char *synname));
580 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((const char *syndesc, int *slen));
581 #ifdef SLAPD_BINARY_CONVERSION
582 LDAP_SLAPD_F (int) syn_add LDAP_P((
583         LDAPSyntax *syn,
584         unsigned flags,
585         slap_syntax_validate_func *validate,
586         slap_syntax_transform_func *normalize,
587         slap_syntax_transform_func *pretty,
588         slap_syntax_transform_func *ber2str,
589         slap_syntax_transform_func *str2ber,
590         const char **err));
591 #else
592 LDAP_SLAPD_F (int) syn_add LDAP_P((
593         LDAPSyntax *syn,
594         unsigned flags,
595         slap_syntax_validate_func *validate,
596         slap_syntax_transform_func *normalize,
597         slap_syntax_transform_func *pretty,
598         const char **err));
599 #endif
600
601 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
602 LDAP_SLAPD_F (int) mr_add LDAP_P((LDAPMatchingRule *mr,
603         unsigned usage,
604         slap_mr_convert_func *convert,
605         slap_mr_normalize_func *normalize,
606         slap_mr_match_func *match,
607         slap_mr_indexer_func *indexer,
608         slap_mr_filter_func *filter,
609         MatchingRule * associated,
610         const char **err));
611
612 LDAP_SLAPD_F (int) register_syntax LDAP_P((
613         char *desc,
614         unsigned flags,
615         slap_syntax_validate_func *validate,
616         slap_syntax_transform_func *normalize,
617         slap_syntax_transform_func *pretty ));
618
619 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
620         char * desc,
621         unsigned usage,
622         slap_mr_convert_func *convert,
623         slap_mr_normalize_func *normalize,
624         slap_mr_match_func *match,
625         slap_mr_indexer_func *indexer,
626         slap_mr_filter_func *filter,
627         const char *associated ));
628
629 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
630
631 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
632         Entry *, ObjectClass *oc ));
633 #define is_entry_alias(e)               is_entry_objectclass((e), slap_schema.si_oc_alias)
634 #define is_entry_referral(e)    is_entry_objectclass((e), slap_schema.si_oc_referral)
635
636
637 /*
638  * schema_check.c
639  */
640 int oc_check_allowed(
641         AttributeType *type,
642         struct berval **oclist );
643 LDAP_SLAPD_F (int) entry_schema_check LDAP_P((
644         Entry *e, Attribute *attrs,
645         const char** text ));
646
647
648 /*
649  * schema_init.c
650  */
651 LDAP_SLAPD_F (int) schema_init LDAP_P((void));
652 LDAP_SLAPD_F (int) schema_prep LDAP_P((void));
653
654
655 /*
656  * schemaparse.c
657  */
658
659 LDAP_SLAPD_F (int) parse_oc_old LDAP_P((
660         Backend *be, const char *fname, int lineno, int argc, char **argv ));
661 LDAP_SLAPD_F (int) parse_oc LDAP_P((
662         const char *fname, int lineno, char *line, char **argv ));
663 LDAP_SLAPD_F (int) parse_at LDAP_P((
664         const char *fname, int lineno, char *line, char **argv ));
665 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
666         const char *fname, int lineno, int argc, char **argv ));
667 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
668 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
669         char delim ));
670
671
672 /*
673  * starttls.c
674  */
675
676 LDAP_SLAPD_F (int) starttls_extop LDAP_P((
677         Connection *conn, Operation *op,
678         const char * reqoid,
679         struct berval * reqdata,
680         char ** rspoid,
681         struct berval ** rspdata,
682         LDAPControl ***rspctrls,
683         const char ** text,
684         struct berval *** refs ));
685
686
687 /*
688  * str2filter.c
689  */
690
691 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
692
693 /*
694  * suffixalias.c
695  */
696 LDAP_SLAPD_F (char *) suffix_alias LDAP_P(( Backend *be, char *ndn ));
697
698 /*
699  * value.c
700  */
701 LDAP_SLAPD_F (int) value_normalize LDAP_P((
702         AttributeDescription *ad,
703         unsigned usage,
704         struct berval *in,
705         struct berval **out,
706         const char ** text ));
707 LDAP_SLAPD_F (int) value_match LDAP_P((
708         int *match,
709         AttributeDescription *ad,
710         MatchingRule *mr,
711         unsigned flags,
712         struct berval *v1,
713         void *v2,
714         const char ** text ));
715 LDAP_SLAPD_F (int) value_find LDAP_P((
716         AttributeDescription *ad,
717         struct berval **values,
718         struct berval *value ));
719 LDAP_SLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
720
721 /*
722  * user.c
723  */
724 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
725 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
726 #endif
727
728 /*
729  * passwd.c
730  */
731 LDAP_SLAPD_F (int) passwd_extop LDAP_P((
732         Connection *conn, Operation *op,
733         const char * reqoid,
734         struct berval * reqdata,
735         char ** rspoid,
736         struct berval ** rspdata,
737         LDAPControl *** rspctrls,
738         const char ** text,
739         struct berval *** refs ));
740
741 LDAP_SLAPD_F (int) slap_passwd_check(
742         Connection                      *conn,
743         Attribute                       *attr,
744         struct berval           *cred );
745
746 LDAP_SLAPD_F (struct berval *) slap_passwd_generate( void );
747
748 LDAP_SLAPD_F (struct berval *) slap_passwd_hash(
749         struct berval           *cred );
750
751 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
752         struct berval           *cred );
753
754 LDAP_SLAPD_F (int) slap_passwd_parse(
755         struct berval *reqdata,
756         struct berval **id,
757         struct berval **oldpass,
758         struct berval **newpass,
759         const char **text );
760
761 /*
762  * kerberos.c
763  */
764 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
765 extern char             *ldap_srvtab;
766 LDAP_SLAPD_F (int)      krbv4_ldap_auth();
767 #endif
768
769 /*
770  * Other...
771  */
772 #define SLAP_SB_MAX_INCOMING_DEFAULT (1<<18 - 1)
773 #define SLAP_SB_MAX_INCOMING_AUTH (1<<24 - 1)
774
775 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming;
776 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming_auth;
777
778 LDAP_SLAPD_F (slap_mask_t)      global_restrictops;
779 LDAP_SLAPD_F (slap_mask_t)      global_allows;
780 LDAP_SLAPD_F (slap_mask_t)      global_disallows;
781 LDAP_SLAPD_F (slap_mask_t)      global_requires;
782 LDAP_SLAPD_F (slap_ssf_set_t)   global_ssf_set;
783
784 LDAP_SLAPD_F (struct berval **) default_referral;
785 LDAP_SLAPD_F (char *)           replogfile;
786 LDAP_SLAPD_F (const char)       Versionstr[];
787 LDAP_SLAPD_F (int)              defsize;
788 LDAP_SLAPD_F (int)              deftime;
789 LDAP_SLAPD_F (int)              g_argc;
790 LDAP_SLAPD_F (slap_access_t)    global_default_access;
791 LDAP_SLAPD_F (int)              global_lastmod;
792 LDAP_SLAPD_F (int)              global_idletimeout;
793 LDAP_SLAPD_F (int)              global_schemacheck;
794 LDAP_SLAPD_F (char)             *global_host;
795 LDAP_SLAPD_F (char)             *global_realm;
796 LDAP_SLAPD_F (int)              sasl_external_x509dn_convert;
797 LDAP_SLAPD_F (char)             *default_passwd_hash;
798 LDAP_SLAPD_F (int)              lber_debug;
799 LDAP_SLAPD_F (int)              ldap_syslog;
800 LDAP_SLAPD_F (char *)   default_search_base;
801 LDAP_SLAPD_F (char *)   default_search_nbase;
802
803 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_sent_mutex;
804 LDAP_SLAPD_F (long)             num_bytes_sent;
805 LDAP_SLAPD_F (long)             num_pdu_sent;
806 LDAP_SLAPD_F (long)             num_entries_sent;
807 LDAP_SLAPD_F (long)             num_refs_sent;
808
809 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  num_ops_mutex;
810 LDAP_SLAPD_F (long)             num_ops_completed;
811 LDAP_SLAPD_F (long)             num_ops_initiated;
812
813 LDAP_SLAPD_F (char *)           slapd_pid_file;
814 LDAP_SLAPD_F (char *)           slapd_args_file;
815 LDAP_SLAPD_F (char)             **g_argv;
816 LDAP_SLAPD_F (time_t)           starttime;
817
818 LDAP_SLAPD_F (time_t) slap_get_time LDAP_P((void));
819
820 LDAP_SLAPD_F (ldap_pvt_thread_pool_t)   connection_pool;
821
822 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  entry2str_mutex;
823 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  replog_mutex;
824
825 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
826 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  passwd_mutex;
827 #endif
828 LDAP_SLAPD_F (ldap_pvt_thread_mutex_t)  gmtime_mutex;
829
830 LDAP_SLAPD_F (AccessControl *) global_acl;
831
832 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
833 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
834 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
835 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
836
837 struct sockaddr_in;
838
839 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
840 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
841 LDAP_SLAPD_F (int) slapd_daemon(void);
842
843 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
844 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
845 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
846 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
847
848 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
849
850 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
851 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
852
853 LDAP_SLAPD_F (int) config_info LDAP_P((
854         Entry **e, const char **text ));
855
856 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
857         Connection *conn,
858         Entry **e,
859         const char **text ));
860
861 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
862 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
863 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
864 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
865 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
866 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
867 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
868 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
869 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
870 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
871
872
873 LDAP_SLAPD_F (ber_socket_t) dtblsize;
874
875 LDAP_END_DECL
876
877 #endif /* _proto_slap */
878