cmd64x: potential buffer overflow in cmd64x_program_timings()
[ Upstream commit 117fcc3053606d8db5cef8821dca15022ae578bb ] The "drive->dn" value is a u8 and it is controlled by root only, but it could be out of bounds here so let's check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
e9f0fc098c
commit
d83e090023
1 changed files with 3 additions and 0 deletions
|
@ -65,6 +65,9 @@ static void cmd64x_program_timings(ide_drive_t *drive, u8 mode)
|
||||||
struct ide_timing t;
|
struct ide_timing t;
|
||||||
u8 arttim = 0;
|
u8 arttim = 0;
|
||||||
|
|
||||||
|
if (drive->dn >= ARRAY_SIZE(drwtim_regs))
|
||||||
|
return;
|
||||||
|
|
||||||
ide_timing_compute(drive, mode, &t, T, 0);
|
ide_timing_compute(drive, mode, &t, T, 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue