]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Place passwd extended op into builtin list.
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-1999 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 /*
14  * acl.c
15  */
16
17 LIBSLAPD_F (int) access_allowed LDAP_P(( Backend *be, Connection *conn,
18         Operation *op, Entry *e,
19         char *attr, struct berval *val, slap_access_t access ));
20
21 LIBSLAPD_F (int) acl_check_modlist LDAP_P(( Backend *be,
22         Connection *conn,
23         Operation *op,
24         Entry *e,
25         LDAPModList *ml ));
26
27 LIBSLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
28
29 LIBSLAPD_F (char *) get_supported_acimech LDAP_P((int index));
30
31 /*
32  * aclparse.c
33  */
34
35 LIBSLAPD_F (void) parse_acl LDAP_P(( Backend *be,
36         const char *fname,
37         int lineno,
38         int argc, char **argv ));
39
40 LIBSLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
41 LIBSLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
42
43 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
44 LIBSLAPD_F (char *) accessmask2str LDAP_P(( slap_access_mask_t mask, char* ));
45 LIBSLAPD_F (slap_access_mask_t) str2accessmask LDAP_P(( const char *str ));
46
47 /*
48  * attr.c
49  */
50
51 LIBSLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
52 LIBSLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
53 LIBSLAPD_F (char *) attr_normalize LDAP_P(( char *s ));
54 LIBSLAPD_F (int) attr_merge_fast LDAP_P(( Entry *e, char *type, struct berval **vals, int  nvals, int  naddvals, int  *maxvals, Attribute ***a ));
55 LIBSLAPD_F (int) attr_merge LDAP_P(( Entry *e, char *type, struct berval **vals ));
56 LIBSLAPD_F (Attribute *) attr_find LDAP_P(( Attribute *a, const char *type ));
57 LIBSLAPD_F (int) attr_delete LDAP_P(( Attribute **attrs, const char *type ));
58 LIBSLAPD_F (int) attr_syntax LDAP_P(( char *type ));
59 LIBSLAPD_F (void) attr_syntax_config LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
60 LIBSLAPD_F (AttributeType *) at_find LDAP_P(( const char *name ));
61 LIBSLAPD_F (int) at_find_in_list LDAP_P(( AttributeType *sat, AttributeType **list ));
62 LIBSLAPD_F (int) at_append_to_list LDAP_P(( AttributeType *sat, AttributeType ***listp ));
63 LIBSLAPD_F (int) at_delete_from_list LDAP_P(( int pos, AttributeType ***listp ));
64 LIBSLAPD_F (int) at_fake_if_needed LDAP_P(( char *name ));
65 LIBSLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
66 LIBSLAPD_F (int) at_add LDAP_P(( LDAP_ATTRIBUTE_TYPE *at, const char **err ));
67 LIBSLAPD_F (char *) at_canonical_name LDAP_P(( char * a_type ));
68
69 LIBSLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
70 LIBSLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
71
72 /*
73  * ava.c
74  */
75
76 LIBSLAPD_F (int) get_ava LDAP_P(( BerElement *ber, Ava *ava ));
77 LIBSLAPD_F (void) ava_free LDAP_P(( Ava *ava, int freeit ));
78
79 /*
80  * backend.c
81  */
82
83 LIBSLAPD_F (int) backend_init LDAP_P((void));
84 LIBSLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
85 LIBSLAPD_F (int) backend_num LDAP_P((Backend *be));
86 LIBSLAPD_F (int) backend_startup LDAP_P((Backend *be));
87 LIBSLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
88 LIBSLAPD_F (int) backend_destroy LDAP_P((void));
89
90 LIBSLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
91 LIBSLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
92
93 LIBSLAPD_F (BackendDB *) select_backend LDAP_P(( const char * dn ));
94
95 LIBSLAPD_F (int) be_issuffix LDAP_P(( Backend *be, const char *suffix ));
96 LIBSLAPD_F (int) be_isroot LDAP_P(( Backend *be, const char *ndn ));
97 LIBSLAPD_F (int) be_isroot_pw LDAP_P(( Backend *be, const char *ndn, struct berval *cred ));
98 LIBSLAPD_F (char *) be_root_dn LDAP_P(( Backend *be ));
99 LIBSLAPD_F (int) be_entry_release_rw LDAP_P(( Backend *be, Entry *e, int rw ));
100 #define be_entry_release_r( be, e ) be_entry_release_rw( be, e, 0 )
101 #define be_entry_release_w( be, e ) be_entry_release_rw( be, e, 1 )
102
103 LIBSLAPD_F (int) backend_unbind LDAP_P((Connection *conn, Operation *op));
104
105 LIBSLAPD_F( int )       backend_check_controls LDAP_P((
106         Backend *be,
107         Connection *conn,
108         Operation *op ));
109
110 LIBSLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
111 LIBSLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
112
113 LIBSLAPD_F (int) backend_group LDAP_P((Backend *be,
114         Entry *target,
115         const char *gr_ndn,
116         const char *op_ndn,
117         const char *objectclassValue,
118         const char *groupattrName));
119
120 #ifdef SLAPD_SCHEMA_DN
121 /* temporary extern for temporary routine*/
122 LIBSLAPD_F (Attribute *) backend_subschemasubentry( Backend * );
123 #endif
124
125
126 /*
127  * ch_malloc.c
128  */
129
130 #ifdef CSRIMALLOC
131 #define ch_malloc malloc
132 #define ch_realloc realloc
133 #define ch_calloc calloc
134 #define ch_strdup strdup
135 #define ch_free free
136
137 #else
138 LIBSLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
139 LIBSLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
140 LIBSLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
141 LIBSLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
142 LIBSLAPD_F (void) ch_free LDAP_P(( void * ));
143
144 #ifndef CH_FREE
145 #undef free
146 #define free ch_free
147 #endif
148 #endif
149
150 /*
151  * charray.c
152  */
153
154 LIBSLAPD_F (void) charray_add LDAP_P(( char ***a, const char *s ));
155 LIBSLAPD_F (void) charray_merge LDAP_P(( char ***a, char **s ));
156 LIBSLAPD_F (void) charray_free LDAP_P(( char **array ));
157 LIBSLAPD_F (int) charray_inlist LDAP_P(( char **a, const char *s ));
158 LIBSLAPD_F (char **) charray_dup LDAP_P(( char **a ));
159 LIBSLAPD_F (char **) str2charray LDAP_P(( const char *str, const char *brkstr ));
160 LIBSLAPD_F (char *) charray2str LDAP_P(( char **a ));
161
162 /*
163  * controls.c
164  */
165 LIBSLAPD_F (int) get_ctrls LDAP_P((
166         Connection *co,
167         Operation *op,
168         int senderrors ));
169
170 LIBSLAPD_F (int) get_manageDSAit LDAP_P(( Operation *op ));
171
172 /*
173  * config.c
174  */
175
176 LIBSLAPD_F (int) read_config LDAP_P(( const char *fname ));
177
178 /*
179  * connection.c
180  */
181 LIBSLAPD_F (int) connections_init LDAP_P((void));
182 LIBSLAPD_F (int) connections_shutdown LDAP_P((void));
183 LIBSLAPD_F (int) connections_destroy LDAP_P((void));
184 LIBSLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
185
186 LIBSLAPD_F (long) connection_init LDAP_P((
187         ber_socket_t s,
188         const char* url,
189         const char* dnsname,
190         const char* peername,
191         const char* sockname,
192         int use_tls ));
193
194 LIBSLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
195 LIBSLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
196 LIBSLAPD_F (const char *) connection_state2str LDAP_P(( int state )) LDAP_GCCATTR((const));
197
198 LIBSLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
199 LIBSLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
200
201 LIBSLAPD_F (unsigned long) connections_nextid(void);
202
203 LIBSLAPD_F (Connection *) connection_first LDAP_P((ber_socket_t *));
204 LIBSLAPD_F (Connection *) connection_next LDAP_P((Connection *, ber_socket_t *));
205 LIBSLAPD_F (void) connection_done LDAP_P((Connection *));
206
207 /*
208  * dn.c
209  */
210
211 LIBSLAPD_F (char *) dn_validate LDAP_P(( char *dn ));
212 LIBSLAPD_F (char *) dn_normalize LDAP_P(( char *dn ));
213 LIBSLAPD_F (char *) dn_parent LDAP_P(( Backend *be, const char *dn ));
214 LIBSLAPD_F (char **) dn_subtree LDAP_P(( Backend *be, const char *dn ));
215 LIBSLAPD_F (char *) dn_rdn LDAP_P(( Backend *be, char *dn ));
216 LIBSLAPD_F (int) dn_issuffix LDAP_P(( char *dn, char *suffix ));
217 #ifdef DNS_DN
218 LIBSLAPD_F (int) dn_type LDAP_P(( char *dn ));
219 #endif
220 LIBSLAPD_F (int) rdn_validate LDAP_P(( const char* str ));
221 LIBSLAPD_F (char *) rdn_attr_value LDAP_P(( char * rdn ));
222 LIBSLAPD_F (char *) rdn_attr_type LDAP_P(( char * rdn ));
223
224 LIBSLAPD_F (void) build_new_dn LDAP_P(( char ** new_dn,
225         const char *e_dn,
226         const char * p_dn,
227         const char * newrdn ));
228 /*
229  * entry.c
230  */
231
232 LIBSLAPD_F (int) entry_destroy LDAP_P((void));
233
234 LIBSLAPD_F (Entry *) str2entry LDAP_P(( char    *s ));
235 LIBSLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
236 LIBSLAPD_F (void) entry_free LDAP_P(( Entry *e ));
237
238 LIBSLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
239 LIBSLAPD_F (int) entry_dn_cmp LDAP_P(( Entry *a, Entry *b ));
240 LIBSLAPD_F (int) entry_id_cmp LDAP_P(( Entry *a, Entry *b ));
241
242 /*
243  * extended.c
244  */
245
246 #define SLAPD_EXTOP_GETVERSION 0
247 #define SLAPD_EXTOP_GETPROTO 1
248 #define SLAPD_EXTOP_GETAUTH 2
249 #define SLAPD_EXTOP_GETDN 3
250 #define SLAPD_EXTOP_GETCLIENT 4
251
252 typedef int (*SLAP_EXTOP_CALLBACK_FN) LDAP_P((
253         Connection *conn, Operation *op,
254         int msg, int arg, void *argp ));
255
256 typedef int (*SLAP_EXTOP_MAIN_FN) LDAP_P((
257         SLAP_EXTOP_CALLBACK_FN,
258         Connection *conn, Operation *op,
259         char * oid,
260         struct berval * reqdata,
261         struct berval ** rspdata,
262         char ** text ));
263
264 typedef int (*SLAP_EXTOP_GETOID_FN) LDAP_P((
265         int index, char *oid, int blen ));
266
267 LIBSLAPD_F (int) load_extop LDAP_P((
268         const char *ext_oid,
269         SLAP_EXTOP_MAIN_FN ext_main ));
270
271 LIBSLAPD_F (int) extops_init LDAP_P(( void ));
272
273 LIBSLAPD_F (int) extops_kill LDAP_P(( void ));
274
275 LIBSLAPD_F (char *) get_supported_extop LDAP_P((int index));
276
277 /*
278  * filter.c
279  */
280
281 LIBSLAPD_F (int) get_filter LDAP_P(( Connection *conn, BerElement *ber, Filter **filt, char **fstr ));
282 LIBSLAPD_F (void) filter_free LDAP_P(( Filter *f ));
283 LIBSLAPD_F (void) filter_print LDAP_P(( Filter *f ));
284
285 /*
286  * filterentry.c
287  */
288
289 LIBSLAPD_F (int) test_filter LDAP_P(( Backend *be, Connection *conn, Operation *op, Entry *e, Filter    *f ));
290
291 /*
292  * lock.c
293  */
294
295 LIBSLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname, const char *type, FILE **lfp ));
296 LIBSLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
297
298 /*
299  * module.c
300  */
301
302 #ifdef SLAPD_MODULES
303
304 LIBSLAPD_F (int) module_init LDAP_P(( void ));
305 LIBSLAPD_F (int) module_kill LDAP_P(( void ));
306
307 LIBSLAPD_F (int) load_null_module(
308         const void *module, const char *file_name);
309 LIBSLAPD_F (int) load_extop_module(
310         const void *module, const char *file_name);
311
312 LIBSLAPD_F (int) module_load LDAP_P((
313         const char* file_name,
314         int argc, char *argv[] ));
315 LIBSLAPD_F (int) module_path LDAP_P(( const char* path ));
316
317 LIBSLAPD_F (void) *module_resolve LDAP_P((
318         const void *module, const char *name));
319
320 #endif /* SLAPD_MODULES */
321
322 /*
323  * monitor.c
324  */
325 LIBSLAPD_F (char *) supportedControls[];
326
327 LIBSLAPD_F (void) monitor_info LDAP_P((
328         Connection *conn,
329         Operation *op,
330         char ** attrs,
331         int attrsonly ));
332
333 /*
334  * operation.c
335  */
336
337 LIBSLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
338 LIBSLAPD_F (Operation *) slap_op_alloc LDAP_P((
339         BerElement *ber, ber_int_t msgid,
340         ber_tag_t tag, ber_int_t id ));
341
342 LIBSLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
343 LIBSLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
344 LIBSLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
345
346 /*
347  * phonetic.c
348  */
349
350 LIBSLAPD_F (char *) first_word LDAP_P(( char *s ));
351 LIBSLAPD_F (char *) next_word LDAP_P(( char *s ));
352 LIBSLAPD_F (char *) word_dup LDAP_P(( char *w ));
353 LIBSLAPD_F (char *) phonetic LDAP_P(( char *s ));
354
355 /*
356  * repl.c
357  */
358
359 LIBSLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op, char *dn, void *change ));
360
361 /*
362  * result.c
363  */
364
365 LIBSLAPD_F (struct berval **) get_entry_referrals LDAP_P((
366         Backend *be, Connection *conn, Operation *op,
367         Entry *e ));
368
369 LIBSLAPD_F (void) send_ldap_result LDAP_P((
370         Connection *conn, Operation *op,
371         ber_int_t err, const char *matched, const char *text,
372         struct berval **refs,
373         LDAPControl **ctrls ));
374
375 LIBSLAPD_F (void) send_ldap_sasl LDAP_P((
376         Connection *conn, Operation *op,
377         ber_int_t err, const char *matched,
378         const char *text,
379         struct berval *cred ));
380
381 LIBSLAPD_F (void) send_ldap_disconnect LDAP_P((
382         Connection *conn, Operation *op,
383         ber_int_t err, const char *text ));
384
385 LIBSLAPD_F (void) send_ldap_extended LDAP_P((
386         Connection *conn, Operation *op,
387         ber_int_t err, const char *matched,
388         const char *text,
389         char *rspoid, struct berval *rspdata ));
390
391 LIBSLAPD_F (void) send_search_result LDAP_P((
392         Connection *conn, Operation *op,
393         ber_int_t err, const char *matched, const char *text,
394         struct berval **refs,
395         LDAPControl **ctrls,
396         int nentries ));
397
398 LIBSLAPD_F (int) send_search_reference LDAP_P((
399         Backend *be, Connection *conn, Operation *op,
400         Entry *e, struct berval **refs, int scope,
401         LDAPControl **ctrls,
402         struct berval ***v2refs ));
403
404 LIBSLAPD_F (int) send_search_entry LDAP_P((
405         Backend *be, Connection *conn, Operation *op,
406         Entry *e, char **attrs, int attrsonly,
407         LDAPControl **ctrls ));
408
409 LIBSLAPD_F (int) str2result LDAP_P(( char *s,
410         int *code, char **matched, char **info ));
411
412 /*
413  * sasl.c
414  */
415 LIBSLAPD_F (char **) supportedSASLMechanisms;
416
417 LIBSLAPD_F (int) sasl_init(void);
418 LIBSLAPD_F (int) sasl_destroy(void);
419
420 /*
421  * schema.c
422  */
423
424 LIBSLAPD_F (int) oc_schema_check LDAP_P(( Entry *e ));
425 LIBSLAPD_F (int) oc_check_operational_attr LDAP_P(( const char *type ));
426 LIBSLAPD_F (int) oc_check_usermod_attr LDAP_P(( const char *type ));
427 LIBSLAPD_F (int) oc_check_no_usermod_attr LDAP_P(( const char *type ));
428 LIBSLAPD_F (ObjectClass *) oc_find LDAP_P((const char *ocname));
429 LIBSLAPD_F (int) oc_add LDAP_P((LDAP_OBJECT_CLASS *oc, const char **err));
430 LIBSLAPD_F (Syntax *) syn_find LDAP_P((const char *synname));
431 LIBSLAPD_F (Syntax *) syn_find_desc LDAP_P((const char *syndesc, int *slen));
432 LIBSLAPD_F (int) syn_add LDAP_P((LDAP_SYNTAX *syn, slap_syntax_check_func *check, const char **err));
433 LIBSLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
434 LIBSLAPD_F (int) mr_add LDAP_P((LDAP_MATCHING_RULE *mr, slap_mr_normalize_func *normalize, slap_mr_compare_func *compare, const char **err));
435 LIBSLAPD_F (int) case_ignore_normalize LDAP_P((struct berval *val, struct berval **normalized));
436 LIBSLAPD_F (int) register_syntax LDAP_P((char *desc,    slap_syntax_check_func *check ));
437 LIBSLAPD_F (int) register_matching_rule LDAP_P((char * desc,    slap_mr_normalize_func *normalize, slap_mr_compare_func *compare));
438 LIBSLAPD_F (void) schema_info LDAP_P((Connection *conn, Operation *op, char **attrs, int attrsonly));
439 LIBSLAPD_F (int) schema_init LDAP_P((void));
440
441 LIBSLAPD_F (int) is_entry_objectclass LDAP_P(( Entry *, const char* objectclass ));
442 #define is_entry_alias(e)               is_entry_objectclass((e), "ALIAS")
443 #define is_entry_referral(e)    is_entry_objectclass((e), "REFERRAL")
444
445
446 /*
447  * schemaparse.c
448  */
449
450 LIBSLAPD_F (void) parse_oc_old LDAP_P(( Backend *be, const char *fname, int lineno, int argc, char **argv ));
451 LIBSLAPD_F (void) parse_oc LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
452 LIBSLAPD_F (void) parse_at LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
453 LIBSLAPD_F (void) parse_oidm LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
454 LIBSLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
455 LIBSLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del, char delim ));
456
457
458 /*
459  * starttls.c
460  */
461
462 LIBSLAPD_F (int) starttls_extop LDAP_P((
463         SLAP_EXTOP_CALLBACK_FN,
464         Connection *conn, Operation *op,
465         char * oid,
466         struct berval * reqdata,
467         struct berval ** rspdata,
468         char ** text ));
469
470
471 /*
472  * str2filter.c
473  */
474
475 LIBSLAPD_F (Filter *) str2filter LDAP_P(( char *str ));
476
477 /*
478  * suffixalias.c
479  */
480 LIBSLAPD_F (char *) suffix_alias LDAP_P(( Backend *be, char *ndn ));
481
482 /*
483  * value.c
484  */
485
486 LIBSLAPD_F (int) value_add_fast LDAP_P(( struct berval ***vals, struct berval **addvals, int nvals, int naddvals, int *maxvals ));
487 LIBSLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
488 LIBSLAPD_F (void) value_normalize LDAP_P(( char *s, int syntax ));
489 LIBSLAPD_F (int) value_cmp LDAP_P(( struct berval *v1, struct berval *v2, int syntax, int normalize ));
490 LIBSLAPD_F (int) value_find LDAP_P(( struct berval **vals, struct berval *v, int syntax, int normalize ));
491
492 /*
493  * user.c
494  */
495 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
496 LIBSLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
497 #endif
498
499 /*
500  * passwd.c
501  */
502 LIBSLAPD_F (int) passwd_extop LDAP_P((
503         SLAP_EXTOP_CALLBACK_FN,
504         Connection *conn, Operation *op,
505         char * oid,
506         struct berval * reqdata,
507         struct berval ** rspdata,
508         char ** text ));
509
510 LIBSLAPD_F (int) slap_passwd_check(
511         Attribute                       *attr,
512         struct berval           *cred );
513
514 LIBSLAPD_F (struct berval *) slap_passwd_generate(
515         struct berval           *cred );
516
517 LIBSLAPD_F (int) slap_passwd_parse(
518         struct berval *reqdata,
519         struct berval **id,
520         struct berval **old,
521         struct berval **new,
522         char **text );
523
524 /*
525  * kerberos.c
526  */
527 #ifdef HAVE_KERBEROS
528 LIBSLAPD_F (int)        krbv4_ldap_auth();
529 #endif
530
531 /*
532  * Other...
533  */
534
535 LIBSLAPD_F (struct berval **)   default_referral;
536 LIBSLAPD_F (char *)             replogfile;
537 LIBSLAPD_F (const char)         Versionstr[];
538 LIBSLAPD_F (int)                active_threads;
539 LIBSLAPD_F (int)                defsize;
540 LIBSLAPD_F (int)                deftime;
541 LIBSLAPD_F (int)                g_argc;
542 LIBSLAPD_F (slap_access_t)      global_default_access;
543 LIBSLAPD_F (int)                global_readonly;
544 LIBSLAPD_F (int)                global_lastmod;
545 LIBSLAPD_F (int)                global_idletimeout;
546 LIBSLAPD_F (int)                global_schemacheck;
547 LIBSLAPD_F (char)               *global_realm;
548 LIBSLAPD_F (char)               *default_passwd_hash;
549 LIBSLAPD_F (int)                lber_debug;
550 LIBSLAPD_F (int)                ldap_syslog;
551
552 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    num_sent_mutex;
553 LIBSLAPD_F (long)               num_bytes_sent;
554 LIBSLAPD_F (long)               num_pdu_sent;
555 LIBSLAPD_F (long)               num_entries_sent;
556 LIBSLAPD_F (long)               num_refs_sent;
557
558 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    num_ops_mutex;
559 LIBSLAPD_F (long)               num_ops_completed;
560 LIBSLAPD_F (long)               num_ops_initiated;
561
562 LIBSLAPD_F (char *)             slapd_pid_file;
563 LIBSLAPD_F (char *)             slapd_args_file;
564 LIBSLAPD_F (char)               **g_argv;
565 LIBSLAPD_F (time_t)             starttime;
566
567 LIBSLAPD_F (time_t) slap_get_time LDAP_P((void));
568
569 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    active_threads_mutex;
570 LIBSLAPD_F (ldap_pvt_thread_cond_t)     active_threads_cond;
571
572 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    entry2str_mutex;
573 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    replog_mutex;
574
575 #ifdef SLAPD_CRYPT
576 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    crypt_mutex;
577 #endif
578 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    gmtime_mutex;
579
580 LIBSLAPD_F (AccessControl *) global_acl;
581
582 LIBSLAPD_F (int)        slap_init LDAP_P((int mode, char* name));
583 LIBSLAPD_F (int)        slap_startup LDAP_P(( Backend *be ));
584 LIBSLAPD_F (int)        slap_shutdown LDAP_P(( Backend *be ));
585 LIBSLAPD_F (int)        slap_destroy LDAP_P((void));
586
587 struct sockaddr_in;
588
589 LIBSLAPD_F (int) slapd_daemon_init( char *urls, int port, int tls_port );
590 LIBSLAPD_F (int) slapd_daemon_destroy(void);
591 LIBSLAPD_F (int) slapd_daemon(void);
592
593 LIBSLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
594 LIBSLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
595 LIBSLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
596 LIBSLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
597
598 LIBSLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
599
600 LIBSLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
601 LIBSLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
602
603 LIBSLAPD_F (void) config_info LDAP_P((
604         Connection *conn,
605         Operation *op,
606         char ** attrs,
607         int attrsonly ));
608
609 LIBSLAPD_F (void) root_dse_info LDAP_P((
610         Connection *conn,
611         Operation *op,
612         char ** attrs,
613         int attrsonly ));
614
615 LIBSLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
616 LIBSLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
617 LIBSLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
618 LIBSLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
619 LIBSLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
620 LIBSLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
621 LIBSLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
622 LIBSLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
623 LIBSLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
624 LIBSLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
625
626
627 LIBSLAPD_F (ber_socket_t) dtblsize;
628
629 LDAP_END_DECL
630
631 #endif /* _proto_slap */
632