summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2018-09-08 08:12:21 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-13 09:09:22 +0200
commitb27adc00ceb6426c8e2e6a23a327acde678c28eb (patch)
tree761e664242898f4ee50c6bd7061a565be88693b8 /sound
parent7ddd41b2558b213469ad911f03a929d5de02244f (diff)
downloadlinux-stable-b27adc00ceb6426c8e2e6a23a327acde678c28eb.tar.gz
linux-stable-b27adc00ceb6426c8e2e6a23a327acde678c28eb.tar.bz2
linux-stable-b27adc00ceb6426c8e2e6a23a327acde678c28eb.zip
ALSA: emu10k1: fix possible info leak to userspace on SNDRV_EMU10K1_IOCTL_INFO
commit 49434c6c575d2008c0abbc93e615019f39e01252 upstream. snd_emu10k1_fx8010_ioctl(SNDRV_EMU10K1_IOCTL_INFO) allocates memory using kmalloc() and partially fills it by calling snd_emu10k1_fx8010_info() before returning the resulting structure to userspace, leaving uninitialized holes. Let's just use kzalloc() here. BugLink: http://blog.infosectcbr.com.au/2018/09/linux-kernel-infoleaks.html Signed-off-by: Willy Tarreau <w@1wt.eu> Cc: Jann Horn <jannh@google.com> Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/emu10k1/emufx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/emufx.c b/sound/pci/emu10k1/emufx.c
index 745f0627c634..acce8c76eff0 100644
--- a/sound/pci/emu10k1/emufx.c
+++ b/sound/pci/emu10k1/emufx.c
@@ -2521,7 +2521,7 @@ static int snd_emu10k1_fx8010_ioctl(struct snd_hwdep * hw, struct file *file, un
emu->support_tlv = 1;
return put_user(SNDRV_EMU10K1_VERSION, (int __user *)argp);
case SNDRV_EMU10K1_IOCTL_INFO:
- info = kmalloc(sizeof(*info), GFP_KERNEL);
+ info = kzalloc(sizeof(*info), GFP_KERNEL);
if (!info)
return -ENOMEM;
snd_emu10k1_fx8010_info(emu, info);