Received: by 10.223.185.111 with SMTP id b44csp917883wrg; Fri, 9 Mar 2018 16:50:10 -0800 (PST) X-Google-Smtp-Source: AG47ELvqNTSBnvt/zoyZO7JPR3zj8ecGeenSHbCoMdUW2WMSSNfV5eRN2WhMv09nMNf4nOsU/NrG X-Received: by 10.101.67.198 with SMTP id n6mr338804pgp.150.1520643010153; Fri, 09 Mar 2018 16:50:10 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1520643010; cv=none; d=google.com; s=arc-20160816; b=qJRt20WhhTLXeAAboXr8uRmrGOEykQZNsZ2Gi3AZgtqssrlRe3Njw0UTYVy0ptzUeQ eQouqGGXnbrndKQivpH4R22pmxKag7i+fwfnQVpDFEDVl/qdI78e5n9WrNlaq3oivnjo zMq5IhdI1FxOqduQdRCg+j6FQl7I5i86OKbTKmGV2tsAPOOraiWDdYMiYElsSaY3vzI4 dm62jgaweC4JQvQdaq1UBdma90xc3U5DJYqssnly+X4jCsnVO2fzomHWLG89bZQPM540 hyfqrGgZVySvVMGbBl7kc8Wpgqv8pN8z1gormPH6sXJaMkGPv91PDANkrm1VxRPjGQp7 Hebw== 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=lFor2EgS4di7IPuWURKevC9vW/cia9Yr6JLv2UDF1BY=; b=EEe5q+cjSEA3aIPbW0LbmP1OoVOesFm2rGVLynMcAeH5hajS5zdTRo+xKcKKaA8aTx xunGWq0SIv1IwwW0k/iTRpbhAWQDAyOsJMdVDgCKJtq710OXTLWtT67Ymn1TM7t/gcQw ZXjlEGCWYLiXTzQ6nSjsvFiL2UEw+MKq7oQ5dL91JjCM6TGKrZck8/1l+jGFSjFN6mE1 IFfzN1vSPoaWbsXur0xJNS3/HIfRceejegvN1MvYjwjAEwxiFdPtXWi9+oBNkfnVVlb4 k/Ye67zHoP/U22m5CXfz0WkWmEpMSPOWz9f5G7utnctfXgQTBVq5zehS4Yn9vJzRrJoK nT4Q== 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 m11-v6si1791360plt.60.2018.03.09.16.49.55; Fri, 09 Mar 2018 16:50:10 -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 S933112AbeCJATk (ORCPT + 99 others); Fri, 9 Mar 2018 19:19:40 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:38732 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932727AbeCJATh (ORCPT ); Fri, 9 Mar 2018 19:19:37 -0500 Received: from localhost (unknown [185.236.200.248]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 0FBBBCC3; Sat, 10 Mar 2018 00:19:36 +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.4 01/36] tpm: st33zp24: fix potential buffer overruns caused by bit glitches on the bus Date: Fri, 9 Mar 2018 16:18:17 -0800 Message-Id: <20180310001807.284827871@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180310001807.213987241@linuxfoundation.org> References: <20180310001807.213987241@linuxfoundation.org> User-Agent: quilt/0.65 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: Jeremy Boone commit 6d24cd186d9fead3722108dec1b1c993354645ff 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 Reviewed-by: Jarkko Sakkinen Signed-off-by: Jarkko Sakkinen Signed-off-by: James Morris Signed-off-by: Greg Kroah-Hartman --- drivers/char/tpm/st33zp24/st33zp24.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/char/tpm/st33zp24/st33zp24.c +++ b/drivers/char/tpm/st33zp24/st33zp24.c @@ -485,7 +485,7 @@ static int st33zp24_recv(struct tpm_chip size_t count) { int size = 0; - int expected; + u32 expected; if (!chip) return -EBUSY; @@ -502,7 +502,7 @@ static int st33zp24_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; }