Blame view

lib/trusty/ql-tipc/hwcrypto.c 7.54 KB
ced616aa4   Ji Luo   MA-13233 [trusty]...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  /*
   * Copyright (C) 2016 The Android Open Source Project
   * Copyright NXP 2018
   *
   * Permission is hereby granted, free of charge, to any person
   * obtaining a copy of this software and associated documentation
   * files (the "Software"), to deal in the Software without
   * restriction, including without limitation the rights to use, copy,
   * modify, merge, publish, distribute, sublicense, and/or sell copies
   * of the Software, and to permit persons to whom the Software is
   * furnished to do so, subject to the following conditions:
   *
   * The above copyright notice and this permission notice shall be
   * included in all copies or substantial portions of the Software.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
   * SOFTWARE.
   */
  
  #include <trusty/hwcrypto.h>
  #include <trusty/rpmb.h>
  #include <trusty/trusty_ipc.h>
  #include <trusty/util.h>
  #include "common.h"
  
  #define LOCAL_LOG 0
4207a8df8   Ji Luo   MA-13275 [trusty]...
33
  #define CAAM_KB_HEADER_LEN 48
ced616aa4   Ji Luo   MA-13233 [trusty]...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
  
  static bool initialized;
  static struct trusty_ipc_chan hwcrypto_chan;
  
  static int hwcrypto_send_request(struct hwcrypto_message *msg, void *req, size_t req_len)
  {
      struct trusty_ipc_iovec req_iovs[2] = {
          { .base = msg, .len = sizeof(*msg) },
          { .base = req, .len = req_len },
      };
  
      return trusty_ipc_send(&hwcrypto_chan, req_iovs, req ? 2 : 1, true);
  }
  
  static int hwcrypto_read_response(struct hwcrypto_message *msg, uint32_t cmd, void *resp,
                               size_t resp_len)
  {
      int rc;
      struct trusty_ipc_iovec resp_iovs[2] = {
          { .base = msg, .len = sizeof(*msg) },
          { .base = resp, .len = resp_len },
      };
  
      rc = trusty_ipc_recv(&hwcrypto_chan, resp_iovs, resp ? 2 : 1, true);
      if (rc < 0) {
          trusty_error("failed (%d) to recv response
  ", rc);
          return rc;
      }
      if (msg->cmd != (cmd | HWCRYPTO_RESP_BIT)) {
          trusty_error("malformed response
  ");
          return TRUSTY_ERR_GENERIC;
      }
      /* return payload size */
      return rc - sizeof(*msg);
  }
  
  /*
   * Convenience function to send a request to the hwcrypto service and read the
   * response.
   *
   * @cmd: the command
   * @req: the request buffer
   * @req_size: size of the request buffer
   * @resp: the response buffer
   * @resp_size_p: pointer to the size of the response buffer. changed to the
                   actual size of the response read from the secure side
   * @handle_rpmb: true if the request is expected to invoke RPMB callbacks
   */
  static int hwcrypto_do_tipc(uint32_t cmd, void *req, uint32_t req_size, void *resp,
                         uint32_t *resp_size_p, bool handle_rpmb)
  {
      int rc;
      struct hwcrypto_message msg = { .cmd = cmd };
  
      if (!initialized) {
          trusty_error("%s: HWCRYPTO TIPC client not initialized
  ", __func__);
          return TRUSTY_ERR_GENERIC;
      }
  
      rc = hwcrypto_send_request(&msg, req, req_size);
      if (rc < 0) {
          trusty_error("%s: failed (%d) to send hwcrypto request
  ", __func__, rc);
          return rc;
      }
  
      if (handle_rpmb) {
          /* handle any incoming RPMB requests */
          rc = rpmb_storage_proxy_poll();
          if (rc < 0) {
              trusty_error("%s: failed (%d) to get RPMB requests
  ", __func__,
                           rc);
              return rc;
          }
      }
  
      uint32_t resp_size = resp_size_p ? *resp_size_p : 0;
      rc = hwcrypto_read_response(&msg, cmd, resp, resp_size);
      if (rc < 0) {
          trusty_error("%s: failed (%d) to read HWCRYPTO response
  ", __func__, rc);
          return rc;
      }
      /* change response size to actual response size */
      if (resp_size_p && rc != *resp_size_p) {
          *resp_size_p = rc;
      }
      if (msg.result != HWCRYPTO_ERROR_NONE) {
          trusty_error("%s: HWCRYPTO service returned error (%d)
  ", __func__,
                       msg.result);
          return TRUSTY_ERR_GENERIC;
      }
      return TRUSTY_ERR_NONE;
  }
  
  int hwcrypto_tipc_init(struct trusty_ipc_dev *dev)
  {
      int rc;
  
      trusty_assert(dev);
      trusty_assert(!initialized);
  
      trusty_ipc_chan_init(&hwcrypto_chan, dev);
      trusty_debug("Connecting to hwcrypto service
  ");
  
      /* connect to hwcrypto service and wait for connect to complete */
      rc = trusty_ipc_connect(&hwcrypto_chan, HWCRYPTO_PORT, true);
      if (rc < 0) {
          trusty_error("failed (%d) to connect to '%s'
  ", rc, HWCRYPTO_PORT);
          return rc;
      }
  
      /* mark as initialized */
      initialized = true;
  
      return TRUSTY_ERR_NONE;
  }
  
  void hwcrypto_tipc_shutdown(struct trusty_ipc_dev *dev)
  {
      if (!initialized)
          return; /* nothing to do */
  
      /* close channel */
      trusty_ipc_close(&hwcrypto_chan);
  
      initialized = false;
  }
  
  int hwcrypto_hash(uint32_t in_addr, uint32_t in_len, uint32_t out_addr,
                    uint32_t out_len, enum hwcrypto_hash_algo algo)
  {
      hwcrypto_hash_msg req;
      unsigned long start, end;
  
      /* check the address */
      if (in_addr == 0 || out_addr == 0)
          return TRUSTY_ERR_INVALID_ARGS;
      /* fill the request buffer */
      req.in_addr  = in_addr;
      req.out_addr = out_addr;
      req.in_len   = in_len;
      req.out_len  = out_len;
      req.algo     = algo;
  
      /* flush dcache for input buffer */
      start = (unsigned long)in_addr & ~(ARCH_DMA_MINALIGN - 1);
      end   = ALIGN((unsigned long)in_addr + in_len, ARCH_DMA_MINALIGN);
      flush_dcache_range(start, end);
  
      /* invalidate dcache for output buffer */
      start = (unsigned long)out_addr & ~(ARCH_DMA_MINALIGN - 1);
      end   = ALIGN((unsigned long)out_addr + out_len, ARCH_DMA_MINALIGN);
      invalidate_dcache_range(start, end);
  
      int rc = hwcrypto_do_tipc(HWCRYPTO_HASH, (void*)&req,
                                sizeof(req), NULL, 0, false);
      return rc;
  }
4207a8df8   Ji Luo   MA-13275 [trusty]...
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  
  int hwcrypto_gen_blob(uint32_t plain_pa,
                        uint32_t plain_size, uint32_t blob_pa)
  {
      hwcrypto_blob_msg req;
      unsigned long start, end;
  
      /* check the address */
      if (plain_pa == 0 || blob_pa == 0)
          return TRUSTY_ERR_INVALID_ARGS;
      /* fill the request buffer */
      req.plain_pa   = plain_pa;
      req.plain_size = plain_size;
      req.blob_pa    = blob_pa;
  
      /* flush dcache for input buffer */
      start = (unsigned long)plain_pa & ~(ARCH_DMA_MINALIGN - 1);
      end   = ALIGN((unsigned long)plain_pa + plain_size, ARCH_DMA_MINALIGN);
      flush_dcache_range(start, end);
  
      /* invalidate dcache for output buffer */
      start = (unsigned long)blob_pa & ~(ARCH_DMA_MINALIGN - 1);
      end   = ALIGN((unsigned long)blob_pa + plain_size +
                    CAAM_KB_HEADER_LEN, ARCH_DMA_MINALIGN);
      invalidate_dcache_range(start, end);
  
      int rc = hwcrypto_do_tipc(HWCRYPTO_ENCAP_BLOB, (void*)&req,
8cd43400c   Ji Luo   MA-13276 [Auto] G...
227
                                sizeof(req), NULL, 0, false);
4207a8df8   Ji Luo   MA-13275 [trusty]...
228
229
      return rc;
  }
de975d850   Ji Luo   MA-13831-3 [trust...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
  
  int hwcrypto_gen_rng(uint32_t buf, uint32_t len)
  {
      hwcrypto_rng_msg req;
      unsigned long start, end;
  
      /* check the address */
      if (buf == 0)
          return TRUSTY_ERR_INVALID_ARGS;
      /* fill the request buffer */
      req.buf = buf;
      req.len = len;
  
      /* invalidate dcache for output buffer */
      start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
      end   = ALIGN((unsigned long)buf + len, ARCH_DMA_MINALIGN);
      invalidate_dcache_range(start, end);
  
      int rc = hwcrypto_do_tipc(HWCRYPTO_GEN_RNG, (void*)&req,
                                sizeof(req), NULL, 0, false);
      return rc;
  }