Skip to content
Snippets Groups Projects
Commit 5a6b2b36 authored by Bob Copeland's avatar Bob Copeland Committed by Linus Torvalds
Browse files

omfs: fix potential integer overflow in allocator


Both 'i' and 'bits_per_entry' are signed integers but the result is a
u64 block number.  Cast i to u64 to avoid truncation on 32-bit targets.

Found by Coverity (CID 200679).

Signed-off-by: default avatarBob Copeland <me@bobcopeland.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c0345ee5
No related branches found
No related tags found
No related merge requests found
...@@ -159,7 +159,7 @@ int omfs_allocate_range(struct super_block *sb, ...@@ -159,7 +159,7 @@ int omfs_allocate_range(struct super_block *sb,
goto out; goto out;
found: found:
*return_block = i * bits_per_entry + bit; *return_block = (u64) i * bits_per_entry + bit;
*return_size = run; *return_size = run;
ret = set_run(sb, i, bits_per_entry, bit, run, 1); ret = set_run(sb, i, bits_per_entry, bit, run, 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment