From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753063AbdLOHWg (ORCPT ); Fri, 15 Dec 2017 02:22:36 -0500 Received: from mx2.suse.de ([195.135.220.15]:59103 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751292AbdLOHWe (ORCPT ); Fri, 15 Dec 2017 02:22:34 -0500 Date: Fri, 15 Dec 2017 08:22:32 +0100 Message-ID: From: Takashi Iwai To: "Rafael J. Wysocki" Cc: Kees Cook , Anton Vorontsov , Colin Cross , Tony Luck , "Rafael J . Wysocki" , Jerry Tang , Borislav Petkov , ACPI Devel Maling List , Linux Kernel Mailing List Subject: Re: [PATCH] APEI / ERST: Fix missing error handling in erst_reader() In-Reply-To: References: <20171214123116.929-1-tiwai@suse.de> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 15 Dec 2017 02:01:20 +0100, Rafael J. Wysocki wrote: > > On Thu, Dec 14, 2017 at 1:31 PM, Takashi Iwai wrote: > > The commit f6f828513290 ("pstore: pass allocated memory region back to > > caller") changed the check of the return value from erst_read() in > > erst_reader() in the following way: > > > > if (len == -ENOENT) > > goto skip; > > - else if (len < 0) { > > - rc = -1; > > + else if (len < sizeof(*rcd)) { > > + rc = -EIO; > > goto out; > > > > This introduced another bug: since the comparison with sizeof() is > > cast to unsigned, a negative len value doesn't hit any longer. > > As a result, when an error is returned from erst_read(), the code > > falls through, and it may eventually lead to some weird thing like > > memory corruption. > > > > This patch adds the negative error value check more explicitly for > > addressing the issue. > > > > Fixes: f6f828513290 ("pstore: pass allocated memory region back to caller") > > That's ancient. :-) > > > Cc: > > Tested-by: Jerry Tang > > Signed-off-by: Takashi Iwai > > --- > > drivers/acpi/apei/erst.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/acpi/apei/erst.c b/drivers/acpi/apei/erst.c > > index 6742f6c68034..9bff853e85f3 100644 > > --- a/drivers/acpi/apei/erst.c > > +++ b/drivers/acpi/apei/erst.c > > @@ -1007,7 +1007,7 @@ static ssize_t erst_reader(struct pstore_record *record) > > /* The record may be cleared by others, try read next record */ > > if (len == -ENOENT) > > goto skip; > > - else if (len < sizeof(*rcd)) { > > + else if (len < 0 || len < sizeof(*rcd)) { > > rc = -EIO; > > goto out; > > } > > -- > > OK, I'm going to queue this up unless I see objections from Boris or Tony. I missed Boris in Cc list, sorry. Now added. Takashi