hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
33
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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2014, STMicroelectronics International N.V.
 */
 
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
 
#include "xtest_test.h"
#include "xtest_helpers.h"
#include "tee_api_defines.h"
#include "tee_client_api.h"
 
#define OFFSET0 0
 
#define PARAM_0 0
#define PARAM_1 1
#define PARAM_2 2
#define PARAM_3 3
 
struct xtest_session {
   ADBG_Case_t *c;
   TEEC_Session session;
   TEEC_Context context;
};
 
/* Compares two memories and checks if their length and content is the same */
#define EXPECT_SHARED_MEM_BUFFER(c, exp_buf, exp_blen, op, param_num, shrm) \
   do { \
       if ((exp_buf) == NULL) { \
           ADBG_EXPECT((c), exp_blen, \
                   (op)->params[(param_num)].memref.size); \
       } else { \
           ADBG_EXPECT_COMPARE_POINTER((c), (shrm), ==, \
               (op)->params[(param_num)].memref.parent); \
           ADBG_EXPECT_BUFFER((c), (exp_buf), (exp_blen), \
              (shrm)->buffer, \
              (op)->params[(param_num)].memref.size); \
       } \
   } while (0)
 
/*
 * Compares the content of the memory cells in OP with the expected value
 * contained.
 */
#define EXPECT_OP_TMP_MEM_BUFFER(c, exp_buf, exp_blen, op, param_num, buf) \
   do { \
       if ((exp_buf) == NULL) { \
           ADBG_EXPECT((c), exp_blen, \
               (op)->params[(param_num)].tmpref.size); \
       } else { \
           ADBG_EXPECT_COMPARE_POINTER((c), (buf), ==, \
               (op)->params[(param_num)].tmpref.buffer); \
           ADBG_EXPECT_BUFFER((c), (exp_buf), (exp_blen), \
              (buf), \
              (op)->params[(param_num)].memref.size); \
       } \
   } while (0)
 
/* Registers the TEEC_SharedMemory to the TEE. */
static TEEC_Result RegisterSharedMemory(TEEC_Context *ctx,
                   TEEC_SharedMemory *shm, size_t size,
                   uint32_t flags)
{
   shm->flags = flags;
   shm->size = size;
   return TEEC_RegisterSharedMemory(ctx, shm);
}
 
/* Allocates shared memory inside of the TEE. */
static TEEC_Result AllocateSharedMemory(TEEC_Context *ctx,
                   TEEC_SharedMemory *shm, size_t size,
                   uint32_t flags)
{
   shm->flags = flags;
   shm->size = size;
   return TEEC_AllocateSharedMemory(ctx, shm);
}
 
static void CloseSession_null(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "CloseSession_null");
   {
       /* In reality doesn't test anything. */
       TEEC_CloseSession(NULL);
   }
   Do_ADBG_EndSubCase(cs->c, "CloseSession_null");
}
 
static void Allocate_In(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Allocate_In");
   {
       TEEC_SharedMemory shm = { };
       size_t size = 1024;
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm, size,
                        TEEC_MEM_INPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Allocate_In");
}
 
static void Allocate_out_of_memory(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Allocate_out_of_memory");
   {
       TEEC_SharedMemory shm = { };
       size_t SIZE_OVER_MEMORY_CAPACITY = SIZE_MAX;
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       ADBG_EXPECT_TEEC_RESULT(cs->c, TEEC_ERROR_OUT_OF_MEMORY,
           AllocateSharedMemory(&cs->context, &shm,
                        SIZE_OVER_MEMORY_CAPACITY,
                        TEEC_MEM_INPUT));
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Allocate_out_of_memory");
}
 
static void OpenSession_error_notExistingTA(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "OpenSession_error_notExistingTA");
   {
       TEEC_UUID NONEXISTING_TA_UUID = { 0x534D1192, 0x6143, 0x234C,
                         { 0x47, 0x55, 0x53, 0x52,
                           0x54, 0x4F, 0x4F, 0x59 } };
       uint32_t ret_orig = 0;
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       ADBG_EXPECT_COMPARE_UNSIGNED(cs->c, TEEC_SUCCESS, !=,
           TEEC_OpenSession(&cs->context, &cs->session,
                    &NONEXISTING_TA_UUID,
                    TEEC_LOGIN_PUBLIC, NULL, NULL,
                    &ret_orig));
       ADBG_EXPECT_COMPARE_UNSIGNED(cs->c, TEEC_ORIGIN_TRUSTED_APP, !=,
                        ret_orig);
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "OpenSession_error_notExistingTA");
}
 
static void Allocate_InOut(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Allocate_InOut");
   {
       TEEC_SharedMemory shm = { };
       uint8_t val[] = { 54, 76, 98, 32 };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_INPUT | TEEC_MEM_OUTPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Allocate_InOut");
}
 
static void Register_In(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Register_In");
   {
       TEEC_SharedMemory shm = { };
       uint8_t val[] = { 32, 65, 43, 21, 98 };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_INPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Register_In");
}
 
static void Register_notZeroLength_Out(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Register_notZeroLength_Out");
   {
       TEEC_SharedMemory shm = { };
       uint8_t val[] = { 56, 67, 78, 99 };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_OUTPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Register_notZeroLength_Out");
}
 
static void Register_InOut(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Register_InOut");
   {
       TEEC_SharedMemory shm = { };
       uint8_t val[] = { 54, 76, 23, 98, 255, 23, 86 };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_INPUT | TEEC_MEM_OUTPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Register_InOut");
}
 
static void Register_zeroLength_Out(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Register_zeroLength_Out");
   {
       uint8_t val[] = { 65, 76, 98, 32 };
       TEEC_SharedMemory shm = { };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, 0,
                        TEEC_MEM_OUTPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Register_zeroLength_Out");
}
 
static void Allocate_Out(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Allocate_Out");
   {
       TEEC_SharedMemory shm = { };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm, 0,
                        TEEC_MEM_OUTPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Allocate_Out");
}
 
static void FinalizeContext_null(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "FinalizeContext_null");
   {
       TEEC_FinalizeContext(NULL);
   }
   Do_ADBG_EndSubCase(cs->c, "FinalizeContext_null");
}
 
static void InitializeContext_NotExistingTEE(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "InitializeContext_NotExistingTEE");
   {
       if (!ADBG_EXPECT_COMPARE_UNSIGNED(cs->c, TEEC_SUCCESS, !=,
           TEEC_InitializeContext("Invalid TEE name",
                          &cs->context)))
           TEEC_FinalizeContext(&cs->context);
   }
   Do_ADBG_EndSubCase(cs->c, "InitializeContext_NotExistingTEE");
}
 
static void AllocateThenRegister_SameMemory(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "AllocateThenRegister_SameMemory");
   {
       TEEC_SharedMemory shm = { };
       size_t size_allocation = 32;
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm,
                        size_allocation, TEEC_MEM_INPUT)))
           goto out_final;
 
       ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm,
                        size_allocation, TEEC_MEM_INPUT));
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "AllocateThenRegister_SameMemory");
}
 
