]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
be1ce92e6052daeb9d228c83dee12d018c8d4a6f
[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, int depth ));
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
458 #ifdef LDAP_SLAPI
459 LDAP_SLAPD_V (int) slapi_plugins_used;
460 #endif
461
462 /*
463  * connection.c
464  */
465 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
466 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
467 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
468 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
469
470 LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
471         ber_socket_t s,
472         ldap_pvt_thread_start_t *func,
473         void *arg ));
474 LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
475 LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
476
477
478 LDAP_SLAPD_F (long) connection_init LDAP_P((
479         ber_socket_t s,
480         Listener* url,
481         const char* dnsname,
482         const char* peername,
483         int use_tls,
484         slap_ssf_t ssf,
485         struct berval *id ));
486
487 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
488 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
489 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
490         LDAP_GCCATTR((const));
491
492 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
493 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
494
495 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
496
497 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
498 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
499         Connection *, ber_socket_t *));
500 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
501
502 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
503 LDAP_SLAPD_F (void) connection_fake_init LDAP_P((
504         Connection *conn,
505         Operation *op,
506         void *threadctx ));
507 LDAP_SLAPD_F (void) connection_assign_nextid LDAP_P((Connection *));
508
509 /*
510  * cr.c
511  */
512 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
513
514 LDAP_SLAPD_F (int) cr_add LDAP_P((
515         LDAPContentRule *oc,
516         int user,
517         const char **err));
518 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
519
520 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
521         const char *crname));
522 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
523         struct berval *crname));
524
525 /*
526  * ctxcsn.c
527  */
528
529 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_bv;
530 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_cn_bv;
531 LDAP_SLAPD_F (void) slap_get_commit_csn LDAP_P((
532         Operation *, struct berval *maxcsn, struct berval *curcsn ));
533 LDAP_SLAPD_F (void) slap_rewind_commit_csn LDAP_P(( Operation * ));
534 LDAP_SLAPD_F (void) slap_graduate_commit_csn LDAP_P(( Operation * ));
535 LDAP_SLAPD_F (Entry *) slap_create_context_csn_entry LDAP_P(( Backend *, struct berval *));
536 LDAP_SLAPD_F (int) slap_get_csn LDAP_P(( Operation *, char *, int, struct berval *, int ));
537 LDAP_SLAPD_F (void) slap_queue_csn LDAP_P(( Operation *, struct berval * ));
538
539 /*
540  * daemon.c
541  */
542 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s, int isactive);
543 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
544 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
545 LDAP_SLAPD_F (int) slapd_daemon(void);
546 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
547 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wasactive, int wake));
548
549 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
550 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
551 LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
552
553 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
554 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
555 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
556 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
557
558 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
559 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
560 LDAP_SLAPD_V (int) slapd_register_slp;
561 LDAP_SLAPD_V (slap_ssf_t) local_ssf;
562 LDAP_SLAPD_V (struct runqueue_s) slapd_rq;
563
564 /*
565  * dn.c
566  */
567
568 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
569 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
570
571 LDAP_SLAPD_F (int) dnValidate LDAP_P((
572         Syntax *syntax, 
573         struct berval *val ));
574 LDAP_SLAPD_F (int) rdnValidate LDAP_P((
575         Syntax *syntax, 
576         struct berval *val ));
577
578 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
579
580 LDAP_SLAPD_F (slap_mr_normalize_func) rdnNormalize;
581
582 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
583
584 LDAP_SLAPD_F (slap_syntax_transform_func) rdnPretty;
585
586 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
587         Syntax *syntax, 
588         struct berval *val, 
589         struct berval *pretty,
590         struct berval *normal,
591         void *ctx ));
592
593 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
594         int *matchp, 
595         slap_mask_t flags, 
596         Syntax *syntax, 
597         MatchingRule *mr,
598         struct berval *value, 
599         void *assertedValue ));
600
601 LDAP_SLAPD_F (int) dnRelativeMatch LDAP_P(( 
602         int *matchp, 
603         slap_mask_t flags, 
604         Syntax *syntax, 
605         MatchingRule *mr,
606         struct berval *value, 
607         void *assertedValue ));
608
609 LDAP_SLAPD_F (int) rdnMatch LDAP_P(( 
610         int *matchp, 
611         slap_mask_t flags, 
612         Syntax *syntax, 
613         MatchingRule *mr,
614         struct berval *value, 
615         void *assertedValue ));
616
617
618 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
619         const struct berval *dn, const struct berval *suffix ));
620
621 LDAP_SLAPD_F (int) dnIsOneLevelRDN LDAP_P(( struct berval *rdn ));
622
623 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
624         struct berval *dn, struct berval *rdn, void *ctx ));
625
626 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( struct berval * rdn ));
627
628 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
629
630 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
631         struct berval * new_dn,
632         struct berval * parent_dn,
633         struct berval * newrdn,
634         void *memctx ));
635
636 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
637 LDAP_SLAPD_F (void) dnRdn LDAP_P(( struct berval *dn, struct berval *rdn ));
638
639 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
640
641 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
642
643 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
644 #define dnPrettyDN(syntax, val, dn, ctx) \
645         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
646 #define dnNormalDN(syntax, val, dn, ctx) \
647         dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
648
649 typedef int (SLAP_CERT_MAP_FN) LDAP_P(( void *ssl, struct berval *dn ));
650 LDAP_SLAPD_F (int) register_certificate_map_function LDAP_P(( SLAP_CERT_MAP_FN *fn ));
651
652 /*
653  * entry.c
654  */
655 LDAP_SLAPD_V (const Entry) slap_entry_root;
656
657 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
658
659 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
660 LDAP_SLAPD_F (Entry *) str2entry2 LDAP_P(( char *s, int checkvals ));
661 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
662
663 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
664         Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
665 #ifdef SLAP_ZONE_ALLOC
666 LDAP_SLAPD_F (int) entry_decode LDAP_P((
667                                                 struct berval *bv, Entry **e, void *ctx ));
668 #else
669 LDAP_SLAPD_F (int) entry_decode LDAP_P((
670                                                 struct berval *bv, Entry **e ));
671 #endif
672 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
673
674 LDAP_SLAPD_F (void) entry_clean LDAP_P(( Entry *e ));
675 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
676 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
677 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
678 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
679 LDAP_SLAPD_F (Entry *) entry_dup LDAP_P(( Entry *e ));
680
681 /*
682  * extended.c
683  */
684 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
685
686 #define exop_is_write( op )     ((op->ore_flags & SLAP_EXOP_WRITES) != 0)
687
688 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
689 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
690 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
691 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
692
693 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
694
695 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
696         int index, struct berval *oid, int blen ));
697
698 LDAP_SLAPD_F (int) load_extop LDAP_P((
699         struct berval *ext_oid,
700         slap_mask_t flags,
701         SLAP_EXTOP_MAIN_FN *ext_main ));
702
703 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
704
705 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
706
707 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
708
709 /*
710  * cancel.c
711  */
712 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
713
714 /*
715  * filter.c
716  */
717 LDAP_SLAPD_F (int) get_filter LDAP_P((
718         Operation *op,
719         BerElement *ber,
720         Filter **filt,
721         const char **text ));
722
723 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
724 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
725 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
726 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
727
728 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
729         ValuesReturnFilter **f,
730         const char **text ));
731
732 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
733 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
734
735 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
736 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
737         struct berval *out ));
738
739 /*
740  * filterentry.c
741  */
742
743 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
744
745 /*
746  * frontend.c
747  */
748 LDAP_SLAPD_F (int) frontend_init LDAP_P(( void ));
749
750 /*
751  * globals.c
752  */
753
754 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
755 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
756 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
757 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
758 LDAP_SLAPD_V( struct slap_sync_cookie_s ) slap_sync_cookie;
759 LDAP_SLAPD_V( void * ) slap_tls_ctx;
760
761 /*
762  * index.c
763  */
764 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
765 LDAP_SLAPD_F (void) slap_index2bvlen LDAP_P(( slap_mask_t idx, struct berval *bv ));
766 LDAP_SLAPD_F (void) slap_index2bv LDAP_P(( slap_mask_t idx, struct berval *bv ));
767
768 /*
769  * init.c
770  */
771 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
772 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
773 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
774 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
775
776 LDAP_SLAPD_V (char *)   slap_known_controls[];
777
778 /*
779  * kerberos.c
780  */
781 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
782 LDAP_SLAPD_V (char *)   ldap_srvtab;
783 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
784 #endif
785
786 /*
787  * ldapsync.c
788  */
789 LDAP_SLAPD_F (void) slap_compose_sync_cookie LDAP_P((
790                                 Operation *, struct berval *, struct berval *, int ));
791 LDAP_SLAPD_F (void) slap_sync_cookie_free LDAP_P((
792                                 struct sync_cookie *, int free_cookie ));
793 LDAP_SLAPD_F (int) slap_parse_sync_cookie LDAP_P((
794                                 struct sync_cookie * ));
795 LDAP_SLAPD_F (int) slap_init_sync_cookie_ctxcsn LDAP_P((
796                                 struct sync_cookie * ));
797 LDAP_SLAPD_F (struct sync_cookie *) slap_dup_sync_cookie LDAP_P((
798                                 struct sync_cookie *, struct sync_cookie * ));
799 LDAP_SLAPD_F (int) slap_build_syncUUID_set LDAP_P((
800                                 Operation *, BerVarray *, Entry * ));
801
802 /*
803  * limits.c
804  */
805 LDAP_SLAPD_F (int) limits_get LDAP_P((
806         Operation *op, struct berval *ndn,
807         struct slap_limits_set **limit ));
808 LDAP_SLAPD_F (int) limits_parse LDAP_P((
809         Backend *be, const char *fname, int lineno,
810         int argc, char **argv ));
811 LDAP_SLAPD_F (int) limits_parse_one LDAP_P(( const char *arg, 
812         struct slap_limits_set *limit ));
813 LDAP_SLAPD_F (int) limits_check LDAP_P((
814         Operation *op, SlapReply *rs ));
815 LDAP_SLAPD_F (void) limits_unparse_one LDAP_P(( 
816         struct slap_limits_set *limit, int which, struct berval *bv ));
817 LDAP_SLAPD_F (void) limits_unparse LDAP_P(( 
818         struct slap_limits *limit, struct berval *bv ));
819
820 /*
821  * lock.c
822  */
823 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
824         const char *type, FILE **lfp ));
825 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
826
827 /*
828  * matchedValues.c
829  */
830 LDAP_SLAPD_F (int) filter_matched_values( 
831         Operation       *op,
832         Attribute       *a,
833         char            ***e_flags );
834
835 /*
836  * modrdn.c
837  */
838 LDAP_SLAPD_F (int) slap_modrdn2mods(
839         Operation       *op,
840         SlapReply       *rs,
841         Entry           *e,
842         LDAPRDN         oldrdn,
843         LDAPRDN         newrdn,
844         Modifications   **pmod );
845
846 /*
847  * modify.c
848  */
849 LDAP_SLAPD_F( int ) slap_mods_no_update_check(
850         Modifications *ml,
851         const char **text,
852         char *textbuf, size_t textlen );
853
854 LDAP_SLAPD_F( int ) slap_mods_check(
855         Modifications *ml,
856         const char **text,
857         char *textbuf, size_t textlen, void *ctx );
858
859 LDAP_SLAPD_F( int ) slap_mods_opattrs(
860         Operation *op,
861         Modifications *mods,
862         Modifications **modlist,
863         const char **text,
864         char *textbuf, size_t textlen,
865         int manage_ctxcsn );
866
867 /*
868  * mods.c
869  */
870 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
871         Modification *mod,
872         int permissive,
873         const char **text, char *textbuf, size_t textlen );
874 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
875         Modification *mod,
876         int permissive,
877         const char **text, char *textbuf, size_t textlen );
878 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
879         Modification *mod,
880         int permissive,
881         const char **text, char *textbuf, size_t textlen );
882 LDAP_SLAPD_F( int ) modify_increment_values( Entry *e,
883         Modification *mod,
884         int permissive,
885         const char **text, char *textbuf, size_t textlen );
886
887 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
888 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
889 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
890
891 /*
892  * module.c
893  */
894 #ifdef SLAPD_MODULES
895
896 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
897 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
898
899 LDAP_SLAPD_F (int) load_null_module(
900         const void *module, const char *file_name);
901 LDAP_SLAPD_F (int) load_extop_module(
902         const void *module, const char *file_name);
903
904 LDAP_SLAPD_F (int) module_load LDAP_P((
905         const char* file_name,
906         int argc, char *argv[] ));
907 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
908
909 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
910         const void *module, const char *name));
911
912 #endif /* SLAPD_MODULES */
913
914 /* mr.c */
915 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
916 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
917 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
918         slap_mrule_defs_rec *def,
919         MatchingRule * associated,
920         const char **err ));
921 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
922
923 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
924         slap_mrule_defs_rec *def ));
925
926 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
927 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
928
929 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
930 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
931
932 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
933         AttributeType *at );
934
935 /*
936  * mra.c
937  */
938 LDAP_SLAPD_F (int) get_mra LDAP_P((
939         Operation *op,
940         BerElement *ber,
941         MatchingRuleAssertion **mra,
942         const char **text ));
943 LDAP_SLAPD_F (void) mra_free LDAP_P((
944         Operation *op,
945         MatchingRuleAssertion *mra,
946         int freeit ));
947
948 /* oc.c */
949 LDAP_SLAPD_F (int) oc_add LDAP_P((
950         LDAPObjectClass *oc,
951         int user,
952         const char **err));
953 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
954
955 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
956         const char *ocname));
957 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
958         struct berval *ocname));
959 LDAP_SLAPD_F (ObjectClass *) oc_bvfind_undef LDAP_P((
960         struct berval *ocname));
961 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
962         ObjectClass *sup,
963         ObjectClass *sub ));
964
965 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
966         Entry *, ObjectClass *oc, int set_flags ));
967 #define is_entry_alias(e)               \
968         (((e)->e_ocflags & SLAP_OC__END) \
969          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
970          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
971 #define is_entry_referral(e)    \
972         (((e)->e_ocflags & SLAP_OC__END) \
973          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
974          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
975 #define is_entry_subentry(e)    \
976         (((e)->e_ocflags & SLAP_OC__END) \
977          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
978          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
979 #define is_entry_collectiveAttributeSubentry(e) \
980         (((e)->e_ocflags & SLAP_OC__END) \
981          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
982          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
983 #define is_entry_dynamicObject(e)       \
984         (((e)->e_ocflags & SLAP_OC__END) \
985          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
986          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
987 #define is_entry_glue(e)        \
988         (((e)->e_ocflags & SLAP_OC__END) \
989          ? (((e)->e_ocflags & SLAP_OC_GLUE) != 0) \
990          : is_entry_objectclass((e), slap_schema.si_oc_glue, 1))
991 #define is_entry_syncProviderSubentry(e)        \
992         (((e)->e_ocflags & SLAP_OC__END) \
993          ? (((e)->e_ocflags & SLAP_OC_SYNCPROVIDERSUBENTRY) != 0) \
994          : is_entry_objectclass((e), slap_schema.si_oc_syncProviderSubentry, 1))
995 #define is_entry_syncConsumerSubentry(e)        \
996         (((e)->e_ocflags & SLAP_OC__END) \
997          ? (((e)->e_ocflags & SLAP_OC_SYNCCONSUMERSUBENTRY) != 0) \
998          : is_entry_objectclass((e), slap_schema.si_oc_syncConsumerSubentry, 1))
999
1000 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
1001
1002 /*
1003  * oidm.c
1004  */
1005 LDAP_SLAPD_F(char *) oidm_find(char *oid);
1006 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
1007 LDAP_SLAPD_F (void) oidm_unparse LDAP_P(( BerVarray *bva ));
1008 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
1009         const char *fname, int lineno, int argc, char **argv ));
1010
1011 /*
1012  * operation.c
1013  */
1014 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
1015 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
1016 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
1017 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
1018         BerElement *ber, ber_int_t msgid,
1019         ber_tag_t tag, ber_int_t id ));
1020
1021 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
1022 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
1023 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
1024
1025 /*
1026  * operational.c
1027  */
1028 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
1029 LDAP_SLAPD_F (Attribute *) slap_operational_entryDN( Entry *e );
1030 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
1031
1032 /*
1033  * overlays.c
1034  */
1035 LDAP_SLAPD_F (int) overlay_init( void );
1036
1037 /*
1038  * passwd.c
1039  */
1040 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
1041
1042 LDAP_SLAPD_F (int) slap_passwd_check(
1043         Operation               *op,
1044         Entry                   *e,
1045         Attribute               *a,
1046         struct berval           *cred,
1047         const char              **text );
1048
1049 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
1050
1051 LDAP_SLAPD_F (void) slap_passwd_hash(
1052         struct berval           *cred,
1053         struct berval           *hash,
1054         const char              **text );
1055
1056 LDAP_SLAPD_F (void) slap_passwd_hash_type(
1057         struct berval           *cred,
1058         struct berval           *hash,
1059         char                    *htype,
1060         const char              **text );
1061
1062 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
1063         struct berval           *cred );
1064
1065 LDAP_SLAPD_F (int) slap_passwd_parse(
1066         struct berval           *reqdata,
1067         struct berval           *id,
1068         struct berval           *oldpass,
1069         struct berval           *newpass,
1070         const char              **text );
1071
1072 /*
1073  * phonetic.c
1074  */
1075 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
1076
1077 /*
1078  * referral.c
1079  */
1080 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
1081         const char *url ));
1082
1083 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
1084         Operation *op, Entry *e ));
1085
1086 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
1087         BerVarray refs,
1088         struct berval *base,
1089         struct berval *target,
1090         int scope ));
1091
1092 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
1093         Entry *e,
1094         struct berval *ndn,
1095         int *err,
1096         const char **text ));
1097
1098 /*
1099  * repl.c
1100  */
1101 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
1102         const char *uri, const char *host ));
1103 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
1104         int nr, const char *suffix ));
1105 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
1106         int nr, char *attrs, int exclude ));
1107 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
1108
1109 /*
1110  * result.c
1111  */
1112 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
1113 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
1114 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
1115 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
1116 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
1117 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
1118 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
1119 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
1120 LDAP_SLAPD_F (int) slap_null_cb LDAP_P(( Operation *op, SlapReply *rs ));
1121 LDAP_SLAPD_F (int) slap_freeself_cb LDAP_P(( Operation *op, SlapReply *rs ));
1122 LDAP_SLAPD_F (int) slap_replog_cb LDAP_P(( Operation *op, SlapReply *rs ));
1123
1124 LDAP_SLAPD_V( const struct berval ) slap_pre_read_bv;
1125 LDAP_SLAPD_V( const struct berval ) slap_post_read_bv;
1126 LDAP_SLAPD_F (int) slap_read_controls LDAP_P(( Operation *op, SlapReply *rs,
1127         Entry *e, const struct berval *oid, LDAPControl **ctrl ));
1128
1129 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
1130         int *code, char **matched, char **info ));
1131 LDAP_SLAPD_F (int) slap_map_api2result LDAP_P(( SlapReply *rs ));
1132 LDAP_SLAPD_F (slap_mask_t) slap_attr_flags LDAP_P(( AttributeName *an ));
1133
1134 LDAP_SLAPD_V( const struct berval ) slap_dummy_bv;
1135
1136 /*
1137  * root_dse.c
1138  */
1139 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
1140         Connection *conn,
1141         Entry **e,
1142         const char **text ));
1143
1144 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
1145         const char *file));
1146
1147 /*
1148  * sasl.c
1149  */
1150 LDAP_SLAPD_F (int) slap_sasl_init(void);
1151 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
1152 LDAP_SLAPD_F (void) slap_sasl_secprops_unparse( struct berval * );
1153 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
1154
1155 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
1156 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
1157
1158 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
1159         slap_ssf_t ssf, /* relative strength of external security */
1160         struct berval *authid );        /* asserted authenication id */
1161
1162 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
1163 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
1164
1165 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
1166
1167 LDAP_SLAPD_F (int) slap_sasl_setpass(
1168         Operation       *op,
1169         SlapReply       *rs );
1170
1171 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
1172         struct berval *id, char *user_realm, struct berval *dn, int flags );
1173
1174 /*
1175  * saslauthz.c
1176  */
1177 LDAP_SLAPD_F (int) slap_parse_user LDAP_P((
1178         struct berval *id, struct berval *user,
1179         struct berval *realm, struct berval *mech ));
1180 LDAP_SLAPD_F (int) slap_sasl_matches LDAP_P((
1181         Operation *op, BerVarray rules,
1182         struct berval *assertDN, struct berval *authc ));
1183 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
1184         Operation *op,
1185         struct berval *saslname,
1186         struct berval *dn,
1187         int flags ));
1188 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
1189         Operation *op,
1190         struct berval *authcid,
1191         struct berval *authzid ));
1192 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
1193         const char *match, const char *replace ));
1194 LDAP_SLAPD_F (void) slap_sasl_regexp_unparse LDAP_P(( BerVarray *bva ));
1195 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
1196 LDAP_SLAPD_F (const char *) slap_sasl_getpolicy LDAP_P(( void ));
1197 #ifdef SLAP_AUTH_REWRITE
1198 LDAP_SLAPD_F (int) slap_sasl_rewrite_config LDAP_P(( 
1199         const char *fname,
1200         int lineno,
1201         int argc, 
1202         char **argv ));
1203 #endif /* SLAP_AUTH_REWRITE */
1204
1205 /*
1206  * schema.c
1207  */
1208 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
1209
1210 /*
1211  * schema_check.c
1212  */
1213 LDAP_SLAPD_F( int ) oc_check_allowed(
1214         AttributeType *type,
1215         BerVarray oclist,
1216         ObjectClass *sc );
1217
1218 LDAP_SLAPD_F( int ) structural_class(
1219         BerVarray ocs,
1220         struct berval *scbv,
1221         ObjectClass **sc,
1222         const char **text,
1223         char *textbuf, size_t textlen );
1224
1225 LDAP_SLAPD_F( int ) entry_schema_check(
1226         Backend *be, Entry *e, Attribute *attrs,
1227         const char** text,
1228         char *textbuf, size_t textlen );
1229
1230 LDAP_SLAPD_F( int ) mods_structural_class(
1231         Modifications *mods,
1232         struct berval *oc,
1233         const char** text,
1234         char *textbuf, size_t textlen );
1235
1236 /*
1237  * schema_init.c
1238  */
1239 LDAP_SLAPD_V( int ) schema_init_done;
1240 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
1241 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
1242
1243 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
1244 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
1245
1246
1247 /*
1248  * schema_prep.c
1249  */
1250 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
1251 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
1252 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
1253
1254 /*
1255  * schemaparse.c
1256  */
1257 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
1258
1259 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1260         const char *fname, int lineno, char *line, char **argv ));
1261 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1262         const char *fname, int lineno, char *line, char **argv ));
1263 LDAP_SLAPD_F (int) parse_at LDAP_P((
1264         const char *fname, int lineno, char *line, char **argv ));
1265 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1266 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1267         char delim ));
1268
1269 /*
1270  * sessionlog.c
1271  */
1272 LDAP_SLAPD_F (int) slap_send_session_log LDAP_P((
1273                                         Operation *, Operation *, SlapReply *));
1274 LDAP_SLAPD_F (int) slap_add_session_log LDAP_P((
1275                                         Operation *, Operation *, Entry * ));
1276
1277 /*
1278  * sl_malloc.c
1279  */
1280 LDAP_SLAPD_F (void *) slap_sl_malloc LDAP_P((
1281         ber_len_t size, void *ctx ));
1282 LDAP_SLAPD_F (void *) slap_sl_realloc LDAP_P((
1283         void *block, ber_len_t size, void *ctx ));
1284 LDAP_SLAPD_F (void *) slap_sl_calloc LDAP_P((
1285         ber_len_t nelem, ber_len_t size, void *ctx ));
1286 LDAP_SLAPD_F (void) slap_sl_free LDAP_P((
1287         void *, void *ctx ));
1288
1289 LDAP_SLAPD_V (BerMemoryFunctions) slap_sl_mfuncs;
1290
1291 LDAP_SLAPD_F (void) slap_sl_mem_init LDAP_P(( void ));
1292 LDAP_SLAPD_F (void *) slap_sl_mem_create LDAP_P((
1293                                                 ber_len_t size, int stack, void *ctx ));
1294 LDAP_SLAPD_F (void) slap_sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
1295 LDAP_SLAPD_F (void) slap_sl_mem_destroy LDAP_P(( void *key, void *data ));
1296 LDAP_SLAPD_F (void *) slap_sl_context LDAP_P(( void *ptr ));
1297
1298 /*
1299  * starttls.c
1300  */
1301 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1302
1303 /*
1304  * str2filter.c
1305  */
1306 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1307 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
1308
1309 /*
1310  * syncrepl.c
1311  */
1312
1313 LDAP_SLAPD_F (void) init_syncrepl LDAP_P((syncinfo_t *));
1314 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1315 LDAP_SLAPD_F (int) syncrepl_message_to_entry LDAP_P((
1316                                         syncinfo_t *, Operation *, LDAPMessage *,
1317                                         Modifications **, Entry **, int ));
1318 LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
1319                                         syncinfo_t *, Operation*, Entry*,
1320                                         Modifications**,int, struct berval*,
1321                                         struct sync_cookie *,
1322                                         struct berval * ));
1323 LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
1324                                         syncinfo_t *, Operation *, struct berval *,
1325                                         struct sync_cookie * ));
1326 LDAP_SLAPD_F (void)  syncrepl_add_glue LDAP_P(( 
1327                                         Operation*, Entry* ));
1328 LDAP_SLAPD_F (Entry*) slap_create_syncrepl_entry LDAP_P((
1329                                         Backend *, struct berval *,
1330                                         struct berval *, struct berval * ));
1331 LDAP_SLAPD_F (struct berval *) slap_uuidstr_from_normalized LDAP_P((
1332                                         struct berval *, struct berval *, void * ));
1333 LDAP_SLAPD_F (void) syncinfo_free LDAP_P(( syncinfo_t * ));
1334
1335 /* syntax.c */
1336 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1337         const char *synname ));
1338 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1339         const char *syndesc, int *slen ));
1340 LDAP_SLAPD_F (int) syn_add LDAP_P((
1341         LDAPSyntax *syn,
1342         slap_syntax_defs_rec *def,
1343         const char **err ));
1344 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1345
1346 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1347         slap_syntax_defs_rec *def ));
1348
1349 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1350
1351 /*
1352  * user.c
1353  */
1354 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1355 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1356 #endif
1357
1358 /*
1359  * value.c
1360  */
1361 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1362         AttributeDescription *ad,
1363         MatchingRule *mr,
1364         unsigned usage,
1365         struct berval *in,
1366         struct berval *out,
1367         const char ** text,
1368         void *ctx ));
1369
1370 LDAP_SLAPD_F (int) value_match LDAP_P((
1371         int *match,
1372         AttributeDescription *ad,
1373         MatchingRule *mr,
1374         unsigned flags,
1375         struct berval *v1,
1376         void *v2,
1377         const char ** text ));
1378 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1379         AttributeDescription *ad,
1380         unsigned flags,
1381         BerVarray values,
1382         struct berval *value,
1383         void *ctx ));
1384
1385 LDAP_SLAPD_F (int) value_add LDAP_P((
1386         BerVarray *vals,
1387         BerVarray addvals ));
1388 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1389         BerVarray *vals,
1390         struct berval *addval ));
1391
1392 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1393 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1394
1395 #ifdef SLAP_ZONE_ALLOC
1396 /*
1397  * zn_malloc.c
1398  */
1399 LDAP_SLAPD_F (void *) slap_zn_malloc LDAP_P((ber_len_t, void *));
1400 LDAP_SLAPD_F (void *) slap_zn_realloc LDAP_P((void *, ber_len_t, void *));
1401 LDAP_SLAPD_F (void *) slap_zn_calloc LDAP_P((ber_len_t, ber_len_t, void *));
1402 LDAP_SLAPD_F (void) slap_zn_free LDAP_P((void *, void *));
1403
1404 LDAP_SLAPD_F (void *) slap_zn_mem_create LDAP_P((
1405                                                         ber_len_t, ber_len_t, ber_len_t, ber_len_t));
1406 LDAP_SLAPD_F (void) slap_zn_mem_destroy LDAP_P((void *));
1407 LDAP_SLAPD_F (int) slap_zn_validate LDAP_P((void *, void *, int));
1408 LDAP_SLAPD_F (int) slap_zn_invalidate LDAP_P((void *, void *));
1409 LDAP_SLAPD_F (int) slap_zh_rlock LDAP_P((void*));
1410 LDAP_SLAPD_F (int) slap_zh_runlock LDAP_P((void*));
1411 LDAP_SLAPD_F (int) slap_zh_wlock LDAP_P((void*));
1412 LDAP_SLAPD_F (int) slap_zh_wunlock LDAP_P((void*));
1413 LDAP_SLAPD_F (int) slap_zn_rlock LDAP_P((void*, void*));
1414 LDAP_SLAPD_F (int) slap_zn_runlock LDAP_P((void*, void*));
1415 LDAP_SLAPD_F (int) slap_zn_wlock LDAP_P((void*, void*));
1416 LDAP_SLAPD_F (int) slap_zn_wunlock LDAP_P((void*, void*));
1417 #endif
1418
1419 /*
1420  * Other...
1421  */
1422 LDAP_SLAPD_V (unsigned int) index_substr_if_minlen;
1423 LDAP_SLAPD_V (unsigned int) index_substr_if_maxlen;
1424 LDAP_SLAPD_V (unsigned int) index_substr_any_len;
1425 LDAP_SLAPD_V (unsigned int) index_substr_any_step;
1426
1427 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1428 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1429 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1430 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1431
1432 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1433 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1434
1435 LDAP_SLAPD_V (BerVarray)        default_referral;
1436 LDAP_SLAPD_V (const char)       Versionstr[];
1437
1438 LDAP_SLAPD_V (int)              global_gentlehup;
1439 LDAP_SLAPD_V (int)              global_idletimeout;
1440 LDAP_SLAPD_V (int)              global_schemacheck;
1441 LDAP_SLAPD_V (char *)   global_host;
1442 LDAP_SLAPD_V (char *)   global_realm;
1443 LDAP_SLAPD_V (char **)  default_passwd_hash;
1444 LDAP_SLAPD_V (int)              lber_debug;
1445 LDAP_SLAPD_V (int)              ldap_syslog;
1446 LDAP_SLAPD_V (struct berval)    default_search_base;
1447 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1448
1449 LDAP_SLAPD_V (slap_counters_t)  slap_counters;
1450
1451 LDAP_SLAPD_V (char *)           slapd_pid_file;
1452 LDAP_SLAPD_V (char *)           slapd_args_file;
1453 LDAP_SLAPD_V (time_t)           starttime;
1454
1455 /* use time(3) -- no mutex */
1456 #define slap_get_time() time( NULL )
1457
1458 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1459 LDAP_SLAPD_V (int)                      connection_pool_max;
1460
1461 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1462 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1463
1464 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1465 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1466 #endif
1467 #ifndef HAVE_GMTIME_R
1468 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1469 #endif
1470
1471 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1472
1473 LDAP_SLAPD_V (int)              use_reverse_lookup;
1474
1475 LDAP_SLAPD_V (struct berval)    AllUser;
1476 LDAP_SLAPD_V (struct berval)    AllOper;
1477 LDAP_SLAPD_V (struct berval)    NoAttrs;
1478
1479 /*
1480  * operations
1481  */
1482 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1483 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1484 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1485 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1486 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1487 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1488 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1489 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1490 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1491 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1492
1493 /*
1494  * frontend operations
1495  */
1496 LDAP_SLAPD_F (int) fe_op_abandon LDAP_P((Operation *op, SlapReply *rs));
1497 LDAP_SLAPD_F (int) fe_op_add LDAP_P((Operation *op, SlapReply *rs));
1498 LDAP_SLAPD_F (int) fe_op_bind LDAP_P((Operation *op, SlapReply *rs));
1499 LDAP_SLAPD_F (int) fe_op_compare LDAP_P((Operation *op, SlapReply *rs));
1500 LDAP_SLAPD_F (int) fe_op_delete LDAP_P((Operation *op, SlapReply *rs));
1501 LDAP_SLAPD_F (int) fe_op_modify LDAP_P((Operation *op, SlapReply *rs));
1502 LDAP_SLAPD_F (int) fe_op_modrdn LDAP_P((Operation *op, SlapReply *rs));
1503 LDAP_SLAPD_F (int) fe_op_search LDAP_P((Operation *op, SlapReply *rs));
1504 #if 0
1505 LDAP_SLAPD_F (int) fe_op_unbind LDAP_P((Operation *op, SlapReply *rs));
1506 #endif
1507 LDAP_SLAPD_F (int) fe_extended LDAP_P((Operation *op, SlapReply *rs));
1508
1509 LDAP_END_DECL
1510
1511 #endif /* PROTO_SLAP_H */
1512