xref: /optee_os/lib/libutee/tee_api_objects.c (revision 172d637bb5f58c592dd025924c758095a047bb21)
11bb92983SJerome Forissier // SPDX-License-Identifier: BSD-2-Clause
2b0104773SPascal Brand /*
3b0104773SPascal Brand  * Copyright (c) 2014, STMicroelectronics International N.V.
4b0104773SPascal Brand  */
5b0104773SPascal Brand #include <stdlib.h>
6b0104773SPascal Brand #include <string.h>
7b0104773SPascal Brand 
8b0104773SPascal Brand #include <tee_api.h>
9b0104773SPascal Brand #include <utee_syscalls.h>
10e86f1266SJens Wiklander #include "tee_api_private.h"
11b0104773SPascal Brand 
12b0104773SPascal Brand #define TEE_USAGE_DEFAULT   0xffffffff
13b0104773SPascal Brand 
14b0104773SPascal Brand #define TEE_ATTR_BIT_VALUE                  (1 << 29)
15b0104773SPascal Brand #define TEE_ATTR_BIT_PROTECTED              (1 << 28)
16b0104773SPascal Brand 
17e86f1266SJens Wiklander void __utee_from_attr(struct utee_attribute *ua, const TEE_Attribute *attrs,
18e86f1266SJens Wiklander 			uint32_t attr_count)
19e86f1266SJens Wiklander {
20e86f1266SJens Wiklander 	size_t n;
21e86f1266SJens Wiklander 
22e86f1266SJens Wiklander 	for (n = 0; n < attr_count; n++) {
23e86f1266SJens Wiklander 		ua[n].attribute_id = attrs[n].attributeID;
24e86f1266SJens Wiklander 		if (attrs[n].attributeID & TEE_ATTR_BIT_VALUE) {
25e86f1266SJens Wiklander 			ua[n].a = attrs[n].content.value.a;
26e86f1266SJens Wiklander 			ua[n].b = attrs[n].content.value.b;
27e86f1266SJens Wiklander 		} else {
28e86f1266SJens Wiklander 			ua[n].a = (uintptr_t)attrs[n].content.ref.buffer;
29e86f1266SJens Wiklander 			ua[n].b = attrs[n].content.ref.length;
30e86f1266SJens Wiklander 		}
31e86f1266SJens Wiklander 	}
32e86f1266SJens Wiklander }
33e86f1266SJens Wiklander 
34b0104773SPascal Brand /* Data and Key Storage API  - Generic Object Functions */
357583c59eSCedric Chaumont /*
367583c59eSCedric Chaumont  * Use of this function is deprecated
377583c59eSCedric Chaumont  * new code SHOULD use the TEE_GetObjectInfo1 function instead
387583c59eSCedric Chaumont  * These functions will be removed at some future major revision of
397583c59eSCedric Chaumont  * this specification
407583c59eSCedric Chaumont  */
41b0104773SPascal Brand void TEE_GetObjectInfo(TEE_ObjectHandle object, TEE_ObjectInfo *objectInfo)
42b0104773SPascal Brand {
43b0104773SPascal Brand 	TEE_Result res;
44b0104773SPascal Brand 
45e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, objectInfo);
467583c59eSCedric Chaumont 
47b0104773SPascal Brand 	if (res != TEE_SUCCESS)
48b0104773SPascal Brand 		TEE_Panic(res);
497583c59eSCedric Chaumont 
507583c59eSCedric Chaumont 	if (objectInfo->objectType == TEE_TYPE_CORRUPTED_OBJECT) {
517583c59eSCedric Chaumont 		objectInfo->keySize = 0;
527583c59eSCedric Chaumont 		objectInfo->maxKeySize = 0;
537583c59eSCedric Chaumont 		objectInfo->objectUsage = 0;
547583c59eSCedric Chaumont 		objectInfo->dataSize = 0;
557583c59eSCedric Chaumont 		objectInfo->dataPosition = 0;
567583c59eSCedric Chaumont 		objectInfo->handleFlags = 0;
577583c59eSCedric Chaumont 	}
58b0104773SPascal Brand }
59b0104773SPascal Brand 
607583c59eSCedric Chaumont TEE_Result TEE_GetObjectInfo1(TEE_ObjectHandle object, TEE_ObjectInfo *objectInfo)
617583c59eSCedric Chaumont {
627583c59eSCedric Chaumont 	TEE_Result res;
637583c59eSCedric Chaumont 
64e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, objectInfo);
657583c59eSCedric Chaumont 
66a2e9a830SCedric Chaumont 	if (res != TEE_SUCCESS &&
67a2e9a830SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
68a2e9a830SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
697583c59eSCedric Chaumont 		TEE_Panic(res);
707583c59eSCedric Chaumont 
717583c59eSCedric Chaumont 	return res;
727583c59eSCedric Chaumont }
737583c59eSCedric Chaumont 
747583c59eSCedric Chaumont /*
757583c59eSCedric Chaumont  * Use of this function is deprecated
767583c59eSCedric Chaumont  * new code SHOULD use the TEE_RestrictObjectUsage1 function instead
777583c59eSCedric Chaumont  * These functions will be removed at some future major revision of
787583c59eSCedric Chaumont  * this specification
797583c59eSCedric Chaumont  */
80b0104773SPascal Brand void TEE_RestrictObjectUsage(TEE_ObjectHandle object, uint32_t objectUsage)
81b0104773SPascal Brand {
82b0104773SPascal Brand 	TEE_Result res;
837583c59eSCedric Chaumont 	TEE_ObjectInfo objectInfo;
847583c59eSCedric Chaumont 
85e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &objectInfo);
867583c59eSCedric Chaumont 	if (objectInfo.objectType == TEE_TYPE_CORRUPTED_OBJECT)
877583c59eSCedric Chaumont 		return;
887583c59eSCedric Chaumont 
897583c59eSCedric Chaumont 	res = TEE_RestrictObjectUsage1(object, objectUsage);
90b0104773SPascal Brand 
91b0104773SPascal Brand 	if (res != TEE_SUCCESS)
92b36311adSJerome Forissier 		TEE_Panic(res);
93b0104773SPascal Brand }
94b0104773SPascal Brand 
957583c59eSCedric Chaumont TEE_Result TEE_RestrictObjectUsage1(TEE_ObjectHandle object, uint32_t objectUsage)
967583c59eSCedric Chaumont {
977583c59eSCedric Chaumont 	TEE_Result res;
987583c59eSCedric Chaumont 
99e86f1266SJens Wiklander 	res = utee_cryp_obj_restrict_usage((unsigned long)object, objectUsage);
1007583c59eSCedric Chaumont 
101a2e9a830SCedric Chaumont 	if (res != TEE_SUCCESS &&
102a2e9a830SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
103a2e9a830SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
104a2e9a830SCedric Chaumont 		TEE_Panic(res);
1057583c59eSCedric Chaumont 
1067583c59eSCedric Chaumont 	return res;
1077583c59eSCedric Chaumont }
1087583c59eSCedric Chaumont 
109b0104773SPascal Brand TEE_Result TEE_GetObjectBufferAttribute(TEE_ObjectHandle object,
110b0104773SPascal Brand 					uint32_t attributeID, void *buffer,
11179a3c601SCedric Chaumont 					uint32_t *size)
112b0104773SPascal Brand {
113b0104773SPascal Brand 	TEE_Result res;
114b0104773SPascal Brand 	TEE_ObjectInfo info;
115e86f1266SJens Wiklander 	uint64_t sz;
116b0104773SPascal Brand 
117e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
118b0104773SPascal Brand 	if (res != TEE_SUCCESS)
119a2e9a830SCedric Chaumont 		goto exit;
120b0104773SPascal Brand 
121b0104773SPascal Brand 	/* This function only supports reference attributes */
122a2e9a830SCedric Chaumont 	if ((attributeID & TEE_ATTR_BIT_VALUE)) {
123a2e9a830SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
124a2e9a830SCedric Chaumont 		goto exit;
125a2e9a830SCedric Chaumont 	}
126b0104773SPascal Brand 
127e86f1266SJens Wiklander 	sz = *size;
128e86f1266SJens Wiklander 	res = utee_cryp_obj_get_attr((unsigned long)object, attributeID,
129e86f1266SJens Wiklander 				     buffer, &sz);
130e86f1266SJens Wiklander 	*size = sz;
131b0104773SPascal Brand 
132a2e9a830SCedric Chaumont exit:
1330ed6a6caSCedric Chaumont 	if (res != TEE_SUCCESS &&
1340ed6a6caSCedric Chaumont 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
1350ed6a6caSCedric Chaumont 	    res != TEE_ERROR_SHORT_BUFFER &&
1360ed6a6caSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
1370ed6a6caSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
138b36311adSJerome Forissier 		TEE_Panic(res);
139b0104773SPascal Brand 
140b0104773SPascal Brand 	return res;
141b0104773SPascal Brand }
142b0104773SPascal Brand 
143b0104773SPascal Brand TEE_Result TEE_GetObjectValueAttribute(TEE_ObjectHandle object,
144b0104773SPascal Brand 				       uint32_t attributeID, uint32_t *a,
145b0104773SPascal Brand 				       uint32_t *b)
146b0104773SPascal Brand {
147b0104773SPascal Brand 	TEE_Result res;
148b0104773SPascal Brand 	TEE_ObjectInfo info;
149b0104773SPascal Brand 	uint32_t buf[2];
150e86f1266SJens Wiklander 	uint64_t size = sizeof(buf);
151b0104773SPascal Brand 
152e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
153b0104773SPascal Brand 	if (res != TEE_SUCCESS)
154a2e9a830SCedric Chaumont 		goto exit;
155b0104773SPascal Brand 
156b0104773SPascal Brand 	/* This function only supports value attributes */
157a2e9a830SCedric Chaumont 	if (!(attributeID & TEE_ATTR_BIT_VALUE)) {
158a2e9a830SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
159a2e9a830SCedric Chaumont 		goto exit;
160a2e9a830SCedric Chaumont 	}
161b0104773SPascal Brand 
162e86f1266SJens Wiklander 	res = utee_cryp_obj_get_attr((unsigned long)object, attributeID, buf,
163e86f1266SJens Wiklander 				     &size);
164b0104773SPascal Brand 
165a2e9a830SCedric Chaumont exit:
1660ed6a6caSCedric Chaumont 	if (res != TEE_SUCCESS &&
1670ed6a6caSCedric Chaumont 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
1680ed6a6caSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
1690ed6a6caSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
170b36311adSJerome Forissier 		TEE_Panic(res);
171b0104773SPascal Brand 
172b0104773SPascal Brand 	if (size != sizeof(buf))
173b0104773SPascal Brand 		TEE_Panic(0);
174b0104773SPascal Brand 
175be96c837SJerome Forissier 	if (res == TEE_SUCCESS) {
176b9d8f134SJerome Forissier 		if (a)
177b0104773SPascal Brand 			*a = buf[0];
178b9d8f134SJerome Forissier 		if (b)
179b0104773SPascal Brand 			*b = buf[1];
180be96c837SJerome Forissier 	}
181b0104773SPascal Brand 
182b0104773SPascal Brand 	return res;
183b0104773SPascal Brand }
184b0104773SPascal Brand 
185b0104773SPascal Brand void TEE_CloseObject(TEE_ObjectHandle object)
186b0104773SPascal Brand {
187b0104773SPascal Brand 	TEE_Result res;
188b0104773SPascal Brand 
189b0104773SPascal Brand 	if (object == TEE_HANDLE_NULL)
190b0104773SPascal Brand 		return;
191b0104773SPascal Brand 
192e86f1266SJens Wiklander 	res = utee_cryp_obj_close((unsigned long)object);
193b0104773SPascal Brand 	if (res != TEE_SUCCESS)
194b36311adSJerome Forissier 		TEE_Panic(res);
195b0104773SPascal Brand }
196b0104773SPascal Brand 
197b0104773SPascal Brand /* Data and Key Storage API  - Transient Object Functions */
198b0104773SPascal Brand 
199b0104773SPascal Brand TEE_Result TEE_AllocateTransientObject(TEE_ObjectType objectType,
20079a3c601SCedric Chaumont 				       uint32_t maxKeySize,
201b0104773SPascal Brand 				       TEE_ObjectHandle *object)
202b0104773SPascal Brand {
203b0104773SPascal Brand 	TEE_Result res;
204b0104773SPascal Brand 	uint32_t obj;
205b0104773SPascal Brand 
20679a3c601SCedric Chaumont 	res = utee_cryp_obj_alloc(objectType, maxKeySize, &obj);
207aeb0d927SCedric Chaumont 
208aeb0d927SCedric Chaumont 	if (res != TEE_SUCCESS &&
209aeb0d927SCedric Chaumont 	    res != TEE_ERROR_OUT_OF_MEMORY &&
210aeb0d927SCedric Chaumont 	    res != TEE_ERROR_NOT_SUPPORTED)
211b36311adSJerome Forissier 		TEE_Panic(res);
212aeb0d927SCedric Chaumont 
213b0104773SPascal Brand 	if (res == TEE_SUCCESS)
214e86f1266SJens Wiklander 		*object = (TEE_ObjectHandle)(uintptr_t)obj;
2150ed6a6caSCedric Chaumont 
216b0104773SPascal Brand 	return res;
217b0104773SPascal Brand }
218b0104773SPascal Brand 
219b0104773SPascal Brand void TEE_FreeTransientObject(TEE_ObjectHandle object)
220b0104773SPascal Brand {
221b0104773SPascal Brand 	TEE_Result res;
222b0104773SPascal Brand 	TEE_ObjectInfo info;
223b0104773SPascal Brand 
224b0104773SPascal Brand 	if (object == TEE_HANDLE_NULL)
225b0104773SPascal Brand 		return;
226b0104773SPascal Brand 
227e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
228b0104773SPascal Brand 	if (res != TEE_SUCCESS)
229b36311adSJerome Forissier 		TEE_Panic(res);
230b0104773SPascal Brand 
231b0104773SPascal Brand 	if ((info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT) != 0)
232b0104773SPascal Brand 		TEE_Panic(0);
233b0104773SPascal Brand 
234e86f1266SJens Wiklander 	res = utee_cryp_obj_close((unsigned long)object);
235b0104773SPascal Brand 	if (res != TEE_SUCCESS)
236b36311adSJerome Forissier 		TEE_Panic(res);
237b0104773SPascal Brand }
238b0104773SPascal Brand 
239b0104773SPascal Brand void TEE_ResetTransientObject(TEE_ObjectHandle object)
240b0104773SPascal Brand {
241b0104773SPascal Brand 	TEE_Result res;
242b0104773SPascal Brand 	TEE_ObjectInfo info;
243b0104773SPascal Brand 
244b0104773SPascal Brand 	if (object == TEE_HANDLE_NULL)
245b0104773SPascal Brand 		return;
246b0104773SPascal Brand 
247e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
248b0104773SPascal Brand 	if (res != TEE_SUCCESS)
249b36311adSJerome Forissier 		TEE_Panic(res);
250b0104773SPascal Brand 
251b0104773SPascal Brand 	if ((info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT) != 0)
252b0104773SPascal Brand 		TEE_Panic(0);
253b0104773SPascal Brand 
254e86f1266SJens Wiklander 	res = utee_cryp_obj_reset((unsigned long)object);
255b0104773SPascal Brand 	if (res != TEE_SUCCESS)
256b36311adSJerome Forissier 		TEE_Panic(res);
257b0104773SPascal Brand }
258b0104773SPascal Brand 
259b0104773SPascal Brand TEE_Result TEE_PopulateTransientObject(TEE_ObjectHandle object,
2608f07fe6fSJerome Forissier 				       const TEE_Attribute *attrs,
261b0104773SPascal Brand 				       uint32_t attrCount)
262b0104773SPascal Brand {
263b0104773SPascal Brand 	TEE_Result res;
264b0104773SPascal Brand 	TEE_ObjectInfo info;
265e86f1266SJens Wiklander 	struct utee_attribute ua[attrCount];
266b0104773SPascal Brand 
267e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
268b0104773SPascal Brand 	if (res != TEE_SUCCESS)
269b36311adSJerome Forissier 		TEE_Panic(res);
270b0104773SPascal Brand 
271b0104773SPascal Brand 	/* Must be a transient object */
272b0104773SPascal Brand 	if ((info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT) != 0)
273b0104773SPascal Brand 		TEE_Panic(0);
274b0104773SPascal Brand 
275b0104773SPascal Brand 	/* Must not be initialized already */
276b0104773SPascal Brand 	if ((info.handleFlags & TEE_HANDLE_FLAG_INITIALIZED) != 0)
277b0104773SPascal Brand 		TEE_Panic(0);
278b0104773SPascal Brand 
279e86f1266SJens Wiklander 	__utee_from_attr(ua, attrs, attrCount);
280e86f1266SJens Wiklander 	res = utee_cryp_obj_populate((unsigned long)object, ua, attrCount);
281b0104773SPascal Brand 	if (res != TEE_SUCCESS && res != TEE_ERROR_BAD_PARAMETERS)
282b0104773SPascal Brand 		TEE_Panic(res);
283b0104773SPascal Brand 	return res;
284b0104773SPascal Brand }
285b0104773SPascal Brand 
286b0104773SPascal Brand void TEE_InitRefAttribute(TEE_Attribute *attr, uint32_t attributeID,
2878f07fe6fSJerome Forissier 			  const void *buffer, uint32_t length)
288b0104773SPascal Brand {
289b0104773SPascal Brand 	if (attr == NULL)
290b0104773SPascal Brand 		TEE_Panic(0);
291b0104773SPascal Brand 	if ((attributeID & TEE_ATTR_BIT_VALUE) != 0)
292b0104773SPascal Brand 		TEE_Panic(0);
293b0104773SPascal Brand 	attr->attributeID = attributeID;
2948f07fe6fSJerome Forissier 	attr->content.ref.buffer = (void *)buffer;
295b0104773SPascal Brand 	attr->content.ref.length = length;
296b0104773SPascal Brand }
297b0104773SPascal Brand 
298b0104773SPascal Brand void TEE_InitValueAttribute(TEE_Attribute *attr, uint32_t attributeID,
299b0104773SPascal Brand 			    uint32_t a, uint32_t b)
300b0104773SPascal Brand {
301b0104773SPascal Brand 	if (attr == NULL)
302b0104773SPascal Brand 		TEE_Panic(0);
303b0104773SPascal Brand 	if ((attributeID & TEE_ATTR_BIT_VALUE) == 0)
304b0104773SPascal Brand 		TEE_Panic(0);
305b0104773SPascal Brand 	attr->attributeID = attributeID;
306b0104773SPascal Brand 	attr->content.value.a = a;
307b0104773SPascal Brand 	attr->content.value.b = b;
308b0104773SPascal Brand }
309b0104773SPascal Brand 
3107583c59eSCedric Chaumont /*
3117583c59eSCedric Chaumont  * Use of this function is deprecated
3127583c59eSCedric Chaumont  * new code SHOULD use the TEE_CopyObjectAttributes1 function instead
3137583c59eSCedric Chaumont  * These functions will be removed at some future major revision of
3147583c59eSCedric Chaumont  * this specification
3157583c59eSCedric Chaumont  */
316b0104773SPascal Brand void TEE_CopyObjectAttributes(TEE_ObjectHandle destObject,
317b0104773SPascal Brand 			      TEE_ObjectHandle srcObject)
318b0104773SPascal Brand {
319b0104773SPascal Brand 	TEE_Result res;
3207583c59eSCedric Chaumont 	TEE_ObjectInfo src_info;
3217583c59eSCedric Chaumont 
322e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)srcObject, &src_info);
3237583c59eSCedric Chaumont 	if (src_info.objectType == TEE_TYPE_CORRUPTED_OBJECT)
3247583c59eSCedric Chaumont 		return;
3257583c59eSCedric Chaumont 
3267583c59eSCedric Chaumont 	res = TEE_CopyObjectAttributes1(destObject, srcObject);
3277583c59eSCedric Chaumont 	if (res != TEE_SUCCESS)
328b36311adSJerome Forissier 		TEE_Panic(res);
3297583c59eSCedric Chaumont }
3307583c59eSCedric Chaumont 
3317583c59eSCedric Chaumont TEE_Result TEE_CopyObjectAttributes1(TEE_ObjectHandle destObject,
3327583c59eSCedric Chaumont 			      TEE_ObjectHandle srcObject)
3337583c59eSCedric Chaumont {
3347583c59eSCedric Chaumont 	TEE_Result res;
335b0104773SPascal Brand 	TEE_ObjectInfo dst_info;
336b0104773SPascal Brand 	TEE_ObjectInfo src_info;
337b0104773SPascal Brand 
338e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)destObject, &dst_info);
339b0104773SPascal Brand 	if (res != TEE_SUCCESS)
340a2e9a830SCedric Chaumont 		goto exit;
341b0104773SPascal Brand 
342e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)srcObject, &src_info);
343b0104773SPascal Brand 	if (res != TEE_SUCCESS)
344a2e9a830SCedric Chaumont 		goto exit;
345b0104773SPascal Brand 
346a2e9a830SCedric Chaumont 	if (!(src_info.handleFlags & TEE_HANDLE_FLAG_INITIALIZED))
347b0104773SPascal Brand 		TEE_Panic(0);
348a2e9a830SCedric Chaumont 
349a2e9a830SCedric Chaumont 	if ((dst_info.handleFlags & TEE_HANDLE_FLAG_PERSISTENT))
350b0104773SPascal Brand 		TEE_Panic(0);
351a2e9a830SCedric Chaumont 
352a2e9a830SCedric Chaumont 	if ((dst_info.handleFlags & TEE_HANDLE_FLAG_INITIALIZED))
353b0104773SPascal Brand 		TEE_Panic(0);
354b0104773SPascal Brand 
355e86f1266SJens Wiklander 	res = utee_cryp_obj_copy((unsigned long)destObject,
356e86f1266SJens Wiklander 				 (unsigned long)srcObject);
3577583c59eSCedric Chaumont 
358a2e9a830SCedric Chaumont exit:
359a2e9a830SCedric Chaumont 	if (res != TEE_SUCCESS &&
360a2e9a830SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
361a2e9a830SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
362a2e9a830SCedric Chaumont 		TEE_Panic(res);
3637583c59eSCedric Chaumont 
3647583c59eSCedric Chaumont 	return res;
365b0104773SPascal Brand }
366b0104773SPascal Brand 
367b0104773SPascal Brand TEE_Result TEE_GenerateKey(TEE_ObjectHandle object, uint32_t keySize,
3688f07fe6fSJerome Forissier 			   const TEE_Attribute *params, uint32_t paramCount)
369b0104773SPascal Brand {
370b0104773SPascal Brand 	TEE_Result res;
371e86f1266SJens Wiklander 	struct utee_attribute ua[paramCount];
372b0104773SPascal Brand 
373e86f1266SJens Wiklander 	__utee_from_attr(ua, params, paramCount);
374e86f1266SJens Wiklander 	res = utee_cryp_obj_generate_key((unsigned long)object, keySize,
375e86f1266SJens Wiklander 					 ua, paramCount);
376b0104773SPascal Brand 
377aeb0d927SCedric Chaumont 	if (res != TEE_SUCCESS && res != TEE_ERROR_BAD_PARAMETERS)
378b36311adSJerome Forissier 		TEE_Panic(res);
379b0104773SPascal Brand 
380b0104773SPascal Brand 	return res;
381b0104773SPascal Brand }
382b0104773SPascal Brand 
383b0104773SPascal Brand /* Data and Key Storage API  - Persistent Object Functions */
384b0104773SPascal Brand 
3858f07fe6fSJerome Forissier TEE_Result TEE_OpenPersistentObject(uint32_t storageID, const void *objectID,
38679a3c601SCedric Chaumont 				    uint32_t objectIDLen, uint32_t flags,
387b0104773SPascal Brand 				    TEE_ObjectHandle *object)
388b0104773SPascal Brand {
3899b520646SCedric Chaumont 	TEE_Result res;
390e86f1266SJens Wiklander 	uint32_t obj;
391b0104773SPascal Brand 
3929b520646SCedric Chaumont 	if (!objectID) {
3939b520646SCedric Chaumont 		res = TEE_ERROR_ITEM_NOT_FOUND;
394*172d637bSCedric Auger 		goto exit;
3959b520646SCedric Chaumont 	}
3969b520646SCedric Chaumont 
3979b520646SCedric Chaumont 	if (objectIDLen > TEE_OBJECT_ID_MAX_LEN) {
3989b520646SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
399*172d637bSCedric Auger 		goto exit;
4009b520646SCedric Chaumont 	}
4019b520646SCedric Chaumont 
4029b520646SCedric Chaumont 	res = utee_storage_obj_open(storageID, objectID, objectIDLen, flags,
403e86f1266SJens Wiklander 				     &obj);
404e86f1266SJens Wiklander 	if (res == TEE_SUCCESS)
405e86f1266SJens Wiklander 		*object = (TEE_ObjectHandle)(uintptr_t)obj;
4069b520646SCedric Chaumont 
407*172d637bSCedric Auger exit:
4089b520646SCedric Chaumont 	if (res != TEE_SUCCESS &&
4099b520646SCedric Chaumont 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
4109b520646SCedric Chaumont 	    res != TEE_ERROR_ACCESS_CONFLICT &&
4119b520646SCedric Chaumont 	    res != TEE_ERROR_OUT_OF_MEMORY &&
4129b520646SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
4139b520646SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
414b36311adSJerome Forissier 		TEE_Panic(res);
415b0104773SPascal Brand 
416*172d637bSCedric Auger 	if (res != TEE_SUCCESS)
41769a3d6beSDaniel Glöckner 		*object = TEE_HANDLE_NULL;
41869a3d6beSDaniel Glöckner 
4199b520646SCedric Chaumont 	return res;
420b0104773SPascal Brand }
421b0104773SPascal Brand 
4228f07fe6fSJerome Forissier TEE_Result TEE_CreatePersistentObject(uint32_t storageID, const void *objectID,
42379a3c601SCedric Chaumont 				      uint32_t objectIDLen, uint32_t flags,
424b0104773SPascal Brand 				      TEE_ObjectHandle attributes,
425b0104773SPascal Brand 				      const void *initialData,
42679a3c601SCedric Chaumont 				      uint32_t initialDataLen,
427b0104773SPascal Brand 				      TEE_ObjectHandle *object)
428b0104773SPascal Brand {
42984431ae3SCedric Chaumont 	TEE_Result res;
430e86f1266SJens Wiklander 	uint32_t obj;
431b0104773SPascal Brand 
432aeb0d927SCedric Chaumont 	if (!objectID) {
43384431ae3SCedric Chaumont 		res = TEE_ERROR_ITEM_NOT_FOUND;
434*172d637bSCedric Auger 		goto exit;
43584431ae3SCedric Chaumont 	}
436b0104773SPascal Brand 
43784431ae3SCedric Chaumont 	if (objectIDLen > TEE_OBJECT_ID_MAX_LEN) {
43884431ae3SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
439*172d637bSCedric Auger 		goto exit;
44084431ae3SCedric Chaumont 	}
441b0104773SPascal Brand 
44284431ae3SCedric Chaumont 	res = utee_storage_obj_create(storageID, objectID, objectIDLen, flags,
443e86f1266SJens Wiklander 				      (unsigned long)attributes, initialData,
444e86f1266SJens Wiklander 				      initialDataLen, &obj);
445*172d637bSCedric Auger 
4461c96fa7fSPascal Brand 	if (res == TEE_SUCCESS)
447*172d637bSCedric Auger 		*object = (TEE_ObjectHandle)(uintptr_t)obj;
448*172d637bSCedric Auger 
449*172d637bSCedric Auger exit:
450*172d637bSCedric Auger 	if (res != TEE_SUCCESS &&
451*172d637bSCedric Auger 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
452*172d637bSCedric Auger 	    res != TEE_ERROR_ACCESS_CONFLICT &&
453*172d637bSCedric Auger 	    res != TEE_ERROR_OUT_OF_MEMORY &&
454*172d637bSCedric Auger 	    res != TEE_ERROR_STORAGE_NO_SPACE &&
455*172d637bSCedric Auger 	    res != TEE_ERROR_CORRUPT_OBJECT &&
456*172d637bSCedric Auger 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
457b36311adSJerome Forissier 		TEE_Panic(res);
458*172d637bSCedric Auger 
459*172d637bSCedric Auger 	if (res != TEE_SUCCESS)
460*172d637bSCedric Auger 		*object = TEE_HANDLE_NULL;
461*172d637bSCedric Auger 
462*172d637bSCedric Auger 	return res;
463b0104773SPascal Brand }
464b0104773SPascal Brand 
4657583c59eSCedric Chaumont /*
4667583c59eSCedric Chaumont  * Use of this function is deprecated
4677583c59eSCedric Chaumont  * new code SHOULD use the TEE_CloseAndDeletePersistentObject1 function instead
4687583c59eSCedric Chaumont  * These functions will be removed at some future major revision of
4697583c59eSCedric Chaumont  * this specification
4707583c59eSCedric Chaumont  */
471b0104773SPascal Brand void TEE_CloseAndDeletePersistentObject(TEE_ObjectHandle object)
472b0104773SPascal Brand {
473b0104773SPascal Brand 	TEE_Result res;
474b0104773SPascal Brand 
475b0104773SPascal Brand 	if (object == TEE_HANDLE_NULL)
476b0104773SPascal Brand 		return;
477b0104773SPascal Brand 
4787583c59eSCedric Chaumont 	res = TEE_CloseAndDeletePersistentObject1(object);
479b0104773SPascal Brand 
480b0104773SPascal Brand 	if (res != TEE_SUCCESS)
481b0104773SPascal Brand 		TEE_Panic(0);
482b0104773SPascal Brand }
483b0104773SPascal Brand 
4847583c59eSCedric Chaumont TEE_Result TEE_CloseAndDeletePersistentObject1(TEE_ObjectHandle object)
4857583c59eSCedric Chaumont {
4867583c59eSCedric Chaumont 	TEE_Result res;
4877583c59eSCedric Chaumont 
4887583c59eSCedric Chaumont 	if (object == TEE_HANDLE_NULL)
4897583c59eSCedric Chaumont 		return TEE_ERROR_STORAGE_NOT_AVAILABLE;
4907583c59eSCedric Chaumont 
491e86f1266SJens Wiklander 	res = utee_storage_obj_del((unsigned long)object);
4927583c59eSCedric Chaumont 
4937583c59eSCedric Chaumont 	if (res != TEE_SUCCESS && res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
494b36311adSJerome Forissier 		TEE_Panic(res);
4957583c59eSCedric Chaumont 
4967583c59eSCedric Chaumont 	return res;
4977583c59eSCedric Chaumont }
4987583c59eSCedric Chaumont 
4997583c59eSCedric Chaumont 
500b0104773SPascal Brand TEE_Result TEE_RenamePersistentObject(TEE_ObjectHandle object,
501b0104773SPascal Brand 				      const void *newObjectID,
50279a3c601SCedric Chaumont 				      uint32_t newObjectIDLen)
503b0104773SPascal Brand {
504b0104773SPascal Brand 	TEE_Result res;
505b0104773SPascal Brand 
506a76bf53fSCedric Chaumont 	if (object == TEE_HANDLE_NULL) {
507a76bf53fSCedric Chaumont 		res = TEE_ERROR_ITEM_NOT_FOUND;
508a76bf53fSCedric Chaumont 		goto out;
509a76bf53fSCedric Chaumont 	}
510b0104773SPascal Brand 
511a76bf53fSCedric Chaumont 	if (!newObjectID) {
512a76bf53fSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
513a76bf53fSCedric Chaumont 		goto out;
514a76bf53fSCedric Chaumont 	}
515b0104773SPascal Brand 
516a76bf53fSCedric Chaumont 	if (newObjectIDLen > TEE_OBJECT_ID_MAX_LEN) {
517a76bf53fSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
518a76bf53fSCedric Chaumont 		goto out;
519a76bf53fSCedric Chaumont 	}
520b0104773SPascal Brand 
521e86f1266SJens Wiklander 	res = utee_storage_obj_rename((unsigned long)object, newObjectID,
522e86f1266SJens Wiklander 				      newObjectIDLen);
523b0104773SPascal Brand 
524a76bf53fSCedric Chaumont out:
525a76bf53fSCedric Chaumont 	if (res != TEE_SUCCESS &&
526a76bf53fSCedric Chaumont 	    res != TEE_ERROR_ACCESS_CONFLICT &&
527a76bf53fSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
528a76bf53fSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
529b36311adSJerome Forissier 		TEE_Panic(res);
530b0104773SPascal Brand 
531b0104773SPascal Brand 	return res;
532b0104773SPascal Brand }
533b0104773SPascal Brand 
534b0104773SPascal Brand TEE_Result TEE_AllocatePersistentObjectEnumerator(TEE_ObjectEnumHandle *
535b0104773SPascal Brand 						  objectEnumerator)
536b0104773SPascal Brand {
537b0104773SPascal Brand 	TEE_Result res;
538e86f1266SJens Wiklander 	uint32_t oe;
539b0104773SPascal Brand 
54015cd3c30SCedric Chaumont 	if (!objectEnumerator)
541b0104773SPascal Brand 		return TEE_ERROR_BAD_PARAMETERS;
542b0104773SPascal Brand 
543e86f1266SJens Wiklander 	res = utee_storage_alloc_enum(&oe);
544b0104773SPascal Brand 
545b0104773SPascal Brand 	if (res != TEE_SUCCESS)
546e86f1266SJens Wiklander 		oe = TEE_HANDLE_NULL;
547e86f1266SJens Wiklander 
548e86f1266SJens Wiklander 	*objectEnumerator = (TEE_ObjectEnumHandle)(uintptr_t)oe;
549b0104773SPascal Brand 
55015cd3c30SCedric Chaumont 	if (res != TEE_SUCCESS &&
55115cd3c30SCedric Chaumont 	    res != TEE_ERROR_ACCESS_CONFLICT)
552b36311adSJerome Forissier 		TEE_Panic(res);
55315cd3c30SCedric Chaumont 
554b0104773SPascal Brand 	return res;
555b0104773SPascal Brand }
556b0104773SPascal Brand 
557b0104773SPascal Brand void TEE_FreePersistentObjectEnumerator(TEE_ObjectEnumHandle objectEnumerator)
558b0104773SPascal Brand {
559b0104773SPascal Brand 	TEE_Result res;
560b0104773SPascal Brand 
561b0104773SPascal Brand 	if (objectEnumerator == TEE_HANDLE_NULL)
562b0104773SPascal Brand 		return;
563b0104773SPascal Brand 
564e86f1266SJens Wiklander 	res = utee_storage_free_enum((unsigned long)objectEnumerator);
565b0104773SPascal Brand 
566b0104773SPascal Brand 	if (res != TEE_SUCCESS)
567b36311adSJerome Forissier 		TEE_Panic(res);
568b0104773SPascal Brand }
569b0104773SPascal Brand 
570b0104773SPascal Brand void TEE_ResetPersistentObjectEnumerator(TEE_ObjectEnumHandle objectEnumerator)
571b0104773SPascal Brand {
572b0104773SPascal Brand 	TEE_Result res;
573b0104773SPascal Brand 
574b0104773SPascal Brand 	if (objectEnumerator == TEE_HANDLE_NULL)
575b0104773SPascal Brand 		return;
576b0104773SPascal Brand 
577e86f1266SJens Wiklander 	res = utee_storage_reset_enum((unsigned long)objectEnumerator);
578b0104773SPascal Brand 
579b0104773SPascal Brand 	if (res != TEE_SUCCESS)
580b36311adSJerome Forissier 		TEE_Panic(res);
581b0104773SPascal Brand }
582b0104773SPascal Brand 
583b0104773SPascal Brand TEE_Result TEE_StartPersistentObjectEnumerator(TEE_ObjectEnumHandle
584b0104773SPascal Brand 					       objectEnumerator,
585b0104773SPascal Brand 					       uint32_t storageID)
586b0104773SPascal Brand {
587b0104773SPascal Brand 	TEE_Result res;
588b0104773SPascal Brand 
589e86f1266SJens Wiklander 	res = utee_storage_start_enum((unsigned long)objectEnumerator,
590e86f1266SJens Wiklander 				      storageID);
591b0104773SPascal Brand 
59215cd3c30SCedric Chaumont 	if (res != TEE_SUCCESS &&
59315cd3c30SCedric Chaumont 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
59415cd3c30SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
59515cd3c30SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
596b36311adSJerome Forissier 		TEE_Panic(res);
597b0104773SPascal Brand 
598b0104773SPascal Brand 	return res;
599b0104773SPascal Brand }
600b0104773SPascal Brand 
601b0104773SPascal Brand TEE_Result TEE_GetNextPersistentObject(TEE_ObjectEnumHandle objectEnumerator,
602b0104773SPascal Brand 				       TEE_ObjectInfo *objectInfo,
60379a3c601SCedric Chaumont 				       void *objectID, uint32_t *objectIDLen)
604b0104773SPascal Brand {
605b0104773SPascal Brand 	TEE_Result res;
606e86f1266SJens Wiklander 	uint64_t len;
6072342799fSPascal Brand 	TEE_ObjectInfo local_info;
6082342799fSPascal Brand 	TEE_ObjectInfo *pt_info;
609b0104773SPascal Brand 
61015cd3c30SCedric Chaumont 	if (!objectID) {
61115cd3c30SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
61215cd3c30SCedric Chaumont 		goto out;
61315cd3c30SCedric Chaumont 	}
61415cd3c30SCedric Chaumont 
61515cd3c30SCedric Chaumont 	if (!objectIDLen) {
61615cd3c30SCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
61715cd3c30SCedric Chaumont 		goto out;
61815cd3c30SCedric Chaumont 	}
61915cd3c30SCedric Chaumont 
6202342799fSPascal Brand 	if (objectInfo)
6212342799fSPascal Brand 		pt_info = objectInfo;
6222342799fSPascal Brand 	else
6232342799fSPascal Brand 		pt_info = &local_info;
624e86f1266SJens Wiklander 	len = *objectIDLen;
625e86f1266SJens Wiklander 	res = utee_storage_next_enum((unsigned long)objectEnumerator,
6262342799fSPascal Brand 				     pt_info, objectID, &len);
627e86f1266SJens Wiklander 	*objectIDLen = len;
628b0104773SPascal Brand 
62915cd3c30SCedric Chaumont out:
63015cd3c30SCedric Chaumont 	if (res != TEE_SUCCESS &&
63115cd3c30SCedric Chaumont 	    res != TEE_ERROR_ITEM_NOT_FOUND &&
63215cd3c30SCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
63315cd3c30SCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
634b36311adSJerome Forissier 		TEE_Panic(res);
635b0104773SPascal Brand 
636b0104773SPascal Brand 	return res;
637b0104773SPascal Brand }
638b0104773SPascal Brand 
639b0104773SPascal Brand /* Data and Key Storage API  - Data Stream Access Functions */
640b0104773SPascal Brand 
641b0104773SPascal Brand TEE_Result TEE_ReadObjectData(TEE_ObjectHandle object, void *buffer,
64279a3c601SCedric Chaumont 			      uint32_t size, uint32_t *count)
643b0104773SPascal Brand {
644b0104773SPascal Brand 	TEE_Result res;
645e86f1266SJens Wiklander 	uint64_t cnt64;
646b0104773SPascal Brand 
647ae1289baSCedric Chaumont 	if (object == TEE_HANDLE_NULL) {
648ae1289baSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
649ae1289baSCedric Chaumont 		goto out;
650ae1289baSCedric Chaumont 	}
651b0104773SPascal Brand 
652e86f1266SJens Wiklander 	cnt64 = *count;
653e86f1266SJens Wiklander 	res = utee_storage_obj_read((unsigned long)object, buffer, size,
654e86f1266SJens Wiklander 				    &cnt64);
655e86f1266SJens Wiklander 	*count = cnt64;
656b0104773SPascal Brand 
657ae1289baSCedric Chaumont out:
658ae1289baSCedric Chaumont 	if (res != TEE_SUCCESS &&
659ae1289baSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
660ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
661b36311adSJerome Forissier 		TEE_Panic(res);
662b0104773SPascal Brand 
663b0104773SPascal Brand 	return res;
664b0104773SPascal Brand }
665b0104773SPascal Brand 
6668f07fe6fSJerome Forissier TEE_Result TEE_WriteObjectData(TEE_ObjectHandle object, const void *buffer,
66779a3c601SCedric Chaumont 			       uint32_t size)
668b0104773SPascal Brand {
669b0104773SPascal Brand 	TEE_Result res;
670b0104773SPascal Brand 
671ae1289baSCedric Chaumont 	if (object == TEE_HANDLE_NULL) {
672ae1289baSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
673ae1289baSCedric Chaumont 		goto out;
674ae1289baSCedric Chaumont 	}
675ae1289baSCedric Chaumont 
676ae1289baSCedric Chaumont 	if (size > TEE_DATA_MAX_POSITION) {
677ae1289baSCedric Chaumont 		res = TEE_ERROR_OVERFLOW;
678ae1289baSCedric Chaumont 		goto out;
679ae1289baSCedric Chaumont 	}
680b0104773SPascal Brand 
681e86f1266SJens Wiklander 	res = utee_storage_obj_write((unsigned long)object, buffer, size);
682b0104773SPascal Brand 
683ae1289baSCedric Chaumont out:
684ae1289baSCedric Chaumont 	if (res != TEE_SUCCESS &&
685ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NO_SPACE &&
686ae1289baSCedric Chaumont 	    res != TEE_ERROR_OVERFLOW &&
687ae1289baSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
688ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
689b36311adSJerome Forissier 		TEE_Panic(res);
690b0104773SPascal Brand 
691b0104773SPascal Brand 	return res;
692b0104773SPascal Brand }
693b0104773SPascal Brand 
694b0104773SPascal Brand TEE_Result TEE_TruncateObjectData(TEE_ObjectHandle object, uint32_t size)
695b0104773SPascal Brand {
696b0104773SPascal Brand 	TEE_Result res;
697b0104773SPascal Brand 
698ae1289baSCedric Chaumont 	if (object == TEE_HANDLE_NULL) {
699ae1289baSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
700ae1289baSCedric Chaumont 		goto out;
701ae1289baSCedric Chaumont 	}
702b0104773SPascal Brand 
703e86f1266SJens Wiklander 	res = utee_storage_obj_trunc((unsigned long)object, size);
704b0104773SPascal Brand 
705ae1289baSCedric Chaumont out:
706ae1289baSCedric Chaumont 	if (res != TEE_SUCCESS &&
707ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NO_SPACE &&
708ae1289baSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
709ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
710b36311adSJerome Forissier 		TEE_Panic(res);
711b0104773SPascal Brand 
712b0104773SPascal Brand 	return res;
713b0104773SPascal Brand }
714b0104773SPascal Brand 
715b0104773SPascal Brand TEE_Result TEE_SeekObjectData(TEE_ObjectHandle object, int32_t offset,
716b0104773SPascal Brand 			      TEE_Whence whence)
717b0104773SPascal Brand {
718b0104773SPascal Brand 	TEE_Result res;
719b0104773SPascal Brand 	TEE_ObjectInfo info;
720b0104773SPascal Brand 
721ae1289baSCedric Chaumont 	if (object == TEE_HANDLE_NULL) {
722ae1289baSCedric Chaumont 		res = TEE_ERROR_BAD_PARAMETERS;
723ae1289baSCedric Chaumont 		goto out;
724ae1289baSCedric Chaumont 	}
725b0104773SPascal Brand 
726e86f1266SJens Wiklander 	res = utee_cryp_obj_get_info((unsigned long)object, &info);
727b0104773SPascal Brand 	if (res != TEE_SUCCESS)
728ae1289baSCedric Chaumont 		goto out;
729b0104773SPascal Brand 
730b0104773SPascal Brand 	switch (whence) {
731b0104773SPascal Brand 	case TEE_DATA_SEEK_SET:
732ae1289baSCedric Chaumont 		if (offset > 0 && (uint32_t)offset > TEE_DATA_MAX_POSITION) {
733ae1289baSCedric Chaumont 			res = TEE_ERROR_OVERFLOW;
734ae1289baSCedric Chaumont 			goto out;
735ae1289baSCedric Chaumont 		}
736b0104773SPascal Brand 		break;
737b0104773SPascal Brand 	case TEE_DATA_SEEK_CUR:
738b0104773SPascal Brand 		if (offset > 0 &&
739b0104773SPascal Brand 		    ((uint32_t)offset + info.dataPosition >
740b0104773SPascal Brand 		     TEE_DATA_MAX_POSITION ||
741b0104773SPascal Brand 		     (uint32_t)offset + info.dataPosition <
742ae1289baSCedric Chaumont 		     info.dataPosition)) {
743ae1289baSCedric Chaumont 			res = TEE_ERROR_OVERFLOW;
744ae1289baSCedric Chaumont 			goto out;
745ae1289baSCedric Chaumont 		}
746b0104773SPascal Brand 		break;
747b0104773SPascal Brand 	case TEE_DATA_SEEK_END:
748b0104773SPascal Brand 		if (offset > 0 &&
749b0104773SPascal Brand 		    ((uint32_t)offset + info.dataSize > TEE_DATA_MAX_POSITION ||
750ae1289baSCedric Chaumont 		     (uint32_t)offset + info.dataSize < info.dataSize)) {
751ae1289baSCedric Chaumont 			res = TEE_ERROR_OVERFLOW;
752ae1289baSCedric Chaumont 			goto out;
753ae1289baSCedric Chaumont 		}
754b0104773SPascal Brand 		break;
755b0104773SPascal Brand 	default:
756ae1289baSCedric Chaumont 		res = TEE_ERROR_ITEM_NOT_FOUND;
757ae1289baSCedric Chaumont 		goto out;
758b0104773SPascal Brand 	}
759b0104773SPascal Brand 
760e86f1266SJens Wiklander 	res = utee_storage_obj_seek((unsigned long)object, offset, whence);
761b0104773SPascal Brand 
762ae1289baSCedric Chaumont out:
763ae1289baSCedric Chaumont 	if (res != TEE_SUCCESS &&
764ae1289baSCedric Chaumont 	    res != TEE_ERROR_OVERFLOW &&
765ae1289baSCedric Chaumont 	    res != TEE_ERROR_CORRUPT_OBJECT &&
766ae1289baSCedric Chaumont 	    res != TEE_ERROR_STORAGE_NOT_AVAILABLE)
767b36311adSJerome Forissier 		TEE_Panic(res);
768b0104773SPascal Brand 
769b0104773SPascal Brand 	return res;
770b0104773SPascal Brand }
771