From: Murphy Zhou Date: Sat, 21 Sep 2019 11:26:00 +0000 (+0800) Subject: CIFS: fix max ea value size X-Git-Tag: v4.9.195~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b8d7cf87707123984a45d9066df5f92bb0f5a0d;p=platform%2Fkernel%2Flinux-amlogic.git CIFS: fix max ea value size commit 63d37fb4ce5ae7bf1e58f906d1bf25f036fe79b2 upstream. It should not be larger then the slab max buf size. If user specifies a larger size, it passes this check and goes straightly to SMB2_set_info_init performing an insecure memcpy. Signed-off-by: Murphy Zhou Reviewed-by: Aurelien Aptel CC: Stable Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/cifs/xattr.c b/fs/cifs/xattr.c index 20af518..6634ad3 100644 --- a/fs/cifs/xattr.c +++ b/fs/cifs/xattr.c @@ -31,7 +31,7 @@ #include "cifs_fs_sb.h" #include "cifs_unicode.h" -#define MAX_EA_VALUE_SIZE 65535 +#define MAX_EA_VALUE_SIZE CIFSMaxBufSize #define CIFS_XATTR_CIFS_ACL "system.cifs_acl" #define CIFS_XATTR_ATTRIB "cifs.dosattrib" /* full name: user.cifs.dosattrib */ #define CIFS_XATTR_CREATETIME "cifs.creationtime" /* user.cifs.creationtime */