summary refs log tree commit diff stats
path: root/results/classifier/118/boot/1131
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/boot/1131
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/boot/1131')
-rw-r--r--results/classifier/118/boot/113150
1 files changed, 50 insertions, 0 deletions
diff --git a/results/classifier/118/boot/1131 b/results/classifier/118/boot/1131
new file mode 100644
index 000000000..1db3e27c6
--- /dev/null
+++ b/results/classifier/118/boot/1131
@@ -0,0 +1,50 @@
+boot: 0.842
+device: 0.804
+kernel: 0.736
+graphic: 0.703
+performance: 0.691
+ppc: 0.671
+files: 0.640
+vnc: 0.634
+debug: 0.623
+risc-v: 0.603
+TCG: 0.598
+socket: 0.569
+arm: 0.567
+architecture: 0.552
+i386: 0.542
+VMM: 0.532
+network: 0.531
+x86: 0.518
+semantic: 0.508
+PID: 0.503
+permissions: 0.481
+register: 0.473
+peripherals: 0.452
+user-level: 0.364
+KVM: 0.344
+hypervisor: 0.311
+virtual: 0.301
+mistranslation: 0.250
+assembly: 0.222
+
+Multiboot: could not move values from provided mmap to another address directly.
+Description of problem:
+When using `-kernel` to load a Multiboot file which requires a memory map(MULTIBOOT_MEMORY_INFO flag) and trying to move the values in the provided mmap entries to another address directly, QEMU reboots.
+```c
+xxx = mmap->addr;
+```
+
+When moving with volatile, everything works well:
+```c
+volatile unsigned long long addr = mmap->addr;
+xxx = addr;
+```
+Steps to reproduce:
+1. Source code here: [github/xtexChooser/toop/boot/multiboot/src/multiboot.c](https://github.com/xtexChooser/toop/blob/51153319d4f2320ae9a9277ffffad3f67a335fe9/boot/multiboot/src/multiboot.c#L32)
+2. Minimized reproduce: [gist.github.com/xtexChooser/22017d662c8144b7abcb0b18c2afb09c](https://gist.github.com/xtexChooser/22017d662c8144b7abcb0b18c2afb09c)
+3. I am sure that 0x00001210 is writable, it is empty in the memory map and QEMU works correctly when writing a zero value to here.
+4. The reproducer is available without any module, when it works, it should keep running without any output, if QEMU reboots, the screen should flash as it clears and prints the BIOS information again.
+5. If move with volatile(as the `multiboot_works.c` in reproducer), the reproducer works correctly.
+Additional information:
+#