mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
scsi: ses: Fix possible desc_ptr out-of-bounds accesses
Sanitize possible desc_ptr out-of-bounds accesses in ses_enclosure_data_process(). Link: https://lore.kernel.org/r/20230202162451.15346-4-thenzl@redhat.com Cc: stable@vger.kernel.org Signed-off-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
db95d4df71
commit
801ab13d50
@ -578,15 +578,19 @@ static void ses_enclosure_data_process(struct enclosure_device *edev,
|
||||
int max_desc_len;
|
||||
|
||||
if (desc_ptr) {
|
||||
if (desc_ptr >= buf + page7_len) {
|
||||
if (desc_ptr + 3 >= buf + page7_len) {
|
||||
desc_ptr = NULL;
|
||||
} else {
|
||||
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
||||
desc_ptr += 4;
|
||||
/* Add trailing zero - pushes into
|
||||
* reserved space */
|
||||
desc_ptr[len] = '\0';
|
||||
name = desc_ptr;
|
||||
if (desc_ptr + len > buf + page7_len)
|
||||
desc_ptr = NULL;
|
||||
else {
|
||||
/* Add trailing zero - pushes into
|
||||
* reserved space */
|
||||
desc_ptr[len] = '\0';
|
||||
name = desc_ptr;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
||||
|
Loading…
Reference in New Issue
Block a user