All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/5] qcow2: Check L1/L2/reftable entries for alignment
@ 2014-09-05 14:07 Max Reitz
  2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 1/5] qapi/block: Add "fatal" to BLOCK_IMAGE_CORRUPTED Max Reitz
                   ` (5 more replies)
  0 siblings, 6 replies; 23+ messages in thread
From: Max Reitz @ 2014-09-05 14:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi, Max Reitz

The image fuzzer from Maria exposed a lot of assertions which might fail
in qemu when fed with a broken qcow2 image. Some of them are related to
qemu trusting the offsets given in the L1, L2 and refcount tables to
always be properly aligned on cluster boundaries (e.g.
https://bugs.launchpad.net/qemu/+bug/1354529).

This series fixes this by verifying (hopefully) all data read from L1,
L2 and refcount tables accordingly; if the offsets are not aligned on
cluster boundaries, an error message is emitted and the image is marked
corrupt unless it has been opened read-only.

v2:
- Added patch 1 which adds a new field to the BLOCK_IMAGE_CORRUPTED. I
  know this might be incompatible to existing users of that field, so I
  did an investigative search (I googled) but did not find any. So I'm
  confident this won't break anything.
- Patch 2:
  - Suppress corruption events and messages after the first one;
    however, a fatal corruption should still be signaled even after a
    non-fatal one has already occured [Kevin]
  - Also, use the new "fatal" field
- Patch 3:
  - Fix test 060 right in this patch (squashed the old patch 3 into
    patch 2, the result is now this patch 3) [Kevin]
  - Set the "fatal" field to true
- Patch 4:
  - Emit more debugging information (like table indices etc.) [Kevin]
  - Generally set the "fatal" field to true
  - In case a cluster with an unaligned offset should be freed, call the
    corruption signalling function just like everywhere else; but set
    "fatal" to false [Kevin+Eric]
- Patch 5: Added [Kevin]


git-backport-diff against v1 (although not very useful):

Key:
[----] : patches are identical
[####] : number of functional differences between upstream/downstream patch
[down] : patch is downstream-only
The flags [FC] indicate (F)unctional and (C)ontextual differences, respectively

001/5:[down] 'qapi/block: Add "fatal" to BLOCK_IMAGE_CORRUPTED'
002/5:[0045] [FC] 'qcow2: Add qcow2_signal_corruption()'
003/5:[0015] [FC] 'qcow2: Use qcow2_signal_corruption() for overlaps'
004/5:[0068] [FC] 'qcow2: Check L1/L2/reftable entries for alignment'
005/5:[down] 'iotests: Add more tests for qcow2 corruption'


Max Reitz (5):
  qapi/block: Add "fatal" to BLOCK_IMAGE_CORRUPTED
  qcow2: Add qcow2_signal_corruption()
  qcow2: Use qcow2_signal_corruption() for overlaps
  qcow2: Check L1/L2/reftable entries for alignment
  iotests: Add more tests for qcow2 corruption

 block/qcow2-cluster.c      | 43 ++++++++++++++++++++++++++---
 block/qcow2-refcount.c     | 67 +++++++++++++++++++++++++++++++---------------
 block/qcow2.c              | 48 +++++++++++++++++++++++++++++++++
 block/qcow2.h              |  5 ++++
 qapi/block-core.json       |  9 +++++--
 tests/qemu-iotests/060     | 56 ++++++++++++++++++++++++++++++++++++--
 tests/qemu-iotests/060.out | 61 +++++++++++++++++++++++++++++++++++++----
 7 files changed, 255 insertions(+), 34 deletions(-)

-- 
2.1.0

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2014-09-16 13:48 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-05 14:07 [Qemu-devel] [PATCH v2 0/5] qcow2: Check L1/L2/reftable entries for alignment Max Reitz
2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 1/5] qapi/block: Add "fatal" to BLOCK_IMAGE_CORRUPTED Max Reitz
2014-09-05 14:29   ` Eric Blake
2014-09-05 14:40   ` Eric Blake
2014-09-05 14:47     ` Max Reitz
2014-09-05 14:51       ` Eric Blake
2014-09-05 14:53         ` Max Reitz
2014-09-08 14:01   ` Benoît Canet
2014-09-08 17:40     ` Max Reitz
2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 2/5] qcow2: Add qcow2_signal_corruption() Max Reitz
2014-09-05 14:43   ` Eric Blake
2014-09-08 14:15   ` Benoît Canet
2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 3/5] qcow2: Use qcow2_signal_corruption() for overlaps Max Reitz
2014-09-05 14:52   ` Eric Blake
2014-09-08 14:21   ` Benoît Canet
2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 4/5] qcow2: Check L1/L2/reftable entries for alignment Max Reitz
2014-09-05 15:03   ` Eric Blake
2014-09-08 14:40   ` Benoît Canet
2014-09-08 17:47     ` Max Reitz
2014-09-08 18:03       ` Benoît Canet
2014-09-05 14:07 ` [Qemu-devel] [PATCH v2 5/5] iotests: Add more tests for qcow2 corruption Max Reitz
2014-09-05 15:09   ` Eric Blake
2014-09-16 13:48 ` [Qemu-devel] [PATCH v2 0/5] qcow2: Check L1/L2/reftable entries for alignment Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.