[Devel] [PATCH RHEL8 COMMIT] ms/nfs: Fix getxattr kernel panic and memory overflow

Konstantin Khorenko khorenko at virtuozzo.com
Thu Sep 24 14:06:59 MSK 2020


The commit is pushed to "branch-rh8-4.18.0-193.6.3.vz8.4.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh8-4.18.0-193.6.3.vz8.4.7
------>
commit 11c890731f017846a42a56e2631a782dbc9412ab
Author: Vasily Averin <vvs at virtuozzo.com>
Date:   Fri Sep 11 12:42:34 2020 +0300

    ms/nfs: Fix getxattr kernel panic and memory overflow
    
    Move the buffer size check to decode_attr_security_label() before memcpy()
    Only call memcpy() if the buffer is large enough
    
    Fixes: aa9c2669626c ("NFS: Client implementation of Labeled-NFS")
    Signed-off-by: Jeffrey Mitchell <jeffrey.mitchell at starlab.io>
    [Trond: clean up duplicate test of label->len != 0]
    Signed-off-by: Trond Myklebust <trond.myklebust at hammerspace.com>
    
    (cherry-picked mainline b4487b935452)
    Fixes CVE-2020-25212
    https://jira.sw.ru/browse/PSBM-107824
    Signed-off-by: Vasily Averin <vvs at virtuozzo.com>
    
    (cherry picked from commit d1d2397a805ae7adb0bb8d2f025a958b7bf8402f)
    Signed-off-by: Konstantin Khorenko <khorenko at virtuozzo.com>
---
 fs/nfs/nfs4proc.c | 2 --
 fs/nfs/nfs4xdr.c  | 6 +++++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index e6a45c0a9996..151f3cc30a74 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -5635,8 +5635,6 @@ static int _nfs4_get_security_label(struct inode *inode, void *buf,
 		return ret;
 	if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
 		return -ENOENT;
-	if (buflen < label.len)
-		return -ERANGE;
 	return 0;
 }
 
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c
index 602446158bfb..a3189511ba3b 100644
--- a/fs/nfs/nfs4xdr.c
+++ b/fs/nfs/nfs4xdr.c
@@ -4163,7 +4163,11 @@ static int decode_attr_security_label(struct xdr_stream *xdr, uint32_t *bitmap,
 			return -EIO;
 		if (len < NFS4_MAXLABELLEN) {
 			if (label) {
-				memcpy(label->label, p, len);
+				if (label->len) {
+					if (label->len < len)
+						return -ERANGE;
+					memcpy(label->label, p, len);
+				}
 				label->len = len;
 				label->pi = pi;
 				label->lfs = lfs;


More information about the Devel mailing list