Message ID | 20200629093756.8947-1-bstroesser@ts.fujitsu.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v2] scsi: target: tcmu: Fix crash on ARM during cmd completion | expand |
On Mon, 29 Jun 2020 11:37:56 +0200, Bodo Stroesser wrote: > If tcmu_handle_completions() has to process a padding shorter > than sizeof(struct tcmu_cmd_entry), the current call to > tcmu_flush_dcache_range() with sizeof(struct tcmu_cmd_entry) as > length param is wrong and causes crashes on e.g. ARM, because > tcmu_flush_dcache_range() in this case calls > flush_dcache_page(vmalloc_to_page(start)); > with start being an invalid address above the end of the > vmalloc'ed area. > > [...] Applied to 5.9/scsi-queue, thanks! [1/1] scsi: target: tcmu: Fix crash on ARM during cmd completion https://git.kernel.org/mkp/scsi/c/5a0c256d96f0
diff --git a/drivers/target/target_core_user.c b/drivers/target/target_core_user.c index 3885ca532f8f..82e476d48194 100644 --- a/drivers/target/target_core_user.c +++ b/drivers/target/target_core_user.c @@ -1221,7 +1221,14 @@ static unsigned int tcmu_handle_completions(struct tcmu_dev *udev) struct tcmu_cmd_entry *entry = (void *) mb + CMDR_OFF + udev->cmdr_last_cleaned; - tcmu_flush_dcache_range(entry, sizeof(*entry)); + /* + * Flush max. up to end of cmd ring, since current entry might + * be a padding that is shorter than sizeof(*entry) + */ + size_t ring_left = head_to_end(udev->cmdr_last_cleaned, + udev->cmdr_size); + tcmu_flush_dcache_range(entry, ring_left < sizeof(*entry) ? + ring_left : sizeof(*entry)); if (tcmu_hdr_get_op(entry->hdr.len_op) == TCMU_OP_PAD) { UPDATE_HEAD(udev->cmdr_last_cleaned,