| Submitter | Sami Liedes |
|---|---|
| Date | Dec. 13, 2012, 10:04 p.m. |
| Message ID | <20121213220422.GL9713@sli.dy.fi> |
| Download | mbox | patch |
| Permalink | /patch/206262/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/ext2fs/block.c b/lib/ext2fs/block.c index 68dcb03..dd3911d 100644 --- a/lib/ext2fs/block.c +++ b/lib/ext2fs/block.c @@ -251,7 +251,7 @@ static int block_iterate_tind(blk_t *tind_block, blk_t ref_block, } check_for_ro_violation_return(ctx, ret); if (!*tind_block || (ret & BLOCK_ABORT)) { - ctx->bcount += limit*limit*limit; + ctx->bcount += ((e2_blkcnt_t)limit)*limit*limit; return ret; } if (*tind_block >= ext2fs_blocks_count(ctx->fs->super) ||
The intermediate result of limit*limit*limit is too big to fit in a 32-bit integer, causing undefined behavior. Fix by casting one of the limits to the result type of e2_blkcnt_t. Caught using clang -fsanitize=undefined. Signed-off-by: Sami Liedes <sami.liedes@iki.fi> --- lib/ext2fs/block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)