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