[Policy V2] Add tools to support key & policy auto generation and auto update td info into tcb_mapping.json #601
+196
−7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix #598
These tool can be used to automatically generate policy with corresponding td info measurement.
Example Usage:
Generate new key pair for policy signing
bash sh_script/key_gen.sh
build migtd with existing policy
cargo clean
cargo image --no-default-features --features stack-guard,virtio-serial,spdm_attestation --policy-v2 --policy config/templates/policy_v2_signed.json --policy-issuer-chain key/migtd_issuer_chain.pem --debug
Build migtd-hash tool
pushd tools/migtd-hash
cargo build
popd
Generate new measurement with updated TCB mapping
./target/debug/migtd-hash --manifest config/servtd_info.json --image target/debug/migtd.bin --policy-v2 --update-tcb-mapping config/templates/tcb_mapping.json
Resign policy with generated keys
bash sh_script/build_policy_v2.sh preprod
Rebuild migtd with new policy
cargo clean
cargo image --no-default-features --features stack-guard,virtio-serial,spdm_attestation --policy-v2 --policy config/templates/policy_v2_signed.json --policy-issuer-chain key/migtd_issuer_chain.pem --debug