Registered User mNo edit summary |
Registered User mNo edit summary |
||
(21 intermediate revisions by 6 users not shown) | |||
Line 4: | Line 4: | ||
}}</noinclude> | }}</noinclude> | ||
==Article purpose== | ==Article purpose== | ||
The main purpose of this article is to explain how | The main purpose of this article is to explain how the Trusted Board Boot feature support is managed in the Trusted Firmware-A component and the STM32 MPU specific implementation. | ||
==Overview== | ==Overview== | ||
Trusted Firmware-A | Trusted Firmware-A has a strong focus on security management. | ||
It defines a reference implementation of secure software and implements the Trusted Board Boot requirements<ref>https://developer.arm.com/docs/den0006/latest/trusted-board-boot-requirements-client-tbbr-client-armv8-a</ref> specified by Arm<sup>®</sup>. | It defines a reference implementation of secure software and implements the Trusted Board Boot requirements<ref>https://developer.arm.com/docs/den0006/latest/trusted-board-boot-requirements-client-tbbr-client-armv8-a</ref> specified by Arm<sup>®</sup>. | ||
TF-A BL2 implements an authentication framework that uses a defined Chain of Trust (CoT) based on Arm<sup>®</sup> TBBR requirements to achieve a secure boot.<br> | TF-A BL2 implements an authentication framework that uses a defined Chain of Trust (CoT) based on Arm<sup>®</sup> TBBR requirements to achieve a secure boot.<br> | ||
The authentication framework is enabled using a dedicated [[How_to_configure_TF-A_BL2#Build_command_details|Trusted Firmware-A build flag]] in the BL2 command line: <br> | The authentication framework is enabled using a dedicated [[How_to_configure_TF-A_BL2#Build_command_details|Trusted Firmware-A build flag]] in the BL2 command line: <br> | ||
Line 20: | Line 19: | ||
== Chain of Trust (CoT)== | == Chain of Trust (CoT)== | ||
To manage the Trusted Board Boot requirements, Trusted Firmware-A manages a | To manage the Trusted Board Boot requirements, Trusted Firmware-A manages a public key Infrastructure (PKI) model so called {{DocSource | domain=TF-A | path=design/trusted-board-boot.html#chain-of-trust | text=Chain of Trust }}. | ||
The Chain of Trust is following X509.v3<ref>https://tools.ietf.org/rfc/rfc5280.txt</ref> certificate standard adding some specific extensions and relies on a public key infrastructure (PKI) generating self-signed certificates. | The Chain of Trust is following X509.v3<ref>https://tools.ietf.org/rfc/rfc5280.txt</ref> certificate standard adding some specific extensions and relies on a public key infrastructure (PKI) generating self-signed certificates. | ||
The Root of Trust of this chain is based on a Root of Trust Public Key (ROTPK). | The Root of Trust of this chain is based on a Root of Trust Public Key (ROTPK). | ||
Chain of Trust manages | Chain of Trust manages two certificate types: | ||
* '''Key certificate''' used to verify public keys which have been used to sign content certificates. | * '''Key certificate''' used to verify public keys, which have been used to sign content certificates. | ||
* '''Content certificate''' used to store the hash of a | * '''Content certificate''' used to store the hash of a bootloader image. | ||
Both certificates contain a non volatile counter value that can be used for anti-rollback protection. | Both certificates contain a non-volatile counter value that can be used for anti-rollback protection. | ||
TF-A BL2 implements a default certificate chain to describe the PKI topology. It | TF-A BL2 implements a default certificate chain to describe the PKI topology defined in {{CodeSource | TF-A | fdts/cot_descriptors.dtsi}}. It is used by the {{DocSource | domain=TF-A | path=components/fconf/index.html | text=firmware configuration framework}} to register into TF-A BL2 the chaining implementation based on generic CoT DTSI file. It describes the chain of trust following the specified {{DocSource | domain=TF-A | path=components/cot-binding.html | text=bindings}}. STM32MPU platforms use a specific STM32MPU device tree {{CodeSource | TF-A | fdts/stm32mp1-cot-descriptors.dtsi}} which described a specific topology for ST needs described in the following chapter. Based on this example, the PKI topology can be customized by customers. | ||
Once generated, all the certificates | Once generated, all the certificates are part of the [[How_to_configure_TF-A_FIP|FIP]], which are updatable independently. | ||
The certificate generation uses the default Trusted Firmware-A {{DocSource | domain=TF-A | path=design/trusted-board-boot.html#certificate-generation-tool | text=certificate creation tool}}. | The certificate generation uses the default Trusted Firmware-A {{DocSource | domain=TF-A | path=design/trusted-board-boot.html#certificate-generation-tool | text=certificate creation tool}}. | ||
== Authentication | == Authentication framework == | ||
Trusted Firmware-A design an {{DocSource | domain=TF-A | path=design/auth-framework.html | text=authentication framework}} to centralize all secure | Trusted Firmware-A design an {{DocSource | domain=TF-A | path=design/auth-framework.html | text=authentication framework}} to centralize all secure mechanism relying on an authentication module (AM), image parser module (IPM) and Crypto Module (CM). | ||
This generic framework based on certificate chain of trust is responsible of: | This generic framework based on the certificate chain of trust is responsible of the following: | ||
* | * allocate memory for the loaded image | ||
* | * identify the image and load it | ||
* | * check the integrity | ||
* | * authenticate / [ Decrypt ] the image | ||
* | * extract the CoT information if needed to authenticate next image in CoT | ||
A reference implementation has been integrated in Trusted Firmware-A using mbedTLS<ref>https://www.trustedfirmware.org/projects/mbed-tls/</ref> for: | A reference implementation has been integrated in Trusted Firmware-A using mbedTLS<ref>https://www.trustedfirmware.org/projects/mbed-tls/</ref> for: | ||
Line 53: | Line 51: | ||
== STM32 MPU implementation== | == STM32 MPU implementation== | ||
=== CoT === | === CoT === | ||
STM32 MPU | STM32 MPU is based on the standard Arm<sup>®</sup>TBBR PKI implementation. STM32MPU defines a specific {{CodeSource | TF-A | fdts/stm32mp1-cot-descriptors.dtsi}} in the TF-A BL2 device tree board file. | ||
<div class="res-img"> | <div class="res-img"> | ||
Line 62: | Line 60: | ||
==== Define a custom CoT ==== | ==== Define a custom CoT ==== | ||
It is possible to update the CoT by changing the chain of certificate. This must be done accordingly at: | It is possible to update the CoT by changing the chain of certificate. This must be done accordingly at: | ||
* Certificate creation tool level {{CodeSource | TF-A | | * Certificate creation tool platform level {{CodeSource | TF-A | plat/st/stm32mp1/stm32mp1_tbb_cert.c}}. | ||
* | * Custom device tree descriptor level {{CodeSource | TF-A | fdts/stm32mp1-cot-descriptors.dtsi}} following the {{DocSource | domain=TF-A | path=components/cot-binding.html | text=bindings}}. | ||
=== RoT === | === RoT === | ||
Line 69: | Line 67: | ||
The STM32MP1 platform <code>plat_get_rotpk_info</code> implementation is made in : {{CodeSource | TF-A | plat/st/common/stm32mp_trusted_boot.c}}.<br> | The STM32MP1 platform <code>plat_get_rotpk_info</code> implementation is made in : {{CodeSource | TF-A | plat/st/common/stm32mp_trusted_boot.c}}.<br> | ||
The {{Highlight|ROTPK}} is given in the high level certificate and verified against a hash store OTP value: | The {{Highlight|ROTPK}} is given in the high-level certificate and verified against a hash store OTP value: | ||
* On {{MicroprocessorDevice | device=15}}, the hash of the public key used is located in the {{Highlight|PKH}} section of [[STM32MP15_OTP_mapping|OTP]].<br> | * On {{MicroprocessorDevice | device=15}}, the hash of the public key used is located in the {{Highlight|PKH}} section of [[STM32MP15_OTP_mapping|OTP]].<br> | ||
Line 90: | Line 88: | ||
} | } | ||
=== Non volatile counters === | === Non-volatile counters === | ||
Each certificate embeds a non volatile counter value that is checked to control anti-rollback mechanism.<br> | Each certificate embeds a non-volatile counter value that is checked to control anti-rollback mechanism.<br> | ||
There are | There are two non-volatile counters: | ||
- | * Trusted non-volatile counter | ||
* Non trusted non-volatile counter | |||
On STM32MP1, [[TAMP_internal_peripheral|TAMP]] monotonic counter is used to store the backup value which requires backup battery to maintain the content | On STM32MP1, [[TAMP_internal_peripheral|TAMP]] monotonic counter is used to store the backup value, which requires backup battery to maintain the content. | ||
=== STM32 | It is mandatory to align the same value between trusted and non-trusted value as only one counter is used as reference. This implies generating the certificate version number for each FIP image must match the common platform unique TAMP rollback counter. That is using the same argument value for options [[#STM32_MPU_build_options|--tfw-nvctr]] and [[#STM32_MPU_build_options|--ntfw-nvctr]] when generating the authenticated FIP image. | ||
=== STM32 firmware encryption === | |||
On {{MicroprocessorDevice | device=13}}, it is possible to encrypt binary in the [[How_to_configure_TF-A_FIP|FIP]]. | On {{MicroprocessorDevice | device=13}}, it is possible to encrypt binary in the [[How_to_configure_TF-A_FIP|FIP]]. | ||
Line 108: | Line 107: | ||
The current implementation uses the same key as the [[STM32_MPU_ROM_code_overview|ROM Code]] which is located in {{Highlight|EDMK}} section of [[STM32MP13_OTP_mapping|OTP]]. | The current implementation uses the same key as the [[STM32_MPU_ROM_code_overview|ROM Code]] which is located in {{Highlight|EDMK}} section of [[STM32MP13_OTP_mapping|OTP]]. | ||
==== Define a custom | ==== Define a custom encryption key ==== | ||
A new decryption key can be defined by updating: | A new decryption key can be defined by updating: | ||
* Redefine the <code>plat_get_enc_key_info</code> function to access the required OTP value in {{CodeSource | TF-A | plat/st/common/stm32mp_crypto_lib.c}} | * Redefine the <code>plat_get_enc_key_info</code> function to access the required OTP value in {{CodeSource | TF-A | plat/st/common/stm32mp_crypto_lib.c}} | ||
Line 114: | Line 113: | ||
* Add a new entry in the board device tree in the fuse section aligned with the defined name of OTP section. | * Add a new entry in the board device tree in the fuse section aligned with the defined name of OTP section. | ||
=== STM32 | === STM32 Cryptographic Library (CL) === | ||
The STM32MP1 platform supports '''ECDSA based certificate with SHA256''' signature.<br> | The STM32MP1 platform supports '''ECDSA based certificate with SHA256''' signature.<br> | ||
A dedicated Cryptographic Library was implemented for STM32 MPU to use hardware accelerators {{CodeSource | TF-A | plat/st/common/stm32mp_crypto_lib.c}}. | A dedicated Cryptographic Library was implemented for STM32 MPU to use hardware accelerators {{CodeSource | TF-A | plat/st/common/stm32mp_crypto_lib.c}}. | ||
Line 157: | Line 156: | ||
|- | |- | ||
| Trusted key certificate || TRUSTED_KEY_CERT || --trusted-key-cert | | Trusted key certificate || TRUSTED_KEY_CERT || --trusted-key-cert | ||
|- | |||
| STM32MP configuration certificate || STM32MP_CFG_CERT || --stm32mp-cfg-cert | |||
|} | |} | ||
Line 166: | Line 167: | ||
<noinclude> | <noinclude> | ||
{{PublicationRequestId | 24123 | 2022-07-27 | }} | |||
[[Category:Trusted_Firmware-A_(BL2)|02]] | [[Category:Trusted_Firmware-A_(BL2)|02]] | ||
[[Category:Platform | [[Category:Platform security]] | ||
</noinclude> | </noinclude> |
Latest revision as of 11:12, 28 March 2023
1. Article purpose[edit source]
The main purpose of this article is to explain how the Trusted Board Boot feature support is managed in the Trusted Firmware-A component and the STM32 MPU specific implementation.
2. Overview[edit source]
Trusted Firmware-A has a strong focus on security management.
It defines a reference implementation of secure software and implements the Trusted Board Boot requirements[1] specified by Arm®.
TF-A BL2 implements an authentication framework that uses a defined Chain of Trust (CoT) based on Arm® TBBR requirements to achieve a secure boot.
The authentication framework is enabled using a dedicated Trusted Firmware-A build flag in the BL2 command line:
TRUSTED_BOARD_BOOT=1
Some specific libraries are required to build tools and enable the TRUSTED_BOARD_BOOT : Prerequisites software library.
3. Chain of Trust (CoT)[edit source]
To manage the Trusted Board Boot requirements, Trusted Firmware-A manages a public key Infrastructure (PKI) model so called Chain of Trust.
The Chain of Trust is following X509.v3[2] certificate standard adding some specific extensions and relies on a public key infrastructure (PKI) generating self-signed certificates. The Root of Trust of this chain is based on a Root of Trust Public Key (ROTPK).
Chain of Trust manages two certificate types:
- Key certificate used to verify public keys, which have been used to sign content certificates.
- Content certificate used to store the hash of a bootloader image.
Both certificates contain a non-volatile counter value that can be used for anti-rollback protection.
TF-A BL2 implements a default certificate chain to describe the PKI topology defined in fdts/cot_descriptors.dtsi . It is used by the firmware configuration framework to register into TF-A BL2 the chaining implementation based on generic CoT DTSI file. It describes the chain of trust following the specified bindings. STM32MPU platforms use a specific STM32MPU device tree fdts/stm32mp1-cot-descriptors.dtsi which described a specific topology for ST needs described in the following chapter. Based on this example, the PKI topology can be customized by customers.
Once generated, all the certificates are part of the FIP, which are updatable independently.
The certificate generation uses the default Trusted Firmware-A certificate creation tool.
4. Authentication framework[edit source]
Trusted Firmware-A design an authentication framework to centralize all secure mechanism relying on an authentication module (AM), image parser module (IPM) and Crypto Module (CM). This generic framework based on the certificate chain of trust is responsible of the following:
- allocate memory for the loaded image
- identify the image and load it
- check the integrity
- authenticate / [ Decrypt ] the image
- extract the CoT information if needed to authenticate next image in CoT
A reference implementation has been integrated in Trusted Firmware-A using mbedTLS[3] for:
- the Image Parser Module(IPM) using x509.v3 certificate (Image Parser Library (IPL))
- the Crypto Module(CM) with a dedicated Cryptographic Library (CL).
5. STM32 MPU implementation[edit source]
5.1. CoT[edit source]
STM32 MPU is based on the standard Arm®TBBR PKI implementation. STM32MPU defines a specific fdts/stm32mp1-cot-descriptors.dtsi in the TF-A BL2 device tree board file.
5.1.1. Define a custom CoT[edit source]
It is possible to update the CoT by changing the chain of certificate. This must be done accordingly at:
- Certificate creation tool platform level plat/st/stm32mp1/stm32mp1_tbb_cert.c .
- Custom device tree descriptor level fdts/stm32mp1-cot-descriptors.dtsi following the bindings.
5.2. RoT[edit source]
The Root of Trust Public Key (ROTPK) used as reference for the chain of trust.
The STM32MP1 platform plat_get_rotpk_info
implementation is made in : plat/st/common/stm32mp_trusted_boot.c .
The ROTPK is given in the high-level certificate and verified against a hash store OTP value:
- On STM32MP15x lines
, the hash of the public key used is located in the PKH section of OTP.
- On STM32MP13x lines
, multiple root keys are available on the platform which allow a key revocation mechanism. The multiple public key hashes are used to generate the final hash store in the PKHTH section of OTP which is controlled to confirm key integrity. The public key hash used is located in the Trusted Firmware-A BL2 STM32 header which is located in SRAM3.
5.2.1. Define a custom RoT[edit source]
It is possible to change the ROTPK to have a dedicated public key for the CoT by changing the following:
- Use the STM32MP15x lines
direct access to OTP value in plat/st/common/stm32mp_trusted_boot.c
- Define a new dedicated OTP value in the plat/st/stm32mp1/stm32mp1_def.h
- Add a new entry in the board device tree in the fuse section with to defined name and OTP section.
- Get the value from the new defined OTP updating the plat/st/common/stm32mp_trusted_boot.c
<New_OTP_define>, hash, len); }static int get_rotpk_hash(void *cookie, uint8_t *hash, size_t len) { if (cookie != NULL) { return -EINVAL; } return copy_hash_from_otp(
5.3. Non-volatile counters[edit source]
Each certificate embeds a non-volatile counter value that is checked to control anti-rollback mechanism.
There are two non-volatile counters:
- Trusted non-volatile counter
- Non trusted non-volatile counter
On STM32MP1, TAMP monotonic counter is used to store the backup value, which requires backup battery to maintain the content.
It is mandatory to align the same value between trusted and non-trusted value as only one counter is used as reference. This implies generating the certificate version number for each FIP image must match the common platform unique TAMP rollback counter. That is using the same argument value for options --tfw-nvctr and --ntfw-nvctr when generating the authenticated FIP image.
5.4. STM32 firmware encryption[edit source]
On STM32MP13x lines , it is possible to encrypt binary in the FIP.
The binary that can be encrypted must be defined in the plat/st/common/stm32mp_fconf_io.c .
Trusted Firmware-A provides a tool to manage the firmware encryption.
The current implementation uses the same key as the ROM Code which is located in EDMK section of OTP.
5.4.1. Define a custom encryption key[edit source]
A new decryption key can be defined by updating:
- Redefine the
plat_get_enc_key_info
function to access the required OTP value in plat/st/common/stm32mp_crypto_lib.c - Define a new dedicated OTP value in the plat/st/stm32mp1/stm32mp1_def.h
- Add a new entry in the board device tree in the fuse section aligned with the defined name of OTP section.
5.5. STM32 Cryptographic Library (CL)[edit source]
The STM32MP1 platform supports ECDSA based certificate with SHA256 signature.
A dedicated Cryptographic Library was implemented for STM32 MPU to use hardware accelerators plat/st/common/stm32mp_crypto_lib.c .
It requires mbedTLS API to parse ASN1 certificate.
The Cryptographic Library (CL) defined the functions to:
5.6. STM32 MPU build options[edit source]
To manage the Trusted Board Boot, TF-A_BL2 must be built using TRUSTED_BOARD_BOOT=1.
When TRUSTED_BOARD_BOOT=1 has been set, the FIP must embed all the certificates.
It is possible to directly generate the FIP with all the necessary certificates using the specific build flag GENERATE_COT=1.
It is also possible to specify external keys. Otherwise, missing keys will be generated by the tool.
Description | Makefile Flag | certificate creation tool args |
---|---|---|
Root public key | ROT_KEY | --rot-key |
Algorithm used for key generation | KEY_ALG | --key-alg |
Algorithm used for hash | HASH_ALG | --hash-alg |
Trusted word key | TRUSTED_WORLD_KEY | --trusted-world-key |
Non Trusted word key | NON_TRUSTED_WORLD_KEY | --non-trusted-world-key |
Trusted Firmware Non volatile counter | TFW_NVCTR_VAL | --tfw-nvctr |
Non Trusted Firmware Non volatile counter | NTFW_NVCTR_VAL | --ntfw-nvctr |
Trusted key certificate | TRUSTED_KEY_CERT | --trusted-key-cert |
STM32MP configuration certificate | STM32MP_CFG_CERT | --stm32mp-cfg-cert |
6. References[edit source]