From: Guenter Roeck Date: Mon, 16 Jan 2012 21:51:47 +0000 (+0100) Subject: hwmon: (lm90) Add range check to set_update_interval X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6b101116ae445311031f3e9f91d3010d444b9845;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git hwmon: (lm90) Add range check to set_update_interval When writing the update_interval attribute, the parameter value was not range checked, which could cause an integer overflow and result in an arbitrary update interval. Fix by limiting the value range to <0, 100000>. Reported-by: Jean Delvare Signed-off-by: Guenter Roeck Signed-off-by: Jean Delvare --- diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c index bdfd675488ae..d2dd5f90496d 100644 --- a/drivers/hwmon/lm90.c +++ b/drivers/hwmon/lm90.c @@ -917,7 +917,7 @@ static ssize_t set_update_interval(struct device *dev, return err; mutex_lock(&data->update_lock); - lm90_set_convrate(client, data, val); + lm90_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000)); mutex_unlock(&data->update_lock); return count;