OSDN Git Service

scsi: mpt3sas: fix an out of bound write
authorTomas Henzl <thenzl@redhat.com>
Fri, 19 Jan 2018 15:22:05 +0000 (16:22 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 31 Jan 2018 02:10:44 +0000 (21:10 -0500)
commit4a8842de8db4953fdda7866626b78b12fb8adb97
tree7084905ca2af031241537eb4d361269e1c0631ca
parenta2390348c19d0819d525d375414a7cfdacb51a68
scsi: mpt3sas: fix an out of bound write

cpu_msix_table is allocated to store online cpus, but pci_irq_get_affinity
may return cpu_possible_mask which is then used to access cpu_msix_table.
That causes bad user experience.  Fix limits access to only online cpus,
I've also added an additional test to protect from an unlikely change in
cpu_online_mask.

[mkp: checkpatch]

Fixes: 1d55abc0e98a ("scsi: mpt3sas: switch to pci_alloc_irq_vectors")
Signed-off-by: Tomas Henzl <thenzl@redhat.com>
Acked-by: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/mpt3sas/mpt3sas_base.c