diff options
author | Paul Bolle <[email protected]> | 2014-02-04 23:23:12 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-02-07 08:29:46 -0800 |
commit | 5bbb2ae3d6f896f8d2082d1eceb6131c2420b7cf (patch) | |
tree | 3149c5f0fa942917ed97655062377f9a184881ba | |
parent | 269f979467cf49f2ea8132316c1f00f8c9678f7c (diff) |
raw: test against runtime value of max_raw_minors
bind_get() checks the device number it is called with. It uses
MAX_RAW_MINORS for the upper bound. But MAX_RAW_MINORS is set at compile
time while the actual number of raw devices can be set at runtime. This
means the test can either be too strict or too lenient. And if the test
ends up being too lenient bind_get() might try to access memory beyond
what was allocated for "raw_devices".
So check against the runtime value (max_raw_minors) in this function.
Signed-off-by: Paul Bolle <[email protected]>
Acked-by: Jan Kara <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/char/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/raw.c b/drivers/char/raw.c index f3223aac4df1..6e8d65e9b1d3 100644 --- a/drivers/char/raw.c +++ b/drivers/char/raw.c @@ -190,7 +190,7 @@ static int bind_get(int number, dev_t *dev) struct raw_device_data *rawdev; struct block_device *bdev; - if (number <= 0 || number >= MAX_RAW_MINORS) + if (number <= 0 || number >= max_raw_minors) return -EINVAL; rawdev = &raw_devices[number]; |