summaryrefslogtreecommitdiffstats
path: root/results/classifier/118/device/786208
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/device/786208
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/device/786208')
-rw-r--r--results/classifier/118/device/78620845
1 files changed, 45 insertions, 0 deletions
diff --git a/results/classifier/118/device/786208 b/results/classifier/118/device/786208
new file mode 100644
index 00000000..b80e55f2
--- /dev/null
+++ b/results/classifier/118/device/786208
@@ -0,0 +1,45 @@
+device: 0.886
+performance: 0.835
+graphic: 0.759
+semantic: 0.704
+mistranslation: 0.676
+network: 0.654
+architecture: 0.620
+register: 0.606
+kernel: 0.602
+i386: 0.575
+peripherals: 0.566
+PID: 0.562
+hypervisor: 0.545
+permissions: 0.544
+risc-v: 0.517
+debug: 0.506
+x86: 0.503
+vnc: 0.493
+files: 0.468
+ppc: 0.466
+assembly: 0.463
+socket: 0.462
+VMM: 0.451
+virtual: 0.446
+user-level: 0.419
+arm: 0.405
+boot: 0.384
+TCG: 0.347
+KVM: 0.246
+
+Missing checks for non-existent device in ide_exec_cmd
+
+Several calls in the ide_exec_cmd handler are missing checks for (!s->bs) or similar, resulting in NULL pointer dereferences, divide-by-zero, or possibly other badness if the guest performs operations on a non-existent IDE master.
+
+For example, the WIN_READ_NATIVE_MAX command does a 'ide_set_sector(s, s->nb_sectors - 1);', which does 'cyl = sector_num / (s->heads * s->sectors);', which will fail with a divide-by-zero if heads = sectors = 0.
+
+And WIN_MULTREAD also does not check for s->bs, but does a 'ide_sector_read(s);', which will do 'bdrv_read(s->bs, sector_num, s->io_buffer, n);' on a NULL s->bs, leading to a segfault.
+
+I do not *believe* that a malicious guest can do anything more than cause a crash with these bugs.
+
+The QEMU project is currently considering to move its bug tracking to another system. For this we need to know which bugs are still valid and which could be closed already. Thus we are setting older bugs to "Incomplete" now.
+If you still think this bug report here is valid, then please switch the state back to "New" within the next 60 days, otherwise this report will be marked as "Expired". Or mark it as "Fix Released" if the problem has been solved with a newer version of QEMU already. Thank you and sorry for the inconvenience.
+
+[Expired for QEMU because there has been no activity for 60 days.]
+