|
|
c687bc |
From b9b77159567283628645943b5367d39b558e8faa Mon Sep 17 00:00:00 2001
|
|
|
c687bc |
From: Jon Maloy <jmaloy@redhat.com>
|
|
|
c687bc |
Date: Tue, 26 Jan 2021 20:07:59 -0500
|
|
|
c687bc |
Subject: [PATCH 9/9] block/iscsi:fix heap-buffer-overflow in
|
|
|
c687bc |
iscsi_aio_ioctl_cb
|
|
|
c687bc |
MIME-Version: 1.0
|
|
|
c687bc |
Content-Type: text/plain; charset=UTF-8
|
|
|
c687bc |
Content-Transfer-Encoding: 8bit
|
|
|
c687bc |
|
|
|
c687bc |
RH-Author: Jon Maloy <jmaloy@redhat.com>
|
|
|
c687bc |
Message-id: <20210126200759.245891-2-jmaloy@redhat.com>
|
|
|
c687bc |
Patchwork-id: 100787
|
|
|
c687bc |
O-Subject: [RHEL-8.4.0 qemu-kvm PATCH 1/1] block/iscsi:fix heap-buffer-overflow in iscsi_aio_ioctl_cb
|
|
|
c687bc |
Bugzilla: 1912974
|
|
|
c687bc |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
c687bc |
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
c687bc |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
c687bc |
|
|
|
c687bc |
From: Chen Qun <kuhn.chenqun@huawei.com>
|
|
|
c687bc |
|
|
|
c687bc |
There is an overflow, the source 'datain.data[2]' is 100 bytes,
|
|
|
c687bc |
but the 'ss' is 252 bytes.This may cause a security issue because
|
|
|
c687bc |
we can access a lot of unrelated memory data.
|
|
|
c687bc |
|
|
|
c687bc |
The len for sbp copy data should take the minimum of mx_sb_len and
|
|
|
c687bc |
sb_len_wr, not the maximum.
|
|
|
c687bc |
|
|
|
c687bc |
If we use iscsi device for VM backend storage, ASAN show stack:
|
|
|
c687bc |
|
|
|
c687bc |
READ of size 252 at 0xfffd149dcfc4 thread T0
|
|
|
c687bc |
#0 0xaaad433d0d34 in __asan_memcpy (aarch64-softmmu/qemu-system-aarch64+0x2cb0d34)
|
|
|
c687bc |
#1 0xaaad45f9d6d0 in iscsi_aio_ioctl_cb /qemu/block/iscsi.c:996:9
|
|
|
c687bc |
#2 0xfffd1af0e2dc (/usr/lib64/iscsi/libiscsi.so.8+0xe2dc)
|
|
|
c687bc |
#3 0xfffd1af0d174 (/usr/lib64/iscsi/libiscsi.so.8+0xd174)
|
|
|
c687bc |
#4 0xfffd1af19fac (/usr/lib64/iscsi/libiscsi.so.8+0x19fac)
|
|
|
c687bc |
#5 0xaaad45f9acc8 in iscsi_process_read /qemu/block/iscsi.c:403:5
|
|
|
c687bc |
#6 0xaaad4623733c in aio_dispatch_handler /qemu/util/aio-posix.c:467:9
|
|
|
c687bc |
#7 0xaaad4622f350 in aio_dispatch_handlers /qemu/util/aio-posix.c:510:20
|
|
|
c687bc |
#8 0xaaad4622f350 in aio_dispatch /qemu/util/aio-posix.c:520
|
|
|
c687bc |
#9 0xaaad46215944 in aio_ctx_dispatch /qemu/util/async.c:298:5
|
|
|
c687bc |
#10 0xfffd1bed12f4 in g_main_context_dispatch (/lib64/libglib-2.0.so.0+0x512f4)
|
|
|
c687bc |
#11 0xaaad46227de0 in glib_pollfds_poll /qemu/util/main-loop.c:219:9
|
|
|
c687bc |
#12 0xaaad46227de0 in os_host_main_loop_wait /qemu/util/main-loop.c:242
|
|
|
c687bc |
#13 0xaaad46227de0 in main_loop_wait /qemu/util/main-loop.c:518
|
|
|
c687bc |
#14 0xaaad43d9d60c in qemu_main_loop /qemu/softmmu/vl.c:1662:9
|
|
|
c687bc |
#15 0xaaad4607a5b0 in main /qemu/softmmu/main.c:49:5
|
|
|
c687bc |
#16 0xfffd1a460b9c in __libc_start_main (/lib64/libc.so.6+0x20b9c)
|
|
|
c687bc |
#17 0xaaad43320740 in _start (aarch64-softmmu/qemu-system-aarch64+0x2c00740)
|
|
|
c687bc |
|
|
|
c687bc |
0xfffd149dcfc4 is located 0 bytes to the right of 100-byte region [0xfffd149dcf60,0xfffd149dcfc4)
|
|
|
c687bc |
allocated by thread T0 here:
|
|
|
c687bc |
#0 0xaaad433d1e70 in __interceptor_malloc (aarch64-softmmu/qemu-system-aarch64+0x2cb1e70)
|
|
|
c687bc |
#1 0xfffd1af0e254 (/usr/lib64/iscsi/libiscsi.so.8+0xe254)
|
|
|
c687bc |
#2 0xfffd1af0d174 (/usr/lib64/iscsi/libiscsi.so.8+0xd174)
|
|
|
c687bc |
#3 0xfffd1af19fac (/usr/lib64/iscsi/libiscsi.so.8+0x19fac)
|
|
|
c687bc |
#4 0xaaad45f9acc8 in iscsi_process_read /qemu/block/iscsi.c:403:5
|
|
|
c687bc |
#5 0xaaad4623733c in aio_dispatch_handler /qemu/util/aio-posix.c:467:9
|
|
|
c687bc |
#6 0xaaad4622f350 in aio_dispatch_handlers /qemu/util/aio-posix.c:510:20
|
|
|
c687bc |
#7 0xaaad4622f350 in aio_dispatch /qemu/util/aio-posix.c:520
|
|
|
c687bc |
#8 0xaaad46215944 in aio_ctx_dispatch /qemu/util/async.c:298:5
|
|
|
c687bc |
#9 0xfffd1bed12f4 in g_main_context_dispatch (/lib64/libglib-2.0.so.0+0x512f4)
|
|
|
c687bc |
#10 0xaaad46227de0 in glib_pollfds_poll /qemu/util/main-loop.c:219:9
|
|
|
c687bc |
#11 0xaaad46227de0 in os_host_main_loop_wait /qemu/util/main-loop.c:242
|
|
|
c687bc |
#12 0xaaad46227de0 in main_loop_wait /qemu/util/main-loop.c:518
|
|
|
c687bc |
#13 0xaaad43d9d60c in qemu_main_loop /qemu/softmmu/vl.c:1662:9
|
|
|
c687bc |
#14 0xaaad4607a5b0 in main /qemu/softmmu/main.c:49:5
|
|
|
c687bc |
#15 0xfffd1a460b9c in __libc_start_main (/lib64/libc.so.6+0x20b9c)
|
|
|
c687bc |
#16 0xaaad43320740 in _start (aarch64-softmmu/qemu-system-aarch64+0x2c00740)
|
|
|
c687bc |
|
|
|
c687bc |
Reported-by: Euler Robot <euler.robot@huawei.com>
|
|
|
c687bc |
Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com>
|
|
|
c687bc |
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
c687bc |
Message-id: 20200418062602.10776-1-kuhn.chenqun@huawei.com
|
|
|
c687bc |
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
|
c687bc |
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
|
|
|
c687bc |
|
|
|
c687bc |
(cherry picked from ff0507c239a246fd7215b31c5658fc6a3ee1e4c5)
|
|
|
c687bc |
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
|
|
|
c687bc |
Signed-off-by: Jon Maloy <jmaloy.redhat.com>
|
|
|
c687bc |
---
|
|
|
c687bc |
block/iscsi.c | 3 +--
|
|
|
c687bc |
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
c687bc |
|
|
|
c687bc |
diff --git a/block/iscsi.c b/block/iscsi.c
|
|
|
c687bc |
index 0bea2d3a93..06915655b3 100644
|
|
|
c687bc |
--- a/block/iscsi.c
|
|
|
c687bc |
+++ b/block/iscsi.c
|
|
|
c687bc |
@@ -991,8 +991,7 @@ iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status,
|
|
|
c687bc |
acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE;
|
|
|
c687bc |
|
|
|
c687bc |
acb->ioh->sb_len_wr = acb->task->datain.size - 2;
|
|
|
c687bc |
- ss = (acb->ioh->mx_sb_len >= acb->ioh->sb_len_wr) ?
|
|
|
c687bc |
- acb->ioh->mx_sb_len : acb->ioh->sb_len_wr;
|
|
|
c687bc |
+ ss = MIN(acb->ioh->mx_sb_len, acb->ioh->sb_len_wr);
|
|
|
c687bc |
memcpy(acb->ioh->sbp, &acb->task->datain.data[2], ss);
|
|
|
c687bc |
}
|
|
|
c687bc |
|
|
|
c687bc |
--
|
|
|
c687bc |
2.18.2
|
|
|
c687bc |
|