Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158596
b: refs/heads/master
c: e78291e
h: refs/heads/master
v: v3
  • Loading branch information
Benny Halevy authored and Trond Myklebust committed Aug 14, 2009
1 parent 3b17124 commit 143a780
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db942bbd09563e169cc5d9004c32c1de33220fd1
refs/heads/master: e78291e4e07520348b0634095cf19ed3bc868965
25 changes: 15 additions & 10 deletions trunk/fs/nfs/nfs4xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -4212,6 +4212,11 @@ static int decode_chan_attrs(struct xdr_stream *xdr,
return 0;
}

static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
{
return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
}

static int decode_create_session(struct xdr_stream *xdr,
struct nfs41_create_session_res *res)
{
Expand All @@ -4221,14 +4226,11 @@ static int decode_create_session(struct xdr_stream *xdr,
struct nfs4_session *session = clp->cl_session;

status = decode_op_hdr(xdr, OP_CREATE_SESSION);

if (status)
if (!status)
status = decode_sessionid(xdr, &session->sess_id);
if (unlikely(status))
return status;

/* sessionid */
READ_BUF(NFS4_MAX_SESSIONID_LEN);
COPYMEM(&session->sess_id, NFS4_MAX_SESSIONID_LEN);

/* seqid, flags */
READ_BUF(8);
clp->cl_seqid = be32_to_cpup(p++);
Expand Down Expand Up @@ -4262,7 +4264,9 @@ static int decode_sequence(struct xdr_stream *xdr,
return 0;

status = decode_op_hdr(xdr, OP_SEQUENCE);
if (status)
if (!status)
status = decode_sessionid(xdr, &id);
if (unlikely(status))
goto out_err;

/*
Expand All @@ -4271,15 +4275,16 @@ static int decode_sequence(struct xdr_stream *xdr,
*/
status = -ESERVERFAULT;

slot = &res->sr_session->fc_slot_table.slots[res->sr_slotid];
READ_BUF(NFS4_MAX_SESSIONID_LEN + 20);
COPYMEM(id.data, NFS4_MAX_SESSIONID_LEN);
if (memcmp(id.data, res->sr_session->sess_id.data,
NFS4_MAX_SESSIONID_LEN)) {
dprintk("%s Invalid session id\n", __func__);
goto out_err;
}

READ_BUF(20);

/* seqid */
slot = &res->sr_session->fc_slot_table.slots[res->sr_slotid];
dummy = be32_to_cpup(p++);
if (dummy != slot->seq_nr) {
dprintk("%s Invalid sequence number\n", __func__);
Expand Down

0 comments on commit 143a780

Please sign in to comment.