Skip to content

Commit 4cc2e9c

Browse files
committed
tee-supplicant: Support multiple ta load paths
CFG_TEE_CLIENT_LOAD_PATH can have multiple paths separated by :
1 parent 9a33704 commit 4cc2e9c

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

config.mk

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ CFG_TEE_CLIENT_LOG_FILE ?= $(CFG_TEE_FS_PARENT_PATH)/teec.log
3131

3232
# CFG_TEE_CLIENT_LOAD_PATH
3333
# The location of the client library file.
34+
# Suport multiple ta load path
35+
# CFG_TEE_CLIENT_LOAD_PATH ?= /lib:/vendor/lib
3436
CFG_TEE_CLIENT_LOAD_PATH ?= /lib
3537

3638
# CFG_TEE_SUPP_PLUGINS

tee-supplicant/src/teec_ta_load.c

+31-2
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,48 @@ static int try_load_secure_module(const char* prefix,
172172
return TA_BINARY_FOUND;
173173
}
174174

175+
/* support multiple ta load path */
176+
static int load_secure_module_multipath(const char* multi_prefix,
177+
const char* dev_path,
178+
const TEEC_UUID *destination, void *ta,
179+
size_t *ta_size)
180+
{
181+
char *multi_path = NULL;
182+
char *single_path = NULL;
183+
char *tofree = NULL;
184+
int res = 0;
185+
186+
multi_path = strdup(multi_prefix);
187+
if (!multi_path) {
188+
EMSG("out of memory");
189+
return -1;
190+
}
191+
192+
tofree = multi_path;
193+
while ((single_path = strsep(&multi_path, ":")) != NULL) {
194+
res = try_load_secure_module(single_path,
195+
dev_path, destination, ta, ta_size);
196+
if (res == TA_BINARY_FOUND)
197+
break;
198+
}
199+
free(tofree);
200+
201+
return res;
202+
}
203+
175204
int TEECI_LoadSecureModule(const char* dev_path,
176205
const TEEC_UUID *destination, void *ta,
177206
size_t *ta_size)
178207
{
179208
#ifdef TEEC_TEST_LOAD_PATH
180209
int res = 0;
181210

182-
res = try_load_secure_module(TEEC_TEST_LOAD_PATH,
211+
res = load_secure_module_multipath(TEEC_TEST_LOAD_PATH,
183212
dev_path, destination, ta, ta_size);
184213
if (res != TA_BINARY_NOT_FOUND)
185214
return res;
186215
#endif
187216

188-
return try_load_secure_module(TEEC_LOAD_PATH,
217+
return load_secure_module_multipath(TEEC_LOAD_PATH,
189218
dev_path, destination, ta, ta_size);
190219
}

0 commit comments

Comments
 (0)