Commit 6b101116ae445311031f3e9f91d3010d444b9845

Authored by Guenter Roeck
Committed by Jean Delvare
1 parent 2fe28ab51d

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 <khali@linux-fr.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/hwmon/lm90.c
... ... @@ -917,7 +917,7 @@
917 917 return err;
918 918  
919 919 mutex_lock(&data->update_lock);
920   - lm90_set_convrate(client, data, val);
  920 + lm90_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000));
921 921 mutex_unlock(&data->update_lock);
922 922  
923 923 return count;