2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2004 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
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>.
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16 * All rights reserved.
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.
29 #include <ldap_cdefs.h>
37 LDAP_SLAPD_F (int) access_allowed_mask LDAP_P((
39 Entry *e, AttributeDescription *desc, struct berval *val,
41 AccessControlState *state,
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 ));
47 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
52 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
53 const char *fname, int lineno,
54 int argc, char **argv ));
56 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
57 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
59 #define ACCESSMASK_MAXLEN sizeof("unknown (+wrscan)")
60 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
61 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
62 LDAP_SLAPD_F (void) acl_destroy LDAP_P(( AccessControl*, AccessControl* ));
63 LDAP_SLAPD_F (void) acl_free LDAP_P(( AccessControl *a ));
68 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
70 AttributeDescription **ad,
73 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
75 AttributeDescription **ad,
78 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
80 #define ad_cmp(l,r) (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
81 ? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
82 ? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
84 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
85 AttributeDescription *sub,
86 AttributeDescription *super ));
88 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
89 AttributeDescription *desc,
90 AttributeName *attrs ));
92 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
94 AttributeDescription **ad,
97 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
99 AttributeDescription **ad,
100 const char **text ));
102 LDAP_SLAPD_F (AttributeDescription *) ad_find_tags LDAP_P((
104 struct berval *tags ));
106 LDAP_SLAPD_F (AttributeName *) str2anlist LDAP_P(( AttributeName *an,
107 char *str, const char *brkstr ));
108 LDAP_SLAPD_F (int) an_find LDAP_P(( AttributeName *a, struct berval *s ));
109 LDAP_SLAPD_F (int) ad_define_option LDAP_P(( const char *name,
110 const char *fname, int lineno ));
112 LDAP_SLAPD_F (MatchingRule *) ad_mr(
113 AttributeDescription *ad,
116 LDAP_SLAPD_V( AttributeName * ) slap_anlist_no_attrs;
117 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_user_attributes;
118 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_operational_attributes;
119 LDAP_SLAPD_V( AttributeName * ) slap_anlist_all_attributes;
124 LDAP_SLAPD_F (int) slap_mods2entry LDAP_P(( Modifications *mods, Entry **e,
125 int repl_user, int dup, const char **text, char *textbuf, size_t textlen ));
127 LDAP_SLAPD_F (int) slap_entry2mods LDAP_P(( Entry *e,
128 Modifications **mods, const char **text,
129 char *textbuf, size_t textlen ));
134 LDAP_SLAPD_F (void) at_config LDAP_P((
135 const char *fname, int lineno,
136 int argc, char **argv ));
137 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P((
139 LDAP_SLAPD_F (AttributeType *) at_bvfind LDAP_P((
140 struct berval *name ));
141 LDAP_SLAPD_F (int) at_find_in_list LDAP_P((
142 AttributeType *sat, AttributeType **list ));
143 LDAP_SLAPD_F (int) at_append_to_list LDAP_P((
144 AttributeType *sat, AttributeType ***listp ));
145 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P((
146 int pos, AttributeType ***listp ));
147 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
148 LDAP_SLAPD_F (int) at_add LDAP_P((
149 LDAPAttributeType *at, const char **err ));
150 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
152 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
154 AttributeType *super ));
156 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
160 LDAP_SLAPD_F (int) at_start LDAP_P(( AttributeType **at ));
161 LDAP_SLAPD_F (int) at_next LDAP_P(( AttributeType **at ));
166 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
167 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
169 #define attr_mergeit( e, d, v ) attr_merge( e, d, v, NULL /* FIXME */ )
170 #define attr_mergeit_one( e, d, v ) attr_merge_one( e, d, v, NULL /* FIXME */ )
172 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
173 AttributeDescription *desc,
176 LDAP_SLAPD_F (int) attr_merge_one LDAP_P(( Entry *e,
177 AttributeDescription *desc,
179 struct berval *nval ));
180 LDAP_SLAPD_F (int) attr_merge_normalize LDAP_P(( Entry *e,
181 AttributeDescription *desc,
182 BerVarray vals, void *memctx ));
183 LDAP_SLAPD_F (int) attr_merge_normalize_one LDAP_P(( Entry *e,
184 AttributeDescription *desc,
185 struct berval *val, void *memctx ));
186 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P((
187 Attribute *a, AttributeDescription *desc ));
188 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P((
189 Attribute *a, AttributeDescription *desc ));
190 LDAP_SLAPD_F (int) attr_delete LDAP_P((
191 Attribute **attrs, AttributeDescription *desc ));
193 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
194 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
200 LDAP_SLAPD_F (int) get_ava LDAP_P((
203 AttributeAssertion **ava,
205 const char **text ));
206 LDAP_SLAPD_F (void) ava_free LDAP_P((
208 AttributeAssertion *ava,
214 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
215 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
216 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
217 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
218 LDAP_SLAPD_F (int) backend_startup_one LDAP_P((Backend *be));
219 LDAP_SLAPD_F (int) backend_sync LDAP_P((Backend *be));
220 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
221 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
223 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
224 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
226 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
229 int noSubordinates ));
231 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be,
232 struct berval *suffix ));
233 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Operation *op ));
234 LDAP_SLAPD_F (int) be_isroot_dn LDAP_P(( Backend *be, struct berval *ndn ));
235 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Operation *op ));
236 LDAP_SLAPD_F (int) be_sync_update LDAP_P(( Operation *op ));
237 LDAP_SLAPD_F (int) be_slurp_update LDAP_P(( Operation *op ));
238 #define be_isupdate( op ) be_slurp_update( (op) )
239 LDAP_SLAPD_F (int) be_shadow_update LDAP_P(( Operation *op ));
240 LDAP_SLAPD_F (int) be_isupdate_dn LDAP_P(( Backend *be, struct berval *ndn ));
241 LDAP_SLAPD_F (struct berval *) be_root_dn LDAP_P(( Backend *be ));
242 LDAP_SLAPD_F (int) be_entry_get_rw LDAP_P(( struct slap_op *o,
243 struct berval *ndn, ObjectClass *oc,
244 AttributeDescription *at, int rw, Entry **e ));
245 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P((
246 Operation *o, Entry *e, int rw ));
247 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 )
248 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 )
250 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Operation *op, SlapReply *rs));
251 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
252 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
254 LDAP_SLAPD_F( int ) backend_check_restrictions LDAP_P((
257 struct berval *opdata ));
259 LDAP_SLAPD_F( int ) backend_check_referrals LDAP_P((
263 LDAP_SLAPD_F (int) backend_group LDAP_P((
266 struct berval *gr_ndn,
267 struct berval *op_ndn,
268 ObjectClass *group_oc,
269 AttributeDescription *group_at
272 LDAP_SLAPD_F (int) backend_attribute LDAP_P((
275 struct berval *entry_ndn,
276 AttributeDescription *entry_at,
281 LDAP_SLAPD_F (int) backend_operational LDAP_P((
290 LDAP_SLAPD_F (int) glue_back_initialize( BackendInfo *bi );
291 LDAP_SLAPD_F (int) glue_sub_init( void );
297 LDAP_SLAPD_F (int) overlay_register( slap_overinst *on );
298 LDAP_SLAPD_F (int) overlay_config( BackendDB *be, const char *ov );
299 LDAP_SLAPD_F (slap_overinst *) overlay_next( slap_overinst *on );
304 LDAP_SLAPD_V (BerMemoryFunctions) ch_mfuncs;
305 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
306 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
307 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
308 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
309 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
319 #ifdef LDAP_COMP_MATCH
320 LDAP_SLAPD_F (int) test_comp_filter_entry LDAP_P((
323 MatchingRuleAssertion* mr));
325 LDAP_SLAPD_F (int) get_comp_filter LDAP_P((
328 ComponentFilter** filt,
329 const char **text ));
331 LDAP_SLAPD_F (int) componentFilterMatch LDAP_P((
336 struct berval *value,
337 void *assertedValue ));
339 LDAP_SLAPD_F (int) componentFilterValidate LDAP_P((
341 struct berval* bv ));
347 LDAP_SLAPD_F (void) slap_free_ctrls LDAP_P((
349 LDAPControl **ctrls ));
350 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
354 LDAP_SLAPD_F (int) register_supported_control LDAP_P((
355 const char *controloid,
356 slap_mask_t controlmask,
358 SLAP_CTRL_PARSE_FN *controlparsefn ));
359 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
360 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
361 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
362 LDAP_SLAPD_F (int) get_supported_controls LDAP_P (( char ***ctrloidsp, slap_mask_t **ctrlmasks ));
367 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, int depth ));
368 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
369 LDAP_SLAPD_F (char **) str2clist LDAP_P(( char ***, char *, const char * ));
371 LDAP_SLAPD_V (int) slapi_plugins_used;
377 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
378 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
379 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
380 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
382 LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
384 ldap_pvt_thread_start_t *func,
386 LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
387 LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
390 LDAP_SLAPD_F (long) connection_init LDAP_P((
394 const char* peername,
397 struct berval *id ));
399 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
400 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
401 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
402 LDAP_GCCATTR((const));
404 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
405 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
407 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
409 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
410 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
411 Connection *, ber_socket_t *));
412 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
414 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
415 LDAP_SLAPD_F (void) connection_fake_init LDAP_P((
419 LDAP_SLAPD_F (void) connection_assign_nextid LDAP_P((Connection *));
424 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
426 LDAP_SLAPD_F (int) cr_add LDAP_P((
430 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
432 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
433 const char *crname));
434 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
435 struct berval *crname));
441 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_bv;
442 LDAP_SLAPD_V( const struct berval ) slap_ldapsync_cn_bv;
443 LDAP_SLAPD_F (void) slap_get_commit_csn LDAP_P(( Operation *, struct berval * ));
444 LDAP_SLAPD_F (void) slap_rewind_commit_csn LDAP_P(( Operation * ));
445 LDAP_SLAPD_F (void) slap_graduate_commit_csn LDAP_P(( Operation * ));
446 LDAP_SLAPD_F (Entry *) slap_create_context_csn_entry LDAP_P(( Backend *, struct berval *));
447 LDAP_SLAPD_F (int) slap_get_csn LDAP_P(( Operation *, char *, int, struct berval *, int ));
452 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s, int isactive);
453 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
454 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
455 LDAP_SLAPD_F (int) slapd_daemon(void);
456 LDAP_SLAPD_F (Listener **) slapd_get_listeners LDAP_P((void));
457 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wasactive, int wake));
459 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
460 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
461 LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
463 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
464 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
465 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
466 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
468 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
469 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
470 LDAP_SLAPD_V (int) slapd_register_slp;
476 #define dn_match(dn1, dn2) ( ber_bvcmp((dn1), (dn2)) == 0 )
477 #define bvmatch(bv1, bv2) ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
479 LDAP_SLAPD_F (int) dnValidate LDAP_P((
481 struct berval *val ));
482 LDAP_SLAPD_F (int) rdnValidate LDAP_P((
484 struct berval *val ));
486 LDAP_SLAPD_F (slap_mr_normalize_func) dnNormalize;
488 LDAP_SLAPD_F (slap_mr_normalize_func) rdnNormalize;
490 LDAP_SLAPD_F (slap_syntax_transform_func) dnPretty;
492 LDAP_SLAPD_F (slap_syntax_transform_func) rdnPretty;
494 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P((
497 struct berval *pretty,
498 struct berval *normal,
501 LDAP_SLAPD_F (int) dnMatch LDAP_P((
506 struct berval *value,
507 void *assertedValue ));
509 LDAP_SLAPD_F (int) rdnMatch LDAP_P((
514 struct berval *value,
515 void *assertedValue ));
518 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
519 const struct berval *dn, const struct berval *suffix ));
521 LDAP_SLAPD_F (int) dnIsOneLevelRDN LDAP_P(( struct berval *rdn ));
523 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
524 struct berval *dn, struct berval *rdn, void *ctx ));
526 LDAP_SLAPD_F (int) rdn_validate LDAP_P(( struct berval * rdn ));
528 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
530 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
531 struct berval * new_dn,
532 struct berval * parent_dn,
533 struct berval * newrdn,
536 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
538 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
540 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
542 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN *dn, int flags, void *ctx ));
543 #define dnPrettyDN(syntax, val, dn, ctx) \
544 dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY, ctx)
545 #define dnNormalDN(syntax, val, dn, ctx) \
546 dnPrettyNormalDN((syntax),(val),(dn), 0, ctx)
552 LDAP_SLAPD_V (const Entry) slap_entry_root;
554 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
556 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char *s ));
557 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
559 LDAP_SLAPD_F (void) entry_flatsize LDAP_P((
560 Entry *e, ber_len_t *siz, ber_len_t *len, int norm ));
561 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
562 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
564 LDAP_SLAPD_F (void) entry_clean LDAP_P(( Entry *e ));
565 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
566 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
567 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
568 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
569 LDAP_SLAPD_F (Entry *) entry_dup LDAP_P(( Entry *e ));
574 LDAP_SLAPD_F (int) exop_root_dse_info LDAP_P ((Entry *e));
576 LDAP_SLAPD_V( const struct berval ) slap_EXOP_CANCEL;
577 LDAP_SLAPD_V( const struct berval ) slap_EXOP_WHOAMI;
578 LDAP_SLAPD_V( const struct berval ) slap_EXOP_MODIFY_PASSWD;
579 LDAP_SLAPD_V( const struct berval ) slap_EXOP_START_TLS;
581 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
583 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
584 int index, struct berval *oid, int blen ));
586 LDAP_SLAPD_F (int) load_extop LDAP_P((
587 struct berval *ext_oid,
589 SLAP_EXTOP_MAIN_FN *ext_main ));
591 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
593 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
595 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
600 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
605 LDAP_SLAPD_F (int) get_filter LDAP_P((
609 const char **text ));
611 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
612 LDAP_SLAPD_F (void) filter_free_x LDAP_P(( Operation *op, Filter *f ));
613 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
614 LDAP_SLAPD_F (void) filter2bv_x LDAP_P(( Operation *op, Filter *f, struct berval *bv ));
616 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Operation *op, BerElement *ber,
617 ValuesReturnFilter **f,
618 const char **text ));
620 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( Operation *op, ValuesReturnFilter *f ));
621 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( Operation *op, ValuesReturnFilter *f, struct berval *fstr ));
623 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
624 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in,
625 struct berval *out ));
631 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
637 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
638 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
639 LDAP_SLAPD_V( const struct berval ) slap_true_bv;
640 LDAP_SLAPD_V( const struct berval ) slap_false_bv;
641 LDAP_SLAPD_V( struct slap_sync_cookie_s ) slap_sync_cookie;
642 LDAP_SLAPD_V( void * ) slap_tls_ctx;
647 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
652 LDAP_SLAPD_F (int) slap_init LDAP_P((int mode, const char* name));
653 LDAP_SLAPD_F (int) slap_startup LDAP_P(( Backend *be ));
654 LDAP_SLAPD_F (int) slap_shutdown LDAP_P(( Backend *be ));
655 LDAP_SLAPD_F (int) slap_destroy LDAP_P((void));
657 LDAP_SLAPD_V (char **) slap_known_controls;
662 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
663 LDAP_SLAPD_V (char *) ldap_srvtab;
664 LDAP_SLAPD_V (int) krbv4_ldap_auth();
670 LDAP_SLAPD_F (int) slap_build_sync_state_ctrl LDAP_P((
671 Operation *, SlapReply *, Entry *, int, LDAPControl **,
672 int, int, struct berval * ));
673 LDAP_SLAPD_F (int) slap_build_sync_done_ctrl LDAP_P((
674 Operation *, SlapReply *, LDAPControl **,
675 int, int, struct berval *, int ));
676 LDAP_SLAPD_F (int) slap_build_sync_state_ctrl_from_slog LDAP_P((
677 Operation *, SlapReply *, struct slog_entry *, int,
678 LDAPControl **, int, int, struct berval * ));
679 LDAP_SLAPD_F (int) slap_send_syncinfo LDAP_P((
680 Operation *, SlapReply *, int,
681 struct berval *, int, BerVarray, int ));
682 LDAP_SLAPD_F (void) slap_compose_sync_cookie LDAP_P((
683 Operation *, struct berval *, struct berval *, int, int ));
684 LDAP_SLAPD_F (void) slap_sync_cookie_free LDAP_P((
685 struct sync_cookie *, int free_cookie ));
686 LDAP_SLAPD_F (int) slap_parse_sync_cookie LDAP_P((
687 struct sync_cookie * ));
688 LDAP_SLAPD_F (int) slap_init_sync_cookie_ctxcsn LDAP_P((
689 struct sync_cookie * ));
690 LDAP_SLAPD_F (struct sync_cookie *) slap_dup_sync_cookie LDAP_P((
691 struct sync_cookie *, struct sync_cookie * ));
692 LDAP_SLAPD_F (int) slap_build_syncUUID_set LDAP_P((
693 Operation *, BerVarray *, Entry * ));
698 LDAP_SLAPD_F (int) limits_get LDAP_P((
699 Operation *op, struct berval *ndn,
700 struct slap_limits_set **limit ));
701 LDAP_SLAPD_F (int) limits_parse LDAP_P((
702 Backend *be, const char *fname, int lineno,
703 int argc, char **argv ));
704 LDAP_SLAPD_F (int) limits_parse_one LDAP_P(( const char *arg,
705 struct slap_limits_set *limit ));
706 LDAP_SLAPD_F (int) limits_check LDAP_P((
707 Operation *op, SlapReply *rs ));
712 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
713 const char *type, FILE **lfp ));
714 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
719 LDAP_SLAPD_F (int) filter_matched_values(
727 LDAP_SLAPD_F (int) slap_modrdn2mods(
733 Modifications **pmod );
738 LDAP_SLAPD_F( int ) slap_mods_check(
742 char *textbuf, size_t textlen, void *ctx );
744 LDAP_SLAPD_F( int ) slap_mods_opattrs(
747 Modifications **modlist,
749 char *textbuf, size_t textlen );
754 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
757 const char **text, char *textbuf, size_t textlen );
758 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
761 const char **text, char *textbuf, size_t textlen );
762 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
765 const char **text, char *textbuf, size_t textlen );
766 LDAP_SLAPD_F( int ) modify_increment_values( Entry *e,
769 const char **text, char *textbuf, size_t textlen );
771 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
772 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
773 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
780 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
781 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
783 LDAP_SLAPD_F (int) load_null_module(
784 const void *module, const char *file_name);
785 LDAP_SLAPD_F (int) load_extop_module(
786 const void *module, const char *file_name);
788 LDAP_SLAPD_F (int) module_load LDAP_P((
789 const char* file_name,
790 int argc, char *argv[] ));
791 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
793 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
794 const void *module, const char *name));
796 #endif /* SLAPD_MODULES */
799 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
800 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
801 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
802 slap_mrule_defs_rec *def,
803 MatchingRule * associated,
805 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
807 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
808 slap_mrule_defs_rec *def ));
810 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
811 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
813 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
814 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
816 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
822 LDAP_SLAPD_F (int) get_mra LDAP_P((
825 MatchingRuleAssertion **mra,
826 const char **text ));
827 LDAP_SLAPD_F (void) mra_free LDAP_P((
829 MatchingRuleAssertion *mra,
833 LDAP_SLAPD_F (int) oc_add LDAP_P((
837 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
839 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
840 const char *ocname));
841 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
842 struct berval *ocname));
843 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
847 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
848 Entry *, ObjectClass *oc, int set_flags ));
849 #define is_entry_alias(e) \
850 (((e)->e_ocflags & SLAP_OC__END) \
851 ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
852 : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
853 #define is_entry_referral(e) \
854 (((e)->e_ocflags & SLAP_OC__END) \
855 ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
856 : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
857 #define is_entry_subentry(e) \
858 (((e)->e_ocflags & SLAP_OC__END) \
859 ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
860 : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
861 #define is_entry_collectiveAttributeSubentry(e) \
862 (((e)->e_ocflags & SLAP_OC__END) \
863 ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
864 : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
865 #define is_entry_dynamicObject(e) \
866 (((e)->e_ocflags & SLAP_OC__END) \
867 ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
868 : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
869 #define is_entry_glue(e) \
870 (((e)->e_ocflags & SLAP_OC__END) \
871 ? (((e)->e_ocflags & SLAP_OC_GLUE) != 0) \
872 : is_entry_objectclass((e), slap_schema.si_oc_glue, 1))
873 #define is_entry_syncProviderSubentry(e) \
874 (((e)->e_ocflags & SLAP_OC__END) \
875 ? (((e)->e_ocflags & SLAP_OC_SYNCPROVIDERSUBENTRY) != 0) \
876 : is_entry_objectclass((e), slap_schema.si_oc_syncProviderSubentry, 1))
877 #define is_entry_syncConsumerSubentry(e) \
878 (((e)->e_ocflags & SLAP_OC__END) \
879 ? (((e)->e_ocflags & SLAP_OC_SYNCCONSUMERSUBENTRY) != 0) \
880 : is_entry_objectclass((e), slap_schema.si_oc_syncConsumerSubentry, 1))
882 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
887 LDAP_SLAPD_F(char *) oidm_find(char *oid);
888 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
889 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
890 const char *fname, int lineno, int argc, char **argv ));
895 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
896 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
897 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
898 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
899 BerElement *ber, ber_int_t msgid,
900 ber_tag_t tag, ber_int_t id ));
902 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
903 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
904 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
909 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
910 LDAP_SLAPD_F (Attribute *) slap_operational_entryDN( Entry *e );
911 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
916 LDAP_SLAPD_F (int) overlay_init( void );
921 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
923 LDAP_SLAPD_F (int) slap_passwd_check(
929 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
931 LDAP_SLAPD_F (void) slap_passwd_hash(
936 LDAP_SLAPD_F (void) slap_passwd_hash_type(
942 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
943 struct berval *cred );
945 LDAP_SLAPD_F (int) slap_passwd_parse(
946 struct berval *reqdata,
948 struct berval *oldpass,
949 struct berval *newpass,
955 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
960 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
963 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
964 Operation *op, Entry *e ));
966 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
969 struct berval *target,
972 LDAP_SLAPD_F (int) get_alias_dn LDAP_P((
976 const char **text ));
981 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
983 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
984 int nr, const char *suffix ));
985 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
986 int nr, char *attrs, int exclude ));
987 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
992 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
993 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
994 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
995 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
996 LDAP_SLAPD_F (void) slap_send_ldap_intermediate LDAP_P(( Operation *op, SlapReply *rs ));
997 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
998 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
999 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
1000 LDAP_SLAPD_F (int) slap_null_cb LDAP_P(( Operation *op, SlapReply *rs ));
1001 LDAP_SLAPD_F (int) slap_freeself_cb LDAP_P(( Operation *op, SlapReply *rs ));
1002 LDAP_SLAPD_F (int) slap_replog_cb LDAP_P(( Operation *op, SlapReply *rs ));
1004 LDAP_SLAPD_V( const struct berval ) slap_pre_read_bv;
1005 LDAP_SLAPD_V( const struct berval ) slap_post_read_bv;
1006 LDAP_SLAPD_F (int) slap_read_controls LDAP_P(( Operation *op, SlapReply *rs,
1007 Entry *e, const struct berval *oid, LDAPControl **ctrl ));
1009 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
1010 int *code, char **matched, char **info ));
1011 LDAP_SLAPD_F (int) slap_map_api2result LDAP_P(( SlapReply *rs ));
1012 LDAP_SLAPD_F (slap_mask_t) slap_attr_flags LDAP_P(( AttributeName *an ));
1014 LDAP_SLAPD_V( const struct berval ) slap_dummy_bv;
1019 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
1022 const char **text ));
1024 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
1030 LDAP_SLAPD_F (int) slap_sasl_init(void);
1031 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
1032 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
1034 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c, int reopen );
1035 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
1037 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
1038 slap_ssf_t ssf, /* relative strength of external security */
1039 struct berval *authid ); /* asserted authenication id */
1041 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
1042 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
1044 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
1046 LDAP_SLAPD_F (int) slap_sasl_setpass(
1050 LDAP_SLAPD_F (int) slap_sasl_config(
1057 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn, Operation *op,
1058 struct berval *id, char *user_realm, struct berval *dn, int flags );
1063 LDAP_SLAPD_F (int) slap_parse_user LDAP_P((
1064 struct berval *id, struct berval *user,
1065 struct berval *realm, struct berval *mech ));
1066 LDAP_SLAPD_F (int) slap_sasl_matches LDAP_P((
1067 Operation *op, BerVarray rules,
1068 struct berval *assertDN, struct berval *authc ));
1069 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
1071 struct berval *saslname,
1074 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
1076 struct berval *authcid,
1077 struct berval *authzid ));
1078 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
1079 const char *match, const char *replace ));
1080 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
1081 #ifdef SLAP_AUTH_REWRITE
1082 LDAP_SLAPD_F (int) slap_sasl_rewrite_config LDAP_P((
1087 #endif /* SLAP_AUTH_REWRITE */
1092 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
1097 LDAP_SLAPD_F( int ) oc_check_allowed(
1098 AttributeType *type,
1102 LDAP_SLAPD_F( int ) structural_class(
1104 struct berval *scbv,
1107 char *textbuf, size_t textlen );
1109 LDAP_SLAPD_F( int ) entry_schema_check(
1110 Backend *be, Entry *e, Attribute *attrs,
1112 char *textbuf, size_t textlen );
1114 LDAP_SLAPD_F( int ) mods_structural_class(
1115 Modifications *mods,
1118 char *textbuf, size_t textlen );
1123 LDAP_SLAPD_V( int ) schema_init_done;
1124 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
1125 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
1127 LDAP_SLAPD_F( slap_mr_indexer_func ) octetStringIndexer;
1128 LDAP_SLAPD_F( slap_mr_filter_func ) octetStringFilter;
1134 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
1135 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
1136 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
1141 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
1143 LDAP_SLAPD_F (int) parse_cr LDAP_P((
1144 const char *fname, int lineno, char *line, char **argv ));
1145 LDAP_SLAPD_F (int) parse_oc LDAP_P((
1146 const char *fname, int lineno, char *line, char **argv ));
1147 LDAP_SLAPD_F (int) parse_at LDAP_P((
1148 const char *fname, int lineno, char *line, char **argv ));
1149 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
1150 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
1156 LDAP_SLAPD_F (int) slap_send_session_log LDAP_P((
1157 Operation *, Operation *, SlapReply *));
1158 LDAP_SLAPD_F (int) slap_add_session_log LDAP_P((
1159 Operation *, Operation *, Entry * ));
1164 LDAP_SLAPD_F (void *) slap_sl_malloc LDAP_P((
1165 ber_len_t size, void *ctx ));
1166 LDAP_SLAPD_F (void *) slap_sl_realloc LDAP_P((
1167 void *block, ber_len_t size, void *ctx ));
1168 LDAP_SLAPD_F (void *) slap_sl_calloc LDAP_P((
1169 ber_len_t nelem, ber_len_t size, void *ctx ));
1170 LDAP_SLAPD_F (void) slap_sl_free LDAP_P((
1171 void *, void *ctx ));
1173 LDAP_SLAPD_V (BerMemoryFunctions) slap_sl_mfuncs;
1175 LDAP_SLAPD_F (void) slap_sl_mem_init LDAP_P(( void ));
1176 LDAP_SLAPD_F (void *) slap_sl_mem_create LDAP_P(( ber_len_t size, void *ctx ));
1177 LDAP_SLAPD_F (void) slap_sl_mem_detach LDAP_P(( void *ctx, void *memctx ));
1178 LDAP_SLAPD_F (void) slap_sl_mem_destroy LDAP_P(( void *key, void *data ));
1179 LDAP_SLAPD_F (void *) slap_sl_context LDAP_P(( void *ptr ));
1184 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
1189 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
1190 LDAP_SLAPD_F (Filter *) str2filter_x LDAP_P(( Operation *op, const char *str ));
1196 LDAP_SLAPD_V (struct runqueue_s) syncrepl_rq;
1198 LDAP_SLAPD_F (void) init_syncrepl LDAP_P((syncinfo_t *));
1199 LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
1200 LDAP_SLAPD_F (int) syncrepl_message_to_entry LDAP_P((
1201 syncinfo_t *, Operation *, LDAPMessage *,
1202 Modifications **, Entry **, int ));
1203 LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
1204 syncinfo_t *, Operation*, Entry*,
1205 Modifications*,int, struct berval*,
1206 struct sync_cookie * ));
1207 LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
1208 syncinfo_t *, Operation *, struct berval *,
1209 struct sync_cookie * ));
1210 LDAP_SLAPD_F (void) syncrepl_add_glue LDAP_P((
1211 Operation*, Entry* ));
1212 LDAP_SLAPD_F (Entry*) slap_create_syncrepl_entry LDAP_P((
1213 Backend *, struct berval *,
1214 struct berval *, struct berval * ));
1215 LDAP_SLAPD_F (struct berval *) slap_uuidstr_from_normalized LDAP_P((
1216 struct berval *, struct berval *, void * ));
1217 LDAP_SLAPD_F (int) syncrepl_isupdate LDAP_P(( Operation * ));
1218 LDAP_SLAPD_F (int) syncrepl_isupdate_dn LDAP_P(( Backend *, struct berval * ));
1221 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
1222 const char *synname ));
1223 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1224 const char *syndesc, int *slen ));
1225 LDAP_SLAPD_F (int) syn_add LDAP_P((
1227 slap_syntax_defs_rec *def,
1228 const char **err ));
1229 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1231 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1232 slap_syntax_defs_rec *def ));
1234 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1239 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1240 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1246 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
1247 AttributeDescription *ad,
1255 LDAP_SLAPD_F (int) value_match LDAP_P((
1257 AttributeDescription *ad,
1262 const char ** text ));
1263 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1264 AttributeDescription *ad,
1267 struct berval *value,
1270 LDAP_SLAPD_F (int) value_add LDAP_P((
1272 BerVarray addvals ));
1273 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1275 struct berval *addval ));
1277 /* assumes (x) > (y) returns 1 if true, 0 otherwise */
1278 #define SLAP_PTRCMP(x, y) ((x) < (y) ? -1 : (x) > (y))
1283 LDAP_SLAPD_V(unsigned) num_subordinates;
1285 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1286 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1287 LDAP_SLAPD_V (int) slap_conn_max_pending;
1288 LDAP_SLAPD_V (int) slap_conn_max_pending_auth;
1290 LDAP_SLAPD_V (slap_mask_t) global_allows;
1291 LDAP_SLAPD_V (slap_mask_t) global_disallows;
1293 LDAP_SLAPD_V (BerVarray) default_referral;
1294 LDAP_SLAPD_V (char *) replogfile;
1295 LDAP_SLAPD_V (const char) Versionstr[];
1297 LDAP_SLAPD_V (int) global_gentlehup;
1298 LDAP_SLAPD_V (int) global_idletimeout;
1299 LDAP_SLAPD_V (int) global_schemacheck;
1300 LDAP_SLAPD_V (char *) global_host;
1301 LDAP_SLAPD_V (char *) global_realm;
1302 LDAP_SLAPD_V (char **) default_passwd_hash;
1303 LDAP_SLAPD_V (int) lber_debug;
1304 LDAP_SLAPD_V (int) ldap_syslog;
1305 LDAP_SLAPD_V (struct berval) default_search_base;
1306 LDAP_SLAPD_V (struct berval) default_search_nbase;
1308 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) num_sent_mutex;
1309 LDAP_SLAPD_V (unsigned long) num_bytes_sent;
1310 LDAP_SLAPD_V (unsigned long) num_pdu_sent;
1311 LDAP_SLAPD_V (unsigned long) num_entries_sent;
1312 LDAP_SLAPD_V (unsigned long) num_refs_sent;
1314 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) num_ops_mutex;
1315 LDAP_SLAPD_V (unsigned long) num_ops_completed;
1316 LDAP_SLAPD_V (unsigned long) num_ops_initiated;
1317 #ifdef SLAPD_MONITOR
1318 LDAP_SLAPD_V (unsigned long) num_ops_completed_[SLAP_OP_LAST];
1319 LDAP_SLAPD_V (unsigned long) num_ops_initiated_[SLAP_OP_LAST];
1320 #endif /* SLAPD_MONITOR */
1322 LDAP_SLAPD_V (char *) slapd_pid_file;
1323 LDAP_SLAPD_V (char *) slapd_args_file;
1324 LDAP_SLAPD_V (time_t) starttime;
1326 /* use time(3) -- no mutex */
1327 #define slap_get_time() time( NULL )
1329 LDAP_SLAPD_V (ldap_pvt_thread_pool_t) connection_pool;
1330 LDAP_SLAPD_V (int) connection_pool_max;
1332 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) entry2str_mutex;
1333 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) replog_mutex;
1335 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1336 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) passwd_mutex;
1338 #ifndef HAVE_GMTIME_R
1339 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t) gmtime_mutex;
1342 LDAP_SLAPD_V (ber_socket_t) dtblsize;
1344 LDAP_SLAPD_V (int) use_reverse_lookup;
1346 LDAP_SLAPD_V (struct berval) AllUser;
1347 LDAP_SLAPD_V (struct berval) AllOper;
1348 LDAP_SLAPD_V (struct berval) NoAttrs;
1353 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1354 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1355 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1356 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1357 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1358 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1359 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1360 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1361 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1362 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1365 * frontend operations
1368 LDAP_SLAPD_F (int) fe_op_abandon LDAP_P((Operation *op, SlapReply *rs));
1370 LDAP_SLAPD_F (int) fe_op_add LDAP_P((Operation *op, SlapReply *rs));
1371 LDAP_SLAPD_F (int) fe_op_bind LDAP_P((Operation *op, SlapReply *rs));
1372 LDAP_SLAPD_F (int) fe_op_compare LDAP_P((Operation *op, SlapReply *rs));
1373 LDAP_SLAPD_F (int) fe_op_delete LDAP_P((Operation *op, SlapReply *rs));
1374 LDAP_SLAPD_F (int) fe_op_modify LDAP_P((Operation *op, SlapReply *rs));
1375 LDAP_SLAPD_F (int) fe_op_modrdn LDAP_P((Operation *op, SlapReply *rs));
1376 LDAP_SLAPD_F (int) fe_op_search LDAP_P((Operation *op, SlapReply *rs));
1378 LDAP_SLAPD_F (int) fe_op_unbind LDAP_P((Operation *op, SlapReply *rs));
1380 LDAP_SLAPD_F (int) fe_extended LDAP_P((Operation *op, SlapReply *rs));
1384 #endif /* PROTO_SLAP_H */