]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
Reorganiza SLAPD_CRYPT and SLAPD_SPASSWD support for better reentrancy
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25
26 #ifndef PROTO_SLAP_H
27 #define PROTO_SLAP_H
28
29 #include <ldap_cdefs.h>
30 #include "ldap_pvt.h"
31
32 LDAP_BEGIN_DECL
33
34 /*
35  * acl.c
36  */
37 LDAP_SLAPD_F (int) access_allowed_mask LDAP_P((
38         Operation *op,
39         Entry *e, AttributeDescription *desc, struct berval *val,
40         slap_access_t access,
41         AccessControlState *state,
42         slap_mask_t *mask ));
43 #define access_allowed(op,e,desc,val,access,state) access_allowed_mask(op,e,desc,val,access,state,NULL)
44 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
45         Operation *op, Entry *e, Modifications *ml ));
46
47 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
48
49 #ifdef SLAP_DYNACL
50 LDAP_SLAPD_F (int) slap_dynacl_register LDAP_P(( slap_dynacl_t *da ));
51 LDAP_SLAPD_F (slap_dynacl_t *) slap_dynacl_get LDAP_P(( const char *name ));
52 #endif /* SLAP_DYNACL */
53 LDAP_SLAPD_F (int) acl_init LDAP_P(( void ));
54
55 /*
56  * aclparse.c
57  */
58 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
59         const char *fname, int lineno,
60         int argc, char **argv ));
61
62 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
63 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
64
65 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
66 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char*, int debug ));
67 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
68 LDAP_SLAPD_F (void) acl_unparse LDAP_P(( AccessControl*, struct berval* ));
69 LDAP_SLAPD_F (void) acl_destroy LDAP_P(( AccessControl*, AccessControl* ));
70 LDAP_SLAPD_F (void) acl_free LDAP_P(( AccessControl *a ));
71
72
73 /*
74  * ad.c
75  */
76 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
77         const char *,
78         AttributeDescription **ad,
79         const char **text ));
80
81 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
82         struct berval *bv,
83         AttributeDescription **ad,
84         const char **text ));
85
86 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
87
88 #define ad_cmp(l,r)     (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
89         ? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
90                 ? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
91
92 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
93         AttributeDescription *sub,
94         AttributeDescription *super ));
95
96 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
97         AttributeDescription *desc,
98         AttributeName *attrs ));
99
100 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
101         const char *,
102         AttributeDescription **ad,
103         const char **text ));
104
105 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
106         struct berval *bv,
107         AttributeDescription **ad,
108         const char **text ));
109
110 LDAP_SLAPD_F (AttributeDescription *) ad_find_tags LDAP_P((
111         AttributeType *type,
112         struct berval *tags ));
113
114 LDAP_SLAPD_F (AttributeName *) str2anlist LDAP_P(( AttributeName *an,
115         char *str, const char *brkstr ));
116 LDAP_SLAPD_F (char **) anlist2charray_x LDAP_P((
117                                                                         AttributeName *an, int dup, void *ctx ));
118 LDAP_SLAPD_F (char **) anlist2charray LDAP_P(( AttributeName *an, int dup ));
119 LDAP_SLAPD_F (char **) anlist2attrs LDAP_P(( AttributeName *anlist ));
120 LDAP_SLAPD_F (AttributeName *) file2anlist LDAP_P((
121                         AttributeName *, const char *, const char * ));
122 LDAP_SLAPD_F (int) an_find LDAP_P(( AttributeName *a, struct berval *s ));
123 LDAP_SLAPD_F (int) ad_define_option LDAP_P(( const char *name,
124         const char *fname, int lineno ));
125
126 LDAP_SLAPD_F (MatchingRule *) ad_mr(
127         AttributeDescription *ad,
128         unsigned usage );
129
130 LDAP_SLAPD_V( AttributeName * ) slap_anlist_no_attrs;
131 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_user_attributes;
132 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_operational_attributes;
133 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_attributes;
134
135 /*
136  * add.c
137  */
138 LDAP_SLAPD_F (int) slap_mods2entry LDAP_P(( Modifications *mods, Entry **e,
139         int repl_user, int dup, const char **text, char *textbuf, size_t textlen ));
140
141 LDAP_SLAPD_F (int) slap_entry2mods LDAP_P(( Entry *e,
142                                                 Modifications **mods, const char **text,
143                                                 char *textbuf, size_t textlen ));
144
145 /*
146  * at.c
147  */
148 LDAP_SLAPD_V(int) at_oc_cache;
149 LDAP_SLAPD_F (void) at_config LDAP_P((
150         const char *fname, int lineno,
151         int argc, char **argv ));
152 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P((
153         const char *name ));
154 LDAP_SLAPD_F (AttributeType *) at_bvfind LDAP_P((
155         struct berval *name ));
156 LDAP_SLAPD_F (int) at_find_in_list LDAP_P((
157         AttributeType *sat, AttributeType **list ));
158 LDAP_SLAPD_F (int) at_append_to_list LDAP_P((
159         AttributeType *sat, AttributeType ***listp ));
160 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P((
161         int pos, AttributeType ***listp ));
162 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
163 LDAP_SLAPD_F (int) at_add LDAP_P((
164         LDAPAttributeType *at, const char **err ));
165 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
166
167 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
168         AttributeType *sub,
169         AttributeType *super ));
170
171 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
172         AttributeType *at,
173         const char *oid ));
174
175 LDAP_SLAPD_F (int) at_start LDAP_P(( AttributeType **at ));
176 LDAP_SLAPD_F (int) at_next LDAP_P(( AttributeType **at ));
177
178 /*
179  * attr.c
180  */
181 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
182 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
183
184 #define attr_mergeit( e, d, v ) attr_merge( e, d, v, NULL /* FIXME */ )
185 #define attr_mergeit_one( e, d, v ) attr_merge_one( e, d, v, NULL /* FIXME */ )
186
187 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
188         AttributeDescription *desc,
189         BerVarray vals,
190         BerVarray nvals ));
191 LDAP_SLAPD_F (int) attr_merge_one LDAP_P(( Entry *e,
192         AttributeDescription *desc,
193         struct berval *val,
194         struct berval *nval ));
195 LDAP_SLAPD_F (int) attr_merge_normalize LDAP_P(( Entry *e,
196         AttributeDescription *desc,
197         BerVarray vals, void *memctx ));
198 LDAP_SLAPD_F (int) attr_merge_normalize_one LDAP_P(( Entry *e,
199         AttributeDescription *desc,
200         struct berval *val, void *memctx ));
201 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P((
202         Attribute *a, AttributeDescription *desc ));
203 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P((
204         Attribute *a, AttributeDescription *desc ));
205 LDAP_SLAPD_F (int) attr_delete LDAP_P((
206         Attribute **attrs, AttributeDescription *desc ));
207
208 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
209 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
210
211
212 /*
213  * ava.c
214  */
215 LDAP_SLAPD_F (int) get_ava LDAP_P((
216         Operation *op,
217         BerElement *ber,
218         AttributeAssertion **ava,
219         unsigned usage,
220         const char **text ));
221 LDAP_SLAPD_F (void) ava_free LDAP_P((
222         Operation *op,
223         AttributeAssertion *ava,
224         int freeit ));
225
226 /*
227  * backend.c
228  */
229 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
230 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
231 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
232 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
233 LDAP_SLAPD_F (int) backend_startup_one LDAP_P((Backend *be));
234 LDAP_SLAPD_F (int) backend_sync LDAP_P((Backend *be));
235 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
236 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
237
238 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
239 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
240
241 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
242         struct berval * dn,
243         int manageDSAit,
244         int noSubordinates ));
245
246 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be,
247         struct berval *suffix ));
248 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Operation *op ));
249 LDAP_SLAPD_F (int) be_isroot_dn LDAP_P(( Backend *be, struct berval *ndn ));
250 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Operation *op ));
251 LDAP_SLAPD_F (int) be_slurp_update LDAP_P(( Operation *op ));
252 #define be_isupdate( op ) be_slurp_update( (op) )
253 LDAP_SLAPD_F (int) be_shadow_update LDAP_P(( Operation *op ));
254 LDAP_SLAPD_F (int) be_isupdate_dn LDAP_P(( Backend *be, struct berval *ndn ));
255 LDAP_SLAPD_F (struct berval *) be_root_dn LDAP_P(( Backend *be ));
256 LDAP_SLAPD_F (int) be_entry_get_rw LDAP_P(( struct slap_op *o,
257                 struct berval *ndn, ObjectClass *oc,
258                 AttributeDescription *at, int rw, Entry **e ));
259 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P((
260         Operation *o, Entry *e, int rw ));
261 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 )
262 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 )
263
264 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Operation *op, SlapReply *rs));
265 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
266 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
267
268 LDAP_SLAPD_F( int ) backend_check_controls LDAP_P((
269         Operation *op,
270         SlapReply *rs ));
271 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
272         Operation *op,
273         SlapReply *rs,
274         struct berval *opdata ));
275
276 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
277         Operation *op,
278         SlapReply *rs ));
279
280 LDAP_SLAPD_F (int) backend_group LDAP_P((
281         Operation *op,
282         Entry *target,
283         struct berval *gr_ndn,
284         struct berval *op_ndn,
285         ObjectClass *group_oc,
286         AttributeDescription *group_at
287 ));
288
289 LDAP_SLAPD_F (int) backend_attribute LDAP_P((
290         Operation *op,
291         Entry *target,
292         struct berval *entry_ndn,
293         AttributeDescription *entry_at,
294         BerVarray *vals,
295         slap_access_t access
296 ));
297
298 LDAP_SLAPD_F (int) backend_access LDAP_P((
299         Operation               *op,
300         Entry                   *target,
301         struct berval           *edn,
302         AttributeDescription    *entry_at,
303         struct berval           *nval,
304         slap_access_t           access,
305         slap_mask_t             *mask ));
306
307 LDAP_SLAPD_F (int) backend_operational LDAP_P((
308         Operation *op,
309         SlapReply *rs 
310 ));
311
312 LDAP_SLAPD_V(BackendInfo) slap_binfo[]; 
313
314 /*
315  * backglue.c
316  */
317
318 LDAP_SLAPD_F (int) glue_back_initialize( BackendInfo *bi );
319 LDAP_SLAPD_F (int) glue_sub_init( void );
320
321 /*
322  * backover.c
323  */
324
325 LDAP_SLAPD_F (int) overlay_register LDAP_P(( slap_overinst *on ));
326 LDAP_SLAPD_F (int) overlay_config LDAP_P(( BackendDB *be, const char *ov ));
327 LDAP_SLAPD_F (slap_overinst *) overlay_next LDAP_P(( slap_overinst *on ));
328 LDAP_SLAPD_F (slap_overinst *) overlay_find LDAP_P(( const char *name ));
329 LDAP_SLAPD_F (int) overlay_is_over LDAP_P(( BackendDB *be ));
330 LDAP_SLAPD_F (int) overlay_is_inst LDAP_P(( BackendDB *be, const char *name ));
331 LDAP_SLAPD_F (int) overlay_register_control LDAP_P((
332         BackendDB *be,
333         const char *oid ));
334
335 /*
336  * ch_malloc.c
337  */
338 LDAP_SLAPD_V (BerMemoryFunctions) ch_mfuncs;
339 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
340 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
341 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
342 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
343 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
344
345 #ifndef CH_FREE
346 #undef free
347 #define free ch_free
348 #endif
349
350 /*
351  * component.c
352  */
353 #ifdef LDAP_COMP_MATCH
354 LDAP_SLAPD_F (int) test_comp_filter_entry LDAP_P((
355         Operation* op,
356         Entry* e,
357         MatchingRuleAssertion* mr));
358
359 LDAP_SLAPD_F (int) get_comp_filter LDAP_P((
360         Operation* op,
361         BerValue* bv,
362         ComponentFilter** filt,
363         const char **text ));
364
365 LDAP_SLAPD_F (int) componentFilterMatch LDAP_P(( 
366         int *matchp, 
367         slap_mask_t flags, 
368         Syntax *syntax, 
369         MatchingRule *mr,
370         struct berval *value, 
371         void *assertedValue ));
372
373 LDAP_SLAPD_F (int) directoryComponentsMatch LDAP_P((
374         int *matchp,
375         slap_mask_t flags,
376         Syntax *syntax,
377         MatchingRule *mr,
378         struct berval *value,
379         void *assertedValue ));
380
381 LDAP_SLAPD_F (int) allComponentsMatch LDAP_P((
382         int *matchp,
383         slap_mask_t flags,
384         Syntax *syntax,
385         MatchingRule *mr,
386         struct berval *value,
387         void *assertedValue ));
388                                                                           
389 LDAP_SLAPD_F (int) componentFilterValidate LDAP_P(( 
390         Syntax *syntax,
391         struct berval* bv ));
392
393 LDAP_SLAPD_F (int) allComponentsValidate LDAP_P((
394         Syntax *syntax,
395         struct berval* bv ));
396
397 LDAP_SLAPD_V (test_membership_func*) is_aliased_attribute;
398
399 LDAP_SLAPD_V (free_component_func*) component_destructor;
400
401 LDAP_SLAPD_V (get_component_info_func*) get_component_description;
402
403 LDAP_SLAPD_V (component_encoder_func*) component_encoder;
404
405 LDAP_SLAPD_V (convert_attr_to_comp_func*) attr_converter;
406
407 LDAP_SLAPD_V (alloc_nibble_func*) nibble_mem_allocator;
408
409 LDAP_SLAPD_V (free_nibble_func*) nibble_mem_free;
410 #endif
411
412 /*
413  * controls.c
414  */
415 LDAP_SLAPD_V( struct slap_control_ids ) slap_cids;
416 LDAP_SLAPD_F (void) slap_free_ctrls LDAP_P((
417         Operation *op,
418         LDAPControl **ctrls ));
419 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
420         Operation *op,
421         SlapReply *rs,
422         int senderrors ));
423 LDAP_SLAPD_F (int) register_supported_control LDAP_P((
424         const char *controloid,
425         slap_mask_t controlmask,
426         char **controlexops,
427         SLAP_CTRL_PARSE_FN *controlparsefn,
428         int *controlcid ));
429 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
430 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
431 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
432 LDAP_SLAPD_F (int) get_supported_controls LDAP_P ((
433         char ***ctrloidsp, slap_mask_t **ctrlmasks ));
434 LDAP_SLAPD_F (int) slap_find_control_id LDAP_P ((
435         const char *oid, int *cid ));
436 LDAP_SLAPD_F (int) slap_global_control LDAP_P ((
437         Operation *op, const char *oid, int *cid ));
438
439 /*
440  * config.c
441  */
442 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, const char *dir ));
443 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
444 LDAP_SLAPD_F (char **) slap_str2clist LDAP_P((
445         char ***, char *, const char * ));
446 LDAP_SLAPD_F (int) verb_to_mask LDAP_P((
447         const char *word,  slap_verbmasks *v ));
448 LDAP_SLAPD_F (int) verbs_to_mask LDAP_P((
449         int argc, char *argv[], slap_verbmasks *v, slap_mask_t *m ));
450 LDAP_SLAPD_F (int) mask_to_verbs LDAP_P((
451         slap_verbmasks *v, slap_mask_t m, BerVarray *bva ));
452 LDAP_SLAPD_F (int) bindconf_parse LDAP_P((
453         const char *word,  slap_bindconf *bc ));
454 LDAP_SLAPD_F (int) bindconf_unparse LDAP_P((
455         slap_bindconf *bc, struct berval *bv ));
456 LDAP_SLAPD_F (void) bindconf_free LDAP_P(( slap_bindconf *bc ));
457 LDAP_SLAPD_F (int) config_generic_wrapper LDAP_P(( Backend *be,
458         const char *fname, int lineno, int argc, char **argv ));
459
460 #ifdef LDAP_SLAPI
461 LDAP_SLAPD_V (int) slapi_plugins_used;
462 #endif
463
464 /*
465  * connection.c
466  */
467 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
468 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
469 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
470 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
471
472 LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
473         ber_socket_t s,
474         ldap_pvt_thread_start_t *func,
475         void *arg ));
476 LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
477 LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
478
479
480 LDAP_SLAPD_F (long) connection_init LDAP_P((
481         ber_socket_t s,
482         Listener* url,
483         const char* dnsname,
484         const char* peername,
485         int use_tls,
486         slap_ssf_t ssf,
487         struct berval *id ));
488
489 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
490 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
491 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
492         LDAP_GCCATTR((const));
493
494 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
495 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
496
497 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
498
499 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
500 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
501         Connection *, ber_socket_t *));
502 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
503
504 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
505 LDAP_SLAPD_F (void) connection_fake_init LDAP_P((
506         Connection *conn,
507         Operation *op,
508         void *threadctx ));
509 LDAP_SLAPD_F (void) connection_assign_nextid LDAP_P((Connection *));
510
511 /*
512  * cr.c
513  */
514 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
515
516 LDAP_SLAPD_F (int) cr_add LDAP_P((
517         LDAPContentRule *oc,
518         int user,
519         const char **err));
520 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
521
522 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
523         const char *crname));
524 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
525         struct berval *crname));
526
527 /*
528  * ctxcsn.c
529  */
530
531 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_bv;
532 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_cn_bv;
533 LDAP_SLAPD_F (void) slap_get_commit_csn LDAP_P((
534         Operation *, struct berval *maxcsn, struct berval *curcsn ));
535 LDAP_SLAPD_F (void) slap_rewind_commit_csn LDAP_P(( Operation * ));
536 LDAP_SLAPD_F (void) slap_graduate_commit_csn LDAP_P(( Operation * ));
537 LDAP_SLAPD_F (Entry *) slap_create_context_csn_entry LDAP_P(( Backend *, struct berval *));
538 LDAP_SLAPD_F (int) slap_get_csn LDAP_P(( Operation *, char *, int, struct berval *, int ));
539 LDAP_SLAPD_F (void) slap_queue_csn LDAP_P(( Operation *, struct berval * ));
540
541 /*
542  * daemon.c
543  */
544 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s, int isactive);
545 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
546 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
547 LDAP_SLAPD_F (int) slapd_daemon(void);
548 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
549 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wasactive, int wake));
550
551 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
552 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
553 LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
554
555 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
556 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
557 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
558 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
559
560 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
561 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
562 LDAP_SLAPD_V (int) slapd_register_slp;
563 LDAP_SLAPD_V (slap_ssf_t) local_ssf;
564 LDAP_SLAPD_V (struct runqueue_s) slapd_rq;
565
566 /*
567  * dn.c
568  */
569
570 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
571 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
572
573 LDAP_SLAPD_F (int) dnValidate LDAP_P((
574         Syntax *syntax, 
575         struct berval *val ));
576 LDAP_SLAPD_F (int) rdnValidate LDAP_P((
577         Syntax *syntax, 
578         struct berval *val ));
579
580 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
581
582 LDAP_SLAPD_F (slap_mr_normalize_func) rdnNormalize;
583
584 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
585
586 LDAP_SLAPD_F (slap_syntax_transform_func) rdnPretty;
587
588 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
589         Syntax *syntax, 
590         struct berval *val, 
591         struct berval *pretty,
592         struct berval *normal,
593         void *ctx ));
594
595 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
596         int *matchp, 
597         slap_mask_t flags, 
598         Syntax *syntax, 
599         MatchingRule *mr,
600         struct berval *value, 
601         void *assertedValue ));
602
603 LDAP_SLAPD_F (int) dnRelativeMatch LDAP_P(( 
604         int *matchp, 
605         slap_mask_t flags, 
606         Syntax *syntax, 
607         MatchingRule *mr,
608         struct berval *value, 
609         void *assertedValue ));
610
611 LDAP_SLAPD_F (int) rdnMatch LDAP_P(( 
612         int *matchp, 
613         slap_mask_t flags, 
614         Syntax *syntax, 
615         MatchingRule *mr,
616         struct berval *value, 
617         void *assertedValue ));
618
619
620 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
621         const struct berval *dn, const struct berval *suffix ));
622
623 LDAP_SLAPD_F (int) dnIsOneLevelRDN LDAP_P(( struct berval *rdn ));
624
625 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
626         struct berval *dn, struct berval *rdn, void *ctx ));
627
628 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( struct berval * rdn ));
629
630 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
631
632 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
633         struct berval * new_dn,
634         struct berval * parent_dn,
635         struct berval * newrdn,
636         void *memctx ));
637
638 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
639 LDAP_SLAPD_F (void) dnRdn LDAP_P(( struct berval *dn, struct berval *rdn ));
640
641 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
642
643 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
644
645 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
646 #define dnPrettyDN(syntax, val, dn, ctx) \
647         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
648 #define dnNormalDN(syntax, val, dn, ctx) \
649         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
650
651 typedef int (SLAP_CERT_MAP_FN) LDAP_P(( void *ssl, struct berval *dn ));
652 LDAP_SLAPD_F (int) register_certificate_map_function LDAP_P(( SLAP_CERT_MAP_FN *fn ));
653
654 /*
655  * entry.c
656  */
657 LDAP_SLAPD_V (const Entry) slap_entry_root;
658
659 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
660
661 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
662 LDAP_SLAPD_F (Entry *) str2entry2 LDAP_P(( char *s, int checkvals ));
663 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
664
665 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
666         Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
667 #ifdef SLAP_ZONE_ALLOC
668 LDAP_SLAPD_F (int) entry_decode LDAP_P((
669                                                 struct berval *bv, Entry **e, void *ctx ));
670 #else
671 LDAP_SLAPD_F (int) entry_decode LDAP_P((
672                                                 struct berval *bv, Entry **e ));
673 #endif
674 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
675
676 LDAP_SLAPD_F (void) entry_clean LDAP_P(( Entry *e ));
677 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
678 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
679 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
680 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
681 LDAP_SLAPD_F (Entry *) entry_dup LDAP_P(( Entry *e ));
682
683 /*
684  * extended.c
685  */
686 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
687
688 #define exop_is_write( op )     ((op->ore_flags & SLAP_EXOP_WRITES) != 0)
689
690 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
691 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
692 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
693 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
694
695 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
696
697 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
698         int index, struct berval *oid, int blen ));
699
700 LDAP_SLAPD_F (int) load_extop LDAP_P((
701         struct berval *ext_oid,
702         slap_mask_t flags,
703         SLAP_EXTOP_MAIN_FN *ext_main ));
704
705 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
706
707 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
708
709 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
710
711 /*
712  * cancel.c
713  */
714 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
715
716 /*
717  * filter.c
718  */
719 LDAP_SLAPD_F (int) get_filter LDAP_P((
720         Operation *op,
721         BerElement *ber,
722         Filter **filt,
723         const char **text ));
724
725 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
726 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
727 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
728 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
729
730 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
731         ValuesReturnFilter **f,
732         const char **text ));
733
734 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
735 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
736
737 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
738 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
739         struct berval *out ));
740
741 /*
742  * filterentry.c
743  */
744
745 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
746
747 /*
748  * frontend.c
749  */
750 LDAP_SLAPD_F (int) frontend_init LDAP_P(( void ));
751
752 /*
753  * globals.c
754  */
755
756 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
757 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
758 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
759 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
760 LDAP_SLAPD_V( struct slap_sync_cookie_s ) slap_sync_cookie;
761 LDAP_SLAPD_V( void * ) slap_tls_ctx;
762
763 /*
764  * index.c
765  */
766 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
767 LDAP_SLAPD_F (void) slap_index2bvlen LDAP_P(( slap_mask_t idx, struct berval *bv ));
768 LDAP_SLAPD_F (void) slap_index2bv LDAP_P(( slap_mask_t idx, struct berval *bv ));
769
770 /*
771  * init.c
772  */
773 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
774 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
775 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
776 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
777
778 LDAP_SLAPD_V (char *)   slap_known_controls[];
779
780 /*
781  * kerberos.c
782  */
783 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
784 LDAP_SLAPD_V (char *)   ldap_srvtab;
785 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
786 #endif
787
788 /*
789  * ldapsync.c
790  */
791 LDAP_SLAPD_F (void) slap_compose_sync_cookie LDAP_P((
792                                 Operation *, struct berval *, struct berval *, int ));
793 LDAP_SLAPD_F (void) slap_sync_cookie_free LDAP_P((
794                                 struct sync_cookie *, int free_cookie ));
795 LDAP_SLAPD_F (int) slap_parse_sync_cookie LDAP_P((
796                                 struct sync_cookie * ));
797 LDAP_SLAPD_F (int) slap_init_sync_cookie_ctxcsn LDAP_P((
798                                 struct sync_cookie * ));
799 LDAP_SLAPD_F (struct sync_cookie *) slap_dup_sync_cookie LDAP_P((
800                                 struct sync_cookie *, struct sync_cookie * ));
801 LDAP_SLAPD_F (int) slap_build_syncUUID_set LDAP_P((
802                                 Operation *, BerVarray *, Entry * ));
803
804 /*
805  * limits.c
806  */
807 LDAP_SLAPD_F (int) limits_get LDAP_P((
808         Operation *op, struct berval *ndn,
809         struct slap_limits_set **limit ));
810 LDAP_SLAPD_F (int) limits_parse LDAP_P((
811         Backend *be, const char *fname, int lineno,
812         int argc, char **argv ));
813 LDAP_SLAPD_F (int) limits_parse_one LDAP_P(( const char *arg, 
814         struct slap_limits_set *limit ));
815 LDAP_SLAPD_F (int) limits_check LDAP_P((
816         Operation *op, SlapReply *rs ));
817 LDAP_SLAPD_F (void) limits_unparse_one LDAP_P(( 
818         struct slap_limits_set *limit, int which, struct berval *bv ));
819 LDAP_SLAPD_F (void) limits_unparse LDAP_P(( 
820         struct slap_limits *limit, struct berval *bv ));
821
822 /*
823  * lock.c
824  */
825 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
826         const char *type, FILE **lfp ));
827 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
828
829 /*
830  * matchedValues.c
831  */
832 LDAP_SLAPD_F (int) filter_matched_values( 
833         Operation       *op,
834         Attribute       *a,
835         char            ***e_flags );
836
837 /*
838  * modrdn.c
839  */
840 LDAP_SLAPD_F (int) slap_modrdn2mods(
841         Operation       *op,
842         SlapReply       *rs,
843         Entry           *e,
844         LDAPRDN         oldrdn,
845         LDAPRDN         newrdn,
846         Modifications   **pmod );
847
848 /*
849  * modify.c
850  */
851 LDAP_SLAPD_F( int ) slap_mods_no_update_check(
852         Modifications *ml,
853         const char **text,
854         char *textbuf, size_t textlen );
855
856 LDAP_SLAPD_F( int ) slap_mods_check(
857         Modifications *ml,
858         const char **text,
859         char *textbuf, size_t textlen, void *ctx );
860
861 LDAP_SLAPD_F( int ) slap_mods_opattrs(
862         Operation *op,
863         Modifications *mods,
864         Modifications **modlist,
865         const char **text,
866         char *textbuf, size_t textlen,
867         int manage_ctxcsn );
868
869 /*
870  * mods.c
871  */
872 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
873         Modification *mod,
874         int permissive,
875         const char **text, char *textbuf, size_t textlen );
876 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
877         Modification *mod,
878         int permissive,
879         const char **text, char *textbuf, size_t textlen );
880 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
881         Modification *mod,
882         int permissive,
883         const char **text, char *textbuf, size_t textlen );
884 LDAP_SLAPD_F( int ) modify_increment_values( Entry *e,
885         Modification *mod,
886         int permissive,
887         const char **text, char *textbuf, size_t textlen );
888
889 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
890 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
891 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
892
893 /*
894  * module.c
895  */
896 #ifdef SLAPD_MODULES
897
898 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
899 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
900
901 LDAP_SLAPD_F (int) load_null_module(
902         const void *module, const char *file_name);
903 LDAP_SLAPD_F (int) load_extop_module(
904         const void *module, const char *file_name);
905
906 LDAP_SLAPD_F (int) module_load LDAP_P((
907         const char* file_name,
908         int argc, char *argv[] ));
909 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
910
911 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
912         const void *module, const char *name));
913
914 #endif /* SLAPD_MODULES */
915
916 /* mr.c */
917 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
918 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
919 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
920         slap_mrule_defs_rec *def,
921         MatchingRule * associated,
922         const char **err ));
923 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
924
925 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
926         slap_mrule_defs_rec *def ));
927
928 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
929 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
930
931 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
932 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
933
934 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
935         AttributeType *at );
936
937 /*
938  * mra.c
939  */
940 LDAP_SLAPD_F (int) get_mra LDAP_P((
941         Operation *op,
942         BerElement *ber,
943         MatchingRuleAssertion **mra,
944         const char **text ));
945 LDAP_SLAPD_F (void) mra_free LDAP_P((
946         Operation *op,
947         MatchingRuleAssertion *mra,
948         int freeit ));
949
950 /* oc.c */
951 LDAP_SLAPD_F (int) oc_add LDAP_P((
952         LDAPObjectClass *oc,
953         int user,
954         const char **err));
955 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
956
957 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
958         const char *ocname));
959 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
960         struct berval *ocname));
961 LDAP_SLAPD_F (ObjectClass *) oc_bvfind_undef LDAP_P((
962         struct berval *ocname));
963 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
964         ObjectClass *sup,
965         ObjectClass *sub ));
966
967 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
968         Entry *, ObjectClass *oc, int set_flags ));
969 #define is_entry_alias(e)               \
970         (((e)->e_ocflags & SLAP_OC__END) \
971          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
972          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
973 #define is_entry_referral(e)    \
974         (((e)->e_ocflags & SLAP_OC__END) \
975          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
976          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
977 #define is_entry_subentry(e)    \
978         (((e)->e_ocflags & SLAP_OC__END) \
979          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
980          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
981 #define is_entry_collectiveAttributeSubentry(e) \
982         (((e)->e_ocflags & SLAP_OC__END) \
983          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
984          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
985 #define is_entry_dynamicObject(e)       \
986         (((e)->e_ocflags & SLAP_OC__END) \
987          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
988          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
989 #define is_entry_glue(e)        \
990         (((e)->e_ocflags & SLAP_OC__END) \
991          ? (((e)->e_ocflags & SLAP_OC_GLUE) != 0) \
992          : is_entry_objectclass((e), slap_schema.si_oc_glue, 1))
993 #define is_entry_syncProviderSubentry(e)        \
994         (((e)->e_ocflags & SLAP_OC__END) \
995          ? (((e)->e_ocflags & SLAP_OC_SYNCPROVIDERSUBENTRY) != 0) \
996          : is_entry_objectclass((e), slap_schema.si_oc_syncProviderSubentry, 1))
997 #define is_entry_syncConsumerSubentry(e)        \
998         (((e)->e_ocflags & SLAP_OC__END) \
999          ? (((e)->e_ocflags & SLAP_OC_SYNCCONSUMERSUBENTRY) != 0) \
1000          : is_entry_objectclass((e), slap_schema.si_oc_syncConsumerSubentry, 1))
1001
1002 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
1003
1004 /*
1005  * oidm.c
1006  */
1007 LDAP_SLAPD_F(char *) oidm_find(char *oid);
1008 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
1009 LDAP_SLAPD_F (void) oidm_unparse LDAP_P(( BerVarray *bva ));
1010 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
1011         const char *fname, int lineno, int argc, char **argv ));
1012
1013 /*
1014  * operation.c
1015  */
1016 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
1017 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
1018 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
1019 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
1020         BerElement *ber, ber_int_t msgid,
1021         ber_tag_t tag, ber_int_t id ));
1022
1023 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
1024 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
1025 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
1026
1027 /*
1028  * operational.c
1029  */
1030 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
1031 LDAP_SLAPD_F (Attribute *) slap_operational_entryDN( Entry *e );
1032 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
1033
1034 /*
1035  * overlays.c
1036  */
1037 LDAP_SLAPD_F (int) overlay_init( void );
1038
1039 /*
1040  * passwd.c
1041  */
1042 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
1043
1044 LDAP_SLAPD_F (int) slap_passwd_check(
1045         Operation               *op,
1046         Entry                   *e,
1047         Attribute               *a,
1048         struct berval           *cred,
1049         const char              **text );
1050
1051 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
1052
1053 LDAP_SLAPD_F (void) slap_passwd_hash(
1054         struct berval           *cred,
1055         struct berval           *hash,
1056         const char              **text );
1057
1058 LDAP_SLAPD_F (void) slap_passwd_hash_type(
1059         struct berval           *cred,
1060         struct berval           *hash,
1061         char                    *htype,
1062         const char              **text );
1063
1064 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
1065         struct berval           *cred );
1066
1067 LDAP_SLAPD_F (int) slap_passwd_parse(
1068         struct berval           *reqdata,
1069         struct berval           *id,
1070         struct berval           *oldpass,
1071         struct berval           *newpass,
1072         const char              **text );
1073
1074 LDAP_SLAPD_F (void) slap_passwd_init (void);
1075
1076 /*
1077  * phonetic.c
1078  */
1079 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
1080
1081 /*
1082  * referral.c
1083  */
1084 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
1085         const char *url ));
1086
1087 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
1088         Operation *op, Entry *e ));
1089
1090 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
1091         BerVarray refs,
1092         struct berval *base,
1093         struct berval *target,
1094         int scope ));
1095
1096 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
1097         Entry *e,
1098         struct berval *ndn,
1099         int *err,
1100         const char **text ));
1101
1102 /*
1103  * repl.c
1104  */
1105 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
1106         const char *uri, const char *host ));
1107 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
1108         int nr, const char *suffix ));
1109 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
1110         int nr, char *attrs, int exclude ));
1111 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
1112
1113 /*
1114  * result.c
1115  */
1116 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
1117 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
1118 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
1119 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
1120 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
1121 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
1122 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
1123 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
1124 LDAP_SLAPD_F (int) slap_null_cb LDAP_P(( Operation *op, SlapReply *rs ));
1125 LDAP_SLAPD_F (int) slap_freeself_cb LDAP_P(( Operation *op, SlapReply *rs ));
1126 LDAP_SLAPD_F (int) slap_replog_cb LDAP_P(( Operation *op, SlapReply *rs ));
1127
1128 LDAP_SLAPD_V( const struct berval ) slap_pre_read_bv;
1129 LDAP_SLAPD_V( const struct berval ) slap_post_read_bv;
1130 LDAP_SLAPD_F (int) slap_read_controls LDAP_P(( Operation *op, SlapReply *rs,
1131         Entry *e, const struct berval *oid, LDAPControl **ctrl ));
1132
1133 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
1134         int *code, char **matched, char **info ));
1135 LDAP_SLAPD_F (int) slap_map_api2result LDAP_P(( SlapReply *rs ));
1136 LDAP_SLAPD_F (slap_mask_t) slap_attr_flags LDAP_P(( AttributeName *an ));
1137
1138 LDAP_SLAPD_V( const struct berval ) slap_dummy_bv;
1139
1140 /*
1141  * root_dse.c
1142  */
1143 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
1144         Connection *conn,
1145         Entry **e,
1146         const char **text ));
1147
1148 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
1149         const char *file));
1150
1151 /*
1152  * sasl.c
1153  */
1154 LDAP_SLAPD_F (int) slap_sasl_init(void);
1155 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
1156 LDAP_SLAPD_F (void) slap_sasl_secprops_unparse( struct berval * );
1157 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
1158
1159 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
1160 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
1161
1162 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
1163         slap_ssf_t ssf, /* relative strength of external security */
1164         struct berval *authid );        /* asserted authenication id */
1165
1166 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
1167 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
1168
1169 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
1170
1171 LDAP_SLAPD_F (int) slap_sasl_setpass(
1172         Operation       *op,
1173         SlapReply       *rs );
1174
1175 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
1176         struct berval *id, char *user_realm, struct berval *dn, int flags );
1177
1178 /*
1179  * saslauthz.c
1180  */
1181 LDAP_SLAPD_F (int) slap_parse_user LDAP_P((
1182         struct berval *id, struct berval *user,
1183         struct berval *realm, struct berval *mech ));
1184 LDAP_SLAPD_F (int) slap_sasl_matches LDAP_P((
1185         Operation *op, BerVarray rules,
1186         struct berval *assertDN, struct berval *authc ));
1187 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
1188         Operation *op,
1189         struct berval *saslname,
1190         struct berval *dn,
1191         int flags ));
1192 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
1193         Operation *op,
1194         struct berval *authcid,
1195         struct berval *authzid ));
1196 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
1197         const char *match, const char *replace ));
1198 LDAP_SLAPD_F (void) slap_sasl_regexp_unparse LDAP_P(( BerVarray *bva ));
1199 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
1200 LDAP_SLAPD_F (const char *) slap_sasl_getpolicy LDAP_P(( void ));
1201 #ifdef SLAP_AUTH_REWRITE
1202 LDAP_SLAPD_F (int) slap_sasl_rewrite_config LDAP_P(( 
1203         const char *fname,
1204         int lineno,
1205         int argc, 
1206         char **argv ));
1207 #endif /* SLAP_AUTH_REWRITE */
1208
1209 /*
1210  * schema.c
1211  */
1212 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
1213
1214 /*
1215  * schema_check.c
1216  */
1217 LDAP_SLAPD_F( int ) oc_check_allowed(
1218         AttributeType *type,
1219         BerVarray oclist,
1220         ObjectClass *sc );
1221
1222 LDAP_SLAPD_F( int ) structural_class(
1223         BerVarray ocs,
1224         struct berval *scbv,
1225         ObjectClass **sc,
1226         const char **text,
1227         char *textbuf, size_t textlen );
1228
1229 LDAP_SLAPD_F( int ) entry_schema_check(
1230         Backend *be, Entry *e, Attribute *attrs,
1231         const char** text,
1232         char *textbuf, size_t textlen );
1233
1234 LDAP_SLAPD_F( int ) mods_structural_class(
1235         Modifications *mods,
1236         struct berval *oc,
1237         const char** text,
1238         char *textbuf, size_t textlen );
1239
1240 /*
1241  * schema_init.c
1242  */
1243 LDAP_SLAPD_V( int ) schema_init_done;
1244 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
1245 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
1246
1247 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
1248 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
1249
1250
1251 /*
1252  * schema_prep.c
1253  */
1254 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
1255 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
1256 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
1257
1258 /*
1259  * schemaparse.c
1260  */
1261 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
1262
1263 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1264         const char *fname, int lineno, char *line, char **argv ));
1265 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1266         const char *fname, int lineno, char *line, char **argv ));
1267 LDAP_SLAPD_F (int) parse_at LDAP_P((
1268         const char *fname, int lineno, char *line, char **argv ));
1269 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1270 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1271         char delim ));
1272
1273 /*
1274  * sessionlog.c
1275  */
1276 LDAP_SLAPD_F (int) slap_send_session_log LDAP_P((
1277                                         Operation *, Operation *, SlapReply *));
1278 LDAP_SLAPD_F (int) slap_add_session_log LDAP_P((
1279                                         Operation *, Operation *, Entry * ));
1280
1281 /*
1282  * sl_malloc.c
1283  */
1284 LDAP_SLAPD_F (void *) slap_sl_malloc LDAP_P((
1285         ber_len_t size, void *ctx ));
1286 LDAP_SLAPD_F (void *) slap_sl_realloc LDAP_P((
1287         void *block, ber_len_t size, void *ctx ));
1288 LDAP_SLAPD_F (void *) slap_sl_calloc LDAP_P((
1289         ber_len_t nelem, ber_len_t size, void *ctx ));
1290 LDAP_SLAPD_F (void) slap_sl_free LDAP_P((
1291         void *, void *ctx ));
1292
1293 LDAP_SLAPD_V (BerMemoryFunctions) slap_sl_mfuncs;
1294
1295 LDAP_SLAPD_F (void) slap_sl_mem_init LDAP_P(( void ));
1296 LDAP_SLAPD_F (void *) slap_sl_mem_create LDAP_P((
1297                                                 ber_len_t size, int stack, void *ctx ));
1298 LDAP_SLAPD_F (void) slap_sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
1299 LDAP_SLAPD_F (void) slap_sl_mem_destroy LDAP_P(( void *key, void *data ));
1300 LDAP_SLAPD_F (void *) slap_sl_context LDAP_P(( void *ptr ));
1301
1302 /*
1303  * starttls.c
1304  */
1305 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1306
1307 /*
1308  * str2filter.c
1309  */
1310 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1311 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
1312
1313 /*
1314  * syncrepl.c
1315  */
1316
1317 LDAP_SLAPD_F (void) init_syncrepl LDAP_P((syncinfo_t *));
1318 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1319 LDAP_SLAPD_F (int) syncrepl_message_to_entry LDAP_P((
1320                                         syncinfo_t *, Operation *, LDAPMessage *,
1321                                         Modifications **, Entry **, int ));
1322 LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
1323                                         syncinfo_t *, Operation*, Entry*,
1324                                         Modifications**,int, struct berval*,
1325                                         struct sync_cookie *,
1326                                         struct berval * ));
1327 LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
1328                                         syncinfo_t *, Operation *, struct berval *,
1329                                         struct sync_cookie * ));
1330 LDAP_SLAPD_F (void)  syncrepl_add_glue LDAP_P(( 
1331                                         Operation*, Entry* ));
1332 LDAP_SLAPD_F (Entry*) slap_create_syncrepl_entry LDAP_P((
1333                                         Backend *, struct berval *,
1334                                         struct berval *, struct berval * ));
1335 LDAP_SLAPD_F (struct berval *) slap_uuidstr_from_normalized LDAP_P((
1336                                         struct berval *, struct berval *, void * ));
1337 LDAP_SLAPD_F (void) syncinfo_free LDAP_P(( syncinfo_t * ));
1338
1339 /* syntax.c */
1340 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1341         const char *synname ));
1342 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1343         const char *syndesc, int *slen ));
1344 LDAP_SLAPD_F (int) syn_add LDAP_P((
1345         LDAPSyntax *syn,
1346         slap_syntax_defs_rec *def,
1347         const char **err ));
1348 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1349
1350 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1351         slap_syntax_defs_rec *def ));
1352
1353 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1354
1355 /*
1356  * user.c
1357  */
1358 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1359 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1360 #endif
1361
1362 /*
1363  * value.c
1364  */
1365 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1366         AttributeDescription *ad,
1367         MatchingRule *mr,
1368         unsigned usage,
1369         struct berval *in,
1370         struct berval *out,
1371         const char ** text,
1372         void *ctx ));
1373
1374 LDAP_SLAPD_F (int) value_match LDAP_P((
1375         int *match,
1376         AttributeDescription *ad,
1377         MatchingRule *mr,
1378         unsigned flags,
1379         struct berval *v1,
1380         void *v2,
1381         const char ** text ));
1382 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1383         AttributeDescription *ad,
1384         unsigned flags,
1385         BerVarray values,
1386         struct berval *value,
1387         void *ctx ));
1388
1389 LDAP_SLAPD_F (int) value_add LDAP_P((
1390         BerVarray *vals,
1391         BerVarray addvals ));
1392 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1393         BerVarray *vals,
1394         struct berval *addval ));
1395
1396 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1397 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1398
1399 #ifdef SLAP_ZONE_ALLOC
1400 /*
1401  * zn_malloc.c
1402  */
1403 LDAP_SLAPD_F (void *) slap_zn_malloc LDAP_P((ber_len_t, void *));
1404 LDAP_SLAPD_F (void *) slap_zn_realloc LDAP_P((void *, ber_len_t, void *));
1405 LDAP_SLAPD_F (void *) slap_zn_calloc LDAP_P((ber_len_t, ber_len_t, void *));
1406 LDAP_SLAPD_F (void) slap_zn_free LDAP_P((void *, void *));
1407
1408 LDAP_SLAPD_F (void *) slap_zn_mem_create LDAP_P((
1409                                                         ber_len_t, ber_len_t, ber_len_t, ber_len_t));
1410 LDAP_SLAPD_F (void) slap_zn_mem_destroy LDAP_P((void *));
1411 LDAP_SLAPD_F (int) slap_zn_validate LDAP_P((void *, void *, int));
1412 LDAP_SLAPD_F (int) slap_zn_invalidate LDAP_P((void *, void *));
1413 LDAP_SLAPD_F (int) slap_zh_rlock LDAP_P((void*));
1414 LDAP_SLAPD_F (int) slap_zh_runlock LDAP_P((void*));
1415 LDAP_SLAPD_F (int) slap_zh_wlock LDAP_P((void*));
1416 LDAP_SLAPD_F (int) slap_zh_wunlock LDAP_P((void*));
1417 LDAP_SLAPD_F (int) slap_zn_rlock LDAP_P((void*, void*));
1418 LDAP_SLAPD_F (int) slap_zn_runlock LDAP_P((void*, void*));
1419 LDAP_SLAPD_F (int) slap_zn_wlock LDAP_P((void*, void*));
1420 LDAP_SLAPD_F (int) slap_zn_wunlock LDAP_P((void*, void*));
1421 #endif
1422
1423 /*
1424  * Other...
1425  */
1426 LDAP_SLAPD_V (unsigned int) index_substr_if_minlen;
1427 LDAP_SLAPD_V (unsigned int) index_substr_if_maxlen;
1428 LDAP_SLAPD_V (unsigned int) index_substr_any_len;
1429 LDAP_SLAPD_V (unsigned int) index_substr_any_step;
1430
1431 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1432 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1433 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1434 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1435
1436 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1437 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1438
1439 LDAP_SLAPD_V (BerVarray)        default_referral;
1440 LDAP_SLAPD_V (const char)       Versionstr[];
1441
1442 LDAP_SLAPD_V (int)              global_gentlehup;
1443 LDAP_SLAPD_V (int)              global_idletimeout;
1444 LDAP_SLAPD_V (int)              global_schemacheck;
1445 LDAP_SLAPD_V (char *)   global_host;
1446 LDAP_SLAPD_V (char *)   global_realm;
1447 LDAP_SLAPD_V (char **)  default_passwd_hash;
1448 LDAP_SLAPD_V (int)              lber_debug;
1449 LDAP_SLAPD_V (int)              ldap_syslog;
1450 LDAP_SLAPD_V (struct berval)    default_search_base;
1451 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1452
1453 LDAP_SLAPD_V (slap_counters_t)  slap_counters;
1454
1455 LDAP_SLAPD_V (char *)           slapd_pid_file;
1456 LDAP_SLAPD_V (char *)           slapd_args_file;
1457 LDAP_SLAPD_V (time_t)           starttime;
1458
1459 /* use time(3) -- no mutex */
1460 #define slap_get_time() time( NULL )
1461
1462 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1463 LDAP_SLAPD_V (int)                      connection_pool_max;
1464
1465 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1466 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1467
1468 #ifndef HAVE_GMTIME_R
1469 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1470 #endif
1471
1472 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1473
1474 LDAP_SLAPD_V (int)              use_reverse_lookup;
1475
1476 LDAP_SLAPD_V (struct berval)    AllUser;
1477 LDAP_SLAPD_V (struct berval)    AllOper;
1478 LDAP_SLAPD_V (struct berval)    NoAttrs;
1479
1480 /*
1481  * operations
1482  */
1483 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1484 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1485 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1486 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1487 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1488 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1489 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1490 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1491 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1492 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1493
1494 /*
1495  * frontend operations
1496  */
1497 LDAP_SLAPD_F (int) fe_op_abandon LDAP_P((Operation *op, SlapReply *rs));
1498 LDAP_SLAPD_F (int) fe_op_add LDAP_P((Operation *op, SlapReply *rs));
1499 LDAP_SLAPD_F (int) fe_op_bind LDAP_P((Operation *op, SlapReply *rs));
1500 LDAP_SLAPD_F (int) fe_op_compare LDAP_P((Operation *op, SlapReply *rs));
1501 LDAP_SLAPD_F (int) fe_op_delete LDAP_P((Operation *op, SlapReply *rs));
1502 LDAP_SLAPD_F (int) fe_op_modify LDAP_P((Operation *op, SlapReply *rs));
1503 LDAP_SLAPD_F (int) fe_op_modrdn LDAP_P((Operation *op, SlapReply *rs));
1504 LDAP_SLAPD_F (int) fe_op_search LDAP_P((Operation *op, SlapReply *rs));
1505 #if 0
1506 LDAP_SLAPD_F (int) fe_op_unbind LDAP_P((Operation *op, SlapReply *rs));
1507 #endif
1508 LDAP_SLAPD_F (int) fe_extended LDAP_P((Operation *op, SlapReply *rs));
1509
1510 LDAP_END_DECL
1511
1512 #endif /* PROTO_SLAP_H */
1513