Skip to content

Commit

Permalink
s390x/tcg: MVCL: Detect destructive overlaps
Browse files Browse the repository at this point in the history
We'll have to zero-out unused bit positions, so make sure to write the
addresses back.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
  • Loading branch information
davidhildenbrand committed Sep 23, 2019
1 parent d292671 commit fbc1759
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion target/s390x/mem_helper.c
Expand Up @@ -52,6 +52,19 @@ static inline bool psw_key_valid(CPUS390XState *env, uint8_t psw_key)
return true;
}

static bool is_destructive_overlap(CPUS390XState *env, uint64_t dest,
uint64_t src, uint32_t len)
{
if (!len || src == dest) {
return false;
}
/* Take care of wrapping at the end of address space. */
if (unlikely(wrap_address(env, src + len - 1) < src)) {
return dest > src || dest <= wrap_address(env, src + len - 1);
}
return dest > src && dest <= src + len - 1;
}

/* Reduce the length so that addr + len doesn't cross a page boundary. */
static inline uint32_t adj_len_to_page(uint32_t len, uint64_t addr)
{
Expand Down Expand Up @@ -787,7 +800,11 @@ uint32_t HELPER(mvcl)(CPUS390XState *env, uint32_t r1, uint32_t r2)
uint8_t pad = env->regs[r2 + 1] >> 24;
uint32_t cc;

cc = do_mvcl(env, &dest, &destlen, &src, &srclen, pad, 1, ra);
if (is_destructive_overlap(env, dest, src, MIN(srclen, destlen))) {
cc = 3;
} else {
cc = do_mvcl(env, &dest, &destlen, &src, &srclen, pad, 1, ra);
}

env->regs[r1 + 1] = deposit64(env->regs[r1 + 1], 0, 24, destlen);
env->regs[r2 + 1] = deposit64(env->regs[r2 + 1], 0, 24, srclen);
Expand Down

0 comments on commit fbc1759

Please sign in to comment.