Blame SOURCES/0022-fs-ntfs3-fix-an-error-code-in-ntfs_get_acl_ex.patch
|
Kmods SIG |
8b815c |
From 2926e4297053c735ab65450192dfba32a4f47fa9 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Dan Carpenter <dan.carpenter@oracle.com>
|
|
Kmods SIG |
8b815c |
Date: Tue, 24 Aug 2021 14:48:58 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 2926e4297053] src: fix an error code in
|
|
Kmods SIG |
8b815c |
ntfs_get_acl_ex()
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
The ntfs_get_ea() function returns negative error codes or on success
|
|
Kmods SIG |
8b815c |
it returns the length. In the original code a zero length return was
|
|
Kmods SIG |
8b815c |
treated as -ENODATA and results in a NULL return. But it should be
|
|
Kmods SIG |
8b815c |
treated as an invalid length and result in an PTR_ERR(-EINVAL) return.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Fixes: be71b5cba2e6 ("src: Add attrib operations")
|
|
Kmods SIG |
8b815c |
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/xattr.c | 2 +-
|
|
Kmods SIG |
8b815c |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index af89e50f7b9f32926e4daaea9f8b729916519526..d3d5b9d331d1f55010843085738cf395b640eb0b 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -521,7 +521,7 @@ static struct posix_acl *ntfs_get_acl_ex(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
ni_unlock(ni);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
/* Translate extended attribute to acl */
|
|
Kmods SIG |
8b815c |
- if (err > 0) {
|
|
Kmods SIG |
8b815c |
+ if (err >= 0) {
|
|
Kmods SIG |
8b815c |
acl = posix_acl_from_xattr(mnt_userns, buf, err);
|
|
Kmods SIG |
8b815c |
if (!IS_ERR(acl))
|
|
Kmods SIG |
8b815c |
set_cached_acl(inode, type, acl);
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|