9#include <botan/tpm2_key.h>
11#if defined(BOTAN_HAS_TPM2_RSA_ADAPTER)
12 #include <botan/tpm2_rsa.h>
14#if defined(BOTAN_HAS_TPM2_ECC_ADAPTER)
15 #include <botan/tpm2_ecc.h>
18#include <botan/internal/fmt.h>
19#include <botan/internal/stl_util.h>
20#include <botan/internal/tpm2_algo_mappings.h>
21#include <botan/internal/tpm2_hash.h>
22#include <botan/internal/tpm2_util.h>
24#include <tss2/tss2_esys.h>
25#include <tss2/tss2_mu.h>
29#if defined(BOTAN_HAS_RSA)
32 const auto& pub = public_area->publicArea;
33 BOTAN_ARG_CHECK(pub.type == TPM2_ALG_RSA,
"Public key is not an RSA key");
36 const auto exponent = (pub.parameters.rsaDetail.exponent == 0) ? 65537 : pub.parameters.rsaDetail.exponent;
42#if defined(BOTAN_HAS_ECC_GROUP)
43std::pair<EC_Group, EC_AffinePoint> ecc_pubkey_from_tss2_public(
const TPM2B_PUBLIC* public_blob) {
45 BOTAN_ARG_CHECK(public_blob->publicArea.type == TPM2_ALG_ECC,
"Public blob is not an ECC key");
47 const auto curve_id = public_blob->publicArea.parameters.eccDetail.curveID;
50 throw Invalid_Argument(
Botan::fmt(
"Unsupported ECC curve: {}", curve_id));
57 concat(std::vector<uint8_t>({0x04}),
58 as_span(public_blob->publicArea.unique.ecc.x),
59 as_span(public_blob->publicArea.unique.ecc.y)));
61 throw Invalid_Argument(
"Invalid ECC Point");
63 return {std::move(curve), std::move(point.value())};
69Object load_persistent_object(
const std::shared_ptr<Context>& ctx,
71 std::span<const uint8_t> auth_value,
72 const SessionBundle& sessions) {
74 TPM2_PERSISTENT_FIRST <= persistent_object_handle && persistent_object_handle <= TPM2_PERSISTENT_LAST,
75 "persistent_object_handle out of range");
77 const bool is_persistent =
value_exists(ctx->persistent_handles(), persistent_object_handle);
83 Esys_TR_FromTPMPublic(
84 *ctx, persistent_object_handle, sessions[0], sessions[1], sessions[2],
out_transient_handle(
object)));
86 if(!auth_value.empty()) {
88 check_rc(
"Esys_TR_SetAuth", Esys_TR_SetAuth(*ctx,
object.transient_handle(), &user_auth));
94 const auto key_type =
object._public_info(sessions).pub->publicArea.type;
96 "persistent object is neither RSA nor ECC public key");
101std::vector<uint8_t> marshal_public_blob(
const TPM2B_PUBLIC* public_data) {
102 size_t bytes_required = 0;
103 std::vector<uint8_t> marshalled_blob(
sizeof(TPM2B_PUBLIC));
104 check_rc(
"Tss2_MU_TPM2B_PUBLIC_Marshal",
105 Tss2_MU_TPM2B_PUBLIC_Marshal(public_data, marshalled_blob.data(), marshalled_blob.size(), &bytes_required));
106 marshalled_blob.resize(bytes_required);
107 marshalled_blob.shrink_to_fit();
108 return marshalled_blob;
111TPM2B_PUBLIC unmarshal_public_blob(std::span<const uint8_t> marshalled_blob) {
112 TPM2B_PUBLIC public_data{};
114 check_rc(
"Tss2_MU_TPM2B_PUBLIC_Unmarshal",
115 Tss2_MU_TPM2B_PUBLIC_Unmarshal(marshalled_blob.data(), marshalled_blob.size(), &offset, &public_data));
120TPM2B_TEMPLATE marshal_template(
const TPMT_PUBLIC& key_template) {
121 TPM2B_TEMPLATE result = {};
123 check_rc(
"Tss2_MU_TPMT_PUBLIC_Marshal",
124 Tss2_MU_TPMT_PUBLIC_Marshal(&key_template, result.buffer,
sizeof(TPMT_PUBLIC), &offset));
125 result.size = offset;
138 std::span<const uint8_t> public_blob,
140 const auto public_data = unmarshal_public_blob(public_blob);
146 Esys_LoadExternal(*ctx,
158 return marshal_public_blob(m_handle.
_public_info(m_sessions).
pub.get());
163#if defined(BOTAN_HAS_TPM2_RSA_ADAPTER)
164 if(pubinfo->publicArea.type == TPM2_ALG_RSA) {
168#if defined(BOTAN_HAS_TPM2_ECC_ADAPTER)
169 if(pubinfo->publicArea.type == TPM2_ALG_ECC) {
182 std::span<const uint8_t> auth_value,
184 return create(load_persistent_object(ctx, persistent_object_handle, auth_value,
sessions),
191 std::span<const uint8_t> auth_value,
193 std::span<const uint8_t> public_blob,
194 std::span<const uint8_t> private_blob,
199 const auto public_data = unmarshal_public_blob(public_blob);
212 if(!auth_value.empty()) {
217 return create(std::move(handle),
sessions,
nullptr , private_blob);
223 const TPMT_PUBLIC& key_template,
224 const TPM2B_SENSITIVE_CREATE& sensitive_data) {
227 switch(key_template.type) {
229#if not defined(BOTAN_HAS_TPM2_RSA_ADAPTER)
230 throw Not_Implemented(
"TPM2-based RSA keys are not supported in this build");
234#if not defined(BOTAN_HAS_TPM2_ECC_ADAPTER)
235 throw Not_Implemented(
"TPM2-based ECC keys are not supported in this build");
242 const auto marshalled_template = marshal_template(key_template);
256 Esys_CreateLoaded(*ctx,
262 &marshalled_template,
280 return marshal_public_blob(m_handle.
_public_info(m_sessions).
pub.get());
287 const auto attrs = m_handle.
attributes(m_sessions);
288 return attrs.
decrypt && attrs.restricted && !attrs.sign_encrypt;
293 [[maybe_unused]]
const TPM2B_PUBLIC* public_info,
294 [[maybe_unused]] std::span<const uint8_t> private_blob) {
299#if defined(BOTAN_HAS_TPM2_RSA_ADAPTER)
300 if(public_info->publicArea.type == TPM2_ALG_RSA) {
301 return std::unique_ptr<RSA_PrivateKey>(
306#if defined(BOTAN_HAS_TPM2_ECC_ADAPTER)
307 if(public_info->publicArea.type == TPM2_ALG_ECC) {
#define BOTAN_ASSERT_NOMSG(expr)
#define BOTAN_STATE_CHECK(expr)
#define BOTAN_ASSERT_NONNULL(ptr)
#define BOTAN_ARG_CHECK(expr, msg)
static std::optional< EC_AffinePoint > deserialize(const EC_Group &group, std::span< const uint8_t > bytes)
static EC_Group from_name(std::string_view name)
bool has_transient_handle() const
bool has_persistent_handle() const
PublicInfo & _public_info(const SessionBundle &sessions, std::optional< TPMI_ALG_PUBLIC > expected_type={}) const
ObjectAttributes attributes(const SessionBundle &sessions) const
ESYS_TR transient_handle() const noexcept
static std::unique_ptr< PrivateKey > create_transient_from_template(const std::shared_ptr< Context > &ctx, const SessionBundle &sessions, ESYS_TR parent, const TPMT_PUBLIC &key_template, const TPM2B_SENSITIVE_CREATE &sensitive_data)
std::vector< uint8_t > raw_public_key_bits() const override
static std::unique_ptr< PrivateKey > create(Object handles, const SessionBundle &sessions, const TPM2B_PUBLIC *public_info, std::span< const uint8_t > private_blob)
static std::unique_ptr< PrivateKey > load_persistent(const std::shared_ptr< Context > &ctx, TPM2_HANDLE persistent_object_handle, std::span< const uint8_t > auth_value, const SessionBundle &sessions)
static std::unique_ptr< PrivateKey > load_transient(const std::shared_ptr< Context > &ctx, std::span< const uint8_t > auth_value, const TPM2::PrivateKey &parent, std::span< const uint8_t > public_blob, std::span< const uint8_t > private_blob, const SessionBundle &sessions)
const SessionBundle & sessions() const
secure_vector< uint8_t > raw_private_key_bits() const override
static std::unique_ptr< PublicKey > create(Object handles, const SessionBundle &sessions)
std::vector< uint8_t > raw_public_key_bits() const override
static std::unique_ptr< PublicKey > load_persistent(const std::shared_ptr< Context > &ctx, TPM2_HANDLE persistent_object_handle, const SessionBundle &sessions={})
const Object & handles() const
const SessionBundle & sessions() const
static std::unique_ptr< PublicKey > load_transient(const std::shared_ptr< Context > &ctx, std::span< const uint8_t > public_blob, const SessionBundle &sessions)
constexpr void check_rc(std::string_view location, TSS2_RC rc)
constexpr auto out_persistent_handle(Object &object)
std::unique_ptr< T, esys_liberator > unique_esys_ptr
A unique pointer type for ESYS handles that automatically frees the handle.
std::optional< std::string > curve_id_tss2_to_botan(TPMI_ECC_CURVE mode_id)
constexpr auto out_transient_handle(Object &object)
constexpr void copy_into(T &dest, std::span< const uint8_t > data)
constexpr auto as_span(tpm2_buffer auto &data)
Construct a std::span as a view into a TPM2 buffer.
constexpr auto out_ptr(T &outptr) noexcept
std::string fmt(std::string_view format, const T &... args)
secure_vector< T > lock(const std::vector< T > &in)
constexpr auto concat(Rs &&... ranges)
bool value_exists(const std::vector< T > &vec, const OT &val)
std::vector< T, secure_allocator< T > > secure_vector
bool decrypt
The private portion of the key might be used for data decryption.
unique_esys_ptr< TPM2B_PUBLIC > pub
uint32_t ESYS_TR
Forward declaration of TSS2 type for convenience.
uint32_t TPM2_HANDLE
Forward declaration of TSS2 type for convenience.