mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
hwmon: (aspeed-pwm-tacho) Avoid possible buffer overflow
aspeed_create_fan() reads a pwm_port value using of_property_read_u32(). If pwm_port will be more than ARRAY_SIZE(pwm_port_params), there will be a buffer overflow in aspeed_create_pwm_port()->aspeed_set_pwm_port_enable(). The patch fixes the potential buffer overflow. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Evgeny Novikov <novikov@ispras.ru> Link: https://lore.kernel.org/r/20200703111518.9644-1-novikov@ispras.ru Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
committed by
Guenter Roeck
parent
dcb7fd82c7
commit
bc4071aafc
@@ -851,6 +851,8 @@ static int aspeed_create_fan(struct device *dev,
|
|||||||
ret = of_property_read_u32(child, "reg", &pwm_port);
|
ret = of_property_read_u32(child, "reg", &pwm_port);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
if (pwm_port >= ARRAY_SIZE(pwm_port_params))
|
||||||
|
return -EINVAL;
|
||||||
aspeed_create_pwm_port(priv, (u8)pwm_port);
|
aspeed_create_pwm_port(priv, (u8)pwm_port);
|
||||||
|
|
||||||
ret = of_property_count_u8_elems(child, "cooling-levels");
|
ret = of_property_count_u8_elems(child, "cooling-levels");
|
||||||
|
|||||||
Reference in New Issue
Block a user