From: Konstantin Khorenko Date: Tue, 1 Feb 2011 14:16:29 +0000 (+0300) Subject: NFSD: memory corruption due to writing beyond the stat array X-Git-Tag: upstream/snapshot3+hdmi~11454^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3aa6e0aa8ab3e64bbfba092c64d42fd1d006b124;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git NFSD: memory corruption due to writing beyond the stat array If nfsd fails to find an exported via NFS file in the readahead cache, it should increment corresponding nfsdstats counter (ra_depth[10]), but due to a bug it may instead write to ra_depth[11], corrupting the following field. In a kernel with NFSDv4 compiled in the corruption takes the form of an increment of a counter of the number of NFSv4 operation 0's received; since there is no operation 0, this is harmless. In a kernel with NFSDv4 disabled it corrupts whatever happens to be in the memory beyond nfsdstats. Signed-off-by: Konstantin Khorenko Cc: stable@kernel.org Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index fda3be2..30c73f8 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -808,7 +808,7 @@ nfsd_get_raparms(dev_t dev, ino_t ino) if (ra->p_count == 0) frap = rap; } - depth = nfsdstats.ra_size*11/10; + depth = nfsdstats.ra_size; if (!frap) { spin_unlock(&rab->pb_lock); return NULL;