]> git.baikalelectronics.ru Git - kernel.git/commit
NFS: Use correct variable for page bounds checking
authorBryan Schumaker <bjschuma@netapp.com>
Wed, 13 Apr 2011 18:31:31 +0000 (14:31 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Wed, 13 Apr 2011 19:12:23 +0000 (15:12 -0400)
commit1d250a514871ee789ecffa549ce32c0eeb6833d6
tree5eb6f11f712396e67544539a4a28d4503d54a6b9
parentbdb30de4c68154b5f4990e6f4c04d2632ebb4ce7
NFS: Use correct variable for page bounds checking

While decoding a secinfo reply, I store the list of supported sec
flavors on a page accessible through res->flavors.  Before reading
each new flavor, I do some math to determine if there is enough
space left on this page, and I break out of my read look if there
isn't.  In order to perform this check correctly, I need to use the
address of res->flavors, rather than the address of res.

When this loop was broken early I lied to the caller and told them
that the entire list had been decoded.  This could lead to problems
if the caller tries to use any the garbage data claiming to be a
valid sec flavor.  I fixed this by using res->flavors->num_flavors
as a counter, incrementing it every time a sec flavor is
successfully decoded.

Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4xdr.c