From: Takashi Iwai <tiwai@suse.de>
To: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Cc: alsa-devel@alsa-project.org, clemens@ladisch.de
Subject: Re: [PATCH 3/5] ALSA: control: fix logic error about control count in a device
Date: Wed, 11 Feb 2015 14:15:36 +0100 [thread overview]
Message-ID: <s5hwq3ooah3.wl-tiwai@suse.de> (raw)
In-Reply-To: <1423651213-19829-4-git-send-email-o-takashi@sakamocchi.jp>
At Wed, 11 Feb 2015 19:40:11 +0900,
Takashi Sakamoto wrote:
>
> It's assumed that the number of userspace controls is just 1 in several
> parts, while this assumptions is not always true because the value of
> 'owner' member can be assigned to.
>
> This commit fixes this issue.
Well, the current code isn't incorrect, it deals with the number of
grouped elements, not the total number of elements. So, this is
rather a change of the semantics of card->user_ctl_count field than
a fix, and it's the question: whether we should limit for the whole
number of elements.
There is a very slight chance of user-space breakage by counting the
whole numbers, but pragmatically seen, I think it's acceptable from
the safety POV.
However, changing the error code is no-go.
thanks,
Takashi
>
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
> ---
> sound/core/control.c | 17 ++++++++++++-----
> 1 file changed, 12 insertions(+), 5 deletions(-)
>
> diff --git a/sound/core/control.c b/sound/core/control.c
> index 1edd6c5..bce4730 100644
> --- a/sound/core/control.c
> +++ b/sound/core/control.c
> @@ -514,6 +514,7 @@ static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
> {
> struct snd_card *card = file->card;
> struct snd_kcontrol *kctl;
> + unsigned int count;
> int i, ret;
>
> down_write(&card->controls_rwsem);
> @@ -531,10 +532,11 @@ static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
> ret = -EBUSY;
> goto error;
> }
> + count = kctl->count;
> ret = snd_ctl_remove(card, kctl);
> if (ret < 0)
> goto error;
> - card->user_ctl_count--;
> + card->user_ctl_count -= count;
> error:
> up_write(&card->controls_rwsem);
> return ret;
> @@ -1202,10 +1204,15 @@ static int snd_ctl_elem_add(struct snd_ctl_file *file,
> return err;
> }
>
> - if (card->user_ctl_count >= MAX_USER_CONTROLS)
> - return -ENOMEM;
> + /*
> + * The number of controls with the same feature, distinguished by index.
> + */
> + kctl.count = info->owner;
> + if (kctl.count == 0)
> + kctl.count = 1;
> + if (card->user_ctl_count + kctl.count > MAX_USER_CONTROLS)
> + return -ENOSPC;
>
> - kctl.count = info->owner ? info->owner : 1;
> if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED)
> kctl.info = snd_ctl_elem_user_enum_info;
> else
> @@ -1259,7 +1266,7 @@ static int snd_ctl_elem_add(struct snd_ctl_file *file,
> return err;
>
> down_write(&card->controls_rwsem);
> - card->user_ctl_count++;
> + card->user_ctl_count += _kctl->count;
> up_write(&card->controls_rwsem);
>
> return 0;
> --
> 2.1.0
>
next prev parent reply other threads:[~2015-02-11 13:15 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-11 10:40 [PATCH 0/5] ALSA: control: improve core codes with intrusion Takashi Sakamoto
2015-02-11 10:40 ` [PATCH 1/5] ALSA: control: drop a sub-effect for caller's data Takashi Sakamoto
2015-02-11 10:40 ` [PATCH 2/5] ALSA: control: use dev_dbg() for warning to add duplicated controls Takashi Sakamoto
2015-02-11 10:40 ` [PATCH 3/5] ALSA: control: fix logic error about control count in a device Takashi Sakamoto
2015-02-11 13:15 ` Takashi Iwai [this message]
2015-02-12 13:20 ` Takashi Sakamoto
2015-02-12 13:29 ` Takashi Iwai
2015-02-12 23:06 ` Takashi Sakamoto
2015-02-13 8:31 ` Takashi Iwai
2015-02-11 10:40 ` [PATCH 4/5] ALSA: control: improve returned value because of the rest Takashi Sakamoto
2015-02-11 12:05 ` Takashi Iwai
2015-02-11 10:40 ` [PATCH 5/5] ALSA: control: save stack usage at creating new instance Takashi Sakamoto
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hwq3ooah3.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=clemens@ladisch.de \
--cc=o-takashi@sakamocchi.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox