diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
| commit | 3e4c5a6261770bced301b5e74233e7866166ea5b (patch) | |
| tree | 9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/2758 | |
| parent | e5634e2806195bee44407853c4bf8776f7abfa4f (diff) | |
| download | qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip | |
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2758')
| -rw-r--r-- | gitlab/issues_text/target_missing/host_missing/accel_missing/2758 | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2758 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2758 deleted file mode 100644 index 85598563b..000000000 --- a/gitlab/issues_text/target_missing/host_missing/accel_missing/2758 +++ /dev/null @@ -1,23 +0,0 @@ -Out-of-bounds access smc91c111_readb() -Description of problem: -An out-of-bounds bug was triggered by my fuzzer. - -It looks like the code doesn't have boundary checks for `data`'s access. - -The error is `hw/net/smc91c111.c:605:24: runtime error: index 2048 out of bounds for type 'uint8_t[2048]' (aka 'unsigned char[2048]')` - -It's likely that the line 457 also needs a check. -Steps to reproduce: -``` -export QEMU_ARGS="-display none -machine accel=qtest, -m 512M -machine realview-eb" -cat << EOF | ./qemu-system-arm $QEMU_ARGS -qtest /dev/null -qtest stdio -writew 0x4e00000c 0x46084a4a -writel 0x4e00000c 0x5c022fcc -clock_step -writel 0x4e000004 0x2fffa1b1 -clock_step -readl 0x4e000008 -EOF -``` -Additional information: - |