From: Matthew Daley Date: Mon, 28 Apr 2014 07:05:21 +0000 (+1200) Subject: floppy: don't write kernel-only members to FDRAWCMD ioctl output X-Git-Tag: v3.2.59~1 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-kernel.git;a=commitdiff_plain;h=629cbea2961ec001a85a4ac8821dcd45226dd29c;ds=sidebyside floppy: don't write kernel-only members to FDRAWCMD ioctl output commit 2145e15e0557a01b9195d1c7199a1b92cb9be81f upstream. Do not leak kernel-only floppy_raw_cmd structure members to userspace. This includes the linked-list pointer and the pointer to the allocated DMA space. Signed-off-by: Matthew Daley Signed-off-by: Linus Torvalds Signed-off-by: Ben Hutchings --- diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index 56490fe6c0eb..6d0f3e138221 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c @@ -3060,7 +3060,10 @@ static int raw_cmd_copyout(int cmd, void __user *param, int ret; while (ptr) { - ret = copy_to_user(param, ptr, sizeof(*ptr)); + struct floppy_raw_cmd cmd = *ptr; + cmd.next = NULL; + cmd.kernel_data = NULL; + ret = copy_to_user(param, &cmd, sizeof(cmd)); if (ret) return -EFAULT; param += sizeof(struct floppy_raw_cmd);