Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 1 | /* |
Imre Kis | d0ed5c2 | 2021-12-15 17:05:47 +0100 | [diff] [blame] | 2 | * Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved. |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 7 | #include "components/rpc/ffarpc/caller/sp/ffarpc_caller.h" |
| 8 | #include "components/service/secure_storage/frontend/psa/its/its_frontend.h" |
| 9 | #include "service/secure_storage/backend/secure_storage_client/secure_storage_client.h" |
| 10 | #include "psa/internal_trusted_storage.h" |
| 11 | #include "sp_api.h" |
Imre Kis | 76e8a3c | 2021-04-16 16:54:17 +0200 | [diff] [blame] | 12 | #include "sp_messaging.h" |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 13 | #include "sp_rxtx.h" |
| 14 | #include "trace.h" |
| 15 | #include "string.h" |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 16 | |
| 17 | #define SP_ITS_UUID_BYTES \ |
| 18 | { 0x48, 0xef, 0x1e, 0xdc, 0x7a, 0xb1, 0xcf, 0x4c, \ |
| 19 | 0xac, 0x8b, 0xdf, 0xcf, 0xf7, 0x71, 0x1b, 0x14, } |
| 20 | |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 21 | static uint8_t tx_buffer[4096] __aligned(4096); |
| 22 | static uint8_t rx_buffer[4096] __aligned(4096); |
| 23 | static const uint8_t its_uuid[] = SP_ITS_UUID_BYTES; |
| 24 | |
| 25 | static const psa_storage_uid_t test_data_uid = 0x12345678; |
| 26 | static const uint8_t test_data[] = { |
| 27 | 0xc3, 0xe2, 0xf8, 0x1c, 0xe0, 0x87, 0x8a, 0x14, 0xbf, 0x59, 0xa3, 0xff, |
| 28 | 0x96, 0x50, 0x25, 0x95, 0x76, 0xdc, 0xbe, 0xe6, 0x45, 0x45, 0x1d, 0x1b, |
| 29 | 0x34, 0x6a, 0xa1, 0x1c, 0xba, 0x24, 0xa9, 0x82, 0xf1, 0x03, 0x30, 0x9b, |
| 30 | 0x7d, 0xf6, 0x30, 0x88, 0xc2, 0xfb, 0xd7, 0x43, 0xfa, 0x82, 0x7c, 0x30, |
| 31 | 0x49, 0x71, 0xcb, 0xe6, 0xf8, 0x18, 0xb9, 0xfc, 0x61, 0x92, 0x8c, 0x86, |
| 32 | 0x01, 0x3a, 0x4a, 0xba, 0x88, 0x58, 0x63, 0x27, 0x9a, 0x47, 0xd3, 0x10, |
| 33 | 0xbf, 0x80, 0x70, 0x19, 0xab, 0xc3, 0x88, 0xdb, 0xc3, 0x0c, 0x6e, 0xe5, |
| 34 | 0xb1, 0xed, 0x9f, 0x47, 0xd4, 0x02, 0xa3, 0xb5, 0xb5, 0x7a, 0x20, 0x48, |
| 35 | 0xd5, 0x78, 0x95, 0x7d, 0xb8, 0x33, 0xb0, 0xad, 0x4a, 0x17, 0x5a, 0xff, |
| 36 | 0xd0, 0x12, 0x32, 0x84, 0x9a, 0xa3, 0x98, 0xd9, 0x26, 0x47, 0x55, 0xb7, |
| 37 | 0x31, 0x96, 0x1f, 0x89, 0xd7, 0xe1, 0x01, 0x5a, 0x71, 0x6d, 0xc1, 0xe2, |
| 38 | 0x26, 0x98, 0x12, 0x71, 0x4f, 0xa1, 0xdb, 0x50, 0xc4, 0xc6, 0x2f, 0xed, |
| 39 | 0x5b, 0xf1, 0x52, 0x97, 0x8e, 0xdb, 0xeb, 0x56, 0x41, 0xf5, 0x9c, 0xbf, |
| 40 | 0x6c, 0xe2, 0x1b, 0x14, 0x23, 0xb6, 0x1d, 0x68, 0x0b, 0x70, 0xa4, 0xc8, |
| 41 | 0x70, 0x9f, 0x0a, 0x65, 0x83, 0x27, 0xd5, 0xbb, 0x4b, 0x7d, 0x55, 0x25, |
| 42 | 0xe1, 0x9a, 0xaa, 0x10, 0x5c, 0x49, 0x8f, 0x0f, 0xee, 0x61, 0x49, 0x70, |
| 43 | 0xee, 0x55, 0x46, 0xec, 0x8b, 0x52, 0xf6, 0x65, 0x28, 0x7f, 0x56, 0x7a, |
| 44 | 0xe2, 0xb3, 0xd2, 0xbf, 0xc3, 0x0c, 0x06, 0x8e, 0x5f, 0xdc, 0xd3, 0x1f, |
| 45 | 0x85, 0x74, 0x38, 0x96, 0x5e, 0x1b, 0xe5, 0xa0, 0xc0, 0xfb, 0x90, 0xb7, |
| 46 | 0x14, 0x16, 0x1b, 0xbe, 0xd8, 0x5c, 0x8e, 0xcc, 0x74, 0x71, 0x8c, 0x34, |
| 47 | 0xc0, 0xbc, 0x24, 0xf5, 0xb9, 0x9b, 0xa1, 0x59, 0xe8, 0x54, 0xd0, 0xe9, |
| 48 | 0x01, 0xa9, 0x6e, 0x27, |
| 49 | }; |
| 50 | static const size_t test_data_size = sizeof(test_data); |
| 51 | static uint8_t check_data[256] = { 0 }; |
| 52 | static size_t check_data_size = 0; |
| 53 | |
| 54 | static void run_its_test(void) |
| 55 | { |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 56 | psa_status_t its_status = PSA_ERROR_GENERIC_ERROR; |
| 57 | struct psa_storage_info_t info = { 0 }; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 58 | |
| 59 | /* Write data */ |
| 60 | its_status = psa_its_set(test_data_uid, test_data_size, test_data, |
| 61 | PSA_STORAGE_FLAG_NONE); |
| 62 | |
| 63 | if (its_status != PSA_SUCCESS) { |
| 64 | EMSG("Error: %d", its_status); |
| 65 | } |
| 66 | |
| 67 | /* Read back and compare */ |
| 68 | its_status = psa_its_get(test_data_uid, 0, test_data_size, |
| 69 | check_data, &check_data_size); |
| 70 | |
| 71 | if (its_status != PSA_SUCCESS || check_data_size != test_data_size) { |
| 72 | EMSG("Error: %d", its_status); |
| 73 | } |
| 74 | |
| 75 | if(memcmp(test_data, check_data, test_data_size)) { |
| 76 | EMSG("Data check failed"); |
| 77 | } |
| 78 | |
| 79 | memset(check_data, 0, test_data_size); |
| 80 | |
| 81 | /* Get info of entry */ |
| 82 | psa_its_get_info(test_data_uid, &info); |
| 83 | if (its_status != PSA_SUCCESS) { |
| 84 | EMSG("Error: %d", its_status); |
| 85 | } |
| 86 | |
| 87 | /* Write data with new uid */ |
| 88 | its_status = psa_its_set(test_data_uid + 1, test_data_size, test_data, |
| 89 | PSA_STORAGE_FLAG_NONE); |
| 90 | |
| 91 | if (its_status != PSA_SUCCESS) { |
| 92 | EMSG("Error: %d", its_status); |
| 93 | } |
| 94 | |
| 95 | /* Read back and compare */ |
| 96 | its_status = psa_its_get(test_data_uid + 1, 0, test_data_size, |
| 97 | check_data, &check_data_size); |
| 98 | |
| 99 | if (its_status != PSA_SUCCESS || check_data_size != test_data_size) { |
| 100 | EMSG("Error: %d", its_status); |
| 101 | } |
| 102 | |
| 103 | if(memcmp(test_data, check_data, test_data_size)) { |
| 104 | EMSG("Data check failed"); |
| 105 | } |
| 106 | |
| 107 | /* Delete entry */ |
| 108 | its_status = psa_its_remove(test_data_uid + 1); |
| 109 | if (its_status != PSA_SUCCESS) { |
| 110 | EMSG("Error: %d", its_status); |
| 111 | } |
| 112 | |
| 113 | /* Check if really deleted */ |
| 114 | its_status = psa_its_get(test_data_uid + 1, 0, test_data_size, |
| 115 | check_data, &check_data_size); |
| 116 | |
| 117 | if (its_status != PSA_ERROR_DOES_NOT_EXIST) { |
| 118 | EMSG("Error: %d", its_status); |
| 119 | } |
| 120 | |
| 121 | IMSG("ITS test done"); |
| 122 | } |
| 123 | |
| 124 | void __noreturn sp_main(struct ffa_init_info *init_info) { |
| 125 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 126 | sp_result result = SP_RESULT_INTERNAL_ERROR; |
Imre Kis | 76e8a3c | 2021-04-16 16:54:17 +0200 | [diff] [blame] | 127 | struct sp_msg req_msg = { 0 }; |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 128 | struct rpc_caller *caller = NULL; |
| 129 | struct ffarpc_caller ffa_caller = { 0 }; |
| 130 | struct secure_storage_client secure_storage_client = {0}; |
| 131 | struct storage_backend *storage_backend = NULL; |
| 132 | uint16_t sp_ids[3] = { 0 }; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 133 | uint32_t sp_id_cnt = 0; |
Imre Kis | f656265 | 2022-07-04 15:33:13 +0200 | [diff] [blame] | 134 | uint16_t own_id = 0; |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 135 | psa_status_t psa_status = PSA_ERROR_GENERIC_ERROR; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 136 | |
| 137 | /* Boot */ |
| 138 | (void) init_info; |
| 139 | IMSG("Test SP started"); |
| 140 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 141 | result = sp_rxtx_buffer_map(tx_buffer, rx_buffer, sizeof(rx_buffer)); |
| 142 | if (result != SP_RESULT_OK) { |
| 143 | EMSG("Failed to map RXTX buffers: %d", result); |
| 144 | goto fatal_error; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 145 | } |
| 146 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 147 | result = sp_discovery_own_id_get(&own_id); |
| 148 | if (result != SP_RESULT_OK) { |
| 149 | EMSG("Failed to query own ID: %d", result); |
| 150 | goto fatal_error; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 151 | } |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 152 | |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 153 | IMSG("Test SP ID: 0x%x", own_id); |
| 154 | |
Imre Kis | 0181ebd | 2022-07-04 13:09:25 +0200 | [diff] [blame] | 155 | caller = ffarpc_caller_init(&ffa_caller, own_id); |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 156 | if (!caller) { |
| 157 | EMSG("Failed initialize ffarpc_caller"); |
| 158 | goto fatal_error; |
| 159 | } |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 160 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 161 | sp_id_cnt = ffarpc_caller_discover(its_uuid, sp_ids, 3); |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 162 | if (sp_id_cnt == 0) { |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 163 | EMSG("Failed to discover SPs: %d", sp_id_cnt); |
| 164 | goto fatal_error; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 165 | } |
| 166 | IMSG("ITS SP ID: 0x%x", sp_ids[0]); |
| 167 | |
julhal01 | c3f4e9a | 2020-12-15 13:39:01 +0000 | [diff] [blame] | 168 | if (ffarpc_caller_open(&ffa_caller, sp_ids[0], 0)) { |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 169 | EMSG("Failed to open ffarpc_caller"); |
| 170 | goto fatal_error; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 171 | } |
| 172 | |
julhal01 | 1260f10 | 2021-02-15 17:34:08 +0000 | [diff] [blame] | 173 | storage_backend = secure_storage_client_init(&secure_storage_client, caller); |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 174 | if (!storage_backend) { |
| 175 | EMSG("Failed to initialize secure storage client"); |
| 176 | goto fatal_error; |
| 177 | } |
| 178 | |
| 179 | psa_status = psa_its_frontend_init(storage_backend); |
| 180 | if (psa_status != PSA_SUCCESS) { |
| 181 | EMSG("Failed init PSA ITS frontend: %d", psa_status); |
| 182 | goto fatal_error; |
| 183 | } |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 184 | |
| 185 | /* |
| 186 | * This is not thorough testing of the ITS SP! |
| 187 | * Only some basic functionality checks. |
| 188 | */ |
| 189 | run_its_test(); |
| 190 | |
| 191 | if (ffarpc_caller_close(&ffa_caller)) { |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 192 | EMSG("Failed to close ffarpc_caller"); |
| 193 | goto fatal_error; |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | /* End of boot phase */ |
Imre Kis | 76e8a3c | 2021-04-16 16:54:17 +0200 | [diff] [blame] | 197 | sp_msg_wait(&req_msg); |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 198 | |
Imre Kis | 43dc08e | 2022-07-05 16:44:03 +0200 | [diff] [blame] | 199 | fatal_error: |
Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame] | 200 | EMSG("Test SP error"); |
| 201 | while (1) {} |
| 202 | } |
| 203 | |
| 204 | void sp_interrupt_handler(uint32_t interrupt_id) { |
| 205 | (void)interrupt_id; |
| 206 | } |