1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
// This file is @generated by prost-build.
/// A Challenge from the server used to guarantee freshness of attestations
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Challenge {
/// Output only. The resource name for this Challenge in the format
/// `projects/*/locations/*/challenges/*`
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. The time at which this Challenge was created
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time at which this Challenge will no longer be usable. It
/// is also the expiration time for any tokens generated from this Challenge.
#[prost(message, optional, tag = "3")]
pub expire_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Indicates if this challenge has been used to generate a token.
#[prost(bool, tag = "4")]
pub used: bool,
/// Output only. Identical to nonce, but as a string.
#[prost(string, tag = "6")]
pub tpm_nonce: ::prost::alloc::string::String,
}
/// Message for creating a Challenge
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateChallengeRequest {
/// Required. The resource name of the location where the Challenge will be
/// used, in the format `projects/*/locations/*`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The Challenge to be created. Currently this field can be empty as
/// all the Challenge fields are set by the server.
#[prost(message, optional, tag = "2")]
pub challenge: ::core::option::Option<Challenge>,
}
/// A request for an OIDC token, providing all the necessary information needed
/// for this service to verify the plaform state of the requestor.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VerifyAttestationRequest {
/// Required. The name of the Challenge whose nonce was used to generate the
/// attestation, in the format `projects/*/locations/*/challenges/*`. The
/// provided Challenge will be consumed, and cannot be used again.
#[prost(string, tag = "1")]
pub challenge: ::prost::alloc::string::String,
/// Optional. Credentials used to populate the "emails" claim in the
/// claims_token.
#[prost(message, optional, tag = "2")]
pub gcp_credentials: ::core::option::Option<GcpCredentials>,
/// Required. The TPM-specific data provided by the attesting platform, used to
/// populate any of the claims regarding platform state.
#[prost(message, optional, tag = "3")]
pub tpm_attestation: ::core::option::Option<TpmAttestation>,
/// Optional. Optional information related to the Confidential Space TEE.
#[prost(message, optional, tag = "4")]
pub confidential_space_info: ::core::option::Option<ConfidentialSpaceInfo>,
/// Optional. A collection of optional, workload-specified claims that modify
/// the token output.
#[prost(message, optional, tag = "5")]
pub token_options: ::core::option::Option<TokenOptions>,
/// An optional tee attestation report, used to populate hardware rooted
/// claims.
#[prost(oneof = "verify_attestation_request::TeeAttestation", tags = "6, 7")]
pub tee_attestation: ::core::option::Option<
verify_attestation_request::TeeAttestation,
>,
}
/// Nested message and enum types in `VerifyAttestationRequest`.
pub mod verify_attestation_request {
/// An optional tee attestation report, used to populate hardware rooted
/// claims.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum TeeAttestation {
/// Optional. A TDX with CCEL and RTMR Attestation Quote.
#[prost(message, tag = "6")]
TdCcel(super::TdxCcelAttestation),
/// Optional. An SEV-SNP Attestation Report.
#[prost(message, tag = "7")]
SevSnpAttestation(super::SevSnpAttestation),
}
}
/// A TDX Attestation quote.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TdxCcelAttestation {
/// Optional. The Confidential Computing Event Log (CCEL) ACPI table. Formatted
/// as described in the ACPI Specification 6.5.
#[prost(bytes = "bytes", tag = "1")]
pub ccel_acpi_table: ::prost::bytes::Bytes,
/// Optional. The CCEL event log. Formatted as described in the UEFI 2.10.
#[prost(bytes = "bytes", tag = "2")]
pub ccel_data: ::prost::bytes::Bytes,
/// Optional. An Event Log containing additional events measured into the RTMR
/// that are not already present in the CCEL.
#[prost(bytes = "bytes", tag = "3")]
pub canonical_event_log: ::prost::bytes::Bytes,
/// Optional. The TDX attestation quote from the guest. It contains the RTMR
/// values.
#[prost(bytes = "bytes", tag = "4")]
pub td_quote: ::prost::bytes::Bytes,
}
/// An SEV-SNP Attestation Report.
/// Contains the attestation report and the certificate bundle that the client
/// collects.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SevSnpAttestation {
/// Optional. The SEV-SNP Attestation Report
/// Format is in revision 1.55, ยง7.3 Attestation, Table 22. ATTESTATION_REPORT
/// Structure in this document:
/// <https://www.amd.com/content/dam/amd/en/documents/epyc-technical-docs/specifications/56860.pdf>
#[prost(bytes = "bytes", tag = "1")]
pub report: ::prost::bytes::Bytes,
/// Optional. Certificate bundle defined in the GHCB protocol definition
/// Format is documented in GHCB revision 2.03, section 4.1.8.1 struct
/// cert_table in this document:
/// <https://www.amd.com/content/dam/amd/en/documents/epyc-technical-docs/specifications/56421.pdf>
#[prost(bytes = "bytes", tag = "2")]
pub aux_blob: ::prost::bytes::Bytes,
}
/// A response once an attestation has been successfully verified, containing a
/// signed OIDC token.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VerifyAttestationResponse {
/// Output only. Same as claims_token, but as a string.
#[prost(string, tag = "2")]
pub oidc_claims_token: ::prost::alloc::string::String,
/// Output only. A list of messages that carry the partial error details
/// related to VerifyAttestation.
#[prost(message, repeated, tag = "3")]
pub partial_errors: ::prost::alloc::vec::Vec<super::super::super::rpc::Status>,
}
/// Credentials issued by GCP which are linked to the platform attestation. These
/// will be verified server-side as part of attestaion verification.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GcpCredentials {
/// Same as id_tokens, but as a string.
#[prost(string, repeated, tag = "2")]
pub service_account_id_tokens: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
}
/// Options to modify claims in the token to generate custom-purpose tokens.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TokenOptions {
/// Optional. Optional string to issue the token with a custom audience claim.
/// Required if one or more nonces are specified.
#[prost(string, tag = "1")]
pub audience: ::prost::alloc::string::String,
/// Optional. Optional parameter to place one or more nonces in the eat_nonce
/// claim in the output token. The minimum size for JSON-encoded EATs is 10
/// bytes and the maximum size is 74 bytes.
#[prost(string, repeated, tag = "2")]
pub nonce: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Optional. Optional token type to select what type of token to return.
#[prost(enumeration = "TokenType", tag = "3")]
pub token_type: i32,
}
/// TPM2 data containing everything necessary to validate any platform state
/// measured into the TPM.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TpmAttestation {
/// TPM2 PCR Quotes generated by calling TPM2_Quote on each PCR bank.
#[prost(message, repeated, tag = "1")]
pub quotes: ::prost::alloc::vec::Vec<tpm_attestation::Quote>,
/// The binary TCG Event Log containing events measured into the TPM by the
/// platform firmware and operating system. Formatted as described in the
/// "TCG PC Client Platform Firmware Profile Specification".
#[prost(bytes = "bytes", tag = "2")]
pub tcg_event_log: ::prost::bytes::Bytes,
/// An Event Log containing additional events measured into the TPM that are
/// not already present in the tcg_event_log. Formatted as described in the
/// "Canonical Event Log Format" TCG Specification.
#[prost(bytes = "bytes", tag = "3")]
pub canonical_event_log: ::prost::bytes::Bytes,
/// DER-encoded X.509 certificate of the Attestation Key (otherwise known as
/// an AK or a TPM restricted signing key) used to generate the quotes.
#[prost(bytes = "bytes", tag = "4")]
pub ak_cert: ::prost::bytes::Bytes,
/// List of DER-encoded X.509 certificates which, together with the ak_cert,
/// chain back to a trusted Root Certificate.
#[prost(bytes = "bytes", repeated, tag = "5")]
pub cert_chain: ::prost::alloc::vec::Vec<::prost::bytes::Bytes>,
}
/// Nested message and enum types in `TpmAttestation`.
pub mod tpm_attestation {
/// Information about Platform Control Registers (PCRs) including a signature
/// over their values, which can be used for remote validation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Quote {
/// The hash algorithm of the PCR bank being quoted, encoded as a TPM_ALG_ID
#[prost(int32, tag = "1")]
pub hash_algo: i32,
/// Raw binary values of each PCRs being quoted.
#[prost(btree_map = "int32, bytes", tag = "2")]
pub pcr_values: ::prost::alloc::collections::BTreeMap<
i32,
::prost::bytes::Bytes,
>,
/// TPM2 quote, encoded as a TPMS_ATTEST
#[prost(bytes = "bytes", tag = "3")]
pub raw_quote: ::prost::bytes::Bytes,
/// TPM2 signature, encoded as a TPMT_SIGNATURE
#[prost(bytes = "bytes", tag = "4")]
pub raw_signature: ::prost::bytes::Bytes,
}
}
/// ConfidentialSpaceInfo contains information related to the Confidential Space
/// TEE.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConfidentialSpaceInfo {
/// Optional. A list of signed entities containing container image signatures
/// that can be used for server-side signature verification.
#[prost(message, repeated, tag = "1")]
pub signed_entities: ::prost::alloc::vec::Vec<SignedEntity>,
}
/// SignedEntity represents an OCI image object containing everything necessary
/// to verify container image signatures.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SignedEntity {
/// Optional. A list of container image signatures attached to an OCI image
/// object.
#[prost(message, repeated, tag = "1")]
pub container_image_signatures: ::prost::alloc::vec::Vec<ContainerImageSignature>,
}
/// ContainerImageSignature holds necessary metadata to verify a container image
/// signature.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContainerImageSignature {
/// Optional. The binary signature payload following the SimpleSigning format
/// <https://github.com/sigstore/cosign/blob/main/specs/SIGNATURE_SPEC.md#simple-signing.>
/// This payload includes the container image digest.
#[prost(bytes = "bytes", tag = "1")]
pub payload: ::prost::bytes::Bytes,
/// Optional. A signature over the payload.
/// The container image digest is incorporated into the signature as follows:
/// 1. Generate a SimpleSigning format payload that includes the container
/// image digest.
/// 2. Generate a signature over SHA256 digest of the payload.
/// The signature generation process can be represented as follows:
/// `Sign(sha256(SimpleSigningPayload(sha256(Image Manifest))))`
#[prost(bytes = "bytes", tag = "2")]
pub signature: ::prost::bytes::Bytes,
/// Optional. Reserved for future use.
#[prost(bytes = "bytes", tag = "3")]
pub public_key: ::prost::bytes::Bytes,
/// Optional. Reserved for future use.
#[prost(enumeration = "SigningAlgorithm", tag = "4")]
pub sig_alg: i32,
}
/// SigningAlgorithm enumerates all the supported signing algorithms.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum SigningAlgorithm {
/// Unspecified signing algorithm.
Unspecified = 0,
/// RSASSA-PSS with a SHA256 digest.
RsassaPssSha256 = 1,
/// RSASSA-PKCS1 v1.5 with a SHA256 digest.
RsassaPkcs1v15Sha256 = 2,
/// ECDSA on the P-256 Curve with a SHA256 digest.
EcdsaP256Sha256 = 3,
}
impl SigningAlgorithm {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SigningAlgorithm::Unspecified => "SIGNING_ALGORITHM_UNSPECIFIED",
SigningAlgorithm::RsassaPssSha256 => "RSASSA_PSS_SHA256",
SigningAlgorithm::RsassaPkcs1v15Sha256 => "RSASSA_PKCS1V15_SHA256",
SigningAlgorithm::EcdsaP256Sha256 => "ECDSA_P256_SHA256",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SIGNING_ALGORITHM_UNSPECIFIED" => Some(Self::Unspecified),
"RSASSA_PSS_SHA256" => Some(Self::RsassaPssSha256),
"RSASSA_PKCS1V15_SHA256" => Some(Self::RsassaPkcs1v15Sha256),
"ECDSA_P256_SHA256" => Some(Self::EcdsaP256Sha256),
_ => None,
}
}
}
/// Token type enum contains the different types of token responses Confidential
/// Space supports
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum TokenType {
/// Unspecified token type
Unspecified = 0,
/// OpenID Connect (OIDC) token type
Oidc = 1,
/// Public Key Infrastructure (PKI) token type
Pki = 2,
/// Limited claim token type for AWS integration
LimitedAws = 3,
}
impl TokenType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
TokenType::Unspecified => "TOKEN_TYPE_UNSPECIFIED",
TokenType::Oidc => "TOKEN_TYPE_OIDC",
TokenType::Pki => "TOKEN_TYPE_PKI",
TokenType::LimitedAws => "TOKEN_TYPE_LIMITED_AWS",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TOKEN_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"TOKEN_TYPE_OIDC" => Some(Self::Oidc),
"TOKEN_TYPE_PKI" => Some(Self::Pki),
"TOKEN_TYPE_LIMITED_AWS" => Some(Self::LimitedAws),
_ => None,
}
}
}
/// Generated client implementations.
pub mod confidential_computing_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// Service describing handlers for resources
#[derive(Debug, Clone)]
pub struct ConfidentialComputingClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> ConfidentialComputingClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> ConfidentialComputingClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
ConfidentialComputingClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Creates a new Challenge in a given project and location.
pub async fn create_challenge(
&mut self,
request: impl tonic::IntoRequest<super::CreateChallengeRequest>,
) -> std::result::Result<tonic::Response<super::Challenge>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.confidentialcomputing.v1.ConfidentialComputing/CreateChallenge",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.confidentialcomputing.v1.ConfidentialComputing",
"CreateChallenge",
),
);
self.inner.unary(req, path, codec).await
}
/// Verifies the provided attestation info, returning a signed OIDC token.
pub async fn verify_attestation(
&mut self,
request: impl tonic::IntoRequest<super::VerifyAttestationRequest>,
) -> std::result::Result<
tonic::Response<super::VerifyAttestationResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.confidentialcomputing.v1.ConfidentialComputing/VerifyAttestation",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.confidentialcomputing.v1.ConfidentialComputing",
"VerifyAttestation",
),
);
self.inner.unary(req, path, codec).await
}
}
}