diff options
author | Tejun Heo <tj@kernel.org> | 2013-02-27 20:04:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-27 22:10:15 -0500 |
commit | 3bec60d511179853138836ae6e1b61fe34d9235f (patch) | |
tree | ce8ced19f2d85483f84472573d38e0a6ec70fa83 /drivers/firewire | |
parent | 69ee266b4c890aea7505388c4e394f5757166531 (diff) |
firewire: add minor number range check to fw_device_init()
fw_device_init() didn't check whether the allocated minor number isn't
too large. Fail if it goes overflows MINORBITS.
Signed-off-by: Tejun Heo <tj@kernel.org>
Suggested-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/core-device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/firewire/core-device.c b/drivers/firewire/core-device.c index 3873d535b28d..af3e8aa5eedc 100644 --- a/drivers/firewire/core-device.c +++ b/drivers/firewire/core-device.c | |||
@@ -1020,6 +1020,10 @@ static void fw_device_init(struct work_struct *work) | |||
1020 | ret = idr_pre_get(&fw_device_idr, GFP_KERNEL) ? | 1020 | ret = idr_pre_get(&fw_device_idr, GFP_KERNEL) ? |
1021 | idr_get_new(&fw_device_idr, device, &minor) : | 1021 | idr_get_new(&fw_device_idr, device, &minor) : |
1022 | -ENOMEM; | 1022 | -ENOMEM; |
1023 | if (minor >= 1 << MINORBITS) { | ||
1024 | idr_remove(&fw_device_idr, minor); | ||
1025 | minor = -ENOSPC; | ||
1026 | } | ||
1023 | up_write(&fw_device_rwsem); | 1027 | up_write(&fw_device_rwsem); |
1024 | 1028 | ||
1025 | if (ret < 0) | 1029 | if (ret < 0) |