Commit 83e08fd4 authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: exchange_id cleanup: local shorthands for repeated tests

Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 1a308118
...@@ -1520,6 +1520,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp, ...@@ -1520,6 +1520,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp,
char addr_str[INET6_ADDRSTRLEN]; char addr_str[INET6_ADDRSTRLEN];
nfs4_verifier verf = exid->verifier; nfs4_verifier verf = exid->verifier;
struct sockaddr *sa = svc_addr(rqstp); struct sockaddr *sa = svc_addr(rqstp);
bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
rpc_ntop(sa, addr_str, sizeof(addr_str)); rpc_ntop(sa, addr_str, sizeof(addr_str));
dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p " dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
...@@ -1552,23 +1553,26 @@ nfsd4_exchange_id(struct svc_rqst *rqstp, ...@@ -1552,23 +1553,26 @@ nfsd4_exchange_id(struct svc_rqst *rqstp,
nfs4_lock_state(); nfs4_lock_state();
conf = find_confirmed_client_by_str(dname, strhashval); conf = find_confirmed_client_by_str(dname, strhashval);
if (conf) { if (conf) {
bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
bool verfs_match = same_verf(&verf, &conf->cl_verifier);
if (!clp_used_exchangeid(conf)) { if (!clp_used_exchangeid(conf)) {
if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { if (update) {
status = nfserr_inval; /* buggy client */ status = nfserr_inval; /* buggy client */
goto out; goto out;
} }
} }
if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) { if (!creds_match) {
/* 18.35.4 case 9 */ /* 18.35.4 case 9 */
if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) if (update)
status = nfserr_perm; status = nfserr_perm;
else /* case 3 */ else /* case 3 */
status = nfserr_clid_inuse; status = nfserr_clid_inuse;
goto out; goto out;
} }
if (!same_verf(&verf, &conf->cl_verifier)) { if (!verfs_match) {
/* 18.35.4 case 8 */ /* 18.35.4 case 8 */
if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { if (update) {
status = nfserr_not_same; status = nfserr_not_same;
goto out; goto out;
} }
...@@ -1595,7 +1599,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp, ...@@ -1595,7 +1599,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp,
} }
/* 18.35.4 case 7 */ /* 18.35.4 case 7 */
if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { if (update) {
status = nfserr_noent; status = nfserr_noent;
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment