Commit e31a1b66 authored by Benny Halevy's avatar Benny Halevy Committed by J. Bruce Fields

nfsd: nfs4xdr decode_stateid helper function

Signed-off-by: default avatarBenny Halevy <bhalevy@panasas.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
parent 5bf8c691
...@@ -412,6 +412,18 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, struct iattr *ia ...@@ -412,6 +412,18 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, struct iattr *ia
goto out; goto out;
} }
static __be32
nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
{
DECODE_HEAD;
READ_BUF(sizeof(stateid_t));
READ32(sid->si_generation);
COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
DECODE_TAIL;
}
static __be32 static __be32
nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access) nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
{ {
...@@ -429,10 +441,9 @@ nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close) ...@@ -429,10 +441,9 @@ nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
DECODE_HEAD; DECODE_HEAD;
close->cl_stateowner = NULL; close->cl_stateowner = NULL;
READ_BUF(4 + sizeof(stateid_t)); READ_BUF(4);
READ32(close->cl_seqid); READ32(close->cl_seqid);
READ32(close->cl_stateid.si_generation); return nfsd4_decode_stateid(argp, &close->cl_stateid);
COPYMEM(&close->cl_stateid.si_opaque, sizeof(stateid_opaque_t));
DECODE_TAIL; DECODE_TAIL;
} }
...@@ -493,13 +504,7 @@ nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create ...@@ -493,13 +504,7 @@ nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create
static inline __be32 static inline __be32
nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr) nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
{ {
DECODE_HEAD; return nfsd4_decode_stateid(argp, &dr->dr_stateid);
READ_BUF(sizeof(stateid_t));
READ32(dr->dr_stateid.si_generation);
COPYMEM(&dr->dr_stateid.si_opaque, sizeof(stateid_opaque_t));
DECODE_TAIL;
} }
static inline __be32 static inline __be32
...@@ -542,20 +547,22 @@ nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock) ...@@ -542,20 +547,22 @@ nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
READ32(lock->lk_is_new); READ32(lock->lk_is_new);
if (lock->lk_is_new) { if (lock->lk_is_new) {
READ_BUF(36); READ_BUF(4);
READ32(lock->lk_new_open_seqid); READ32(lock->lk_new_open_seqid);
READ32(lock->lk_new_open_stateid.si_generation); status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
if (status)
COPYMEM(&lock->lk_new_open_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(8 + sizeof(clientid_t));
READ32(lock->lk_new_lock_seqid); READ32(lock->lk_new_lock_seqid);
COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t)); COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
READ32(lock->lk_new_owner.len); READ32(lock->lk_new_owner.len);
READ_BUF(lock->lk_new_owner.len); READ_BUF(lock->lk_new_owner.len);
READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len); READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
} else { } else {
READ_BUF(20); status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
READ32(lock->lk_old_lock_stateid.si_generation); if (status)
COPYMEM(&lock->lk_old_lock_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(4);
READ32(lock->lk_old_lock_seqid); READ32(lock->lk_old_lock_seqid);
} }
...@@ -587,13 +594,15 @@ nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku) ...@@ -587,13 +594,15 @@ nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
DECODE_HEAD; DECODE_HEAD;
locku->lu_stateowner = NULL; locku->lu_stateowner = NULL;
READ_BUF(24 + sizeof(stateid_t)); READ_BUF(8);
READ32(locku->lu_type); READ32(locku->lu_type);
if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT)) if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
goto xdr_error; goto xdr_error;
READ32(locku->lu_seqid); READ32(locku->lu_seqid);
READ32(locku->lu_stateid.si_generation); status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
COPYMEM(&locku->lu_stateid.si_opaque, sizeof(stateid_opaque_t)); if (status)
return status;
READ_BUF(16);
READ64(locku->lu_offset); READ64(locku->lu_offset);
READ64(locku->lu_length); READ64(locku->lu_length);
...@@ -678,10 +687,10 @@ nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open) ...@@ -678,10 +687,10 @@ nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
READ32(open->op_delegate_type); READ32(open->op_delegate_type);
break; break;
case NFS4_OPEN_CLAIM_DELEGATE_CUR: case NFS4_OPEN_CLAIM_DELEGATE_CUR:
READ_BUF(sizeof(stateid_t) + 4); status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
READ32(open->op_delegate_stateid.si_generation); if (status)
COPYMEM(&open->op_delegate_stateid.si_opaque, return status;
sizeof(stateid_opaque_t)); READ_BUF(4);
READ32(open->op_fname.len); READ32(open->op_fname.len);
READ_BUF(open->op_fname.len); READ_BUF(open->op_fname.len);
SAVEMEM(open->op_fname.data, open->op_fname.len); SAVEMEM(open->op_fname.data, open->op_fname.len);
...@@ -701,9 +710,10 @@ nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_con ...@@ -701,9 +710,10 @@ nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_con
DECODE_HEAD; DECODE_HEAD;
open_conf->oc_stateowner = NULL; open_conf->oc_stateowner = NULL;
READ_BUF(4 + sizeof(stateid_t)); status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
READ32(open_conf->oc_req_stateid.si_generation); if (status)
COPYMEM(&open_conf->oc_req_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(4);
READ32(open_conf->oc_seqid); READ32(open_conf->oc_seqid);
DECODE_TAIL; DECODE_TAIL;
...@@ -715,9 +725,10 @@ nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_d ...@@ -715,9 +725,10 @@ nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_d
DECODE_HEAD; DECODE_HEAD;
open_down->od_stateowner = NULL; open_down->od_stateowner = NULL;
READ_BUF(12 + sizeof(stateid_t)); status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
READ32(open_down->od_stateid.si_generation); if (status)
COPYMEM(&open_down->od_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(12);
READ32(open_down->od_seqid); READ32(open_down->od_seqid);
READ32(open_down->od_share_access); READ32(open_down->od_share_access);
READ32(open_down->od_share_deny); READ32(open_down->od_share_deny);
...@@ -745,9 +756,10 @@ nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read) ...@@ -745,9 +756,10 @@ nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
{ {
DECODE_HEAD; DECODE_HEAD;
READ_BUF(sizeof(stateid_t) + 12); status = nfsd4_decode_stateid(argp, &read->rd_stateid);
READ32(read->rd_stateid.si_generation); if (status)
COPYMEM(&read->rd_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(12);
READ64(read->rd_offset); READ64(read->rd_offset);
READ32(read->rd_length); READ32(read->rd_length);
...@@ -836,15 +848,13 @@ nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp, ...@@ -836,15 +848,13 @@ nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
static __be32 static __be32
nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr) nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
{ {
DECODE_HEAD; __be32 status;
READ_BUF(sizeof(stateid_t));
READ32(setattr->sa_stateid.si_generation);
COPYMEM(&setattr->sa_stateid.si_opaque, sizeof(stateid_opaque_t));
if ((status = nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr, &setattr->sa_acl)))
goto out;
DECODE_TAIL; status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
if (status)
return status;
return nfsd4_decode_fattr(argp, setattr->sa_bmval,
&setattr->sa_iattr, &setattr->sa_acl);
} }
static __be32 static __be32
...@@ -929,9 +939,10 @@ nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write) ...@@ -929,9 +939,10 @@ nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
int len; int len;
DECODE_HEAD; DECODE_HEAD;
READ_BUF(sizeof(stateid_opaque_t) + 20); status = nfsd4_decode_stateid(argp, &write->wr_stateid);
READ32(write->wr_stateid.si_generation); if (status)
COPYMEM(&write->wr_stateid.si_opaque, sizeof(stateid_opaque_t)); return status;
READ_BUF(16);
READ64(write->wr_offset); READ64(write->wr_offset);
READ32(write->wr_stable_how); READ32(write->wr_stable_how);
if (write->wr_stable_how > 2) if (write->wr_stable_how > 2)
......
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