staging: erofs: fix memleak of inode's shared xattr array
authorSheng Yong <shengyong1@huawei.com>
Thu, 14 Feb 2019 06:46:36 +0000 (14:46 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Feb 2019 09:47:20 +0000 (10:47 +0100)
If it fails to read a shared xattr page, the inode's shared xattr array
is not freed. The next time the inode's xattr is accessed, the previously
allocated array is leaked.

Signed-off-by: Sheng Yong <shengyong1@huawei.com>
Fixes: b17500a0fdba ("staging: erofs: introduce xattr & acl support")
Cc: <stable@vger.kernel.org> # 4.19+
Reviewed-by: Gao Xiang <gaoxiang25@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/erofs/xattr.c

index e748df8..8c48b0a 100644 (file)
@@ -111,8 +111,11 @@ static int init_inode_xattrs(struct inode *inode)
 
                        it.page = erofs_get_meta_page(sb,
                                ++it.blkaddr, S_ISDIR(inode->i_mode));
-                       if (IS_ERR(it.page))
+                       if (IS_ERR(it.page)) {
+                               kfree(vi->xattr_shared_xattrs);
+                               vi->xattr_shared_xattrs = NULL;
                                return PTR_ERR(it.page);
+                       }
 
                        it.kaddr = kmap_atomic(it.page);
                        atomic_map = true;