From: Jamie Hill-Daniel Date: Tue, 18 Jan 2022 07:06:04 +0000 (+0100) Subject: vfs: fs_context: fix up param length parsing in legacy_parse_param X-Git-Tag: v6.1-rc5~2186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=722d94847de29310e8aa03fcbdb41fc92c521756;p=platform%2Fkernel%2Flinux-starfive.git vfs: fs_context: fix up param length parsing in legacy_parse_param The "PAGE_SIZE - 2 - size" calculation in legacy_parse_param() is an unsigned type so a large value of "size" results in a high positive value instead of a negative value as expected. Fix this by getting rid of the subtraction. Signed-off-by: Jamie Hill-Daniel Signed-off-by: William Liu Tested-by: Salvatore Bonaccorso Tested-by: Thadeu Lima de Souza Cascardo Acked-by: Dan Carpenter Acked-by: Al Viro Signed-off-by: Greg Kroah-Hartman Signed-off-by: Linus Torvalds --- diff --git a/fs/fs_context.c b/fs/fs_context.c index b7e43a7..24ce12f 100644 --- a/fs/fs_context.c +++ b/fs/fs_context.c @@ -548,7 +548,7 @@ static int legacy_parse_param(struct fs_context *fc, struct fs_parameter *param) param->key); } - if (len > PAGE_SIZE - 2 - size) + if (size + len + 2 > PAGE_SIZE) return invalf(fc, "VFS: Legacy: Cumulative options too large"); if (strchr(param->key, ',') || (param->type == fs_value_is_string &&