Skip to content

Commit f782e80

Browse files
[nrf noup] Workaround for PSA P256Keypair Generate
This is workaround to ensure thread-safety for P256Keypair generation when both Matter and Openthread threads want to generate keys. This workaround can be removed once the PSA core supports thread-safety.
1 parent 053732b commit f782e80

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/crypto/PSAOperationalKeystore.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222

2323
#include <psa/crypto.h>
2424

25+
#include <platform/CHIPDeviceLayer.h> // nogncheck
26+
2527
namespace chip {
2628
namespace Crypto {
2729

@@ -63,6 +65,10 @@ CHIP_ERROR PSAOperationalKeystore::PersistentP256Keypair::Generate()
6365

6466
Destroy();
6567

68+
#ifdef CONFIG_NET_L2_OPENTHREAD
69+
chip::DeviceLayer::ThreadStackMgr().LockThreadStack();
70+
#endif
71+
6672
// Type based on ECC with the elliptic curve SECP256r1 -> PSA_ECC_FAMILY_SECP_R1
6773
psa_set_key_type(&attributes, PSA_KEY_TYPE_ECC_KEY_PAIR(PSA_ECC_FAMILY_SECP_R1));
6874
psa_set_key_bits(&attributes, kP256_PrivateKey_Length * 8);
@@ -79,6 +85,9 @@ CHIP_ERROR PSAOperationalKeystore::PersistentP256Keypair::Generate()
7985
VerifyOrExit(publicKeyLength == kP256_PublicKey_Length, error = CHIP_ERROR_INTERNAL);
8086

8187
exit:
88+
#ifdef CONFIG_NET_L2_OPENTHREAD
89+
chip::DeviceLayer::ThreadStackMgr().UnlockThreadStack();
90+
#endif
8291
psa_reset_key_attributes(&attributes);
8392

8493
return error;

0 commit comments

Comments
 (0)