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]
Message-ID: <93b5b1ce-8b40-473d-a2c4-2b1d2612cd67@gmail.com>
Date: Tue, 13 Aug 2024 08:03:10 +0100
From: Ivan Orlov <ivan.orlov0322@...il.com>
To: Takashi Iwai <tiwai@...e.de>
Cc: perex@...ex.cz, tiwai@...e.com, corbet@....net, broonie@...nel.org,
 shuah@...nel.org, linux-kselftest@...r.kernel.org,
 linux-doc@...r.kernel.org, linux-sound@...r.kernel.org,
 linux-kernel@...r.kernel.org, christophe.jaillet@...adoo.fr,
 aholzinger@....de
Subject: Re: [PATCH v4 3/4] ALSA: timer: Introduce virtual userspace-driven
 timers

On 8/13/24 07:02, Takashi Iwai wrote:
> On Sun, 11 Aug 2024 22:23:36 +0200,
> Ivan Orlov wrote:
>> +static int snd_utimer_ioctl_create(struct file *file,
>> +				   struct snd_timer_uinfo __user *_utimer_info)
>> +{
>> +	struct snd_utimer *utimer;
>> +	struct snd_timer_uinfo *utimer_info __free(kfree) = NULL;
>> +	int err;
>> +
>> +	utimer_info = memdup_user(_utimer_info, sizeof(*utimer_info));
>> +	if (IS_ERR(utimer_info))
>> +		return PTR_ERR(no_free_ptr(utimer_info));
>> +
>> +	err = snd_utimer_create(utimer_info, &utimer);
>> +	if (err < 0)
>> +		return err;
>> +
>> +	utimer_info->id = utimer->id;
>> +
>> +	err = copy_to_user(_utimer_info, utimer_info, sizeof(*utimer_info));
>> +	if (err) {
>> +		snd_utimer_free(utimer);
>> +		return -EFAULT;
>> +	}
>> +
>> +	return anon_inode_getfd(utimer->name, &snd_utimer_fops, utimer, O_RDWR | O_CLOEXEC);
> 
> Wouldn't utimer be left unfreed if this returns an error?
> 

Hi Takashi,

Ah, yes, it will... :( Thanks!

-- 
Kind regards,
Ivan Orlov

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