xref: /optee_os/core/tee/tee_obj.c (revision a2e9a83066c0810060c222999b0004aedfa18fff)
1b0104773SPascal Brand /*
2b0104773SPascal Brand  * Copyright (c) 2014, STMicroelectronics International N.V.
3b0104773SPascal Brand  * All rights reserved.
4b0104773SPascal Brand  *
5b0104773SPascal Brand  * Redistribution and use in source and binary forms, with or without
6b0104773SPascal Brand  * modification, are permitted provided that the following conditions are met:
7b0104773SPascal Brand  *
8b0104773SPascal Brand  * 1. Redistributions of source code must retain the above copyright notice,
9b0104773SPascal Brand  * this list of conditions and the following disclaimer.
10b0104773SPascal Brand  *
11b0104773SPascal Brand  * 2. Redistributions in binary form must reproduce the above copyright notice,
12b0104773SPascal Brand  * this list of conditions and the following disclaimer in the documentation
13b0104773SPascal Brand  * and/or other materials provided with the distribution.
14b0104773SPascal Brand  *
15b0104773SPascal Brand  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16b0104773SPascal Brand  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17b0104773SPascal Brand  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18b0104773SPascal Brand  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19b0104773SPascal Brand  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20b0104773SPascal Brand  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21b0104773SPascal Brand  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22b0104773SPascal Brand  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23b0104773SPascal Brand  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24b0104773SPascal Brand  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25b0104773SPascal Brand  * POSSIBILITY OF SUCH DAMAGE.
26b0104773SPascal Brand  */
27b0104773SPascal Brand 
28b0104773SPascal Brand #include <tee/tee_obj.h>
29b0104773SPascal Brand 
30b0104773SPascal Brand #include <stdlib.h>
31b0104773SPascal Brand #include <tee_api_defines.h>
32b0104773SPascal Brand #include <mm/tee_mmu.h>
33b0104773SPascal Brand #include <tee/tee_fs.h>
34*a2e9a830SCedric Chaumont #include <tee/tee_fs_defs.h>
35b0104773SPascal Brand #include <tee/tee_pobj.h>
364de4bebcSJens Wiklander #include <trace.h>
37*a2e9a830SCedric Chaumont #include <tee/tee_svc_storage.h>
38b0104773SPascal Brand 
39b0104773SPascal Brand void tee_obj_add(struct tee_ta_ctx *ctx, struct tee_obj *o)
40b0104773SPascal Brand {
41b0104773SPascal Brand 	TAILQ_INSERT_TAIL(&ctx->objects, o, link);
42b0104773SPascal Brand }
43b0104773SPascal Brand 
44b0104773SPascal Brand TEE_Result tee_obj_get(struct tee_ta_ctx *ctx, uint32_t obj_id,
45b0104773SPascal Brand 		       struct tee_obj **obj)
46b0104773SPascal Brand {
47b0104773SPascal Brand 	struct tee_obj *o;
48b0104773SPascal Brand 
49b0104773SPascal Brand 	TAILQ_FOREACH(o, &ctx->objects, link) {
5061ea19fdSJens Wiklander 		if (obj_id == (vaddr_t)o) {
51b0104773SPascal Brand 			*obj = o;
52b0104773SPascal Brand 			return TEE_SUCCESS;
53b0104773SPascal Brand 		}
54b0104773SPascal Brand 	}
55b0104773SPascal Brand 	return TEE_ERROR_BAD_PARAMETERS;
56b0104773SPascal Brand }
57b0104773SPascal Brand 
58b0104773SPascal Brand void tee_obj_close(struct tee_ta_ctx *ctx, struct tee_obj *o)
59b0104773SPascal Brand {
60b0104773SPascal Brand 	TAILQ_REMOVE(&ctx->objects, o, link);
61b0104773SPascal Brand 
62c0346845SJens Wiklander 	if ((o->info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT) && o->fd >= 0) {
631fd927ebSJames Kung 		tee_file_ops.close(o->fd);
64b0104773SPascal Brand 		tee_pobj_release(o->pobj);
65b0104773SPascal Brand 	}
66b0104773SPascal Brand 
6751835057SJerome Forissier 	if (o->cleanup)
6851835057SJerome Forissier 		o->cleanup(o->data, true);
69b0104773SPascal Brand 	free(o->data);
70b0104773SPascal Brand 	free(o);
71b0104773SPascal Brand }
72b0104773SPascal Brand 
73b0104773SPascal Brand void tee_obj_close_all(struct tee_ta_ctx *ctx)
74b0104773SPascal Brand {
75b0104773SPascal Brand 	struct tee_obj_head *objects = &ctx->objects;
76b0104773SPascal Brand 
77b0104773SPascal Brand 	while (!TAILQ_EMPTY(objects))
78b0104773SPascal Brand 		tee_obj_close(ctx, TAILQ_FIRST(objects));
79b0104773SPascal Brand }
80*a2e9a830SCedric Chaumont 
81*a2e9a830SCedric Chaumont TEE_Result tee_obj_verify(struct tee_ta_session *sess, struct tee_obj *o)
82*a2e9a830SCedric Chaumont {
83*a2e9a830SCedric Chaumont 	TEE_Result res;
84*a2e9a830SCedric Chaumont 	char *file = NULL;
85*a2e9a830SCedric Chaumont 	char *dir = NULL;
86*a2e9a830SCedric Chaumont 	int fd = -1;
87*a2e9a830SCedric Chaumont 	int err = -1;
88*a2e9a830SCedric Chaumont 
89*a2e9a830SCedric Chaumont 	file = tee_svc_storage_create_filename(sess,
90*a2e9a830SCedric Chaumont 					       o->pobj->obj_id,
91*a2e9a830SCedric Chaumont 					       o->pobj->obj_id_len,
92*a2e9a830SCedric Chaumont 					       false);
93*a2e9a830SCedric Chaumont 	if (file == NULL) {
94*a2e9a830SCedric Chaumont 		res = TEE_ERROR_OUT_OF_MEMORY;
95*a2e9a830SCedric Chaumont 		goto exit;
96*a2e9a830SCedric Chaumont 	}
97*a2e9a830SCedric Chaumont 
98*a2e9a830SCedric Chaumont 	err = tee_file_ops.access(file, TEE_FS_F_OK);
99*a2e9a830SCedric Chaumont 	if (err) {
100*a2e9a830SCedric Chaumont 		/* file not found */
101*a2e9a830SCedric Chaumont 		res = TEE_ERROR_STORAGE_NOT_AVAILABLE;
102*a2e9a830SCedric Chaumont 		goto err;
103*a2e9a830SCedric Chaumont 	}
104*a2e9a830SCedric Chaumont 
105*a2e9a830SCedric Chaumont 	fd = tee_file_ops.open(&res, file, TEE_FS_O_RDONLY);
106*a2e9a830SCedric Chaumont 	if (fd < 0) {
107*a2e9a830SCedric Chaumont 		if (res == TEE_ERROR_CORRUPT_OBJECT) {
108*a2e9a830SCedric Chaumont 			EMSG("Object corrupt\n");
109*a2e9a830SCedric Chaumont 			tee_obj_close(sess->ctx, o);
110*a2e9a830SCedric Chaumont 			tee_file_ops.unlink(file);
111*a2e9a830SCedric Chaumont 			dir = tee_svc_storage_create_dirname(sess);
112*a2e9a830SCedric Chaumont 			if (dir != NULL) {
113*a2e9a830SCedric Chaumont 				tee_file_ops.rmdir(dir);
114*a2e9a830SCedric Chaumont 				free(dir);
115*a2e9a830SCedric Chaumont 			}
116*a2e9a830SCedric Chaumont 		}
117*a2e9a830SCedric Chaumont 		goto err;
118*a2e9a830SCedric Chaumont 	}
119*a2e9a830SCedric Chaumont 
120*a2e9a830SCedric Chaumont 	res = TEE_SUCCESS;
121*a2e9a830SCedric Chaumont 
122*a2e9a830SCedric Chaumont err:
123*a2e9a830SCedric Chaumont 	free(file);
124*a2e9a830SCedric Chaumont 	if (fd >= 0)
125*a2e9a830SCedric Chaumont 		tee_file_ops.close(fd);
126*a2e9a830SCedric Chaumont exit:
127*a2e9a830SCedric Chaumont 	return res;
128*a2e9a830SCedric Chaumont }
129