From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 50F6EC4727D for ; Tue, 29 Sep 2020 23:11:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0438621548 for ; Tue, 29 Sep 2020 23:11:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728291AbgI2XLW (ORCPT ); Tue, 29 Sep 2020 19:11:22 -0400 Received: from mga12.intel.com ([192.55.52.136]:26381 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728223AbgI2XLW (ORCPT ); Tue, 29 Sep 2020 19:11:22 -0400 IronPort-SDR: 5tHYP3RA9xPF/MsMt0yJeg8QB8cugyQ5b9RUZwAbfDLIwHVsZ9KkGh/Aq0DSE0MsEGWBr/0def Pg+idrYYqKkw== X-IronPort-AV: E=McAfee;i="6000,8403,9759"; a="141717544" X-IronPort-AV: E=Sophos;i="5.77,320,1596524400"; d="scan'208";a="141717544" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Sep 2020 16:11:21 -0700 IronPort-SDR: B4c9sdqzY0JVcPVwYExbSzR3fB09BzjPHQf1xyrbQZIHs0r4Oea6LtWS/8TZ2N3dvDv8djyahB OIzssPJ0l7vQ== X-IronPort-AV: E=Sophos;i="5.77,320,1596524400"; d="scan'208";a="494057606" Received: from jwilliam-mobl.ger.corp.intel.com (HELO localhost) ([10.252.47.189]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Sep 2020 16:11:20 -0700 Date: Wed, 30 Sep 2020 02:11:18 +0300 From: Jarkko Sakkinen To: Petr Vorel Cc: ltp@lists.linux.it, Lakshmi Ramasubramanian , Mimi Zohar , linux-integrity@vger.kernel.org Subject: Re: [PATCH v3 0/4] TPM 2.0 fixes in IMA tests Message-ID: <20200929231118.GA805493@linux.intel.com> References: <20200929165021.11731-1-pvorel@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200929165021.11731-1-pvorel@suse.cz> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Precedence: bulk List-ID: X-Mailing-List: linux-integrity@vger.kernel.org On Tue, Sep 29, 2020 at 06:50:17PM +0200, Petr Vorel wrote: > Hi, > > few more fixes, mostly touching older kernels or evmctl versions. > Changes in 3rd and 4th commit. > > Kind regards, > Petr > > Petr Vorel (4): > IMA: Move get_algorithm_digest(), set_digest_index() to ima_setup.sh > IMA: Rewrite ima_boot_aggregate.c to new API > ima_tpm.sh: Fix calculating boot aggregate > ima_tpm.sh: Fix calculating PCR aggregate > > .../integrity/ima/src/ima_boot_aggregate.c | 113 ++++---- > .../integrity/ima/tests/ima_measurements.sh | 62 +--- > .../security/integrity/ima/tests/ima_setup.sh | 70 +++++ > .../security/integrity/ima/tests/ima_tpm.sh | 265 ++++++++++++++---- > 4 files changed, 341 insertions(+), 169 deletions(-) > > -- > 2.28.0 > Hi, is there something specific I should look at in this patch set? /Jarkko From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarkko Sakkinen Date: Wed, 30 Sep 2020 02:11:18 +0300 Subject: [LTP] [PATCH v3 0/4] TPM 2.0 fixes in IMA tests In-Reply-To: <20200929165021.11731-1-pvorel@suse.cz> References: <20200929165021.11731-1-pvorel@suse.cz> Message-ID: <20200929231118.GA805493@linux.intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ltp@lists.linux.it On Tue, Sep 29, 2020 at 06:50:17PM +0200, Petr Vorel wrote: > Hi, > > few more fixes, mostly touching older kernels or evmctl versions. > Changes in 3rd and 4th commit. > > Kind regards, > Petr > > Petr Vorel (4): > IMA: Move get_algorithm_digest(), set_digest_index() to ima_setup.sh > IMA: Rewrite ima_boot_aggregate.c to new API > ima_tpm.sh: Fix calculating boot aggregate > ima_tpm.sh: Fix calculating PCR aggregate > > .../integrity/ima/src/ima_boot_aggregate.c | 113 ++++---- > .../integrity/ima/tests/ima_measurements.sh | 62 +--- > .../security/integrity/ima/tests/ima_setup.sh | 70 +++++ > .../security/integrity/ima/tests/ima_tpm.sh | 265 ++++++++++++++---- > 4 files changed, 341 insertions(+), 169 deletions(-) > > -- > 2.28.0 > Hi, is there something specific I should look at in this patch set? /Jarkko