From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
"Yao, Jiewen" <jiewen.yao@intel.com>
Cc: "Kinney, Michael D" <michael.d.kinney@intel.com>,
"Gao, Liming" <liming.gao@intel.com>,
"Lou, Yun" <yun.lou@intel.com>
Subject: Re: [edk2-devel] [PATCH V2 1/4] MdePkg/Include: Add DMTF SPDM definition.
Date: Wed, 6 Nov 2019 06:47:12 +0000 [thread overview]
Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503F83EA11@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <15D2BB2D773DBDBA.23805@groups.io>
Hi Liming/Michael
Would you please review this patch?
We need this feature in next stable tag as planned.
Thank you
Yao Jiewen
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Yao, Jiewen
> Sent: Thursday, October 31, 2019 8:30 PM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming
> <liming.gao@intel.com>; Lou, Yun <yun.lou@intel.com>
> Subject: [edk2-devel] [PATCH V2 1/4] MdePkg/Include: Add DMTF SPDM
> definition.
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2303
>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Yun Lou <yun.lou@intel.com>
> Signed-off-by: Jiewen Yao <jiewen.yao@intel.com>
> ---
> MdePkg/Include/IndustryStandard/Spdm.h | 203 ++++++++++++++++++++
> 1 file changed, 203 insertions(+)
>
> diff --git a/MdePkg/Include/IndustryStandard/Spdm.h
> b/MdePkg/Include/IndustryStandard/Spdm.h
> new file mode 100644
> index 0000000000..d62b24e9ef
> --- /dev/null
> +++ b/MdePkg/Include/IndustryStandard/Spdm.h
> @@ -0,0 +1,203 @@
> +/** @file
> + Definitions of Security Protocol & Data Model Specification (SPDM)
> + in Distributed Management Task Force (DMTF).
> +
> +Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +
> +#ifndef __SPDM_H__
> +#define __SPDM_H__
> +
> +#pragma pack(1)
> +
> +#define SPDM_DIGESTS 0x01
> +#define SPDM_CERTIFICATE 0x02
> +#define SPDM_CHALLENGE_AUTH 0x03
> +#define SPDM_MEASUREMENTS 0x60
> +#define SPDM_CAPABILITIES 0x61
> +#define SPDM_SET_CERT_RESPONSE 0x62
> +#define SPDM_ALGORITHMS 0x63
> +#define SPDM_ERROR 0x7F
> +#define SPDM_GET_DIGESTS 0x81
> +#define SPDM_GET_CERTIFICATE 0x82
> +#define SPDM_CHALLENGE 0x83
> +#define SPDM_GET_MEASUREMENTS 0xE0
> +#define SPDM_GET_CAPABILITIES 0xE1
> +#define SPDM_SET_CERTIFICATE 0xE2
> +#define SPDM_NEGOTIATE_ALGORITHMS 0xE3
> +#define SPDM_RESPOND_IF_READY 0xFF
> +
> +typedef struct {
> + UINT8 SPDMVersion;
> + UINT8 RequestResponseCode;
> + UINT8 Param1;
> + UINT8 Param2;
> +} SPDM_MESSAGE_HEADER;
> +
> +#define SPDM_VERSION 0x10
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +} SPDM_GET_CAPABILITIES_REQUEST;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT8 DetailedVersion;
> + UINT8 CryptographicTimeout;
> + UINT16 Reserved;
> + UINT32 Flags;
> + UINT16 SPDMMajorVersions;
> + UINT16 Reserved2;
> +} SPDM_CAPABILITIES_RESPONSE;
> +
> +#define SPDM_GET_CAPABILITIES_RESPONSE_FLAGS_AUTH_CAP BIT1
> +#define SPDM_GET_CAPABILITIES_RESPONSE_FLAGS_MEAS_CAP BIT3
> +#define SPDM_GET_CAPABILITIES_RESPONSE_FLAGS_MEAS_FRESH_CAP BIT4
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT16 Length;
> + UINT8 MeasurementSpecification;
> + UINT8 Reserved;
> + UINT32 BaseAsymAlgo;
> + UINT32 BaseHashAlgo;
> + UINT64 Reserved2;
> + UINT8 ExtAsymCount;
> + UINT8 ExtHashCount;
> + UINT16 Reserved3;
> +//UINT32 ExtAsym[ExtAsymCount];
> +//UINT32 ExtHash[ExtHashCount];
> +} SPDM_NEGOTIATE_ALGORITHMS_REQUEST;
> +
> +#define SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_RSASSA_2048
> BIT0
> +#define SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_RSASSA_3072
> BIT1
> +#define
> SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_ECDSA_ECC_NIST_P256
> BIT2
> +#define SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_RSASSA_4096
> BIT3
> +#define
> SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_ECDSA_ECC_NIST_P384
> BIT4
> +#define
> SPDM_ALGORITHMS_BASE_ASYM_ALGO_TPM_ALG_ECDSA_ECC_NIST_P521
> BIT5
> +
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA2_256
> BIT0
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA3_256
> BIT1
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA2_384
> BIT2
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA3_384
> BIT3
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA2_512
> BIT4
> +#define SPDM_ALGORITHMS_BASE_HASH_ALGO_TPM_ALG_SHA3_512
> BIT5
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT16 Length;
> + UINT8 MeasurementSpecification;
> + UINT8 MeasurementHashAlgo;
> + UINT32 BaseAsymSel;
> + UINT32 BaseHashSel;
> + UINT64 Reserved;
> + UINT8 ExtAsymSelCount;
> + UINT8 ExtHashSelCount;
> + UINT16 Reserved2;
> +//UINT32 ExtAsymSel[ExtAsymSelCount];
> +//UINT32 ExtHashSel[ExtHashSelCount];
> +} SPDM_ALGORITHMS_RESPONSE;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +} SPDM_GET_DIGESTS_REQUEST;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +//UINT8 Digest[DigestSize];
> +} SPDM_DIGESTS_RESPONSE;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT16 Offset;
> + UINT16 Length;
> +} SPDM_GET_CERTIFICATE_REQUEST;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +//UINT8 CertChain[CertChainSize];
> +} SPDM_CERTIFICATE_RESPONSE;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +//UINT8 Nonce[DigestSize];
> +} SPDM_CHALLENGE_REQUEST;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT8 MinSPDMVersion;
> + UINT8 MaxSPDMVersion;
> + UINT8 Capabilities;
> + UINT8 Reserved;
> +//UINT8 CertChainHash[DigestSize];
> +//UINT8 Salt[DigestSize];
> +//UINT8 ContextHash[DigestSize];
> + //
> + // M1 = Concatenate(
> + // GET_CAPABILITIES_REQUEST1, CAPABILITIES_RESPONSE1,
> + // NEGOTIATE_ALGORITHMS_REQUEST1, ALGORITHMS_RESPONSE1,
> CHALLENGE_REQUEST1,
> + // CHALLENGE_AUTH_RESPONSE_WITHOUT_SIGNATURE1)
> + // Signature = Sign(SK, Hash1(M1))
> + //
> +//UINT8 Signature[KeySize];
> +} SPDM_CHALLENGE_AUTH_RESPONSE;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + // Param1 == Request Type
> + // Param2 == Measurement Index (0xFF == all)
> +//UINT8 Nonce[DigestSize];
> +} SPDM_GET_MEASUREMENTS_REQUEST;
> +
> +typedef struct {
> + UINT8 Index;
> + UINT8 MeasurementType;
> + UINT8 MeasurementSpecification;
> + UINT8 Reserved;
> +} SPDM_MEASUREMENT_BLOCK_HEADER;
> +
> +#define
> SPDM_MEASUREMENT_BLOCK_MEASUREMENT_TYPE_IMMUTABLE_ROM
> 1
> +#define
> SPDM_MEASUREMENT_BLOCK_MEASUREMENT_TYPE_MUTABLE_FIRMWARE
> 2
> +#define
> SPDM_MEASUREMENT_BLOCK_MEASUREMENT_TYPE_HARDWARE_CONFIGUR
> ATION 3
> +#define
> SPDM_MEASUREMENT_BLOCK_MEASUREMENT_TYPE_FIRMWARE_CONFIGUR
> ATION 4
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + UINT8 NumberOfBlocks;
> +//SPDM_MEASUREMENT_BLOCK_STRUCT
> MeasurementRecord[NumberOfBlocks];
> +//UINT8 Salt[DigestSize];
> +//UINT8 ContextHash[DigestSize];
> + //
> + // L1 = Concatenate(
> + // GET_MEASUREMENTS_REQUEST1,
> MEASUREMENTS_RESPONSE_WITHOUT_SIGNATURE1)
> + // Signature = Sign(SK, Hash1(L1))
> + //
> +//UINT8 Signature[KeySize];
> +} SPDM_MEASUREMENTS_RESPONSE;
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> + // Param1 == Error Code
> + // Param2 == Error Data
> +//UINT8 ExtendedErrorData[];
> +} SPDM_ERROR_RESPONSE;
> +
> +#define SPDM_ERROR_CODE_INVALID_REQUEST 0x01
> +#define SPDM_ERROR_CODE_BUSY 0x03
> +#define SPDM_ERROR_CODE_UNEXPECTED_REQUEST 0x04
> +#define SPDM_ERROR_CODE_UNINITIALIZED 0x05
> +#define SPDM_ERROR_CODE_REQUESTED_INFO_TOO_LONG 0x40
> +#define SPDM_ERROR_CODE_MAJOR_VERSION_MISMATCH 0x41
> +#define SPDM_ERROR_CODE_RESPONSE_NOT_READY 0x42
> +
> +typedef struct {
> + SPDM_MESSAGE_HEADER Header;
> +} SPDM_RESPONSE_IF_READY_REQUEST;
> +
> +#pragma pack()
> +
> +#endif
> +
> --
> 2.19.2.windows.1
>
>
>
next prev parent reply other threads:[~2019-11-06 6:47 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-31 12:30 [PATCH V2 0/4] Add SPDM device security Yao, Jiewen
2019-10-31 12:30 ` [PATCH V2 1/4] MdePkg/Include: Add DMTF SPDM definition Yao, Jiewen
2019-11-06 14:38 ` Liming Gao
2019-11-07 0:25 ` Yao, Jiewen
[not found] ` <15D4B9B24059B4F1.19610@groups.io>
2019-11-07 0:57 ` [edk2-devel] " Yao, Jiewen
2019-10-31 12:30 ` [PATCH V2 2/4] MdeModulePkg/Include: Add DeviceSecurity.h Yao, Jiewen
2019-11-06 7:55 ` [edk2-devel] " Ni, Ray
2019-11-06 8:25 ` Yao, Jiewen
2019-11-07 1:58 ` Ni, Ray
[not found] ` <15D4BEC95EBB70CB.18056@groups.io>
2019-11-07 4:31 ` Ni, Ray
2019-11-07 7:13 ` Yao, Jiewen
2019-11-07 7:16 ` Ni, Ray
2019-10-31 12:30 ` [PATCH V2 3/4] MdeModulePkg/dec: Add EdkiiDeviceSecurityProtocolGuid Yao, Jiewen
2019-10-31 12:30 ` [PATCH V2 4/4] MdeModulePkg/Pci: Add DeviceSecurity support Yao, Jiewen
2019-11-07 4:42 ` Ni, Ray
2019-11-07 7:05 ` Yao, Jiewen
[not found] ` <15D2BB2D773DBDBA.23805@groups.io>
2019-11-06 6:47 ` Yao, Jiewen [this message]
[not found] ` <15D2BB2E5CC7FD95.31603@groups.io>
2019-11-06 6:47 ` [edk2-devel] " Yao, Jiewen
[not found] ` <15D2BB2DC41C838D.31603@groups.io>
2019-11-06 6:47 ` [edk2-devel] [PATCH V2 2/4] MdeModulePkg/Include: Add DeviceSecurity.h Yao, Jiewen
[not found] ` <15D2BB2E0995721D.31603@groups.io>
2019-11-06 6:47 ` [edk2-devel] [PATCH V2 3/4] MdeModulePkg/dec: Add EdkiiDeviceSecurityProtocolGuid Yao, Jiewen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=74D8A39837DF1E4DA445A8C0B3885C503F83EA11@shsmsx102.ccr.corp.intel.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox