From patchwork Thu Jan 24 15:49:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 10779411 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 092DB13B5 for ; Thu, 24 Jan 2019 15:52:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id ED5E9316AA for ; Thu, 24 Jan 2019 15:52:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DF89E3174C; Thu, 24 Jan 2019 15:52:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 50866316E7 for ; Thu, 24 Jan 2019 15:52:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728490AbfAXPvz (ORCPT ); Thu, 24 Jan 2019 10:51:55 -0500 Received: from lhrrgout.huawei.com ([185.176.76.210]:32835 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727755AbfAXPvz (ORCPT ); Thu, 24 Jan 2019 10:51:55 -0500 Received: from lhreml704-cah.china.huawei.com (unknown [172.18.7.106]) by Forcepoint Email with ESMTP id 51DE211277A33AA7BC1C; Thu, 24 Jan 2019 15:51:53 +0000 (GMT) Received: from roberto-HP-EliteDesk-800-G2-DM-65W.huawei.com (10.204.65.140) by smtpsuk.huawei.com (10.201.108.45) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 24 Jan 2019 15:51:45 +0000 From: Roberto Sassu To: , , , , CC: , , , , , Roberto Sassu Subject: [PATCH v8 0/7] tpm: retrieve digest size of unknown algorithms from TPM Date: Thu, 24 Jan 2019 16:49:03 +0100 Message-ID: <20190124154910.29948-1-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-Originating-IP: [10.204.65.140] X-CFilter-Loop: Reflected Sender: owner-linux-security-module@vger.kernel.org Precedence: bulk List-ID: X-Virus-Scanned: ClamAV using ClamSMTP Update This version of the patch set includes three additional patches (5-7/7) that allow users of the TPM driver to provide a digest for each PCR bank to tpm_pcr_extend(). The new patches have been included to facilitate the review of all the changes to support TPM 2.0 crypto agility for reading and extending PCRs. Original patch set description The TPM driver currently relies on the crypto subsystem to determine the digest size of supported TPM algorithms. In the future, TPM vendors might implement new algorithms in their chips, and those algorithms might not be supported by the crypto subsystem. Usually, vendors provide patches for the new hardware, and likely the crypto subsystem will be updated before the new algorithm is introduced. However, old kernels might be updated later, after patches are included in the mainline kernel. This would leave the opportunity for attackers to misuse PCRs, as PCR banks with an unknown algorithm are not extended. This patch set provides a long term solution for this issue. If a TPM algorithm is not known by the crypto subsystem, the TPM driver retrieves the digest size from the TPM with a PCR read. All the PCR banks are extended, even if the algorithm is not yet supported by the crypto subsystem. PCR bank information (TPM algorithm ID, digest size, crypto subsystem ID) is stored in the tpm_chip structure and available for users of the TPM driver. Changelog v7: - use memchr_inv() in tpm2_get_pcr_allocation() - add patch to move tpm_chip to include/linux/tpm.h - add patch to set the tpm_chip argument in trusted.c to a pointer from tpm_default_chip() - remove definition of tpm_extend_digest - remove code in tpm2_pcr_extend() to extend unused PCR banks with the first digest passed by the caller of tpm_pcr_extend() - remove count parameter from tpm_pcr_extend() and tpm2_pcr_extend() - remove padding of SHA1 digest in tpm_pcr_extend() - pre-allocate and initialize array of tpm_digest structures in security/keys/trusted.c and security/integrity/ima/ima_init.c v6: - squash patches 4-6 - rename tpm_bank_list to tpm_extend_digest, extend_size and extend_data members to size and data - add comment in tpm2_init_bank_info() v5: - rename digest_struct variable to digest - add _head suffix to tcg_efi_specid_event and tcg_pcr_event2 - rename digest_size member of tpm_bank_list to extend_size - change type of alg_id member of tpm_bank_list from u8 to u16 - add missing semi-colon in pcrlock() v4: - rename active_banks to allocated_banks - replace kmalloc_array() with kcalloc() - increment nr_allocated_banks if at least one PCR in the bank is selected - pass multiple digests to tpm_pcr_extend() v3: - remove end marker change - replace active_banks static array with pointer to dynamic array - remove TPM2_ACTIVE_PCR_BANKS v2: - change the end marker of the active_banks array - check digest size from output of PCR read command - remove count parameter from tpm_pcr_read() and tpm2_pcr_read() v1: - modify definition of tpm_pcr_read() - move hash algorithms and definition of tpm2_digest to include/linux/tpm.h Roberto Sassu (7): tpm: dynamically allocate the allocated_banks array tpm: add _head suffix to tcg_efi_specid_event and tcg_pcr_event2 tpm: rename and export tpm2_digest and tpm2_algorithms tpm: retrieve digest size of unknown algorithms with PCR read tpm: move tpm_chip definition to include/linux/tpm.h KEYS: trusted: explicitly use tpm_chip structure from tpm_default_chip() tpm: pass an array of tpm_extend_digest structures to tpm_pcr_extend() drivers/char/tpm/eventlog/tpm2.c | 12 +-- drivers/char/tpm/tpm-chip.c | 1 + drivers/char/tpm/tpm-interface.c | 38 ++++---- drivers/char/tpm/tpm.h | 114 +---------------------- drivers/char/tpm/tpm1-cmd.c | 12 +++ drivers/char/tpm/tpm2-cmd.c | 139 ++++++++++++++++++++-------- include/linux/tpm.h | 131 +++++++++++++++++++++++++- include/linux/tpm_eventlog.h | 19 +--- security/integrity/ima/ima.h | 1 + security/integrity/ima/ima_crypto.c | 10 +- security/integrity/ima/ima_init.c | 22 +++++ security/integrity/ima/ima_queue.c | 6 +- security/keys/trusted.c | 76 +++++++++++---- 13 files changed, 359 insertions(+), 222 deletions(-)