@@ -172,19 +172,48 @@ static int try_load_secure_module(const char* prefix,
172
172
return TA_BINARY_FOUND ;
173
173
}
174
174
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
+
175
204
int TEECI_LoadSecureModule (const char * dev_path ,
176
205
const TEEC_UUID * destination , void * ta ,
177
206
size_t * ta_size )
178
207
{
179
208
#ifdef TEEC_TEST_LOAD_PATH
180
209
int res = 0 ;
181
210
182
- res = try_load_secure_module (TEEC_TEST_LOAD_PATH ,
211
+ res = load_secure_module_multipath (TEEC_TEST_LOAD_PATH ,
183
212
dev_path , destination , ta , ta_size );
184
213
if (res != TA_BINARY_NOT_FOUND )
185
214
return res ;
186
215
#endif
187
216
188
- return try_load_secure_module (TEEC_LOAD_PATH ,
217
+ return load_secure_module_multipath (TEEC_LOAD_PATH ,
189
218
dev_path , destination , ta , ta_size );
190
219
}
0 commit comments