2016-06-22 19:28:29

by Olga Kornievskaia

[permalink] [raw]
Subject: [PATCH 1/1] Fix SETATTR/DELEGRETURN race

Hi Trond,

In this version of the patch, we won't be retrying if
BAD_STATEID was for zero stateid. If open stateid was
used then the normal error handling kicks off recovery
and retries. So I think this is the only case left.

It's insufficient to only retry SETATTR if we have a delegation
and got a bad_stateid-type error. A DELEGRETURN could be sent
after SETATTR is sent and before reply comes back and thus no
delegation would be found and SETATTR not retried with zero
stateid and instead fail with EIO. Check if we sent SETATTR
with a delegation stateid, received an error and no longer
have a delegation, then retry.

Signed-off-by: Olga Kornievskaia <[email protected]>
---
fs/nfs/nfs4proc.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 406dd3e..63f7fd3 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -2696,7 +2696,7 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
struct rpc_cred *delegation_cred = NULL;
unsigned long timestamp = jiffies;
fmode_t fmode;
- bool truncate;
+ bool truncate, use_delegation = false;
int status;

arg.bitmask = nfs4_bitmask(server, ilabel);
@@ -2711,6 +2711,7 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,

if (nfs4_copy_delegation_stateid(inode, fmode, &arg.stateid, &delegation_cred)) {
/* Use that stateid */
+ use_delegation = true;
} else if (truncate && state != NULL) {
struct nfs_lockowner lockowner = {
.l_owner = current->files,
@@ -2732,6 +2733,13 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
if (status == 0 && state != NULL)
renew_lease(server, timestamp);
trace_nfs4_setattr(inode, &arg.stateid, status);
+ switch (status) {
+ case -NFS4ERR_DELEG_REVOKED:
+ case -NFS4ERR_ADMIN_REVOKED:
+ case -NFS4ERR_BAD_STATEID:
+ if (use_delegation && !nfs4_have_delegation(inode, fmode))
+ status = -EAGAIN;
+ }
return status;
}

@@ -2765,6 +2773,8 @@ static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
}
}
err = nfs4_handle_exception(server, err, &exception);
+ if (err == -EAGAIN)
+ exception.retry = 1;
} while (exception.retry);
out:
return err;
--
1.8.3.1



2016-07-18 13:37:45

by Olga Kornievskaia

[permalink] [raw]
Subject: Re: [PATCH 1/1] Fix SETATTR/DELEGRETURN race

On Wed, Jun 22, 2016 at 3:28 PM, Olga Kornievskaia <[email protected]> wrote:
> Hi Trond,
>
> In this version of the patch, we won't be retrying if
> BAD_STATEID was for zero stateid. If open stateid was
> used then the normal error handling kicks off recovery
> and retries. So I think this is the only case left.
>
> It's insufficient to only retry SETATTR if we have a delegation
> and got a bad_stateid-type error. A DELEGRETURN could be sent
> after SETATTR is sent and before reply comes back and thus no
> delegation would be found and SETATTR not retried with zero
> stateid and instead fail with EIO. Check if we sent SETATTR
> with a delegation stateid, received an error and no longer
> have a delegation, then retry.
>
> Signed-off-by: Olga Kornievskaia <[email protected]>
> ---
> fs/nfs/nfs4proc.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
> index 406dd3e..63f7fd3 100644
> --- a/fs/nfs/nfs4proc.c
> +++ b/fs/nfs/nfs4proc.c
> @@ -2696,7 +2696,7 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
> struct rpc_cred *delegation_cred = NULL;
> unsigned long timestamp = jiffies;
> fmode_t fmode;
> - bool truncate;
> + bool truncate, use_delegation = false;
> int status;
>
> arg.bitmask = nfs4_bitmask(server, ilabel);
> @@ -2711,6 +2711,7 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
>
> if (nfs4_copy_delegation_stateid(inode, fmode, &arg.stateid, &delegation_cred)) {
> /* Use that stateid */
> + use_delegation = true;
> } else if (truncate && state != NULL) {
> struct nfs_lockowner lockowner = {
> .l_owner = current->files,
> @@ -2732,6 +2733,13 @@ static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
> if (status == 0 && state != NULL)
> renew_lease(server, timestamp);
> trace_nfs4_setattr(inode, &arg.stateid, status);
> + switch (status) {
> + case -NFS4ERR_DELEG_REVOKED:
> + case -NFS4ERR_ADMIN_REVOKED:
> + case -NFS4ERR_BAD_STATEID:
> + if (use_delegation && !nfs4_have_delegation(inode, fmode))
> + status = -EAGAIN;
> + }
> return status;
> }
>
> @@ -2765,6 +2773,8 @@ static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
> }
> }
> err = nfs4_handle_exception(server, err, &exception);
> + if (err == -EAGAIN)
> + exception.retry = 1;
> } while (exception.retry);
> out:
> return err;

Any comments on this patch?