static void AllocateSameMemory_twice(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "AllocateSameMemory_twice");
   {
       TEEC_SharedMemory shm = { };
       size_t size_allocation = 32;
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm,
                        size_allocation, TEEC_MEM_INPUT)))
           goto out_final;
 
       ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm,
                        size_allocation, TEEC_MEM_INPUT));
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "AllocateSameMemory_twice");
}
 
static void RegisterSameMemory_twice(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "RegisterSameMemory_twice");
   {
       uint8_t val[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
       TEEC_SharedMemory shm = { };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_INPUT)))
           goto out_final;
 
       ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, sizeof(val),
                        TEEC_MEM_INPUT));
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "RegisterSameMemory_twice");
}
 
#ifndef MIN
#define MIN(a,b)    ((a) < (b) ? (a) : (b))
#endif
 
static void Allocate_sharedMemory_32k(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Allocate_sharedMemory_32k");
   {
       size_t size = MIN(32 * 1024,
                 TEEC_CONFIG_SHAREDMEM_MAX_SIZE);
       TEEC_SharedMemory shm = { };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           AllocateSharedMemory(&cs->context, &shm, size,
                        TEEC_MEM_INPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Allocate_sharedMemory_32k");
}
 
#define SHM_32K_SIZE    MIN(32 * 1024, TEEC_CONFIG_SHAREDMEM_MAX_SIZE)
 
static void Register_sharedMemory_32k(struct xtest_session *cs)
{
   Do_ADBG_BeginSubCase(cs->c, "Register_sharedMemory_32k");
   {
       uint8_t val[SHM_32K_SIZE] = { };
       TEEC_SharedMemory shm = { };
 
       if (!ADBG_EXPECT(cs->c, TEEC_SUCCESS,
           TEEC_InitializeContext(xtest_tee_name, &cs->context)))
           goto out;
 
       shm.buffer = val;
       if (!ADBG_EXPECT_TEEC_SUCCESS(cs->c,
           RegisterSharedMemory(&cs->context, &shm, SHM_32K_SIZE,
                        TEEC_MEM_INPUT)))
           goto out_final;
 
       TEEC_ReleaseSharedMemory(&shm);
out_final:
       TEEC_FinalizeContext(&cs->context);
   }
out:
   Do_ADBG_EndSubCase(cs->c, "Register_sharedMemory_32k");
}
 
static void xtest_teec_TEE(ADBG_Case_t *c)
{
   struct xtest_session connection = { c };
 
   CloseSession_null(&connection);
 
   Allocate_In(&connection);
 
   Allocate_out_of_memory(&connection);
 
   OpenSession_error_notExistingTA(&connection);
 
   Allocate_InOut(&connection);
 
   Register_In(&connection);
 
   Register_notZeroLength_Out(&connection);
 
   Register_InOut(&connection);
 
   Register_zeroLength_Out(&connection);
 
   Allocate_Out(&connection);
 
   FinalizeContext_null(&connection);
 
   InitializeContext_NotExistingTEE(&connection);
 
   AllocateThenRegister_SameMemory(&connection);
 
   AllocateSameMemory_twice(&connection);
 
   RegisterSameMemory_twice(&connection);
 
   Allocate_sharedMemory_32k(&connection);
 
   Register_sharedMemory_32k(&connection);
}
 
ADBG_CASE_DEFINE(regression, 5006, xtest_teec_TEE,
       "Tests for Global platform TEEC");