diff options
| author | Sakib Sajal <sakib.sajal@windriver.com> | 2022-02-02 10:47:19 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-10 13:25:48 +0000 |
| commit | 83e7e63458008e4fdafc8c84bac07751ad4eb0a6 (patch) | |
| tree | 74f3991e10015b5004023b8203bbcd13908d2de8 | |
| parent | 21d669e12530307ad270fa5a0a34200163f584cb (diff) | |
| download | poky-83e7e63458008e4fdafc8c84bac07751ad4eb0a6.tar.gz | |
qemu: fix CVE-2021-3930
(From OE-Core rev: f0504578174f77ba231c72801fb5a295869a40d1)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-devtools/qemu/qemu/CVE-2021-3930.patch | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 5c1c88db25..35aa3e1d7e 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
| @@ -72,6 +72,7 @@ SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \ | |||
| 72 | file://CVE-2021-3682.patch \ | 72 | file://CVE-2021-3682.patch \ |
| 73 | file://CVE-2021-3713.patch \ | 73 | file://CVE-2021-3713.patch \ |
| 74 | file://CVE-2021-3748.patch \ | 74 | file://CVE-2021-3748.patch \ |
| 75 | file://CVE-2021-3930.patch \ | ||
| 75 | " | 76 | " |
| 76 | UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar" | 77 | UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar" |
| 77 | 78 | ||
diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2021-3930.patch b/meta/recipes-devtools/qemu/qemu/CVE-2021-3930.patch new file mode 100644 index 0000000000..bfbe5cee33 --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu/CVE-2021-3930.patch | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | From cdca50eff9c38367be54f92839734ab490c8b0f7 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Mauro Matteo Cascella <mcascell@redhat.com> | ||
| 3 | Date: Thu, 4 Nov 2021 17:31:38 +0100 | ||
| 4 | Subject: [PATCH 10/12] hw/scsi/scsi-disk: MODE_PAGE_ALLS not allowed in MODE | ||
| 5 | SELECT commands | ||
| 6 | |||
| 7 | This avoids an off-by-one read of 'mode_sense_valid' buffer in | ||
| 8 | hw/scsi/scsi-disk.c:mode_sense_page(). | ||
| 9 | |||
| 10 | Fixes: CVE-2021-3930 | ||
| 11 | Cc: qemu-stable@nongnu.org | ||
| 12 | Reported-by: Alexander Bulekov <alxndr@bu.edu> | ||
| 13 | Fixes: a8f4bbe2900 ("scsi-disk: store valid mode pages in a table") | ||
| 14 | Fixes: #546 | ||
| 15 | Reported-by: Qiuhao Li <Qiuhao.Li@outlook.com> | ||
| 16 | Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com> | ||
| 17 | Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | ||
| 18 | |||
| 19 | Upstream-Status: Backport [b3af7fdf9cc537f8f0dd3e2423d83f5c99a457e8] | ||
| 20 | CVE: CVE-2021-3930 | ||
| 21 | |||
| 22 | Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> | ||
| 23 | --- | ||
| 24 | hw/scsi/scsi-disk.c | 6 ++++++ | ||
| 25 | 1 file changed, 6 insertions(+) | ||
| 26 | |||
| 27 | diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c | ||
| 28 | index 90841ad79..5b44ed7d8 100644 | ||
| 29 | --- a/hw/scsi/scsi-disk.c | ||
| 30 | +++ b/hw/scsi/scsi-disk.c | ||
| 31 | @@ -1100,6 +1100,7 @@ static int mode_sense_page(SCSIDiskState *s, int page, uint8_t **p_outbuf, | ||
| 32 | uint8_t *p = *p_outbuf + 2; | ||
| 33 | int length; | ||
| 34 | |||
| 35 | + assert(page < ARRAY_SIZE(mode_sense_valid)); | ||
| 36 | if ((mode_sense_valid[page] & (1 << s->qdev.type)) == 0) { | ||
| 37 | return -1; | ||
| 38 | } | ||
| 39 | @@ -1441,6 +1442,11 @@ static int scsi_disk_check_mode_select(SCSIDiskState *s, int page, | ||
| 40 | return -1; | ||
| 41 | } | ||
| 42 | |||
| 43 | + /* MODE_PAGE_ALLS is only valid for MODE SENSE commands */ | ||
| 44 | + if (page == MODE_PAGE_ALLS) { | ||
| 45 | + return -1; | ||
| 46 | + } | ||
| 47 | + | ||
| 48 | p = mode_current; | ||
| 49 | memset(mode_current, 0, inlen + 2); | ||
| 50 | len = mode_sense_page(s, page, &p, 0); | ||
| 51 | -- | ||
| 52 | 2.31.1 | ||
| 53 | |||
