-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove SQL-FS #86
Remove SQL-FS #86
Conversation
* .cmd == OPTEE_MSG_RPC_CMD_SQL_FS and first parameter has the attribute | ||
* OPTEE_MSG_ATTR_TYPE_VALUE_INPUT. | ||
* Define protocol for messages with .cmd == OPTEE_MSG_RPC_CMD_FS and first | ||
* parameter has the attribute OPTEE_MSG_ATTR_TYPE_VALUE_INPUT. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OPTEE_MSG_RPC_CMD_SQL_FS_RESERVED
as optee_os conterpart.
tee-supplicant/src/tee_fs.h
Outdated
@@ -69,8 +69,6 @@ struct tee_fs_rpc { | |||
#define TEE_FS_RMDIR 13 | |||
#define TEE_FS_ACCESS 14 | |||
#define TEE_FS_LINK 15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would also keep those. Not mess API.
I'm also in favor of keeping the values as "reserved". |
Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
3beaa28
to
403c9a1
Compare
Comments addressed, rebased, tag applied. |
Library ckteec will implement the PKCS#11 API using the PKCS11 trusted application executing in OP-TEE as backend token. Implement pkcs11.h header file that partially covers the PKCS#11 specification. Resources initially planned to be supported are defined. The header will need to be updated with remaining PKCS#11 definition when related support will be implemented. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Check patch issues: ERROR: need consistent spacing around '*' (ctx:WxV) OP-TEE#86: FILE: libckteec/include/pkcs11.h:29: +typedef CK_BYTE *CK_BYTE_PTR; ^ WARNING: Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary OP-TEE#48: FILE: libckteec/include/pkcs11.h:22: +typedef unsigned long int CK_ULONG; ERROR: "foo * bar" should be "foo *bar" OP-TEE#60: FILE: libckteec/include/pkcs11.h:34: +typedef void * CK_VOID_PTR; WARNING: do not add new typedefs #424: FILE: libckteec/include/pkcs11.h:398: +typedef struct CK_AES_CBC_ENCRYPT_DATA_PARAMS CK_AES_CBC_ENCRYPT_DATA_PARAMS; WARNING: space prohibited between function name and open parenthesis '(' #693: FILE: libckteec/include/pkcs11.h:667: +typedef CK_RV (* CK_NOTIFY)(CK_SESSION_HANDLE hSession, ERROR: space prohibited after that '*' (ctx:BxW) #693: FILE: libckteec/include/pkcs11.h:667: +typedef CK_RV (* CK_NOTIFY)(CK_SESSION_HANDLE hSession, WARNING: Missing a blank line after declarations #708: FILE: libckteec/include/pkcs11.h:682: + CK_VERSION version; + CK_RV (*C_Initialize)(CK_VOID_PTR pInitArgs); WARNING: space prohibited between function name and open parenthesis '(' #712: FILE: libckteec/include/pkcs11.h:686: + CK_RV (*C_GetSlotList)(CK_BBOOL tokenPresent,
Signed-off-by: Jens Wiklander jens.wiklander@linaro.org
Depends on OP-TEE/optee_os#1490