lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 29 Jul 2010 12:31:46 +0200
From:	Takashi Iwai <tiwai@...e.de>
To:	Kulikov Vasiliy <segooon@...il.com>
Cc:	kernel-janitors@...r.kernel.org, Jaroslav Kysela <perex@...ex.cz>,
	Eliot Blennerhassett <eblennerhassett@...ioscience.com>,
	alsa-devel@...a-project.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 10/10] ALSA: asihpi: check return value of get_user()

At Wed, 28 Jul 2010 20:41:56 +0400,
Kulikov Vasiliy wrote:
> 
> get_user() may fail, if so return -EFAULT.
> 
> Signed-off-by: Kulikov Vasiliy <segooon@...il.com>

Thanks, applied this one, too.


Takashi

> ---
>  sound/pci/asihpi/hpioctl.c |   17 +++++++++++++----
>  1 files changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/sound/pci/asihpi/hpioctl.c b/sound/pci/asihpi/hpioctl.c
> index 3114999..62895a7 100644
> --- a/sound/pci/asihpi/hpioctl.c
> +++ b/sound/pci/asihpi/hpioctl.c
> @@ -121,11 +121,17 @@ long asihpi_hpi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
>  	phpi_ioctl_data = (struct hpi_ioctl_linux __user *)arg;
>  
>  	/* Read the message and response pointers from user space.  */
> -	get_user(puhm, &phpi_ioctl_data->phm);
> -	get_user(puhr, &phpi_ioctl_data->phr);
> +	if (get_user(puhm, &phpi_ioctl_data->phm) ||
> +	    get_user(puhr, &phpi_ioctl_data->phr)) {
> +		err = -EFAULT;
> +		goto out;
> +	}
>  
>  	/* Now read the message size and data from user space.  */
> -	get_user(hm->h.size, (u16 __user *)puhm);
> +	if (get_user(hm->h.size, (u16 __user *)puhm)) {
> +		err = -EFAULT;
> +		goto out;
> +	}
>  	if (hm->h.size > sizeof(*hm))
>  		hm->h.size = sizeof(*hm);
>  
> @@ -138,7 +144,10 @@ long asihpi_hpi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
>  		goto out;
>  	}
>  
> -	get_user(res_max_size, (u16 __user *)puhr);
> +	if (get_user(res_max_size, (u16 __user *)puhr)) {
> +		err = -EFAULT;
> +		goto out;
> +	}
>  	/* printk(KERN_INFO "user response size %d\n", res_max_size); */
>  	if (res_max_size < sizeof(struct hpi_response_header)) {
>  		HPI_DEBUG_LOG(WARNING, "small res size %d\n", res_max_size);
> -- 
> 1.7.0.4
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