From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
qemu-block@nongnu.org
Subject: [PATCH v5 00/15] hw/sd/sdcard: Fix CVE-2020-13253 & cleanups
Date: Fri, 26 Jun 2020 18:40:11 +0200 [thread overview]
Message-ID: <20200626164026.766-1-f4bug@amsat.org> (raw)
Patches 5 & 6 fix CVE-2020-13253.
The rest are (accumulated) cleanups.
Missing review:
[PATCH 01/15] MAINTAINERS: Cc qemu-block mailing list
[PATCH 03/15] hw/sd/sdcard: Move some definitions to use them
[PATCH 04/15] hw/sd/sdcard: Use the HWBLOCK_SIZE definition
[PATCH 05/15] hw/sd/sdcard: Do not switch to ReceivingData if
[PATCH 07/15] hw/sd/sdcard: Initialize constant values first
[PATCH 08/15] hw/sd/sdcard: Check address is in range
[PATCH 12/15] hw/sd/sdcard: Make iolen unsigned
[PATCH 13/15] hw/sd/sdcard: Correctly display the command name in
$ git backport-diff -u v3
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/15:[----] [--] 'MAINTAINERS: Cc qemu-block mailing list'
002/15:[----] [--] 'hw/sd/sdcard: Update coding style to make checkpatch.pl happy'
003/15:[down] 'hw/sd/sdcard: Move some definitions to use them earlier'
004/15:[down] 'hw/sd/sdcard: Use the HWBLOCK_SIZE definition'
005/15:[0030] [FC] 'hw/sd/sdcard: Do not switch to ReceivingData if address is invalid'
006/15:[----] [--] 'hw/sd/sdcard: Restrict Class 6 commands to SCSD cards'
007/15:[down] 'hw/sd/sdcard: Initialize constant values first'
008/15:[down] 'hw/sd/sdcard: Check address is in range'
009/15:[----] [--] 'hw/sd/sdcard: Update the SDState documentation'
010/15:[----] [--] 'hw/sd/sdcard: Simplify cmd_valid_while_locked()'
011/15:[----] [--] 'hw/sd/sdcard: Constify sd_crc*()'s message argument'
012/15:[0004] [FC] 'hw/sd/sdcard: Make iolen unsigned'
013/15:[----] [-C] 'hw/sd/sdcard: Correctly display the command name in trace events'
014/15:[0004] [FC] 'hw/sd/sdcard: Display offset in read/write_data() trace events'
015/15:[----] [--] 'hw/sd/sdcard: Simplify realize() a bit'
Philippe Mathieu-Daudé (15):
MAINTAINERS: Cc qemu-block mailing list
hw/sd/sdcard: Update coding style to make checkpatch.pl happy
hw/sd/sdcard: Move some definitions to use them earlier
hw/sd/sdcard: Use the HWBLOCK_SIZE definition
hw/sd/sdcard: Do not switch to ReceivingData if address is invalid
hw/sd/sdcard: Restrict Class 6 commands to SCSD cards
hw/sd/sdcard: Initialize constant values first
hw/sd/sdcard: Check address is in range
hw/sd/sdcard: Update the SDState documentation
hw/sd/sdcard: Simplify cmd_valid_while_locked()
hw/sd/sdcard: Constify sd_crc*()'s message argument
hw/sd/sdcard: Make iolen unsigned
hw/sd/sdcard: Correctly display the command name in trace events
hw/sd/sdcard: Display offset in read/write_data() trace events
hw/sd/sdcard: Simplify realize() a bit
hw/sd/sd.c | 173 +++++++++++++++++++++++++++------------------
MAINTAINERS | 1 +
hw/sd/trace-events | 4 +-
3 files changed, 109 insertions(+), 69 deletions(-)
--
2.21.3
next reply other threads:[~2020-06-26 16:42 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-26 16:40 Philippe Mathieu-Daudé [this message]
2020-06-26 16:40 ` [PATCH v5 01/15] MAINTAINERS: Cc qemu-block mailing list Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 02/15] hw/sd/sdcard: Update coding style to make checkpatch.pl happy Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 03/15] hw/sd/sdcard: Move some definitions to use them earlier Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 04/15] hw/sd/sdcard: Use the HWBLOCK_SIZE definition Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 05/15] hw/sd/sdcard: Do not switch to ReceivingData if address is invalid Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 06/15] hw/sd/sdcard: Restrict Class 6 commands to SCSD cards Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 07/15] hw/sd/sdcard: Initialize constant values first Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 08/15] hw/sd/sdcard: Check address is in range Philippe Mathieu-Daudé
2020-06-26 17:43 ` Philippe Mathieu-Daudé
2020-06-30 10:00 ` Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 09/15] hw/sd/sdcard: Update the SDState documentation Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 10/15] hw/sd/sdcard: Simplify cmd_valid_while_locked() Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 11/15] hw/sd/sdcard: Constify sd_crc*()'s message argument Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 12/15] hw/sd/sdcard: Make iolen unsigned Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 13/15] hw/sd/sdcard: Correctly display the command name in trace events Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 14/15] hw/sd/sdcard: Display offset in read/write_data() " Philippe Mathieu-Daudé
2020-06-26 16:40 ` [PATCH v5 15/15] hw/sd/sdcard: Simplify realize() a bit Philippe Mathieu-Daudé
2020-06-26 17:14 ` [PATCH v5 00/15] hw/sd/sdcard: Fix CVE-2020-13253 & cleanups no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200626164026.766-1-f4bug@amsat.org \
--to=f4bug@amsat.org \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).