]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
NFS: Return valid errors from nfs2/3_decode_dirent()
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Thu, 24 Feb 2022 15:59:37 +0000 (10:59 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Apr 2022 12:40:25 +0000 (14:40 +0200)
[ Upstream commit 64cfca85bacde54caa64e0ab855c48734894fa37 ]

Valid return values for decode_dirent() callback functions are:
 0: Success
 -EBADCOOKIE: End of directory
 -EAGAIN: End of xdr_stream

All errors need to map into one of those three values.

Fixes: 573c4e1ef53a ("NFS: Simplify ->decode_dirent() calling sequence")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/nfs/nfs2xdr.c
fs/nfs/nfs3xdr.c

index f6676af37d5dbb26baee5e776f5c7c05554227ab..5e6453e9b30790bd8cb7160c14feecfc5bb71186 100644 (file)
@@ -948,7 +948,7 @@ int nfs2_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
 
        error = decode_filename_inline(xdr, &entry->name, &entry->len);
        if (unlikely(error))
-               return error;
+               return -EAGAIN;
 
        /*
         * The type (size and byte order) of nfscookie isn't defined in
index dff6b52d26a856ab698828d32f35f56ab7a7c939..b5a9379b14504cb15172886a6c97acd7e6bdc0d7 100644 (file)
@@ -1964,7 +1964,6 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
                       bool plus)
 {
        struct user_namespace *userns = rpc_userns(entry->server->client);
-       struct nfs_entry old = *entry;
        __be32 *p;
        int error;
        u64 new_cookie;
@@ -1984,15 +1983,15 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
 
        error = decode_fileid3(xdr, &entry->ino);
        if (unlikely(error))
-               return error;
+               return -EAGAIN;
 
        error = decode_inline_filename3(xdr, &entry->name, &entry->len);
        if (unlikely(error))
-               return error;
+               return -EAGAIN;
 
        error = decode_cookie3(xdr, &new_cookie);
        if (unlikely(error))
-               return error;
+               return -EAGAIN;
 
        entry->d_type = DT_UNKNOWN;
 
@@ -2000,7 +1999,7 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
                entry->fattr->valid = 0;
                error = decode_post_op_attr(xdr, entry->fattr, userns);
                if (unlikely(error))
-                       return error;
+                       return -EAGAIN;
                if (entry->fattr->valid & NFS_ATTR_FATTR_V3)
                        entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
 
@@ -2015,11 +2014,8 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
                        return -EAGAIN;
                if (*p != xdr_zero) {
                        error = decode_nfs_fh3(xdr, entry->fh);
-                       if (unlikely(error)) {
-                               if (error == -E2BIG)
-                                       goto out_truncated;
-                               return error;
-                       }
+                       if (unlikely(error))
+                               return -EAGAIN;
                } else
                        zero_nfs_fh3(entry->fh);
        }
@@ -2028,11 +2024,6 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
        entry->cookie = new_cookie;
 
        return 0;
-
-out_truncated:
-       dprintk("NFS: directory entry contains invalid file handle\n");
-       *entry = old;
-       return -EAGAIN;
 }
 
 /*