Add NVIDIA remote attestation scheme - #434
Open
jraman567 wants to merge 4 commits into
Open
Conversation
add skeletal code for NVIDIA scheme Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Adds a cgo-backed nvatInterface.go that dynamically loads libnvat.so.1, resolves the NVAT SDK entry points at runtime, and exposes helper functions for the plugin to verifier claims. Assisted-by: OpenAI Codex Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Decode NVIDIA GPU evidence from the RATSd CMW collection and pass the attestation report and session nonce to the NVAT verifier. Return a bad-evidence error when NVAT verification fails and only mark the hardware and runtime as trustworthy after successful appraisal. Make the NVAT integration tests configurable for local and remote verification. Require a service token only for NRAS remote mode, allow tokenless local verification through Trust Outpost, and fail attempted initialization or verification instead of hiding failures as skips. Read integration settings from NVAT_VERIFIER_MODE, NVAT_SERVICE_TOKEN, and NVAT_REMOTE_HOST. Assisted-by: OpenAI Codex Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Derive the NVIDIA GPU nonce from the session nonce using the adjustment parameters carried in the RATSd claims before passing it to NVAT. Assisted-by: OpenAI Codex Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
jraman567
requested review from
cowbon,
setrofim,
thomas-fossati and
yogeshbdeshpande
July 28, 2026 20:15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This scheme adds verification code for NVIDIA attestation reports. I have verified it using NRAS (verifier_mode: "remote") and Trust Outpost (verifier_mode: "local").
There are a couple of issues: