disable referral rewrite in default suffix massage

This commit is contained in:
Pierangelo Masarati 2004-11-13 12:15:40 +00:00
parent 6ec7770a79
commit d7bdb8cb24
6 changed files with 82 additions and 60 deletions

View File

@ -299,9 +299,11 @@ searchFilterAttrDN search
compareDN compare compareDN compare
compareAttrDN compare AVA compareAttrDN compare AVA
addDN add addDN add
addAttrDN add AVA (including "ref") addAttrDN add AVA (DN portion of "ref" excluded)
modifyDN modify modifyDN modify
modifyAttrDN modify AVA (including "ref") modifyAttrDN modify AVA (DN portion of "ref" excluded)
referralAttrDN add/modify DN portion of referrals
(default to none)
modrDN modrdn modrDN modrdn
newSuperiorDN modrdn newSuperiorDN modrdn
deleteDN delete deleteDN delete
@ -321,7 +323,7 @@ searchAttrDN search AVA (only if defined; defaults
matchedDN all ops (only if applicable; defaults matchedDN all ops (only if applicable; defaults
to searchEntryDN) to searchEntryDN)
referralDN all ops (only if applicable; defaults referralDN all ops (only if applicable; defaults
to searchEntryDN) to none)
.fi .fi
.RE .RE
.LP .LP

View File

@ -47,10 +47,10 @@ rwm_op_dn_massage( Operation *op, SlapReply *rs, void *cookie )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = (char *)cookie; dc.ctx = (char *)cookie;
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = ((int *)cookie)[0]; dc.tofrom = ((int *)cookie)[0];
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
/* NOTE: in those cases where only the ndn is available, /* NOTE: in those cases where only the ndn is available,
* and the caller sets op->o_req_dn = op->o_req_ndn, * and the caller sets op->o_req_dn = op->o_req_ndn,
@ -96,10 +96,10 @@ rwm_add( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "addDN" ); rc = rwm_op_dn_massage( op, rs, "addDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "addDN massage error" ); send_ldap_error( op, rs, rc, "addDN massage error" );
@ -140,25 +140,25 @@ rwm_add( Operation *op, SlapReply *rs )
rc = rwm_dnattr_rewrite( op, rs, "addAttrDN", rc = rwm_dnattr_rewrite( op, rs, "addAttrDN",
(*ap)->a_vals, (*ap)->a_vals,
(*ap)->a_nvals ? &(*ap)->a_nvals : NULL ); (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_dnattr_rewrite( op, rs, &rc, (*ap)->a_vals, rc = rwm_dnattr_rewrite( op, rs, &rc, (*ap)->a_vals,
(*ap)->a_nvals ? &(*ap)->a_nvals : NULL ); (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc ) { if ( rc ) {
goto cleanup_attr; goto cleanup_attr;
} }
} else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) { } else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) {
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_referral_rewrite( op, rs, "addAttrDN", rc = rwm_referral_rewrite( op, rs, "referralAttrDN",
(*ap)->a_vals, (*ap)->a_vals,
(*ap)->a_nvals ? &(*ap)->a_nvals : NULL ); (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_referral_rewrite( op, rs, &rc, (*ap)->a_vals, rc = rwm_referral_rewrite( op, rs, &rc, (*ap)->a_vals,
(*ap)->a_nvals ? &(*ap)->a_nvals : NULL ); (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
goto cleanup_attr; goto cleanup_attr;
} }
@ -194,10 +194,10 @@ rwm_bind( Operation *op, SlapReply *rs )
( void )rewrite_session_init( rwmap->rwm_rw, op->o_conn ); ( void )rewrite_session_init( rwmap->rwm_rw, op->o_conn );
rc = rwm_op_dn_massage( op, rs, "bindDN" ); rc = rwm_op_dn_massage( op, rs, "bindDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "bindDN massage error" ); send_ldap_error( op, rs, rc, "bindDN massage error" );
@ -216,7 +216,7 @@ rwm_unbind( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rewrite_session_delete( rwmap->rwm_rw, op->o_conn ); rewrite_session_delete( rwmap->rwm_rw, op->o_conn );
#endif #endif /* ENABLE_REWRITE */
return SLAP_CB_CONTINUE; return SLAP_CB_CONTINUE;
} }
@ -234,10 +234,10 @@ rwm_compare( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "compareDN" ); rc = rwm_op_dn_massage( op, rs, "compareDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "compareDN massage error" ); send_ldap_error( op, rs, rc, "compareDN massage error" );
@ -282,10 +282,10 @@ rwm_compare( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_dnattr_rewrite( op, rs, "compareAttrDN", NULL, mapped_valsp ); rc = rwm_dnattr_rewrite( op, rs, "compareAttrDN", NULL, mapped_valsp );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_dnattr_rewrite( op, rs, &rc, NULL, mapped_valsp ); rc = rwm_dnattr_rewrite( op, rs, &rc, NULL, mapped_valsp );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
@ -308,10 +308,10 @@ rwm_delete( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "deleteDN" ); rc = rwm_op_dn_massage( op, rs, "deleteDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "deleteDN massage error" ); send_ldap_error( op, rs, rc, "deleteDN massage error" );
@ -333,10 +333,10 @@ rwm_modify( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "modifyDN" ); rc = rwm_op_dn_massage( op, rs, "modifyDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "modifyDN massage error" ); send_ldap_error( op, rs, rc, "modifyDN massage error" );
@ -414,23 +414,25 @@ rwm_modify( Operation *op, SlapReply *rs )
rc = rwm_dnattr_rewrite( op, rs, "modifyAttrDN", rc = rwm_dnattr_rewrite( op, rs, "modifyAttrDN",
(*mlp)->sml_values, (*mlp)->sml_values,
(*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL ); (*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_dnattr_rewrite( op, rs, &rc, rc = rwm_dnattr_rewrite( op, rs, &rc,
(*mlp)->sml_values, (*mlp)->sml_values,
(*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL ); (*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL );
#endif #endif /* ! ENABLE_REWRITE */
} else if ( (*mlp)->sml_desc == slap_schema.si_ad_ref ) { } else if ( (*mlp)->sml_desc == slap_schema.si_ad_ref ) {
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_referral_rewrite( op, rs, "modifyAttrDN", rc = rwm_referral_rewrite( op, rs,
"referralAttrDN",
(*mlp)->sml_values, (*mlp)->sml_values,
(*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL ); (*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_referral_rewrite( op, rs, &rc, rc = rwm_referral_rewrite( op, rs, &rc,
(*mlp)->sml_values, (*mlp)->sml_values,
(*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL ); (*mlp)->sml_nvalues ? &(*mlp)->sml_nvalues : NULL );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
goto cleanup_mod; goto cleanup_mod;
} }
@ -479,10 +481,10 @@ rwm_modrdn( Operation *op, SlapReply *rs )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = "newSuperiorDN"; dc.ctx = "newSuperiorDN";
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
rc = rwm_dn_massage( &dc, op->orr_newSup, &newSup, &nnewSup ); rc = rwm_dn_massage( &dc, op->orr_newSup, &newSup, &nnewSup );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
@ -503,10 +505,10 @@ rwm_modrdn( Operation *op, SlapReply *rs )
*/ */
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "renameDN" ); rc = rwm_op_dn_massage( op, rs, "renameDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "renameDN massage error" ); send_ldap_error( op, rs, rc, "renameDN massage error" );
@ -560,10 +562,10 @@ rwm_search( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "searchDN" ); rc = rwm_op_dn_massage( op, rs, "searchDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
text = "searchDN massage error"; text = "searchDN massage error";
goto error_return; goto error_return;
@ -577,10 +579,10 @@ rwm_search( Operation *op, SlapReply *rs )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = "searchFilterAttrDN"; dc.ctx = "searchFilterAttrDN";
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
rc = rwm_filter_map_rewrite( &dc, op->ors_filter, &fstr ); rc = rwm_filter_map_rewrite( &dc, op->ors_filter, &fstr );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
@ -658,10 +660,10 @@ rwm_extended( Operation *op, SlapReply *rs )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
rc = rwm_op_dn_massage( op, rs, "extendedDN" ); rc = rwm_op_dn_massage( op, rs, "extendedDN" );
#else #else /* ! ENABLE_REWRITE */
rc = 1; rc = 1;
rc = rwm_op_dn_massage( op, rs, &rc ); rc = rwm_op_dn_massage( op, rs, &rc );
#endif #endif /* ! ENABLE_REWRITE */
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
op->o_bd->bd_info = (BackendInfo *)on->on_info; op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, rc, "extendedDN massage error" ); send_ldap_error( op, rs, rc, "extendedDN massage error" );
@ -692,10 +694,10 @@ rwm_matched( Operation *op, SlapReply *rs )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = "matchedDN"; dc.ctx = "matchedDN";
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
ber_str2bv( rs->sr_matched, 0, 0, &dn ); ber_str2bv( rs->sr_matched, 0, 0, &dn );
rc = rwm_dn_massage( &dc, &dn, &mdn, NULL ); rc = rwm_dn_massage( &dc, &dn, &mdn, NULL );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
@ -735,10 +737,10 @@ rwm_attrs( Operation *op, SlapReply *rs, Attribute** a_first )
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = NULL; dc.rs = NULL;
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
/* FIXME: the entries are in the remote mapping form; /* FIXME: the entries are in the remote mapping form;
* so we need to select those attributes we are willing * so we need to select those attributes we are willing
@ -835,7 +837,7 @@ rwm_attrs( Operation *op, SlapReply *rs, Attribute** a_first )
{ {
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
dc.ctx = "searchAttrDN"; dc.ctx = "searchAttrDN";
#endif #endif /* ENABLE_REWRITE */
rc = rwm_dnattr_result_rewrite( &dc, (*ap)->a_vals ); rc = rwm_dnattr_result_rewrite( &dc, (*ap)->a_vals );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
goto cleanup_attr; goto cleanup_attr;
@ -844,7 +846,7 @@ rwm_attrs( Operation *op, SlapReply *rs, Attribute** a_first )
} else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) { } else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) {
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
dc.ctx = "searchAttrDN"; dc.ctx = "searchAttrDN";
#endif #endif /* ENABLE_REWRITE */
rc = rwm_referral_result_rewrite( &dc, (*ap)->a_vals ); rc = rwm_referral_result_rewrite( &dc, (*ap)->a_vals );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
goto cleanup_attr; goto cleanup_attr;
@ -895,10 +897,10 @@ rwm_send_entry( Operation *op, SlapReply *rs )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = NULL; dc.rs = NULL;
dc.ctx = "searchEntryDN"; dc.ctx = "searchEntryDN";
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
e = rs->sr_entry; e = rs->sr_entry;
flags = rs->sr_flags; flags = rs->sr_flags;
@ -1143,10 +1145,10 @@ rwm_response( Operation *op, SlapReply *rs )
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = NULL; dc.rs = NULL;
dc.ctx = "referralDN"; dc.ctx = "referralDN";
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = 0; dc.tofrom = 0;
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
rc = rwm_referral_result_rewrite( &dc, rs->sr_ref ); rc = rwm_referral_result_rewrite( &dc, rs->sr_ref );
if ( rc != LDAP_SUCCESS ) { if ( rc != LDAP_SUCCESS ) {
rc = 1; rc = 1;
@ -1309,9 +1311,11 @@ rwm_init(void)
} }
#if SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC #if SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC
int init_module(int argc, char *argv[]) { int
init_module( int argc, char *argv[] )
{
return rwm_init(); return rwm_init();
} }
#endif #endif /* SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC */
#endif /* SLAPD_OVER_RWM */ #endif /* SLAPD_OVER_RWM */

View File

@ -31,6 +31,9 @@
LDAP_BEGIN_DECL LDAP_BEGIN_DECL
/* define to enable referral DN massage by default */
#undef RWM_REFERRAL_REWRITE
struct ldapmap { struct ldapmap {
int drop_missing; int drop_missing;
@ -87,10 +90,10 @@ typedef struct dncookie {
Connection *conn; Connection *conn;
char *ctx; char *ctx;
SlapReply *rs; SlapReply *rs;
#else #else /* !ENABLE_REWRITE */
int normalized; int normalized;
int tofrom; int tofrom;
#endif #endif /* !ENABLE_REWRITE */
} dncookie; } dncookie;
int rwm_dn_massage( dncookie *dc, struct berval *in, int rwm_dn_massage( dncookie *dc, struct berval *in,

View File

@ -338,12 +338,25 @@ rwm_suffix_massage_config(
rargv[ 4 ] = NULL; rargv[ 4 ] = NULL;
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv ); rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
#ifdef RWM_REFERRAL_REWRITE
/* FIXME: we don't want this on by default, do we? */
rargv[ 0 ] = "rewriteContext"; rargv[ 0 ] = "rewriteContext";
rargv[ 1 ] = "referralDN"; rargv[ 1 ] = "referralDN";
rargv[ 2 ] = "alias"; rargv[ 2 ] = "alias";
rargv[ 3 ] = "searchEntryDN"; rargv[ 3 ] = "searchEntryDN";
rargv[ 4 ] = NULL; rargv[ 4 ] = NULL;
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv ); rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
#else /* ! RWM_REFERRAL_REWRITE */
rargv[ 0 ] = "rewriteContext";
rargv[ 1 ] = "referralAttrDN";
rargv[ 2 ] = NULL;
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
rargv[ 0 ] = "rewriteContext";
rargv[ 1 ] = "referralDN";
rargv[ 2 ] = NULL;
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
#endif /* ! RWM_REFERRAL_REWRITE */
rargv[ 0 ] = "rewriteContext"; rargv[ 0 ] = "rewriteContext";
rargv[ 1 ] = "searchAttrDN"; rargv[ 1 ] = "searchAttrDN";

View File

@ -116,7 +116,7 @@ rwm_dn_massage(
return rc; return rc;
} }
#else #else /* ! ENABLE_REWRITE */
/* /*
* rwm_dn_massage * rwm_dn_massage
* *

View File

@ -386,7 +386,7 @@ map_attr_value(
#ifdef ENABLE_REWRITE #ifdef ENABLE_REWRITE
fdc.ctx = "searchFilterAttrDN"; fdc.ctx = "searchFilterAttrDN";
#endif #endif /* ENABLE_REWRITE */
rc = rwm_dn_massage( &fdc, value, NULL, &vtmp ); rc = rwm_dn_massage( &fdc, value, NULL, &vtmp );
switch ( rc ) { switch ( rc ) {
@ -773,10 +773,10 @@ rwm_referral_rewrite(
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = (char *)cookie; dc.ctx = (char *)cookie;
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = ((int *)cookie)[0]; dc.tofrom = ((int *)cookie)[0];
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
for ( last = 0; !BER_BVISNULL( &a_vals[last] ); last++ ); for ( last = 0; !BER_BVISNULL( &a_vals[last] ); last++ );
if ( pa_nvals != NULL ) { if ( pa_nvals != NULL ) {
@ -922,10 +922,10 @@ rwm_dnattr_rewrite(
dc.conn = op->o_conn; dc.conn = op->o_conn;
dc.rs = rs; dc.rs = rs;
dc.ctx = (char *)cookie; dc.ctx = (char *)cookie;
#else #else /* ! ENABLE_REWRITE */
dc.tofrom = ((int *)cookie)[0]; dc.tofrom = ((int *)cookie)[0];
dc.normalized = 0; dc.normalized = 0;
#endif #endif /* ! ENABLE_REWRITE */
for ( last = 0; !BER_BVISNULL( &in[last] ); last++ ); for ( last = 0; !BER_BVISNULL( &in[last] ); last++ );
if ( pa_nvals != NULL ) { if ( pa_nvals != NULL ) {