-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
nrf_security: cracen: kmu: add slot blocking function #19615
nrf_security: cracen: kmu: add slot blocking function #19615
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 922d0b8988f3fb2a7f670a65143bc1bf3bf46de4 more detailssdk-nrf:
Github labels
List of changed files detected by CI (5)
Outputs:ToolchainVersion: 342151af73 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
a78c036
to
d34db6c
Compare
@@ -840,6 +842,20 @@ psa_status_t cracen_kmu_get_key_slot(mbedtls_svc_key_id_t key_id, psa_key_lifeti | |||
return PSA_SUCCESS; | |||
} | |||
|
|||
psa_status_t cracen_kmu_block(const psa_key_attributes_t *key_attr) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder wheter we can have (paralel) API psa_status_t cracen_kmu_block_raw(const size_t slot_id, const size_t slot_count)
rationale: nowadays we are using key-ids as key-slot-number. We can avoid of construction key_attr then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have concerns regarding this, the PSA core uses the term slot as well which can make this confusing.
Since there is a function in the lib_kmu which can block the slots, lib_kmu_block_slot, I don't see why we need this function. And even if we need it, its better for this to be in the lib_kmu and not in the PSA driver. I am saying that because the slot_id that this function takes is a low level hardware id, the kmu slot number, not a PSA concept, so it will be better to exist there instead of the PSA driver.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed as part of https://github.com/nrfconnect/sdk-nrf/compare/ff74bdbc3a4fa2127c56c763383f05cd6e55bd32..925f3477c235a5a695b5e96763bc247c6dd126b8. You have a good point.
@nvlsianpu, you will be able to directly use lib_kmu_block_slot_range()
at your own risk if you really want to.
a26c553
to
3a9b075
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Funcionaly this change should work so I approve it.
I have a couple of minor comments regarding comments in the code.
I want to say a couple of things here which are not necessary to handle here, we can take it in a next PR.
- We have mutiple ways of calculating the number of KMU slots. We have the one that you added here as a function and we have the one used in cracen_kmu_get_builtin_key which reads the metadata and gets the slots based on this. It is probably a good idea to have only one way of doing this since it makes the code less error prone.
- It is not clear from this PR whch error code will be returned if one tries to call cracen_kmu_get_builtin_key after the key is blocked. I think that it will return PSA_ERROR_INVALID_ARGUMENT, which maybe is not ideal.
@@ -55,16 +55,29 @@ enum cracen_kmu_metadata_key_usage_scheme { | |||
CRACEN_KMU_KEY_USAGE_SCHEME_RAW | |||
}; | |||
|
|||
/** | |||
* @brief Retrieves the slot number for a given key handle. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was it intentional to remove the @ brief ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. The result in Doxygen is the same with or without @brief
. Though no strong stance on that.
* | ||
* @param[in] key_id Key handler. | ||
* @param[out] lifetime Lifetime for key. | ||
* @param[out] slot_number The key's slot number. | ||
* | ||
* @return psa_status_t |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to remove that I think, the function still returns psa_status_t
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes but what information does that add? It's very clear from the function prototype what type it returns. It would be useful information if it listed the actual error codes, but the way it was it's not.
Agreed. Do you have any suggestion?
I just had a look at this. I think the exact error code might vary depending on the caller and what it's trying to do. Indeed it's not clear for me either. But maybe also not that important to spend time on right now? |
My suggestion is to create a single function which reads the metadata and returns the slots. But this doesn't need to be done here necessarily. It needs to be tracked though, so I can create a ticket of this if you want.
We either need to define the error code here or again, open a ticket to handle it later. I am OK with both as long as it is tracked. |
3a9b075
to
ff74bdb
Compare
Done as part of https://github.com/nrfconnect/sdk-nrf/compare/3a9b075f4c7e775a21178fce2207cb979c7c52dc..ff74bdbc3a4fa2127c56c763383f05cd6e55bd32.
NCSDK-31298 |
ff74bdb
to
925f347
Compare
925f347
to
44b6b31
Compare
44b6b31
to
31876aa
Compare
@nvlsianpu Will you review? |
ping @nvlsianpu |
31876aa
to
1a61579
Compare
Plus some minor improvements. Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
1a61579
to
922d0b8
Compare
Plus some minor improvements.