xref: /optee_os/core/tee/tee_obj.c (revision d5fe340f0660118109e227b5d27c28029bf682fe)
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>
34b0104773SPascal Brand #include <tee/tee_pobj.h>
354de4bebcSJens Wiklander #include <trace.h>
36a2e9a830SCedric Chaumont #include <tee/tee_svc_storage.h>
3740a4fd66SJens Wiklander #include <tee/tee_svc_cryp.h>
38b0104773SPascal Brand 
398684fde8SJens Wiklander void tee_obj_add(struct user_ta_ctx *utc, struct tee_obj *o)
40b0104773SPascal Brand {
418684fde8SJens Wiklander 	TAILQ_INSERT_TAIL(&utc->objects, o, link);
42b0104773SPascal Brand }
43b0104773SPascal Brand 
448684fde8SJens Wiklander TEE_Result tee_obj_get(struct user_ta_ctx *utc, uint32_t obj_id,
45b0104773SPascal Brand 		       struct tee_obj **obj)
46b0104773SPascal Brand {
47b0104773SPascal Brand 	struct tee_obj *o;
48b0104773SPascal Brand 
498684fde8SJens Wiklander 	TAILQ_FOREACH(o, &utc->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 
588684fde8SJens Wiklander void tee_obj_close(struct user_ta_ctx *utc, struct tee_obj *o)
59b0104773SPascal Brand {
608684fde8SJens Wiklander 	TAILQ_REMOVE(&utc->objects, o, link);
61b0104773SPascal Brand 
62894b41abSJens Wiklander 	if ((o->info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT)) {
63b0311ad8SJens Wiklander 		o->pobj->fops->close(&o->fh);
64b0104773SPascal Brand 		tee_pobj_release(o->pobj);
65b0104773SPascal Brand 	}
66b0104773SPascal Brand 
6740a4fd66SJens Wiklander 	tee_obj_free(o);
68b0104773SPascal Brand }
69b0104773SPascal Brand 
708684fde8SJens Wiklander void tee_obj_close_all(struct user_ta_ctx *utc)
71b0104773SPascal Brand {
728684fde8SJens Wiklander 	struct tee_obj_head *objects = &utc->objects;
73b0104773SPascal Brand 
74b0104773SPascal Brand 	while (!TAILQ_EMPTY(objects))
758684fde8SJens Wiklander 		tee_obj_close(utc, TAILQ_FIRST(objects));
76b0104773SPascal Brand }
77a2e9a830SCedric Chaumont 
78a2e9a830SCedric Chaumont TEE_Result tee_obj_verify(struct tee_ta_session *sess, struct tee_obj *o)
79a2e9a830SCedric Chaumont {
80a2e9a830SCedric Chaumont 	TEE_Result res;
81b44708c1SJerome Forissier 	const struct tee_file_operations *fops = o->pobj->fops;
82b0311ad8SJens Wiklander 	struct tee_file_handle *fh = NULL;
83b44708c1SJerome Forissier 
84b44708c1SJerome Forissier 	if (!fops)
85b44708c1SJerome Forissier 		return TEE_ERROR_STORAGE_NOT_AVAILABLE;
86a2e9a830SCedric Chaumont 
87*d5fe340fSJens Wiklander 	res = fops->open(o->pobj, NULL, &fh);
88a2e9a830SCedric Chaumont 	if (res == TEE_ERROR_CORRUPT_OBJECT) {
89a2e9a830SCedric Chaumont 		EMSG("Object corrupt\n");
90b2215adfSJens Wiklander 		fops->remove(o->pobj);
918684fde8SJens Wiklander 		tee_obj_close(to_user_ta_ctx(sess->ctx), o);
92a2e9a830SCedric Chaumont 	}
93a2e9a830SCedric Chaumont 
94b0311ad8SJens Wiklander 	fops->close(&fh);
95a2e9a830SCedric Chaumont 	return res;
96a2e9a830SCedric Chaumont }
9740a4fd66SJens Wiklander 
9840a4fd66SJens Wiklander struct tee_obj *tee_obj_alloc(void)
9940a4fd66SJens Wiklander {
100b0311ad8SJens Wiklander 	return calloc(1, sizeof(struct tee_obj));
10140a4fd66SJens Wiklander }
10240a4fd66SJens Wiklander 
10340a4fd66SJens Wiklander void tee_obj_free(struct tee_obj *o)
10440a4fd66SJens Wiklander {
10540a4fd66SJens Wiklander 	if (o) {
10640a4fd66SJens Wiklander 		tee_obj_attr_free(o);
10740a4fd66SJens Wiklander 		free(o->attr);
10840a4fd66SJens Wiklander 		free(o);
10940a4fd66SJens Wiklander 	}
11040a4fd66SJens Wiklander }
111