MCPcopy Index your code
hub / github.com/confidential-containers/td-shim

github.com/confidential-containers/td-shim @v0.8.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.8.0 ↗ · + Follow
951 symbols 1,935 edges 145 files 219 documented · 23%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Main Libray Crates Cargo Deny Cargo Fmt & Clippy Integration Test TDX Integration Test Fuzzing Test FOSSA Status

TD-shim - Confidential Containers Shim Firmware

Hardware virtualization-based containers are designed to launch and run containerized applications in hardware virtualized environments. While containers usually run directly as bare-metal applications, using TD or VT as an isolation layer from the host OS is used as a secure and efficient way of building multi-tenant Cloud-native infrastructures (e.g. Kubernetes).

In order to match the short start-up time and resource consumption overhead of bare-metal containers, runtime architectures for TD- and VT-based containers put a strong focus on minimizing boot time. They must also launch the container payload as quickly as possible. Hardware virtualization-based containers typically run on top of simplified and customized Linux kernels to minimize the overall guest boot time.

Simplified kernels typically have no UEFI dependencies and no ACPI ASL support. This allows guests to boot without firmware dependencies. Current VT-based container runtimes rely on VMMs that are capable of directly booting into the guest kernel without loading firmware.

TD Shim is a simplified TDX virtual firmware for the simplified kernel for TD container. This document describes a lightweight interface between the TD Shim and TD VMM and between the TD Shim and the simplified kernel.

Overview

Documents

Feature Introduction

This is a Shim Firmware to support Intel TDX.

The API specification is at td-shim specification.

The secure boot specification for td-shim is at secure boot specification

The design is at td-shim design.

The threat model analysis is at td-shim threat model.

How to build

Tools

  1. Install RUST

please use nightly-2023-08-28.

NOTE: We need install nightly version because we use cargo-xbuild.

1.1. Install xbuild

cargo install cargo-xbuild

Please reinstall cargo-xbuild, after you update the rust toolchain.

  1. Install NASM

Please make sure nasm can be found in PATH.

  1. Install LLVM

Please make sure clang can be found in PATH.

Set env:

export CC=clang
export AR=llvm-ar

export CC_x86_64_unknown_none=clang
export AR_x86_64_unknown_none=llvm-ar

Secure boot support

Please follow Secure Boot Guide

Before build

git submodule update --init --recursive
./sh_script/preparation.sh

Use xtask to build TdShim image

Build TdShim image to launch a payload support Linux Boot Protocol

cargo image --release

Build TdShim image to launch an executable payload

cargo image -t executable -p /path/to/payload_binary --release

Build TdShim image to launch the example payload

cargo image --example-payload --release

Build TdShim manually

Build TdShim to launch a payload support Linux Boot Protocol

cargo xbuild -p td-shim --target x86_64-unknown-none --release --features=main,tdx
cargo run -p td-shim-tools --bin td-shim-ld --features=linker -- target/x86_64-unknown-none/release/ResetVector.bin target/x86_64-unknown-none/release/td-shim -o target/release/final.bin

Build TdShim to launch a executable payload

cargo xbuild -p td-shim --target x86_64-unknown-none --release --features=main,tdx --no-default-features

Build Elf format payload

cargo xbuild -p td-payload --target x86_64-unknown-none --release --bin example --features=tdx,start,cet-shstk,stack-guard
cargo run -p td-shim-tools --bin td-shim-ld -- target/x86_64-unknown-none/release/ResetVector.bin target/x86_64-unknown-none/release/td-shim -t executable -p target/x86_64-unknown-none/release/example -o target/release/final-elf.bin

To build the debug TdShim, please use dev-opt profile to build td-shim binary. For example:

cargo xbuild -p td-shim --target x86_64-unknown-none --profile dev-opt --features=main,tdx
cargo run -p td-shim-tools --bin td-shim-ld --features=linker -- target/x86_64-unknown-none/dev-opt/ResetVector.bin target/x86_64-unknown-none/dev-opt/td-shim -o target/debug/final.bin

Run

REF: https://github.com/tianocore/edk2-staging/tree/TDVF

./launch-rust-td.sh

Reproducible Build

Reproducible build of td-shim binary requires same system user and source code path (see https://github.com/confidential-containers/td-shim/issues/604).

The Dockerfile is provided to build the docker image with the td-shim compilation environment for reproducible build. You can use the docker.sh to build and run the docker container:

./sh_script/docker.sh -f devtools/dev_container

Code Contributions

  1. install pre-commit
  2. run pre-commit install
  3. when you run git commit, pre-commit will do check-code things.

License

FOSSA Status

Extension points exported contracts — how you extend this code

TestCase (Interface)
(no doc) [11 implementers]
tests/test-td-payload/src/lib.rs
Testable (Interface)
Trait for unit test functions. [1 implementers]
devtools/test-runner-client/src/lib.rs

Core symbols most depended-on inside this repo

set_func
called by 27
td-exception/src/idt.rs
as_str
called by 24
td-layout/src/memslice.rs
as_bytes
called by 24
td-shim-tools/src/enroller.rs
as_bytes
called by 23
td-shim-tools/src/lib.rs
as_slice
called by 23
td-shim-tools/src/metadata.rs
as_bytes
called by 23
td-shim/src/bin/td-shim/mp.rs
as_bytes
called by 18
td-uefi-pi/src/pi/fv.rs
td_vmcall
called by 16
tdx-tdcall/src/lib.rs

Shape

Function 420
Method 322
Class 180
Enum 27
Interface 2

Languages

Rust100%

Modules by API surface

td-loader/src/elf64.rs34 symbols
tdx-tdcall/src/tdx.rs32 symbols
td-shim/src/bin/td-shim/td/tdx_mailbox.rs26 symbols
cc-measurement/src/log.rs25 symbols
td-loader/src/pe.rs23 symbols
tdx-tdcall/src/tdreport.rs20 symbols
td-uefi-pi/src/hob.rs20 symbols
td-layout/src/memslice.rs19 symbols
td-shim/src/secure_boot.rs18 symbols
td-shim/src/metadata.rs18 symbols
td-shim/src/bin/td-shim/memory.rs18 symbols
td-payload/src/arch/x86_64/paging.rs18 symbols

For agents

$ claude mcp add td-shim \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page