blob: cbb3033f38480f1b0b5e0cdb8921d917ec99686e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
instruction: 0.523
runtime: 0.257
syscall: 0.220
assertion failed at translate-all.c:2523 with version 3.1.1
I was trying to debug a userspace binary with radare2 and met the following assertion in qemu:
```
qemu-mipsel: /builddir/build/BUILD/qemu-3.1.1/accel/tcg/translate-all.c:2523: page_check_range: Assertion `start < ((target_ulong)1 << L1_MAP_ADDR_SPACE_BITS)' failed.
qemu:handle_cpu_signal received signal outside vCPU context @ pc=0x7fd1c11c5987
```
```
# qemu-mipsel --version
qemu-mipsel version 3.1.1 (qemu-3.1.1-2.fc30)
Copyright (c) 2003-2018 Fabrice Bellard and the QEMU Project developers
```
not much to add. seems like qemu is not properly checking for valid addresses
|