]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
xfs: xfs_ioctl: fix information leak to userland
authorKulikov Vasiliy <segooon@gmail.com>
Sat, 30 Oct 2010 14:26:17 +0000 (14:26 +0000)
committerAlex Elder <aelder@sgi.com>
Wed, 10 Nov 2010 18:00:47 +0000 (12:00 -0600)
al_hreq is copied from userland.  If al_hreq.buflen is not properly aligned
then xfs_attr_list will ignore the last bytes of kbuf.  These bytes are
unitialized.  It leads to leaking of contents of kernel stack memory.

Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
fs/xfs/linux-2.6/xfs_ioctl.c

index 2ea238f6d38eb0504187d674a70c57d9acc5b382..ad442d9e392e480ab242f5d13922ee3ec0feab2e 100644 (file)
@@ -416,7 +416,7 @@ xfs_attrlist_by_handle(
        if (IS_ERR(dentry))
                return PTR_ERR(dentry);
 
-       kbuf = kmalloc(al_hreq.buflen, GFP_KERNEL);
+       kbuf = kzalloc(al_hreq.buflen, GFP_KERNEL);
        if (!kbuf)
                goto out_dput;