mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
Cramfs: fix abad comparison when wrap-arounds occur
It is possible for corrupted filesystem images to produce very large block offsets that may wrap when a length is added, and wrongly pass the buffer size test. Reported-by: Anatoly Trosinenko <anatoly.trosinenko@gmail.com> Signed-off-by: Nicolas Pitre <nico@linaro.org> Cc: stable@vger.kernel.org
This commit is contained in:
parent
84df9525b0
commit
672ca9dd13
@ -202,7 +202,8 @@ static void *cramfs_blkdev_read(struct super_block *sb, unsigned int offset,
|
||||
continue;
|
||||
blk_offset = (blocknr - buffer_blocknr[i]) << PAGE_SHIFT;
|
||||
blk_offset += offset;
|
||||
if (blk_offset + len > BUFFER_SIZE)
|
||||
if (blk_offset > BUFFER_SIZE ||
|
||||
blk_offset + len > BUFFER_SIZE)
|
||||
continue;
|
||||
return read_buffers[i] + blk_offset;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user