Received: by 10.223.185.116 with SMTP id b49csp5467918wrg; Wed, 7 Mar 2018 12:16:17 -0800 (PST) X-Google-Smtp-Source: AG47ELtBeBhVRV5GyStMAbbiD11864r5I3Wo29zF4MPKcuErqhRdLRSZlbzS0MCS4ZhMKAr1zBF6 X-Received: by 10.99.107.202 with SMTP id g193mr18721088pgc.38.1520453777091; Wed, 07 Mar 2018 12:16:17 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1520453777; cv=none; d=google.com; s=arc-20160816; b=hW7sv/QgUl8LK+9jHu7y0d4Bn10MHA7SOXpihcpup7JdG1wzz7/XlTkcL3tWB4dVew 5pgBHpbVsmNF7PEPOEEH5JJ583UI+rsHjRyoaCZDPvS9gdGBfsuZwceFA/1XJ216IF3h ziU0IoiqWZQ2VQPyE5Xxa8cW251ybgHqlMujcONB/bqtT7DthnfGiIqerOGkMNkaZBqI +Hvn96jTyA+ueENrbJnUZudv/axZFaGzYg71IyvGVUtsSSofAJ+1eCJKkMFYXXi2JCi5 bxJ5ley5tjHedMeTJ7RZEGsHIDnnHoaVL/d1DAebzBl7GzVDlE1xloHJSCnGivh1aBVr TZNw== 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=RjNDxqQLiQrT6cuhJSgkypFNo1ihqLVru63JRZy4kmk=; b=kXaNWCuRUtn7UjeK2Gg41v5STthlQ/b9cTQ8qNO/RQZLZ6a+cfUpfORrbVtybQ0no6 lySGwkM4sssMrN9Ox1YEtI9K57vpyBa/scwOzzVX8EXenrtfxiVPdx3e8tOIHyOCV5UI im3aqdu+e0F5D5MYz25kTC31980yThzvekIGGt7ODu4oiwpq4qNe5rK73GT2WBdpVJ7T PNAWLu3A5IjAWn4XYYKLgPMiCugeOdDnGPHw8VoJJg46MAeakZZIlKqpL4RT9Qfci5MQ UUWU6CWTRRdXKKZbvTbZvpaN8XWEjQGTWCqF4TauReWbOSENApvS1hONMnql51Z95MIR 6zqw== 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 37-v6si13265469plc.715.2018.03.07.12.16.02; Wed, 07 Mar 2018 12:16:17 -0800 (PST) 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 S965162AbeCGTot (ORCPT + 99 others); Wed, 7 Mar 2018 14:44:49 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:43918 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965153AbeCGToq (ORCPT ); Wed, 7 Mar 2018 14:44:46 -0500 Received: from localhost (unknown [185.236.200.248]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id A04A0F16; Wed, 7 Mar 2018 19:44:45 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jeremy Boone , James Bottomley , Jarkko Sakkinen , James Morris Subject: [PATCH 4.14 007/110] tpm_tis: fix potential buffer overruns caused by bit glitches on the bus Date: Wed, 7 Mar 2018 11:37:50 -0800 Message-Id: <20180307191040.693986189@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180307191039.748351103@linuxfoundation.org> References: <20180307191039.748351103@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.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jeremy Boone commit 6bb320ca4a4a7b5b3db8c8d7250cc40002046878 upstream. Discrete TPMs are often connected over slow serial buses which, on some platforms, can have glitches causing bit flips. In all the driver _recv() functions, we need to use a u32 to unmarshal the response size, otherwise a bit flip of the 31st bit would cause the expected variable to go negative, which would then try to read a huge amount of data. Also sanity check that the expected amount of data is large enough for the TPM header. Signed-off-by: Jeremy Boone Cc: stable@vger.kernel.org Signed-off-by: James Bottomley Tested-by: Jarkko Sakkinen Reviewed-by: Jarkko Sakkinen Signed-off-by: Jarkko Sakkinen Signed-off-by: James Morris Signed-off-by: Greg Kroah-Hartman --- drivers/char/tpm/tpm_tis_core.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/char/tpm/tpm_tis_core.c +++ b/drivers/char/tpm/tpm_tis_core.c @@ -202,7 +202,8 @@ static int tpm_tis_recv(struct tpm_chip { struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev); int size = 0; - int expected, status; + int status; + u32 expected; if (count < TPM_HEADER_SIZE) { size = -EIO; @@ -217,7 +218,7 @@ static int tpm_tis_recv(struct tpm_chip } expected = be32_to_cpu(*(__be32 *) (buf + 2)); - if (expected > count) { + if (expected > count || expected < TPM_HEADER_SIZE) { size = -EIO; goto out; }