|
1 |
| -/* Copyright (c) 2019 ARM Limited |
| 1 | +/* Copyright (c) 2019-2020 Arm Limited |
2 | 2 | *
|
3 | 3 | * SPDX-License-Identifier: Apache-2.0
|
4 | 4 | *
|
|
17 | 17 |
|
18 | 18 | #include "mbed_spm_partitions.h"
|
19 | 19 | #include "platform_srv_impl.h"
|
| 20 | +#include "psa/lifecycle.h" |
20 | 21 | #include "psa/internal_trusted_storage.h"
|
21 | 22 | #include "psa/service.h"
|
22 | 23 |
|
| 24 | +#define INPUT_BUFFER_SIZE 64 |
| 25 | +#define OUTPUT_BUFFER_SIZE 64 |
| 26 | + |
23 | 27 | typedef psa_status_t (*SignalHandler)(psa_msg_t *);
|
24 | 28 |
|
25 | 29 | static psa_status_t lifecycle_get(psa_msg_t *msg)
|
@@ -58,6 +62,92 @@ static MBED_NORETURN psa_status_t system_reset_request(psa_msg_t *msg)
|
58 | 62 | mbed_psa_system_reset_impl();
|
59 | 63 | }
|
60 | 64 |
|
| 65 | +static enum tfm_platform_err_t |
| 66 | +platform_sp_ioctl_ipc(const psa_msg_t *msg) { |
| 67 | + void *input = NULL; |
| 68 | + void *output = NULL; |
| 69 | + psa_invec invec = {0}; |
| 70 | + psa_outvec outvec = {0}; |
| 71 | + uint8_t input_buffer[INPUT_BUFFER_SIZE] = {0}; |
| 72 | + uint8_t output_buffer[OUTPUT_BUFFER_SIZE] = {0}; |
| 73 | + tfm_platform_ioctl_req_t request = 0; |
| 74 | + enum tfm_platform_err_t ret = TFM_PLATFORM_ERR_SYSTEM_ERROR; |
| 75 | + size_t num = 0; |
| 76 | + uint32_t in_len = PSA_MAX_IOVEC; |
| 77 | + uint32_t out_len = PSA_MAX_IOVEC; |
| 78 | + |
| 79 | + while ((in_len > 0) && (msg->in_size[in_len - 1] == 0)) |
| 80 | + { |
| 81 | + in_len--; |
| 82 | + } |
| 83 | + |
| 84 | + while ((out_len > 0) && (msg->out_size[out_len - 1] == 0)) |
| 85 | + { |
| 86 | + out_len--; |
| 87 | + } |
| 88 | + |
| 89 | + if ((in_len < 1) || (in_len > 2) || |
| 90 | + (out_len > 1)) |
| 91 | + { |
| 92 | + return TFM_PLATFORM_ERR_SYSTEM_ERROR; |
| 93 | + } |
| 94 | + |
| 95 | + num = psa_read(msg->handle, 0, &request, sizeof(request)); |
| 96 | + if (num != sizeof(request)) |
| 97 | + { |
| 98 | + return PSA_ERROR_PROGRAMMER_ERROR; |
| 99 | + } |
| 100 | + |
| 101 | + if (in_len > 1) |
| 102 | + { |
| 103 | + if (msg->in_size[1] > INPUT_BUFFER_SIZE) { |
| 104 | + return PSA_ERROR_PROGRAMMER_ERROR; |
| 105 | + } |
| 106 | + num = psa_read(msg->handle, 1, &input_buffer, msg->in_size[1]); |
| 107 | + if (num != msg->in_size[1]) { |
| 108 | + return PSA_ERROR_PROGRAMMER_ERROR; |
| 109 | + } |
| 110 | + invec.base = input_buffer; |
| 111 | + invec.len = msg->in_size[1]; |
| 112 | + input = &invec; |
| 113 | + } |
| 114 | + |
| 115 | + if (out_len > 0) |
| 116 | + { |
| 117 | + if (msg->out_size[0] > OUTPUT_BUFFER_SIZE) { |
| 118 | + return PSA_ERROR_PROGRAMMER_ERROR; |
| 119 | + } |
| 120 | + outvec.base = output_buffer; |
| 121 | + outvec.len = msg->out_size[0]; |
| 122 | + output = &outvec; |
| 123 | + } |
| 124 | + |
| 125 | + ret = tfm_platform_hal_ioctl(request, input, output); |
| 126 | + |
| 127 | + if (output != NULL) |
| 128 | + { |
| 129 | + psa_write(msg->handle, 0, outvec.base, outvec.len); |
| 130 | + } |
| 131 | + |
| 132 | + return ret; |
| 133 | +} |
| 134 | + |
| 135 | +static psa_status_t platform_ioctl(psa_msg_t *msg) |
| 136 | +{ |
| 137 | + /* platform_sp_ioctl_ipc returns either psa_status_t or one of the |
| 138 | + * following errorcodes: |
| 139 | + * enum tfm_platform_err_t { |
| 140 | + * TFM_PLATFORM_ERR_SUCCESS = 0, |
| 141 | + * TFM_PLATFORM_ERR_SYSTEM_ERROR, |
| 142 | + * TFM_PLATFORM_ERR_INVALID_PARAM, |
| 143 | + * TFM_PLATFORM_ERR_NOT_SUPPORTED, |
| 144 | + * |
| 145 | + * TFM_PLATFORM_ERR_FORCE_INT_SIZE = INT_MAX |
| 146 | + * }; |
| 147 | + */ |
| 148 | + return platform_sp_ioctl_ipc(msg); |
| 149 | +} |
| 150 | + |
61 | 151 | static void message_handler(psa_msg_t *msg, SignalHandler handler)
|
62 | 152 | {
|
63 | 153 | psa_status_t status = PSA_SUCCESS;
|
@@ -102,5 +192,11 @@ void platform_partition_entry(void *ptr)
|
102 | 192 | }
|
103 | 193 | message_handler(&msg, system_reset_request);
|
104 | 194 | }
|
| 195 | + if ((signals & PSA_PLATFORM_IOCTL_MSK) != 0) { |
| 196 | + if (PSA_SUCCESS != psa_get(PSA_PLATFORM_IOCTL_MSK, &msg)) { |
| 197 | + continue; |
| 198 | + } |
| 199 | + message_handler(&msg, platform_ioctl); |
| 200 | + } |
105 | 201 | }
|
106 | 202 | }
|
0 commit comments