From 9184d1d44a6f9cf210bfbd0ecb12849b180d6531 Mon Sep 17 00:00:00 2001 From: zhengxiaoxiao Date: Tue, 13 Aug 2024 20:23:23 +0800 Subject: [PATCH] support register shared memory (cherry picked from commit 53940b138ad2b1284dbe3b103375de7f32c8a018) --- 0006-support-register-shared-memory.patch | 45 +++++++++++++++++++++++ itrustee_sdk.spec | 6 ++- 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 0006-support-register-shared-memory.patch diff --git a/0006-support-register-shared-memory.patch b/0006-support-register-shared-memory.patch new file mode 100644 index 0000000..96c2b69 --- /dev/null +++ b/0006-support-register-shared-memory.patch @@ -0,0 +1,45 @@ +From 42d3f421491f609ba369ffca685b384fd880229a Mon Sep 17 00:00:00 2001 +From: zhengxiaoxiao +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 + diff --git a/itrustee_sdk.spec b/itrustee_sdk.spec index 561caaf..4ceb0e1 100644 --- a/itrustee_sdk.spec +++ b/itrustee_sdk.spec @@ -1,6 +1,6 @@ Name: itrustee_sdk Version: 0.1.0 -Release: 12 +Release: 13 Summary: Confidential computing framework for developing TA on itrustee OS 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 Patch3: 0004-support-part-openssl-headers.patch Patch4: 0005-support-remote-attestation.patch +Patch5: 0006-support-register-shared-memory.patch Provides: libteec_adaptor.so()(64bit) %define debug_package %{nil} @@ -56,6 +57,9 @@ strip %{buildroot}/lib64/*.so /lib64/libteec_adaptor.so %changelog +* Tue Aug 13 2024 zhengxiaoxiao - 0.1.0-13 +- DESC: support register shared memory + * Thu Apr 27 2023 houmingyong - 0.1.0-12 - DESC: support remote attestation