OSDN Git Service

f2fs: fix potential overflow
authorChao Yu <yuchao0@huawei.com>
Wed, 25 Apr 2018 11:38:17 +0000 (19:38 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Mon, 9 Jul 2018 00:29:52 +0000 (17:29 -0700)
commit03279ce90b4666931c32cebf089c49a223db0c09
tree5e5693870fa0f96f0c56e59e3d0f2e7fc9ac7605
parentf46eddc4da48ec1b8fbee2a1f53356bfa67eec3d
f2fs: fix potential overflow

In build_sit_entries(), if valid_blocks in SIT block is smaller than
valid_blocks in journal, for below calculation:

sbi->discard_blks += old_valid_blocks - se->valid_blocks;

There will be two times potential overflow:
- old_valid_blocks - se->valid_blocks will overflow, and be a very
large number.
- sbi->discard_blks += result will overflow again, comes out a correct
result accidently.

Anyway, it should be fixed.

Fixes: d600af236da5 ("f2fs: avoid unneeded loop in build_sit_entries")
Fixes: 1f43e2ad7bff ("f2fs: introduce CP_TRIMMED_FLAG to avoid unneeded discard")
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c