nfsd4: share common seqid checks
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
16d259418b
commit
7a8711c9a6
|
@ -2456,6 +2456,16 @@ static const struct lock_manager_operations nfsd_lease_mng_ops = {
|
||||||
.lm_change = nfsd_change_deleg_cb,
|
.lm_change = nfsd_change_deleg_cb,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
|
||||||
|
{
|
||||||
|
if (nfsd4_has_session(cstate))
|
||||||
|
return nfs_ok;
|
||||||
|
if (seqid == so->so_seqid - 1)
|
||||||
|
return nfserr_replay_me;
|
||||||
|
if (seqid == so->so_seqid)
|
||||||
|
return nfs_ok;
|
||||||
|
return nfserr_bad_seqid;
|
||||||
|
}
|
||||||
|
|
||||||
__be32
|
__be32
|
||||||
nfsd4_process_open1(struct nfsd4_compound_state *cstate,
|
nfsd4_process_open1(struct nfsd4_compound_state *cstate,
|
||||||
|
@ -2465,6 +2475,7 @@ nfsd4_process_open1(struct nfsd4_compound_state *cstate,
|
||||||
struct nfs4_client *clp = NULL;
|
struct nfs4_client *clp = NULL;
|
||||||
unsigned int strhashval;
|
unsigned int strhashval;
|
||||||
struct nfs4_stateowner *sop = NULL;
|
struct nfs4_stateowner *sop = NULL;
|
||||||
|
__be32 status;
|
||||||
|
|
||||||
if (!check_name(open->op_owner))
|
if (!check_name(open->op_owner))
|
||||||
return nfserr_inval;
|
return nfserr_inval;
|
||||||
|
@ -2482,9 +2493,6 @@ nfsd4_process_open1(struct nfsd4_compound_state *cstate,
|
||||||
return nfserr_expired;
|
return nfserr_expired;
|
||||||
goto renew;
|
goto renew;
|
||||||
}
|
}
|
||||||
/* When sessions are used, skip open sequenceid processing */
|
|
||||||
if (nfsd4_has_session(cstate))
|
|
||||||
goto renew;
|
|
||||||
if (!sop->so_confirmed) {
|
if (!sop->so_confirmed) {
|
||||||
/* Replace unconfirmed owners without checking for replay. */
|
/* Replace unconfirmed owners without checking for replay. */
|
||||||
clp = sop->so_client;
|
clp = sop->so_client;
|
||||||
|
@ -2492,10 +2500,9 @@ nfsd4_process_open1(struct nfsd4_compound_state *cstate,
|
||||||
open->op_stateowner = NULL;
|
open->op_stateowner = NULL;
|
||||||
goto renew;
|
goto renew;
|
||||||
}
|
}
|
||||||
if (open->op_seqid == sop->so_seqid - 1)
|
status = nfsd4_check_seqid(cstate, sop, open->op_seqid);
|
||||||
return nfserr_replay_me;
|
if (status)
|
||||||
if (open->op_seqid != sop->so_seqid)
|
return status;
|
||||||
return nfserr_bad_seqid;
|
|
||||||
renew:
|
renew:
|
||||||
if (open->op_stateowner == NULL) {
|
if (open->op_stateowner == NULL) {
|
||||||
sop = alloc_init_open_stateowner(strhashval, clp, open);
|
sop = alloc_init_open_stateowner(strhashval, clp, open);
|
||||||
|
@ -3411,7 +3418,10 @@ nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
|
||||||
if (sop == NULL)
|
if (sop == NULL)
|
||||||
return nfserr_expired;
|
return nfserr_expired;
|
||||||
cstate->replay_owner = sop;
|
cstate->replay_owner = sop;
|
||||||
goto check_replay;
|
status = nfsd4_check_seqid(cstate, sop, seqid);
|
||||||
|
if (status)
|
||||||
|
return status;
|
||||||
|
return nfserr_bad_seqid;
|
||||||
}
|
}
|
||||||
|
|
||||||
*stpp = stp;
|
*stpp = stp;
|
||||||
|
@ -3423,8 +3433,9 @@ nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
|
||||||
return nfserr_bad_stateid;
|
return nfserr_bad_stateid;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nfsd4_has_session(cstate) && seqid != sop->so_seqid)
|
status = nfsd4_check_seqid(cstate, sop, seqid);
|
||||||
goto check_replay;
|
if (status)
|
||||||
|
return status;
|
||||||
|
|
||||||
if (sop->so_confirmed && flags & CONFIRM) {
|
if (sop->so_confirmed && flags & CONFIRM) {
|
||||||
dprintk("NFSD: preprocess_seqid_op: expected"
|
dprintk("NFSD: preprocess_seqid_op: expected"
|
||||||
|
@ -3441,16 +3452,6 @@ nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
|
||||||
return status;
|
return status;
|
||||||
renew_client(sop->so_client);
|
renew_client(sop->so_client);
|
||||||
return nfs_ok;
|
return nfs_ok;
|
||||||
|
|
||||||
check_replay:
|
|
||||||
if (seqid == sop->so_seqid - 1) {
|
|
||||||
dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
|
|
||||||
/* indicate replay to calling function */
|
|
||||||
return nfserr_replay_me;
|
|
||||||
}
|
|
||||||
dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
|
|
||||||
sop->so_seqid, seqid);
|
|
||||||
return nfserr_bad_seqid;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__be32
|
__be32
|
||||||
|
|
Loading…
Reference in New Issue