]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Modify password code such that backend end routine calls into
[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 (char *) get_supported_extop LDAP_P((int index));
272
273 /*
274  * filter.c
275  */
276
277 LIBSLAPD_F (int) get_filter LDAP_P(( Connection *conn, BerElement *ber, Filter **filt, char **fstr ));
278 LIBSLAPD_F (void) filter_free LDAP_P(( Filter *f ));
279 LIBSLAPD_F (void) filter_print LDAP_P(( Filter *f ));
280
281 /*
282  * filterentry.c
283  */
284
285 LIBSLAPD_F (int) test_filter LDAP_P(( Backend *be, Connection *conn, Operation *op, Entry *e, Filter    *f ));
286
287 /*
288  * lock.c
289  */
290
291 LIBSLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname, const char *type, FILE **lfp ));
292 LIBSLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
293
294 /*
295  * module.c
296  */
297
298 #ifdef SLAPD_MODULES
299
300 LIBSLAPD_F (int) module_init LDAP_P(( void ));
301 LIBSLAPD_F (int) module_kill LDAP_P(( void ));
302
303 LIBSLAPD_F (int) load_null_module(
304         const void *module, const char *file_name);
305 LIBSLAPD_F (int) load_extop_module(
306         const void *module, const char *file_name);
307
308 LIBSLAPD_F (int) module_load LDAP_P((
309         const char* file_name,
310         int argc, char *argv[] ));
311 LIBSLAPD_F (int) module_path LDAP_P(( const char* path ));
312
313 LIBSLAPD_F (void) *module_resolve LDAP_P((
314         const void *module, const char *name));
315
316 #endif /* SLAPD_MODULES */
317
318 /*
319  * monitor.c
320  */
321 LIBSLAPD_F (char *) supportedControls[];
322
323 LIBSLAPD_F (void) monitor_info LDAP_P((
324         Connection *conn,
325         Operation *op,
326         char ** attrs,
327         int attrsonly ));
328
329 /*
330  * operation.c
331  */
332
333 LIBSLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
334 LIBSLAPD_F (Operation *) slap_op_alloc LDAP_P((
335         BerElement *ber, ber_int_t msgid,
336         ber_tag_t tag, ber_int_t id ));
337
338 LIBSLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
339 LIBSLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
340 LIBSLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
341
342 /*
343  * phonetic.c
344  */
345
346 LIBSLAPD_F (char *) first_word LDAP_P(( char *s ));
347 LIBSLAPD_F (char *) next_word LDAP_P(( char *s ));
348 LIBSLAPD_F (char *) word_dup LDAP_P(( char *w ));
349 LIBSLAPD_F (char *) phonetic LDAP_P(( char *s ));
350
351 /*
352  * repl.c
353  */
354
355 LIBSLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op, char *dn, void *change ));
356
357 /*
358  * result.c
359  */
360
361 LIBSLAPD_F (struct berval **) get_entry_referrals LDAP_P((
362         Backend *be, Connection *conn, Operation *op,
363         Entry *e ));
364
365 LIBSLAPD_F (void) send_ldap_result LDAP_P((
366         Connection *conn, Operation *op,
367         ber_int_t err, const char *matched, const char *text,
368         struct berval **refs,
369         LDAPControl **ctrls ));
370
371 LIBSLAPD_F (void) send_ldap_sasl LDAP_P((
372         Connection *conn, Operation *op,
373         ber_int_t err, const char *matched,
374         const char *text,
375         struct berval *cred ));
376
377 LIBSLAPD_F (void) send_ldap_disconnect LDAP_P((
378         Connection *conn, Operation *op,
379         ber_int_t err, const char *text ));
380
381 LIBSLAPD_F (void) send_ldap_extended LDAP_P((
382         Connection *conn, Operation *op,
383         ber_int_t err, const char *matched,
384         const char *text,
385         char *rspoid, struct berval *rspdata ));
386
387 LIBSLAPD_F (void) send_search_result LDAP_P((
388         Connection *conn, Operation *op,
389         ber_int_t err, const char *matched, const char *text,
390         struct berval **refs,
391         LDAPControl **ctrls,
392         int nentries ));
393
394 LIBSLAPD_F (int) send_search_reference LDAP_P((
395         Backend *be, Connection *conn, Operation *op,
396         Entry *e, struct berval **refs, int scope,
397         LDAPControl **ctrls,
398         struct berval ***v2refs ));
399
400 LIBSLAPD_F (int) send_search_entry LDAP_P((
401         Backend *be, Connection *conn, Operation *op,
402         Entry *e, char **attrs, int attrsonly,
403         LDAPControl **ctrls ));
404
405 LIBSLAPD_F (int) str2result LDAP_P(( char *s,
406         int *code, char **matched, char **info ));
407
408 /*
409  * sasl.c
410  */
411 LIBSLAPD_F (char **) supportedSASLMechanisms;
412
413 LIBSLAPD_F (int) sasl_init(void);
414 LIBSLAPD_F (int) sasl_destroy(void);
415
416 /*
417  * schema.c
418  */
419
420 LIBSLAPD_F (int) oc_schema_check LDAP_P(( Entry *e ));
421 LIBSLAPD_F (int) oc_check_operational_attr LDAP_P(( const char *type ));
422 LIBSLAPD_F (int) oc_check_usermod_attr LDAP_P(( const char *type ));
423 LIBSLAPD_F (int) oc_check_no_usermod_attr LDAP_P(( const char *type ));
424 LIBSLAPD_F (ObjectClass *) oc_find LDAP_P((const char *ocname));
425 LIBSLAPD_F (int) oc_add LDAP_P((LDAP_OBJECT_CLASS *oc, const char **err));
426 LIBSLAPD_F (Syntax *) syn_find LDAP_P((const char *synname));
427 LIBSLAPD_F (Syntax *) syn_find_desc LDAP_P((const char *syndesc, int *slen));
428 LIBSLAPD_F (int) syn_add LDAP_P((LDAP_SYNTAX *syn, slap_syntax_check_func *check, const char **err));
429 LIBSLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
430 LIBSLAPD_F (int) mr_add LDAP_P((LDAP_MATCHING_RULE *mr, slap_mr_normalize_func *normalize, slap_mr_compare_func *compare, const char **err));
431 LIBSLAPD_F (int) case_ignore_normalize LDAP_P((struct berval *val, struct berval **normalized));
432 LIBSLAPD_F (int) register_syntax LDAP_P((char *desc,    slap_syntax_check_func *check ));
433 LIBSLAPD_F (int) register_matching_rule LDAP_P((char * desc,    slap_mr_normalize_func *normalize, slap_mr_compare_func *compare));
434 LIBSLAPD_F (void) schema_info LDAP_P((Connection *conn, Operation *op, char **attrs, int attrsonly));
435 LIBSLAPD_F (int) schema_init LDAP_P((void));
436
437 LIBSLAPD_F (int) is_entry_objectclass LDAP_P(( Entry *, const char* objectclass ));
438 #define is_entry_alias(e)               is_entry_objectclass((e), "ALIAS")
439 #define is_entry_referral(e)    is_entry_objectclass((e), "REFERRAL")
440
441
442 /*
443  * schemaparse.c
444  */
445
446 LIBSLAPD_F (void) parse_oc_old LDAP_P(( Backend *be, const char *fname, int lineno, int argc, char **argv ));
447 LIBSLAPD_F (void) parse_oc LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
448 LIBSLAPD_F (void) parse_at LDAP_P(( const char *fname, int lineno, char *line, char **argv ));
449 LIBSLAPD_F (void) parse_oidm LDAP_P(( const char *fname, int lineno, int argc, char **argv ));
450 LIBSLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
451 LIBSLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del, char delim ));
452 /*
453  * str2filter.c
454  */
455
456 LIBSLAPD_F (Filter *) str2filter LDAP_P(( char *str ));
457
458 /*
459  * suffixalias.c
460  */
461 LIBSLAPD_F (char *) suffix_alias LDAP_P(( Backend *be, char *ndn ));
462
463 /*
464  * value.c
465  */
466
467 LIBSLAPD_F (int) value_add_fast LDAP_P(( struct berval ***vals, struct berval **addvals, int nvals, int naddvals, int *maxvals ));
468 LIBSLAPD_F (int) value_add LDAP_P(( struct berval ***vals, struct berval **addvals ));
469 LIBSLAPD_F (void) value_normalize LDAP_P(( char *s, int syntax ));
470 LIBSLAPD_F (int) value_cmp LDAP_P(( struct berval *v1, struct berval *v2, int syntax, int normalize ));
471 LIBSLAPD_F (int) value_find LDAP_P(( struct berval **vals, struct berval *v, int syntax, int normalize ));
472
473 /*
474  * user.c
475  */
476 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
477 LIBSLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
478 #endif
479
480 /*
481  * passwd.c
482  */
483 LIBSLAPD_F (int) slap_passwd_init( void );
484
485 LIBSLAPD_F (int) slap_passwd_check(
486         Attribute                       *attr,
487         struct berval           *cred );
488
489 LIBSLAPD_F (struct berval *) slap_passwd_generate(
490         struct berval           *cred );
491
492 LIBSLAPD_F (int) slap_passwd_parse(
493         struct berval *reqdata,
494         struct berval **id,
495         struct berval **old,
496         struct berval **new,
497         char **text );
498
499 /*
500  * kerberos.c
501  */
502 #ifdef HAVE_KERBEROS
503 LIBSLAPD_F (int)        krbv4_ldap_auth();
504 #endif
505
506 /*
507  * Other...
508  */
509
510 LIBSLAPD_F (struct berval **)   default_referral;
511 LIBSLAPD_F (char *)             replogfile;
512 LIBSLAPD_F (const char)         Versionstr[];
513 LIBSLAPD_F (int)                active_threads;
514 LIBSLAPD_F (int)                defsize;
515 LIBSLAPD_F (int)                deftime;
516 LIBSLAPD_F (int)                g_argc;
517 LIBSLAPD_F (slap_access_t)      global_default_access;
518 LIBSLAPD_F (int)                global_readonly;
519 LIBSLAPD_F (int)                global_lastmod;
520 LIBSLAPD_F (int)                global_idletimeout;
521 LIBSLAPD_F (int)                global_schemacheck;
522 LIBSLAPD_F (char)               *global_realm;
523 LIBSLAPD_F (char)               *default_passwd_hash;
524 LIBSLAPD_F (int)                lber_debug;
525 LIBSLAPD_F (int)                ldap_syslog;
526
527 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    num_sent_mutex;
528 LIBSLAPD_F (long)               num_bytes_sent;
529 LIBSLAPD_F (long)               num_pdu_sent;
530 LIBSLAPD_F (long)               num_entries_sent;
531 LIBSLAPD_F (long)               num_refs_sent;
532
533 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    num_ops_mutex;
534 LIBSLAPD_F (long)               num_ops_completed;
535 LIBSLAPD_F (long)               num_ops_initiated;
536
537 LIBSLAPD_F (char *)             slapd_pid_file;
538 LIBSLAPD_F (char *)             slapd_args_file;
539 LIBSLAPD_F (char)               **g_argv;
540 LIBSLAPD_F (time_t)             starttime;
541
542 LIBSLAPD_F (time_t) slap_get_time LDAP_P((void));
543
544 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    active_threads_mutex;
545 LIBSLAPD_F (ldap_pvt_thread_cond_t)     active_threads_cond;
546
547 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    entry2str_mutex;
548 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    replog_mutex;
549
550 #ifdef SLAPD_CRYPT
551 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    crypt_mutex;
552 #endif
553 LIBSLAPD_F (ldap_pvt_thread_mutex_t)    gmtime_mutex;
554
555 LIBSLAPD_F (AccessControl *) global_acl;
556
557 LIBSLAPD_F (int)        slap_init LDAP_P((int mode, char* name));
558 LIBSLAPD_F (int)        slap_startup LDAP_P(( Backend *be ));
559 LIBSLAPD_F (int)        slap_shutdown LDAP_P(( Backend *be ));
560 LIBSLAPD_F (int)        slap_destroy LDAP_P((void));
561
562 struct sockaddr_in;
563
564 LIBSLAPD_F (int) slapd_daemon_init( char *urls, int port, int tls_port );
565 LIBSLAPD_F (int) slapd_daemon_destroy(void);
566 LIBSLAPD_F (int) slapd_daemon(void);
567
568 LIBSLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
569 LIBSLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
570 LIBSLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
571 LIBSLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
572
573 LIBSLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
574
575 LIBSLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
576 LIBSLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
577
578 LIBSLAPD_F (void) config_info LDAP_P((
579         Connection *conn,
580         Operation *op,
581         char ** attrs,
582         int attrsonly ));
583
584 LIBSLAPD_F (void) root_dse_info LDAP_P((
585         Connection *conn,
586         Operation *op,
587         char ** attrs,
588         int attrsonly ));
589
590 LIBSLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
591 LIBSLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
592 LIBSLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
593 LIBSLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
594 LIBSLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
595 LIBSLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
596 LIBSLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
597 LIBSLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
598 LIBSLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
599 LIBSLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
600
601
602 LIBSLAPD_F (ber_socket_t) dtblsize;
603
604 LDAP_END_DECL
605
606 #endif /* _proto_slap */
607