Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp3054608imm; Sun, 1 Jul 2018 11:10:39 -0700 (PDT) X-Google-Smtp-Source: AAOMgpfnfOx/JnYH4cgdJLa/Iw6EFAIT4esYaE+fFU1Pn0LvrIbE+N8a6OtF70bcPniEpZpnG4ZE X-Received: by 2002:a62:c0c4:: with SMTP id g65-v6mr16821343pfk.72.1530468639679; Sun, 01 Jul 2018 11:10:39 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530468639; cv=none; d=google.com; s=arc-20160816; b=IZ6amAYsNQKKoT1+mRkrK5lNNZLZuuEynFkvnwf8GGurSUn9M4ct0XqPHJORxPcFTx EOp4jVGlyjHuzr8vof+HVoK4eexi6l43LNJfaHvhyYOkX3p2ipS8AIWYM3xTDj0j/Wx4 NfW+5013W9e9r5XVUs/+wofqAafcSiv5h32zKXfMBbrgT/MgQRKkEEDwDLAEzwHRazVR aL6Ft+WIoj6YD5fxzeZCeKzL5NWPMttSoFMBWTarwhWR+oGFnLDBgAXdceBo59qjAFfT 5mu+MGQxTL1fxc9XZtKxwaC2qSc9k9jmStHbhRb28BuaZpzGKg90CMflyLynW3x+KwCr Ne7Q== 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=P5CvTISumjL3nkF3nWo2IcGO3kkM9Oe5Hj7sMjhDDMM=; b=cSZD+iExUFHrOlvcJbHa0Gmfo8KxzcZtVM4uZDvS587qot1wl5+pY8/dAaPYqnh4R9 4P+PVI8X10n+xGw91XZTZhM4b8JCClrSwSMjSAAZMYwanCY0yQ4Y+Eb5Y/lhZcVK6ycw gTQemrxC3g5JR0KHvSp7sVYwqd+59/DHjBpL4fGwgNun87fOValIFiF2UtN2piCq7s/1 NXqna7dmnmEh+XxnPU/VzN8yF3hGd1qfjIHHIVFQFyDA6xYdGEjwzUSsuc3UAH0Km/Pi bHQ3dH8l+LIXLVlDAWBb3h2WeOLUvw+BUuznqIA+9xWcgi5z+yr6BLFKh/2UzDVeurr9 yjkA== 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 v4-v6si11850411pgf.488.2018.07.01.11.10.25; Sun, 01 Jul 2018 11:10:39 -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 S1030210AbeGASJP (ORCPT + 99 others); Sun, 1 Jul 2018 14:09:15 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34266 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965074AbeGAQ2K (ORCPT ); Sun, 1 Jul 2018 12:28:10 -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 EB2F4AA6; Sun, 1 Jul 2018 16:28:09 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Dr Silvio Cesare of InfoSect , Kees Cook Subject: [PATCH 4.9 087/101] video: uvesafb: Fix integer overflow in allocation Date: Sun, 1 Jul 2018 18:22:13 +0200 Message-Id: <20180701160800.641932659@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180701160757.138608453@linuxfoundation.org> References: <20180701160757.138608453@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.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kees Cook commit 9f645bcc566a1e9f921bdae7528a01ced5bc3713 upstream. cmap->len can get close to INT_MAX/2, allowing for an integer overflow in allocation. This uses kmalloc_array() instead to catch the condition. Reported-by: Dr Silvio Cesare of InfoSect Fixes: 8bdb3a2d7df48 ("uvesafb: the driver core") Cc: stable@vger.kernel.org Signed-off-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- drivers/video/fbdev/uvesafb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/video/fbdev/uvesafb.c +++ b/drivers/video/fbdev/uvesafb.c @@ -1059,7 +1059,8 @@ static int uvesafb_setcmap(struct fb_cma info->cmap.len || cmap->start < info->cmap.start) return -EINVAL; - entries = kmalloc(sizeof(*entries) * cmap->len, GFP_KERNEL); + entries = kmalloc_array(cmap->len, sizeof(*entries), + GFP_KERNEL); if (!entries) return -ENOMEM;