Received: by 10.192.165.148 with SMTP id m20csp2474673imm; Sun, 22 Apr 2018 07:48:42 -0700 (PDT) X-Google-Smtp-Source: AIpwx4+/FsK1lO/C3+MqONb9knOwEZ4amCxGpo3t9Yhr/xhaLHk9Wx6gi4QCQBYwhp14HLBg7a/1 X-Received: by 10.99.178.3 with SMTP id x3mr14313907pge.266.1524408522229; Sun, 22 Apr 2018 07:48:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1524408522; cv=none; d=google.com; s=arc-20160816; b=KQqrffOSXSR8J2Bfo+yy9XPZ98t9gA7DBrYj8/3roEXVXVz8VZ5lszdAfYHxuor1/s R9pi64fQA6bE2bvKVi8YTa4LwGlBx1TPKhC4inKw3yHsfS2KMyCggfiGsIHTuoubTifi o5d4QdLo4avojGf1gjBEGsjErz+VyfEpcNJvKuJsBV1BssHwSFVmGNzji+sJXwdY3mVD lTfjLQZvUmZKHfDBsi0uOK9sHCthvalPi4wSqKkARIk90u5DwdLKSu/pdQC7u2gO5auA Ena4S9Y9Y7wKNTiBG+hLMpYEj5CLf+4b0qP8os1nemtd/hpOjvZEOr7OlA3LyoqWQPwd uudg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=RHdOZAwis48/KPL4f2W1j59gbVP0tvp9FNkh79hMRQE=; b=WcvxB8ENbVFMzH013XVepKEkL8JHw90wqlCN1/FnpWmzC5/zXoT99O/COo3GyRQkL5 829YvsfEtNWHDPAVCPbCPILCDTqZ4GRwQkJUgG4wAJ5caTZoYhzW+BlRP+4jQmJ9bjWt TWNKz4qBzvN9JtIAJJ7LIbcxeeC4mHblVAqCoDpuQ0gxyDg7SFFu1Y/WwBlN2+OgfTFp jIzA/3WJzHo+IfdhqizbKhZooCPGum9icmUmwrumc9vf3eEx86wqLYdYELWWDOMiOw5Z jlmd/Hi3LJRP9bN1WNcRUPQpd3WIk/bYmEmYeEW/jei7MgvC2MtZ0It6hEjgzYeIyvMF /b3A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b2si8345252pgn.131.2018.04.22.07.48.27; Sun, 22 Apr 2018 07:48:42 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757383AbeDVOrN (ORCPT + 99 others); Sun, 22 Apr 2018 10:47:13 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:57390 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932246AbeDVOQT (ORCPT ); Sun, 22 Apr 2018 10:16:19 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 10FF6CBF; Sun, 22 Apr 2018 14:16:18 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Takashi Iwai , Michael Henders , Andrew Morton , Ram Pai , Bjorn Helgaas , Linus Torvalds Subject: [PATCH 4.4 27/97] resource: fix integer overflow at reallocation Date: Sun, 22 Apr 2018 15:53:05 +0200 Message-Id: <20180422135306.566426180@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180422135304.577223025@linuxfoundation.org> References: <20180422135304.577223025@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Takashi Iwai commit 60bb83b81169820c691fbfa33a6a4aef32aa4b0b upstream. We've got a bug report indicating a kernel panic at booting on an x86-32 system, and it turned out to be the invalid PCI resource assigned after reallocation. __find_resource() first aligns the resource start address and resets the end address with start+size-1 accordingly, then checks whether it's contained. Here the end address may overflow the integer, although resource_contains() still returns true because the function validates only start and end address. So this ends up with returning an invalid resource (start > end). There was already an attempt to cover such a problem in the commit 47ea91b4052d ("Resource: fix wrong resource window calculation"), but this case is an overseen one. This patch adds the validity check of the newly calculated resource for avoiding the integer overflow problem. Bugzilla: http://bugzilla.opensuse.org/show_bug.cgi?id=1086739 Link: http://lkml.kernel.org/r/s5hpo37d5l8.wl-tiwai@suse.de Fixes: 23c570a67448 ("resource: ability to resize an allocated resource") Signed-off-by: Takashi Iwai Reported-by: Michael Henders Tested-by: Michael Henders Reviewed-by: Andrew Morton Cc: Ram Pai Cc: Bjorn Helgaas Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- kernel/resource.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/kernel/resource.c +++ b/kernel/resource.c @@ -611,7 +611,8 @@ static int __find_resource(struct resour alloc.start = constraint->alignf(constraint->alignf_data, &avail, size, constraint->align); alloc.end = alloc.start + size - 1; - if (resource_contains(&avail, &alloc)) { + if (alloc.start <= alloc.end && + resource_contains(&avail, &alloc)) { new->start = alloc.start; new->end = alloc.end; return 0;