Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2881477pxu; Sat, 19 Dec 2020 05:11:29 -0800 (PST) X-Google-Smtp-Source: ABdhPJyOS66kcrrmCbvyBZruHnAlb5oG46tYqZpYZIhv1eJYXhXQJjyjpaDW4UHLMg48vHwpsAZP X-Received: by 2002:a17:906:40d3:: with SMTP id a19mr8160000ejk.98.1608383489502; Sat, 19 Dec 2020 05:11:29 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608383489; cv=none; d=google.com; s=arc-20160816; b=FBnu6jPy41ZomlKqMX0NwXhy6bC+mCGmmS2KAIo/e9CezWNtwflTWPSMAKnUTOpaDx iTee/35ikntrjgac0tOaK30O52EdDL0oeQ3q2LFtprhLOhP3JM8631iAQdFXqzFuGM6v TmTW7Nt2HLFF6lJhkDB/nainr5rBSnkGUHYHu9ftcCxD5kZGncctm1C3vthv88bDSUjr bR/moDeQmjGw8qWPWsg6xRPJ3Nrfnq0Dp8NqV/cEM9yH0QBJuRG24/EXH1miPzC0O+/K PFZ3zPecOUILThj/ooduFyCRV7WREXR9ItDPs+aKT56iyWA3sgYd9pqAa9Vssha/9q/3 /q6w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:message-id:date:subject:cc:to :from; bh=7wS/3mFCS4aCPBPI1Oe7G3kqLR6T44f9pzkRkkIG4K0=; b=dpowjjGUYYxeolWaXuY3yxmyYoFkWknYG19DYX6vg/qk4OYvRI1l5b0b6FAyYcujYT DXEpT/Fh8uA/cQhnqiprcNXtm7dt0E1cadLCsUyTDmb6bkAStkz9ENxiW1PYh7w2ZXIn TtDXNwUSxmO9BRhR2iDBEPvqmWR0WJtH4ogPrs53W6b06t2KB0f6p6eKUUDbI8KhY1zP nWoZ69ZJ4VVB96bpRLWzUfakfyVE2mX8elam8Shz6NPAoivwtaUptNEZXy2K4muRyXjq 876levPtc4T1vdGSGU97kcubh4o34ejsIKb0H5hUjCmNrsXGG8GsPv/tG8WjjfheEOoO NKqg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linuxfoundation.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id di24si7794261edb.234.2020.12.19.05.11.07; Sat, 19 Dec 2020 05:11:29 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linuxfoundation.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727025AbgLSM51 (ORCPT + 99 others); Sat, 19 Dec 2020 07:57:27 -0500 Received: from mail.kernel.org ([198.145.29.99]:44114 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726754AbgLSM50 (ORCPT ); Sat, 19 Dec 2020 07:57:26 -0500 From: Greg Kroah-Hartman Authentication-Results: mail.kernel.org; dkim=permerror (bad message/signature format) To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Takashi Iwai Subject: [PATCH 5.10 08/16] ALSA: usb-audio: Fix control access overflow errors from chmap Date: Sat, 19 Dec 2020 13:57:15 +0100 Message-Id: <20201219125339.481030019@linuxfoundation.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201219125339.066340030@linuxfoundation.org> References: <20201219125339.066340030@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Takashi Iwai commit c6dde8ffd071aea9d1ce64279178e470977b235c upstream. The current channel-map control implementation in USB-audio driver may lead to an error message like "control 3:0:0:Playback Channel Map:0: access overflow" when CONFIG_SND_CTL_VALIDATION is set. It's because the chmap get callback clears the whole array no matter which count is set, and rather the false-positive detection. This patch fixes the problem by clearing only the needed array range at usb_chmap_ctl_get(). Cc: Link: https://lore.kernel.org/r/20201211130048.6358-1-tiwai@suse.de Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/usb/stream.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/sound/usb/stream.c +++ b/sound/usb/stream.c @@ -193,16 +193,16 @@ static int usb_chmap_ctl_get(struct snd_ struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); struct snd_usb_substream *subs = info->private_data; struct snd_pcm_chmap_elem *chmap = NULL; - int i; + int i = 0; - memset(ucontrol->value.integer.value, 0, - sizeof(ucontrol->value.integer.value)); if (subs->cur_audiofmt) chmap = subs->cur_audiofmt->chmap; if (chmap) { for (i = 0; i < chmap->channels; i++) ucontrol->value.integer.value[i] = chmap->map[i]; } + for (; i < subs->channels_max; i++) + ucontrol->value.integer.value[i] = 0; return 0; }