arm-trusted-firmware/lib/psa/cca_attestation.c
Vivek Gautam 98d36e5b02 feat(psa): introduce generic library for CCA attestation
Add a generic Arm CCA attestation library driver to interface with the
PSA delegated attestation partition APIs that use RSE to fetch the
platform attestation token and Realm attestation key.

Signed-off-by: Rohit Mathew <rohit.mathew@arm.com>
Signed-off-by: Vivek Gautam <vivek.gautam@arm.com>
Change-Id: I882273e97567cc068f90d2ef089410f3a93c6b00
2024-06-07 11:40:08 +01:00

66 lines
1.5 KiB
C

/*
* Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <assert.h>
#include <psa/crypto_sizes.h>
#include <psa/crypto_types.h>
#include <psa/crypto_values.h>
#include <cca_attestation.h>
#include <delegated_attestation.h>
#include <services/rmmd_svc.h>
psa_status_t
cca_attestation_get_realm_key(uintptr_t buf, size_t *len, unsigned int type)
{
size_t dak_len;
psa_status_t ret = PSA_SUCCESS;
/*
* Current RMM implementations only support the public key size for
* ECC-P384, i.e. ATTEST_KEY_CURVE_ECC_SECP384R1 attestation key.
*
* This ECC key has following properties:
* ecc_curve: 0x12 (PSA_ECC_FAMILY_SECP_R1)
* key_bits: 384
* hash_alg: 0x02000009 (PSA_ALG_SHA_256)
*/
assert(type == ATTEST_KEY_CURVE_ECC_SECP384R1);
ret = rse_delegated_attest_get_delegated_key(PSA_ECC_FAMILY_SECP_R1,
384, (uint8_t *)buf, *len,
&dak_len, PSA_ALG_SHA_256);
if (ret != PSA_SUCCESS) {
return ret;
}
if (dak_len != PSA_BITS_TO_BYTES(384)) {
return PSA_ERROR_INVALID_ARGUMENT;
}
*len = dak_len;
return ret;
}
psa_status_t
cca_attestation_get_plat_token(uintptr_t buf, size_t *len,
uintptr_t hash, size_t hash_size)
{
size_t token_len = 0;
psa_status_t ret = PSA_SUCCESS;
ret = rse_delegated_attest_get_token((const uint8_t *)hash, hash_size,
(uint8_t *)buf, *len, &token_len);
if (ret != PSA_SUCCESS) {
return ret;
}
*len = token_len;
return ret;
}