diff options
author | Alan Cox <alan@linux.intel.com> | 2012-09-17 11:47:13 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2012-09-18 11:56:29 +0200 |
commit | 2bd6efad25d7c1950008e2ab4e2d6796001919fc (patch) | |
tree | 408c87e0808e9b4ad4c8f9d95063c89d50350545 /block | |
parent | 97651ea687d3b6a214c32b49f79523db709fba18 (diff) | |
download | linux-3.10-2bd6efad25d7c1950008e2ab4e2d6796001919fc.tar.gz linux-3.10-2bd6efad25d7c1950008e2ab4e2d6796001919fc.tar.bz2 linux-3.10-2bd6efad25d7c1950008e2ab4e2d6796001919fc.zip |
blk: add an upper sanity check on partition adding
65536 should be ludicrous anyway but without it we overflow the
memory computation doing the allocation and badness occurs.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r-- | block/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/ioctl.c b/block/ioctl.c index 4476e0e85d1..4a85096f541 100644 --- a/block/ioctl.c +++ b/block/ioctl.c @@ -41,7 +41,7 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user sizeof(long long) > sizeof(long)) { long pstart = start, plength = length; if (pstart != start || plength != length - || pstart < 0 || plength < 0) + || pstart < 0 || plength < 0 || partno > 65535) return -EINVAL; } |