Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The PSA code is not thread-safe #3263

Closed
gilles-peskine-arm opened this issue Sep 18, 2019 · 15 comments
Closed

The PSA code is not thread-safe #3263

gilles-peskine-arm opened this issue Sep 18, 2019 · 15 comments
Assignees
Labels
bug component-psa PSA keystore/dispatch layer (storage, drivers, …) size-m Estimated task size: medium (~1w)

Comments

@gilles-peskine-arm
Copy link
Contributor

gilles-peskine-arm commented Sep 18, 2019

Description

The PSA Cryptography API specification defines who is responsible for managing concurrency in calls to the PSA Cryptography API, between the applications and the implementation.

In a nutshell, it's up to the application to not use operation objects concurrently, and it's up to the implementation to allow concurrent use of the key store.

Mbed Crypto currently does not have any protection against concurrent use of the key store, so it cannot be used in a multithreaded application.

As a first step, the goal of this issue is to comply with the API specification and nothing more. Just support API calls that access keys from concurrent threads. Protect the key store with a lock. Take the lock in any function that accesses the key store (in psa_get_key_slot), and add a release function. All API functions must call the release function before returning.

This means that we do I/O to store and load persistent keys, and wait for a response from a secure element or hardware accelerator, with a lock held. This isn't ideal, but can be fixed later.

Note that to make the code fully thread-safe, RNG access must be protected, not just key access. This is tracked in #3391. RNG queries (not initialization or explicit reseeding, but including automatic reseeding) are thread-safe when using the built-in PRNG, but not when using MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG.

Issue request type

[ ] Question
[ ] Enhancement
[x] Bug
@ciarmcom
Copy link

Internal Jira reference: https://jira.arm.com/browse/IOTCRYPT-919

@gilles-peskine-arm gilles-peskine-arm transferred this issue from ARMmbed/mbed-crypto Apr 27, 2020
@gilles-peskine-arm gilles-peskine-arm added this to Backlog in Sprints via automation Apr 27, 2020
@gilles-peskine-arm gilles-peskine-arm added bug component-crypto Crypto primitives and low-level interfaces mbed TLS team labels Apr 27, 2020
@gilles-peskine-arm gilles-peskine-arm removed this from Backlog in Sprints Apr 28, 2020
@gilles-peskine-arm gilles-peskine-arm added help-wanted This issue is not being actively worked on, but PRs welcome. and removed mbed TLS team labels Jun 3, 2020
@laumor01 laumor01 added the size-m Estimated task size: medium (~1w) label Mar 23, 2021
@bensze01 bensze01 modified the milestone: PSA Crypto: Q4 Implement missing v1.0 spec functionality Jul 28, 2021
@laumor01 laumor01 moved this from Prioritised Backlog to Q3 Backlog in OBSOLETE - SEE https://github.com/orgs/Mbed-TLS/projects/3 Aug 3, 2021
@bensze01 bensze01 removed this from the PSA Crypto: Q4 Implement missing v1.0 spec functionality milestone Aug 11, 2021
@bensze01 bensze01 added this to PSA Crypto: Implement missing v1.0 spec functionality in OBSOLETE - PLEASE SEE https://github.com/orgs/Mbed-TLS/projects/1 Sep 6, 2021
@AndrzejKurek AndrzejKurek self-assigned this Oct 12, 2021
@AndrzejKurek
Copy link
Contributor

@gilles-peskine-arm - could you please point me to current equivalent of https://armmbed.github.io/mbed-crypto/html/general.html#concurrent-calls, and/or any relevant documentation on this issue?

@gilles-peskine-arm
Copy link
Contributor Author

@AndrzejKurek The section has been moved to https://armmbed.github.io/mbed-crypto/html/overview/conventions.html#concurrency.

Every function that accesses a key slot already calls psa_get_and_lock_key_slot_in_memory (or more commonly one of its wrapper functions) before and psa_unlock_key_slot after. So the gist of this task is to add a mutex to these functions, and make sure the library compiles both with and without mutex support.

