NFS: fix nfs_path in case of a rename retry
authorAshish Sangwan <ashishsangwan2@gmail.com>
Mon, 5 Oct 2020 09:22:43 +0000 (02:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Nov 2020 09:23:56 +0000 (10:23 +0100)
commit 247db73560bc3e5aef6db50c443c3c0db115bc93 upstream.

We are generating incorrect path in case of rename retry because
we are restarting from wrong dentry. We should restart from the
dentry which was received in the call to nfs_path.

CC: stable@vger.kernel.org
Signed-off-by: Ashish Sangwan <ashishsangwan2@gmail.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/nfs/namespace.c

index e49d831c4e8531f4c179737e724df5c3bf356739..4f539473862a7c1e5173be31b992ecbe58fcbd01 100644 (file)
@@ -30,9 +30,9 @@ int nfs_mountpoint_expiry_timeout = 500 * HZ;
 /*
  * nfs_path - reconstruct the path given an arbitrary dentry
  * @base - used to return pointer to the end of devname part of path
- * @dentry - pointer to dentry
+ * @dentry_in - pointer to dentry
  * @buffer - result buffer
- * @buflen - length of buffer
+ * @buflen_in - length of buffer
  * @flags - options (see below)
  *
  * Helper function for constructing the server pathname
@@ -47,15 +47,19 @@ int nfs_mountpoint_expiry_timeout = 500 * HZ;
  *                    the original device (export) name
  *                    (if unset, the original name is returned verbatim)
  */
-char *nfs_path(char **p, struct dentry *dentry, char *buffer, ssize_t buflen,
-              unsigned flags)
+char *nfs_path(char **p, struct dentry *dentry_in, char *buffer,
+              ssize_t buflen_in, unsigned flags)
 {
        char *end;
        int namelen;
        unsigned seq;
        const char *base;
+       struct dentry *dentry;
+       ssize_t buflen;
 
 rename_retry:
+       buflen = buflen_in;
+       dentry = dentry_in;
        end = buffer+buflen;
        *--end = '\0';
        buflen--;