* [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve compatibility with JITs
2023-06-20 1:04 [PATCH qemu v3 0/2] target/arm: Improve user-mode compatibility with JITs ~jhogberg
@ 2023-06-08 17:49 ` ~jhogberg
2023-06-26 12:38 ` Peter Maydell
2023-06-09 12:04 ` [PATCH qemu v3 2/2] tests/tcg/aarch64: Add testcases for IC IVAU and dual-mapped code ~jhogberg
1 sibling, 1 reply; 5+ messages in thread
From: ~jhogberg @ 2023-06-08 17:49 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell
From: John Högberg <john.hogberg@ericsson.com>
Unlike architectures with precise self-modifying code semantics
(e.g. x86) ARM processors do not maintain coherency for instruction
execution and memory, and require the explicit use of cache
management instructions as well as an instruction barrier to make
code updates visible (the latter on every core that is going to
execute said code).
While this is required to make JITs work on actual hardware, QEMU
has gotten away with not handling this since it does not emulate
caches, and unconditionally invalidates code whenever the softmmu
or the user-mode page protection logic detects that code has been
modified.
Unfortunately the latter does not work in the face of dual-mapped
code (a common W^X workaround), where one page is executable and
the other is writable: user-mode has no way to connect one with the
other as that is only known to the kernel and the emulated
application.
This commit works around the issue by invalidating code in
IC IVAU instructions.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1034
Co-authored-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: John Högberg <john.hogberg@ericsson.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/helper.c | 47 ++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 44 insertions(+), 3 deletions(-)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index d4bee43bd0..235e3cd0b6 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -5228,6 +5228,36 @@ static void mdcr_el2_write(CPUARMState *env, const ARMCPRegInfo *ri,
}
}
+#ifdef CONFIG_USER_ONLY
+/*
+ * `IC IVAU` is handled to improve compatibility with JITs that dual-map their
+ * code to get around W^X restrictions, where one region is writable and the
+ * other is executable.
+ *
+ * Since the executable region is never written to we cannot detect code
+ * changes when running in user mode, and rely on the emulated JIT telling us
+ * that the code has changed by executing this instruction.
+ */
+static void ic_ivau_write(CPUARMState *env, const ARMCPRegInfo *ri,
+ uint64_t value)
+{
+ uint64_t icache_line_mask, start_address, end_address;
+ const ARMCPU *cpu;
+
+ cpu = env_archcpu(env);
+
+ icache_line_mask = (4 << extract32(cpu->ctr, 0, 4)) - 1;
+ start_address = value & ~icache_line_mask;
+ end_address = value | icache_line_mask;
+
+ mmap_lock();
+
+ tb_invalidate_phys_range(start_address, end_address);
+
+ mmap_unlock();
+}
+#endif
+
static const ARMCPRegInfo v8_cp_reginfo[] = {
/*
* Minimal set of EL0-visible registers. This will need to be expanded
@@ -5267,7 +5297,10 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
{ .name = "CURRENTEL", .state = ARM_CP_STATE_AA64,
.opc0 = 3, .opc1 = 0, .opc2 = 2, .crn = 4, .crm = 2,
.access = PL1_R, .type = ARM_CP_CURRENTEL },
- /* Cache ops: all NOPs since we don't emulate caches */
+ /*
+ * Instruction cache ops. All of these except `IC IVAU` NOP because we
+ * don't emulate caches.
+ */
{ .name = "IC_IALLUIS", .state = ARM_CP_STATE_AA64,
.opc0 = 1, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
.access = PL1_W, .type = ARM_CP_NOP,
@@ -5280,9 +5313,17 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
.accessfn = access_tocu },
{ .name = "IC_IVAU", .state = ARM_CP_STATE_AA64,
.opc0 = 1, .opc1 = 3, .crn = 7, .crm = 5, .opc2 = 1,
- .access = PL0_W, .type = ARM_CP_NOP,
+ .access = PL0_W,
.fgt = FGT_ICIVAU,
- .accessfn = access_tocu },
+ .accessfn = access_tocu,
+#ifdef CONFIG_USER_ONLY
+ .type = ARM_CP_NO_RAW,
+ .writefn = ic_ivau_write
+#else
+ .type = ARM_CP_NOP
+#endif
+ },
+ /* Cache ops: all NOPs since we don't emulate caches */
{ .name = "DC_IVAC", .state = ARM_CP_STATE_AA64,
.opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
.access = PL1_W, .accessfn = aa64_cacheop_poc_access,
--
2.38.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH qemu v3 2/2] tests/tcg/aarch64: Add testcases for IC IVAU and dual-mapped code
2023-06-20 1:04 [PATCH qemu v3 0/2] target/arm: Improve user-mode compatibility with JITs ~jhogberg
2023-06-08 17:49 ` [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve " ~jhogberg
@ 2023-06-09 12:04 ` ~jhogberg
1 sibling, 0 replies; 5+ messages in thread
From: ~jhogberg @ 2023-06-09 12:04 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell
From: John Högberg <john.hogberg@ericsson.com>
https://gitlab.com/qemu-project/qemu/-/issues/1034
Signed-off-by: John Högberg <john.hogberg@ericsson.com>
---
tests/tcg/aarch64/Makefile.target | 3 +-
tests/tcg/aarch64/icivau.c | 169 ++++++++++++++++++++++++++++++
2 files changed, 171 insertions(+), 1 deletion(-)
create mode 100644 tests/tcg/aarch64/icivau.c
diff --git a/tests/tcg/aarch64/Makefile.target b/tests/tcg/aarch64/Makefile.target
index 3430fd3cd8..de6566d0d4 100644
--- a/tests/tcg/aarch64/Makefile.target
+++ b/tests/tcg/aarch64/Makefile.target
@@ -9,9 +9,10 @@ AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
VPATH += $(AARCH64_SRC)
# Base architecture tests
-AARCH64_TESTS=fcvt pcalign-a64
+AARCH64_TESTS=fcvt pcalign-a64 icivau
fcvt: LDFLAGS+=-lm
+icivau: LDFLAGS+=-lrt
run-fcvt: fcvt
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
diff --git a/tests/tcg/aarch64/icivau.c b/tests/tcg/aarch64/icivau.c
new file mode 100644
index 0000000000..a01f45f172
--- /dev/null
+++ b/tests/tcg/aarch64/icivau.c
@@ -0,0 +1,169 @@
+/*
+ * Tests the IC IVAU-driven workaround for catching changes made to dual-mapped
+ * code that would otherwise go unnoticed in user mode.
+ *
+ * Copyright (c) 2023 Ericsson AB
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include <sys/mman.h>
+#include <sys/stat.h>
+#include <string.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <fcntl.h>
+
+#define MAX_CODE_SIZE 128
+
+typedef int (SelfModTest)(uint32_t, uint32_t*);
+typedef int (BasicTest)(int);
+
+static void mark_code_modified(const uint32_t *exec_data, size_t length)
+{
+ size_t dcache_stride, icache_stride, i;
+ unsigned long ctr_el0;
+
+ /*
+ * Step according to minimum cache sizes, as the cache maintenance
+ * instructions operate on the cache line of the given address.
+ *
+ * We assume that exec_data is properly aligned.
+ */
+ asm ("mrs %0, ctr_el0\n" : "=r"(ctr_el0));
+ dcache_stride = (4 << ((ctr_el0 >> 16) & 0xF));
+ icache_stride = (4 << (ctr_el0 & 0xF));
+
+ /*
+ * For completeness we might be tempted to assert that we should fail when
+ * the whole code update sequence is omitted, but that would make the test
+ * flaky as it can succeed by coincidence on actual hardware.
+ */
+ for (i = 0; i < length; i += dcache_stride) {
+ const char *dc_addr = &((const char *)exec_data)[i];
+ asm volatile ("dc cvau, %x[dc_addr]\n"
+ : /* no outputs */
+ : [dc_addr] "r"(dc_addr)
+ : "memory");
+ }
+
+ asm volatile ("dmb ish\n");
+
+ for (i = 0; i < length; i += icache_stride) {
+ const char *ic_addr = &((const char *)exec_data)[i];
+ asm volatile ("ic ivau, %x[ic_addr]\n"
+ : /* no outputs */
+ : [ic_addr] "r"(ic_addr)
+ : "memory");
+ }
+
+ asm volatile ("dmb ish\n"
+ "isb sy\n");
+}
+
+static int basic_test(uint32_t *rw_data, const uint32_t *exec_data)
+{
+ /*
+ * As user mode only misbehaved for dual-mapped code when previously
+ * translated code had been changed, we'll start off with this basic test
+ * function to ensure that there's already some translated code at
+ * exec_data before the next test. This should cause the next test to fail
+ * if `mark_code_modified` fails to invalidate the code.
+ *
+ * Note that the payload is in binary form instead of inline assembler
+ * because we cannot use __attribute__((naked)) on this platform and the
+ * workarounds are at least as ugly as this is.
+ */
+ static const uint32_t basic_payload[] = {
+ 0xD65F03C0 /* 0x00: RET */
+ };
+
+ BasicTest *copied_ptr = (BasicTest *)exec_data;
+
+ memcpy(rw_data, basic_payload, sizeof(basic_payload));
+ mark_code_modified(exec_data, sizeof(basic_payload));
+
+ return copied_ptr(1234) == 1234;
+}
+
+static int self_modification_test(uint32_t *rw_data, const uint32_t *exec_data)
+{
+ /*
+ * This test is self-modifying in an attempt to cover an edge case where
+ * the IC IVAU instruction invalidates itself.
+ *
+ * Note that the IC IVAU instruction is 16 bytes into the function, in what
+ * will be the same cache line as the modifed instruction on machines with
+ * a cache line size >= 16 bytes.
+ */
+ static const uint32_t self_mod_payload[] = {
+ /* Overwrite the placeholder instruction with the new one. */
+ 0xB9001C20, /* 0x00: STR w0, [x1, 0x1C] */
+
+ /* Get the executable address of the modified instruction. */
+ 0x100000A8, /* 0x04: ADR x8, <0x1C> */
+
+ /* Mark the modified instruction as updated. */
+ 0xD50B7B28, /* 0x08: DC CVAU x8 */
+ 0xD5033BBF, /* 0x0C: DMB ISH */
+ 0xD50B7528, /* 0x10: IC IVAU x8 */
+ 0xD5033BBF, /* 0x14: DMB ISH */
+ 0xD5033FDF, /* 0x18: ISB */
+
+ /* Placeholder instruction, overwritten above. */
+ 0x52800000, /* 0x1C: MOV w0, 0 */
+
+ 0xD65F03C0 /* 0x20: RET */
+ };
+
+ SelfModTest *copied_ptr = (SelfModTest *)exec_data;
+ int i;
+
+ memcpy(rw_data, self_mod_payload, sizeof(self_mod_payload));
+ mark_code_modified(exec_data, sizeof(self_mod_payload));
+
+ for (i = 1; i < 10; i++) {
+ /* Replace the placeholder instruction with `MOV w0, i` */
+ uint32_t new_instr = 0x52800000 | (i << 5);
+
+ if (copied_ptr(new_instr, rw_data) != i) {
+ return 0;
+ }
+ }
+
+ return 1;
+}
+
+int main(int argc, char **argv)
+{
+ const char *shm_name = "qemu-test-tcg-aarch64-icivau";
+ int fd;
+
+ fd = shm_open(shm_name, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
+
+ if (fd < 0) {
+ return EXIT_FAILURE;
+ }
+
+ /* Unlink early to avoid leaving garbage in case the test crashes. */
+ shm_unlink(shm_name);
+
+ if (ftruncate(fd, MAX_CODE_SIZE) == 0) {
+ const uint32_t *exec_data;
+ uint32_t *rw_data;
+
+ rw_data = mmap(0, MAX_CODE_SIZE, PROT_READ | PROT_WRITE,
+ MAP_SHARED, fd, 0);
+ exec_data = mmap(0, MAX_CODE_SIZE, PROT_READ | PROT_EXEC,
+ MAP_SHARED, fd, 0);
+
+ if (rw_data && exec_data) {
+ if (basic_test(rw_data, exec_data) &&
+ self_modification_test(rw_data, exec_data)) {
+ return EXIT_SUCCESS;
+ }
+ }
+ }
+
+ return EXIT_FAILURE;
+}
--
2.38.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH qemu v3 0/2] target/arm: Improve user-mode compatibility with JITs
@ 2023-06-20 1:04 ~jhogberg
2023-06-08 17:49 ` [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve " ~jhogberg
2023-06-09 12:04 ` [PATCH qemu v3 2/2] tests/tcg/aarch64: Add testcases for IC IVAU and dual-mapped code ~jhogberg
0 siblings, 2 replies; 5+ messages in thread
From: ~jhogberg @ 2023-06-20 1:04 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell
The test cases have been changed in v3 to fix some issues pointed out in
code review. The main change is that the tests no longer naively copy C
code around, opting instead to have hard-coded binary payloads. Given
the small amount of code I found that the workarounds for position-
independence and figuring out the actual code length were at least as
ugly, but that's only my preference, please tell me if you'd prefer
something different.
----
When running in user-mode QEMU currently fails to emulate JITs that
use dual-mapped code to get around W^X restrictions, where one mapping
is writable and one is executable. As it has no way of knowing that a
write to the writable region is reflected in the executable one, it
fails to invalidate previously translated code which leads to a crash
at best.
(Note that system mode is unaffected as the softmmu is fully aware of
what is going on.)
This patch series catches changes to dual-mapped code by honoring the
cache management instructions required to make things work on actual
hardware.
See https://gitlab.com/qemu-project/qemu/-/issues/1034 for more
background information
John Högberg (2):
target/arm: Handle IC IVAU to improve compatibility with JITs
tests/tcg/aarch64: Add testcases for IC IVAU and dual-mapped code
target/arm/helper.c | 47 ++++++++-
tests/tcg/aarch64/Makefile.target | 3 +-
tests/tcg/aarch64/icivau.c | 169 ++++++++++++++++++++++++++++++
3 files changed, 215 insertions(+), 4 deletions(-)
create mode 100644 tests/tcg/aarch64/icivau.c
--
2.38.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve compatibility with JITs
2023-06-08 17:49 ` [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve " ~jhogberg
@ 2023-06-26 12:38 ` Peter Maydell
2023-06-26 12:53 ` John Högberg
0 siblings, 1 reply; 5+ messages in thread
From: Peter Maydell @ 2023-06-26 12:38 UTC (permalink / raw)
To: ~jhogberg; +Cc: qemu-devel
On Tue, 20 Jun 2023 at 02:04, ~jhogberg <jhogberg@git.sr.ht> wrote:
>
> From: John Högberg <john.hogberg@ericsson.com>
>
> Unlike architectures with precise self-modifying code semantics
> (e.g. x86) ARM processors do not maintain coherency for instruction
> execution and memory, and require the explicit use of cache
> management instructions as well as an instruction barrier to make
> code updates visible (the latter on every core that is going to
> execute said code).
This is implementation-dependent : if the
implementation reports CTR_EL0.{DIC,IDC} == {1,1} then
it doesn't need icache invalidation or data cache clean
to provide data-to-instruction or instruction-to-data
coherence. This is currently not true for any CPU QEMU
models, but the Neoverse-V1 (which I'm about to send a patch
for) can do this. (It's also tempting to make 'max' set
these bits, which would save the guest some effort in
doing cache ops which we NOP anyway.)
So maybe we should also force CTR_EL0.DIC to 0 in user-mode
so that the guest won't decide based on the value of that bit
that it doesn't need to issue the IC IVAU ?
arm_cpu_realizefn() would be the place to do this, I think.
thanks
-- PMM
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve compatibility with JITs
2023-06-26 12:38 ` Peter Maydell
@ 2023-06-26 12:53 ` John Högberg
0 siblings, 0 replies; 5+ messages in thread
From: John Högberg @ 2023-06-26 12:53 UTC (permalink / raw)
To: peter.maydell@linaro.org; +Cc: qemu-devel@nongnu.org
> This is implementation-dependent : if the
> implementation reports CTR_EL0.{DIC,IDC} == {1,1} then
> it doesn't need icache invalidation or data cache clean
> to provide data-to-instruction or instruction-to-data
> coherence. This is currently not true for any CPU QEMU
> models, but the Neoverse-V1 (which I'm about to send a patch
> for) can do this. (It's also tempting to make 'max' set
> these bits, which would save the guest some effort in
> doing cache ops which we NOP anyway.)
Sure, I'll update the commit message to this effect.
> So maybe we should also force CTR_EL0.DIC to 0 in user-mode
> so that the guest won't decide based on the value of that bit
> that it doesn't need to issue the IC IVAU ?
> arm_cpu_realizefn() would be the place to do this, I think.
Sounds good, I'll fix that. Thanks :)
/John
-----Original Message-----
From: Peter Maydell <peter.maydell@linaro.org>
To: ~jhogberg <john.hogberg@ericsson.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve
compatibility with JITs
Date: Mon, 26 Jun 2023 13:38:16 +0100
On Tue, 20 Jun 2023 at 02:04, ~jhogberg <jhogberg@git.sr.ht> wrote:
>
> From: John Högberg <john.hogberg@ericsson.com>
>
> Unlike architectures with precise self-modifying code semantics
> (e.g. x86) ARM processors do not maintain coherency for instruction
> execution and memory, and require the explicit use of cache
> management instructions as well as an instruction barrier to make
> code updates visible (the latter on every core that is going to
> execute said code).
This is implementation-dependent : if the
implementation reports CTR_EL0.{DIC,IDC} == {1,1} then
it doesn't need icache invalidation or data cache clean
to provide data-to-instruction or instruction-to-data
coherence. This is currently not true for any CPU QEMU
models, but the Neoverse-V1 (which I'm about to send a patch
for) can do this. (It's also tempting to make 'max' set
these bits, which would save the guest some effort in
doing cache ops which we NOP anyway.)
So maybe we should also force CTR_EL0.DIC to 0 in user-mode
so that the guest won't decide based on the value of that bit
that it doesn't need to issue the IC IVAU ?
arm_cpu_realizefn() would be the place to do this, I think.
thanks
-- PMM
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-06-26 12:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-20 1:04 [PATCH qemu v3 0/2] target/arm: Improve user-mode compatibility with JITs ~jhogberg
2023-06-08 17:49 ` [PATCH qemu v3 1/2] target/arm: Handle IC IVAU to improve " ~jhogberg
2023-06-26 12:38 ` Peter Maydell
2023-06-26 12:53 ` John Högberg
2023-06-09 12:04 ` [PATCH qemu v3 2/2] tests/tcg/aarch64: Add testcases for IC IVAU and dual-mapped code ~jhogberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).