We should also validate that mutexes are used correctly (e.g. no double lock, no unlock on a non-locked mutex, no mutex left unlocked); I think that with MBEDTLS_TEST_HOOKS turned on, the mbedtls_test_mutex_usage_xxx instrumentation is enough.

Testing concurrent behavior is out of scope of this task. We don't have the prerequisites to write portable concurrent applications (our platform abstraction for threading doesn't include thread management, only concurrency management between externally created threads).

@AndrzejKurek
Copy link
Contributor

Should this replace the key slot locking mechanism from psa_lock_key_slot and psa_unlock_key_slot?
These functions let users lock a slot multiple times, and it will not be possible anymore with a mutex in place.

@gilles-peskine-arm
Copy link
Contributor Author

Ah, sorry, I'd forgotten about that. The lock_count field includes two cases: API functions currently executing, and a key that's been opened by psa_open_key (and not yet closed by psa_close_key). API functions currently executing is an exclusive case (at least for now — we could allow multiple functions to read from a slot as long as nobody's writing, but let's start simple). Having a key open is not an exclusive case.

So the behavior should be:

  • Rename lock_count to open_count, I guess
  • psa_open_key: lock, increase open_count, release
  • psa_close_key: lock, decrease open_count, destroy if open_count==0` otherwise release

@AndrzejKurek
Copy link
Contributor

Please take a look at this PoC: AndrzejKurek@f6ad162
The downside that I can see here is that after calling psa_start_key_creation the mutex will be locked until the slot is unlocked.

@daverodgman daverodgman added this to PSA Crypto: Extended v1.0 spec compliance in EPICs for Mbed TLS Mar 30, 2022
@gilles-peskine-arm gilles-peskine-arm added component-psa PSA keystore/dispatch layer (storage, drivers, …) and removed help-wanted This issue is not being actively worked on, but PRs welcome. component-crypto Crypto primitives and low-level interfaces labels May 13, 2022
@stevecapperarm
Copy link

Hello!
Just as a quick heads-up, @ema and I ran into this issue last night whilst packaging up the Rust crate psa-crypto in Debian. In the autopackage tests: "cargo test" is executed. When cargo test is executed, it is by default multi-threaded. We had some weird results from the unit tests as the PSA crypto API was being called from multiple threads at once.

We've got a workaround in place to do the following now in the Debian package tests:
cargo test -- --test-threads=1

@ema
Copy link

ema commented Feb 8, 2023

We've got a workaround in place to do the following now in the Debian package tests: cargo test -- --test-threads=1

Yeah took that from rust-psa-crypto's CI script, which runs the tests with one thread only probably because of this very issue? https://github.com/parallaxsecond/rust-psa-crypto/blob/main/ci.sh#L39

@daverodgman daverodgman added this to PSA Crypto: Extended spec compliance in Backlog for Mbed TLS Feb 22, 2023
@daverodgman daverodgman removed this from PSA Crypto: Extended spec compliance in EPICs for Mbed TLS Feb 22, 2023
@ruchi393
Copy link

ruchi393 commented Jun 1, 2023

Can you please update if the fix for this is planned ? If yes, by when can we expect it in the repo ?

We plan to introduce PSA API's for our crypto accelerators and the applications using these need the implementation to be thread safe.

@gilles-peskine-arm
Copy link
Contributor Author

@ruchi393 We'd like to fix this soon. We're currently looking at our planning for Jul-Sep and trying to see if this will fit.

@gilles-peskine-arm
Copy link
Contributor Author

gilles-peskine-arm commented Jun 1, 2023

The roadmap has just been updated. We can't commit to September, but we're aiming to have this in the development branch by the end of the year, to be released in early 2024.

@paul-elliott-arm
Copy link
Member

Closing as completed by Threading MVP Epic

@minosgalanakis minosgalanakis removed this from Mbed TLS 3.6 release in EPICs for Mbed TLS Apr 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug component-psa PSA keystore/dispatch layer (storage, drivers, …) size-m Estimated task size: medium (~1w)
Projects
Status: Mbed TLS 3.6 release
10 participants