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