hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
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
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2014, STMicroelectronics International N.V.
 * Copyright (c) 2018, Linaro Limited.
 */
 
#ifndef USER_TA_HEADER_H
#define USER_TA_HEADER_H
 
#include <tee_api_types.h>
#include <util.h>
 
#define TA_FLAG_USER_MODE        0     /* Deprecated, was (1 << 0) */
#define TA_FLAG_EXEC_DDR        0     /* Deprecated, was (1 << 1) */
#define TA_FLAG_SINGLE_INSTANCE        (1 << 2)
#define TA_FLAG_MULTI_SESSION        (1 << 3)
#define TA_FLAG_INSTANCE_KEEP_ALIVE    (1 << 4) /* remains after last close */
#define TA_FLAG_SECURE_DATA_PATH    (1 << 5) /* accesses SDP memory */
#define TA_FLAG_REMAP_SUPPORT        0     /* Deprecated, was (1 << 6) */
#define TA_FLAG_CACHE_MAINTENANCE    (1 << 7) /* use cache flush syscall */
   /*
    * TA instance can execute multiple sessions concurrently
    * (pseudo-TAs only).
    */
#define TA_FLAG_CONCURRENT        (1 << 8)
   /*
    * Device enumeration is done in two stages by the normal world, first
    * before the tee-supplicant has started and then once more when the
    * tee-supplicant is started. The flags below control if the TA should
    * be reported in the first or second or case.
    */
#define TA_FLAG_DEVICE_ENUM        (1 << 9)  /* without tee-supplicant */
#define TA_FLAG_DEVICE_ENUM_SUPP    (1 << 10) /* with tee-supplicant */
 
#define TA_FLAGS_MASK            GENMASK_32(10, 0)
 
struct ta_head {
   TEE_UUID uuid;
   uint32_t stack_size;
   uint32_t flags;
   uint64_t depr_entry;
};
 
#if defined(CFG_FTRACE_SUPPORT)
#define FTRACE_RETFUNC_DEPTH        50
union compat_ptr {
   uint64_t ptr64;
   struct {
       uint32_t lo;
       uint32_t hi;
   } ptr32;
};
 
struct __ftrace_info {
   union compat_ptr buf_start;
   union compat_ptr buf_end;
   union compat_ptr ret_ptr;
};
 
struct ftrace_buf {
   uint64_t ret_func_ptr;    /* __ftrace_return pointer */
   uint64_t ret_stack[FTRACE_RETFUNC_DEPTH]; /* Return stack */
   uint32_t ret_idx;    /* Return stack index */
   uint32_t lr_idx;    /* lr index used for stack unwinding */
   uint64_t begin_time[FTRACE_RETFUNC_DEPTH]; /* Timestamp */
   uint64_t suspend_time;    /* Suspend timestamp */
   uint32_t curr_size;    /* Size of ftrace buffer */
   uint32_t max_size;    /* Max allowed size of ftrace buffer */
   uint32_t head_off;    /* Ftrace buffer header offset */
   uint32_t buf_off;    /* Ftrace buffer offset */
   bool syscall_trace_enabled; /* Some syscalls are never traced */
   bool syscall_trace_suspended; /* By foreign interrupt or RPC */
};
 
/* Defined by the linker script */
extern struct ftrace_buf __ftrace_buf_start;
extern uint8_t __ftrace_buf_end[];
 
unsigned long ftrace_return(void);
void __ftrace_return(void);
#endif
 
void __utee_call_elf_init_fn(void);
void __utee_call_elf_fini_fn(void);
 
void __utee_tcb_init(void);
 
/*
 * Information about the ELF objects loaded by the application
 */
 
struct __elf_phdr_info {
   uint32_t reserved;
   uint16_t count;
   uint8_t reserved2;
   char zero;
   struct dl_phdr_info *dlpi; /* @count entries */
};
 
/* 32-bit variant for a 64-bit ldelf to access a 32-bit TA */
struct __elf_phdr_info32 {
   uint32_t reserved;
   uint16_t count;
   uint8_t reserved2;
   char zero;
   uint32_t dlpi;
};
 
extern struct __elf_phdr_info __elf_phdr_info;
 
#define TA_PROP_STR_SINGLE_INSTANCE    "gpd.ta.singleInstance"
#define TA_PROP_STR_MULTI_SESSION    "gpd.ta.multiSession"
#define TA_PROP_STR_KEEP_ALIVE        "gpd.ta.instanceKeepAlive"
#define TA_PROP_STR_DATA_SIZE        "gpd.ta.dataSize"
#define TA_PROP_STR_STACK_SIZE        "gpd.ta.stackSize"
#define TA_PROP_STR_VERSION        "gpd.ta.version"
#define TA_PROP_STR_DESCRIPTION        "gpd.ta.description"
 
enum user_ta_prop_type {
   USER_TA_PROP_TYPE_BOOL,    /* bool */
   USER_TA_PROP_TYPE_U32,    /* uint32_t */
   USER_TA_PROP_TYPE_UUID,    /* TEE_UUID */
   USER_TA_PROP_TYPE_IDENTITY,    /* TEE_Identity */
   USER_TA_PROP_TYPE_STRING,    /* zero terminated string of char */
   USER_TA_PROP_TYPE_BINARY_BLOCK,    /* zero terminated base64 coded string */
};
 
struct user_ta_property {
   const char *name;
   enum user_ta_prop_type type;
   const void *value;
};
 
extern const struct user_ta_property ta_props[];
extern const size_t ta_num_props;
 
/* Needed by TEE_CheckMemoryAccessRights() */
extern uint32_t ta_param_types;
extern TEE_Param ta_params[TEE_NUM_PARAMS];
 
int tahead_get_trace_level(void);
 
#endif /* USER_TA_HEADER_H */