summaryrefslogtreecommitdiffstats
path: root/results/classifier/deepseek-r1:14b/output/KVM/1687653
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/deepseek-r1:14b/output/KVM/1687653
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/deepseek-r1:14b/output/KVM/1687653')
-rw-r--r--results/classifier/deepseek-r1:14b/output/KVM/168765366
1 files changed, 66 insertions, 0 deletions
diff --git a/results/classifier/deepseek-r1:14b/output/KVM/1687653 b/results/classifier/deepseek-r1:14b/output/KVM/1687653
new file mode 100644
index 00000000..5e295586
--- /dev/null
+++ b/results/classifier/deepseek-r1:14b/output/KVM/1687653
@@ -0,0 +1,66 @@
+
+QEMU-KVM / detect_zeroes causes KVM to start unlimited number of threads on Guest-Sided High-IO with big Blocksize
+
+QEMU-KVM in combination with "detect_zeroes=on" makes a Guest able to DoS the Host. This is possible if the Host itself has "detect_zeroes" enabled and the Guest writes a large Chunk of data with a huge blocksize onto the drive.
+
+E.g.: dd if=/dev/zero of=/tmp/DoS bs=1G count=1 oflag=direct
+
+All QEMU-Versions after implementation of detect_zeroes are affected. Prior are unaffected. This is absolutely critical, please fix this ASAP!
+
+#####
+
+Provided by Dominik Csapak:
+
+source , bs , count , O_DIRECT, behaviour
+
+urandom , bs 1M, count 1024, O_DIRECT: OK
+file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1M, count 1024, O_DIRECT: OK
+zero file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1G, count 1, O_DIRECT: NOT OK
+zero file , bs 1G, count 1, O_DIRECT: NOT OK
+zero file , bs 1G, count 1, no O_DIRECT: NOT OK
+rand file , bs 1G, count 1, O_DIRECT: OK
+rand file , bs 1G, count 1, no O_DIRECT: OK
+
+discard on:
+
+urandom , bs 1M, count 1024, O_DIRECT: OK
+rand file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1M, count 1024, O_DIRECT: OK
+zero file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1G, count 1, O_DIRECT: NOT OK
+zero file , bs 1G, count 1, O_DIRECT: NOT OK
+zero file , bs 1G, count 1, no O_DIRECT: NOT OK
+rand file , bs 1G, count 1, O_DIRECT: OK
+rand file , bs 1G, count 1, no O_DIRECT: OK
+
+detect_zeros off:
+
+urandom , bs 1M, count 1024, O_DIRECT: OK
+rand file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1M, count 1024, O_DIRECT: OK
+zero file , bs 1M, count 1024, O_DIRECT: OK
+/dev/zero , bs 1G, count 1, O_DIRECT: OK
+zero file , bs 1G, count 1, O_DIRECT: OK
+zero file , bs 1G, count 1, no O_DIRECT: OK
+rand file , bs 1G, count 1, O_DIRECT: OK
+rand file , bs 1G, count 1, no O_DIRECT: OK
+
+#####
+
+Provided by Florian Strankowski
+
+bs - count - io-threads
+
+512K - 2048 - 2
+1M - 1024 - 2
+2M - 512 - 4
+4M - 256 - 6
+8M - 128 - 10
+16M - 64 - 18
+32M - 32 - uncountable
+
+Please refer to further information here:
+
+https://bugzilla.proxmox.com/show_bug.cgi?id=1368 \ No newline at end of file