From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vinod Koul Subject: Re: [PATCH] amixer: add support for TLV byte control read Date: Fri, 29 Jan 2016 12:21:06 +0530 Message-ID: <20160129065106.GS11130@localhost> References: <20160122074623.GC11130@localhost> <20160122095648.GD11130@localhost> <20160127174749.GB11130@localhost> <20160128042509.GC11130@localhost> <20160128092644.GJ11130@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by alsa0.perex.cz (Postfix) with ESMTP id 8BA3C265CFA for ; Fri, 29 Jan 2016 07:47:11 +0100 (CET) Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Takashi Iwai Cc: liam.r.girdwood@linux.intel.com, patches.audio@intel.com, alsa-devel@alsa-project.org, broonie@kernel.org List-Id: alsa-devel@alsa-project.org On Thu, Jan 28, 2016 at 05:19:21PM +0100, Takashi Iwai wrote: > The line number doesn't match with the latest code in git, so > double-check that the problem happens with the latest alsa-lib and > alsa-utils, too. I am on debian packages 1.0.27 > I'm thinking whether this is rather an issue in the kernel driver > side. In skl_tplg_tlv_control_get(), I think you are right, the buffer would overflow which would cause heap to go bad and free goes crashing > > if (bc->params) { > if (copy_to_user(data, &bc->param_id, sizeof(u32))) > return -EFAULT; > if (copy_to_user(data + 1, &size, sizeof(u32))) > return -EFAULT; > if (copy_to_user(data + 2, bc->params, size)) > return -EFAULT; > } > > But here, size is the size of the whole container, not the size in the > container. In the code above, you're copying size+8 bytes total and > this breaks the boundary already. Right, also I think we need to check for size vs size of parameters. We don't want to copy kernel memory to usermode if usermode gave a larger buffer Let me test this, thanks for pointing -- ~Vinod