!46 [sync] PR-44: support register shared memory

From: @openeuler-sync-bot 
Reviewed-by: @houmingyong 
Signed-off-by: @houmingyong
This commit is contained in:
openeuler-ci-bot 2024-09-20 01:41:09 +00:00 committed by Gitee
commit 58e888fd4b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 50 additions and 1 deletions

View File

@ -0,0 +1,45 @@
From 42d3f421491f609ba369ffca685b384fd880229a Mon Sep 17 00:00:00 2001
From: zhengxiaoxiao <zhengxiaoxiao2@huawei.com>
Date: Tue, 13 Aug 2024 20:19:02 +0800
Subject: [PATCH] support register shared memory
---
include/CA/tee_client_constants.h | 2 ++
include/TA/tee_defines.h | 1 +
2 files changed, 3 insertions(+)
diff --git a/include/CA/tee_client_constants.h b/include/CA/tee_client_constants.h
index 896222d..2af3e75 100644
--- a/include/CA/tee_client_constants.h
+++ b/include/CA/tee_client_constants.h
@@ -75,6 +75,7 @@ enum TEEC_SharedMemCtl {
TEEC_MEM_OUTPUT = 0x2, /* output type of memory */
TEEC_MEM_INOUT = 0x3, /* memory is used as both input and output */
TEEC_MEM_SHARED_INOUT = 0x4, /* no copy shared memory */
+ TEEC_MEM_REGISTER_INOUT = 0x5, /* register shared memory */
};
enum TEEC_ParamType {
@@ -89,6 +90,7 @@ enum TEEC_ParamType {
TEEC_ION_INPUT = 0x08, /* input type of icon memory reference, refer TEEC_IonReference */
TEEC_ION_SGLIST_INPUT = 0x09, /* input type of ion memory block reference, refer TEEC_IonSglistReference */
TEEC_MEMREF_SHARED_INOUT = 0x0a, /* no copy mem */
+ TEEC_MEMREF_REGISTER_INOUT = 0x0b, /* register shared memory */
TEEC_MEMREF_WHOLE = 0xc, /* use whole memory block, refer TEEC_RegisteredMemoryReference */
TEEC_MEMREF_PARTIAL_INPUT = 0xd, /* input type of memory reference, refer TEEC_RegisteredMemoryReference */
TEEC_MEMREF_PARTIAL_OUTPUT = 0xe, /* output type of memory reference, refer TEEC_RegisteredMemoryReference */
diff --git a/include/TA/tee_defines.h b/include/TA/tee_defines.h
index 6b24ff2..d6cdc42 100755
--- a/include/TA/tee_defines.h
+++ b/include/TA/tee_defines.h
@@ -78,6 +78,7 @@ enum TEE_ParamType {
TEE_PARAM_TYPE_ION_INPUT = 0x8,
TEE_PARAM_TYPE_ION_SGLIST_INPUT = 0x9,
TEE_PARAM_TYPE_MEMREF_SHARED_INOUT = 0xa,
+ TEE_PARAM_TYPE_MEMREF_REGISTER_INOUT = 0xb,
TEE_PARAM_TYPE_RESMEM_INPUT = 0xc,
TEE_PARAM_TYPE_RESMEM_OUTPUT = 0xd,
TEE_PARAM_TYPE_RESMEM_INOUT = 0xe,
--
2.27.0

View File

@ -1,6 +1,6 @@
Name: itrustee_sdk Name: itrustee_sdk
Version: 0.1.0 Version: 0.1.0
Release: 12 Release: 13
Summary: Confidential computing framework for developing TA on itrustee OS Summary: Confidential computing framework for developing TA on itrustee OS
ExclusiveArch: aarch64 ExclusiveArch: aarch64
@ -13,6 +13,7 @@ Patch1: 0002-add-ftrapv-strip-and-FS-as-the-compiling-flags.patch
Patch2: 0003-no-copy-shared-memory.patch Patch2: 0003-no-copy-shared-memory.patch
Patch3: 0004-support-part-openssl-headers.patch Patch3: 0004-support-part-openssl-headers.patch
Patch4: 0005-support-remote-attestation.patch Patch4: 0005-support-remote-attestation.patch
Patch5: 0006-support-register-shared-memory.patch
Provides: libteec_adaptor.so()(64bit) Provides: libteec_adaptor.so()(64bit)
%define debug_package %{nil} %define debug_package %{nil}
@ -56,6 +57,9 @@ strip %{buildroot}/lib64/*.so
/lib64/libteec_adaptor.so /lib64/libteec_adaptor.so
%changelog %changelog
* Tue Aug 13 2024 zhengxiaoxiao<zhengxiaoxiao2@huawei.com> - 0.1.0-13
- DESC: support register shared memory
* Thu Apr 27 2023 houmingyong<houmingyong@huawei.com> - 0.1.0-12 * Thu Apr 27 2023 houmingyong<houmingyong@huawei.com> - 0.1.0-12
- DESC: support remote attestation - DESC: support remote attestation