OSDN Git Service

f2fs: Use scnprintf() for avoiding potential buffer overflow
authorTakashi Iwai <tiwai@suse.de>
Wed, 11 Mar 2020 09:33:53 +0000 (10:33 +0100)
committerJaegeuk Kim <jaegeuk@kernel.org>
Thu, 19 Mar 2020 18:37:56 +0000 (11:37 -0700)
commitc6d5789bea5187c2716959f8954a1e00b8a7835d
tree68e2690031ed012ca0d1b3671fecd34af8b4d31b
parent2536ac6872e5265b4d9d263122cee02e3d5cae1d
f2fs: Use scnprintf() for avoiding potential buffer overflow

Since snprintf() returns the would-be-output size instead of the
actual output size, the succeeding calls may go beyond the given
buffer limit.  Fix it by replacing with scnprintf().

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/sysfs.c