* teek_ns_client.h
*
* define structures and IOCTLs.
*
* Copyright (c) 2012-2022 Huawei Technologies Co., Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef TEEK_NS_CLIENT_H
#define TEEK_NS_CLIENT_H
#include <linux/mutex.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/completion.h>
#include "tc_ns_client.h"
#include "tc_ns_log.h"
#define TC_NS_CLIENT_IOC_MAGIC 't'
#define TC_NS_CLIENT_DEV "tc_ns_client"
#define TC_PRIV_DEV "tc_private"
#define TC_NS_CVM_DEV "tc_ns_cvm"
#define TC_NS_CLIENT_DEV_NAME "/dev/tc_ns_client"
#define EXCEPTION_MEM_SIZE (8*1024)
#define TSP_REQUEST 0xB2000008
#define TSP_RESPONSE 0xB2000009
#define TSP_REE_SIQ 0xB200000A
#define TSP_CRASH 0xB200000B
#ifdef CONFIG_TEE_UPGRADE
#define TSP_REBOOT 0xB2000012
#define TSP_CPU_ON 0xB2000013
#define TSP_REBOOT_DONE 0xB2000015
#else
#define TSP_REBOOT 0xB200000E
#define TSP_CPU_ON 0xB200000F
#define TSP_REBOOT_DONE 0xB2000010
#endif
#define TSP_PREEMPTED 0xB2000005
#define TC_CALL_GLOBAL 0x01
#define TC_CALL_SYNC 0x02
#define TC_CALL_LOGIN 0x04
#define TEE_REQ_FROM_USER_MODE 0U
#define TEE_REQ_FROM_KERNEL_MODE 1U
#define TEE_PARAM_NUM 4
#define VMALLOC_TYPE 0
#define RESERVED_TYPE 1
#define MAX_PACKAGE_NAME_LEN 255
* modulus_size(4 bytes) + modulus buffer(512 bytes)
* + exponent size(4 bytes) + exponent buffer(1 bytes)
*/
#define MAX_PUBKEY_LEN 1024
struct tc_ns_dev_list {
struct mutex dev_lock;
struct list_head dev_file_list;
};
struct tc_uuid {
uint32_t time_low;
uint16_t time_mid;
uint16_t timehi_and_version;
uint8_t clockseq_and_node[8];
};
#define INVALID_MAP_ADDR ((void*)-1)
struct tc_ns_shared_mem {
void *kernel_addr;
void *user_addr;
void *user_addr_ca;
unsigned int len;
int mem_type;
struct list_head head;
atomic_t usage;
atomic_t offset;
};
struct tc_ns_service {
unsigned char uuid[UUID_LEN];
struct mutex session_lock;
struct list_head session_list;
struct list_head head;
struct mutex operation_lock;
atomic_t usage;
unsigned int nsid;
unsigned int vmid;
};
#define SERVICES_MAX_COUNT 32
struct tc_ns_dev_file {
unsigned int dev_file_id;
struct mutex service_lock;
uint8_t service_ref[SERVICES_MAX_COUNT];
struct tc_ns_service *services[SERVICES_MAX_COUNT];
struct mutex shared_mem_lock;
struct list_head shared_mem_list;
struct list_head head;
uint8_t kernel_api;
* key or uid(for non android services/daemons)
* login information can only be set once, dont' allow subsequent calls
*/
bool login_setup;
struct mutex login_setup_lock;
#ifdef CONFIG_AUTH_HASH
bool cainfo_hash_setup;
struct mutex cainfo_hash_setup_lock;
#endif
uint32_t pkg_name_len;
uint8_t pkg_name[MAX_PACKAGE_NAME_LEN];
uint32_t pub_key_len;
uint8_t pub_key[MAX_PUBKEY_LEN];
int load_app_flag;
#ifdef CONFIG_CONFIDENTIAL_CONTAINER
uint32_t nsid;
uint32_t vmid;
#endif
struct completion close_comp;
#ifdef CONFIG_TEE_TELEPORT_SUPPORT
bool portal_enabled;
#endif
};
union tc_ns_parameter {
struct {
unsigned int buffer;
unsigned int size;
} memref;
struct {
unsigned int a;
unsigned int b;
} value;
};
struct tc_ns_login {
unsigned int method;
unsigned int mdata;
};
struct tc_ns_operation {
unsigned int paramtypes;
union tc_ns_parameter params[TEE_PARAM_NUM];
unsigned int buffer_h_addr[TEE_PARAM_NUM];
struct tc_ns_shared_mem *sharemem[TEE_PARAM_NUM];
void *mb_buffer[TEE_PARAM_NUM];
};
struct tc_ns_temp_buf {
void *temp_buffer;
unsigned int size;
};
enum smc_cmd_type {
CMD_TYPE_GLOBAL,
CMD_TYPE_TA,
CMD_TYPE_TA_AGENT,
CMD_TYPE_TA2TA_AGENT,
CMD_TYPE_BUILDIN_AGENT,
CMD_TYPE_RELEASE_AGENT,
};
struct tc_ns_smc_cmd {
uint8_t uuid[sizeof(struct tc_uuid)];
unsigned int cmd_type;
unsigned int cmd_id;
unsigned int dev_file_id;
unsigned int context_id;
unsigned int agent_id;
unsigned int operation_phys;
unsigned int operation_h_phys;
unsigned int login_method;
unsigned int login_data_phy;
unsigned int login_data_h_addr;
unsigned int login_data_len;
unsigned int err_origin;
int ret_val;
unsigned int event_nr;
unsigned int uid;
unsigned int ca_pid;
unsigned int pid;
unsigned int nsid;
unsigned int vmid;
unsigned int eventindex;
unsigned int res_int[3];
bool started;
char res_chr[3];
} __attribute__((__packed__));
* @brief
*/
struct tc_wait_data {
wait_queue_head_t send_cmd_wq;
int send_wait_flag;
};
#ifdef CONFIG_REGISTER_SHAREDMEM
struct tc_ns_register_sharedmem {
uint64_t buf;
uint32_t buf_size;
};
#endif
#define NUM_OF_SO 1
#ifdef CONFIG_CMS_CAHASH_AUTH
#define KIND_OF_SO 1
#else
#define KIND_OF_SO 2
#endif
struct tc_ns_session {
unsigned int session_id;
struct list_head head;
struct tc_wait_data wait_data;
struct mutex ta_session_lock;
struct tc_ns_dev_file *owner;
#ifdef CONFIG_REGISTER_SHAREDMEM
struct tc_ns_register_sharedmem register_sharedmem;
#endif
uint8_t auth_hash_buf[MAX_SHA_256_SZ * NUM_OF_SO + MAX_SHA_256_SZ];
atomic_t usage;
};
struct mb_cmd_pack {
struct tc_ns_operation operation;
unsigned char login_data[MAX_SHA_256_SZ * NUM_OF_SO + MAX_SHA_256_SZ];
};
struct load_img_params {
struct tc_ns_dev_file *dev_file;
const char *file_buffer;
unsigned int file_size;
struct mb_cmd_pack *mb_pack;
char *mb_load_mem;
struct tc_uuid *uuid_return;
unsigned int mb_load_size;
};
struct tc_call_params {
struct tc_ns_dev_file *dev;
struct tc_ns_client_context *context;
struct tc_ns_session *sess;
uint8_t flags;
};
struct tc_op_params {
struct mb_cmd_pack *mb_pack;
struct tc_ns_smc_cmd *smc_cmd;
struct tc_ns_temp_buf local_tmpbuf[TEE_PARAM_NUM];
uint32_t trans_paramtype[TEE_PARAM_NUM];
bool op_inited;
};
#if (defined CONFIG_EXPORT_BY_GPL) || (KERNEL_VERSION(6, 6, 0) <= LINUX_VERSION_CODE)
#define EXPORT_SYMBOL_TZ EXPORT_SYMBOL_GPL
#else
#define EXPORT_SYMBOL_TZ EXPORT_SYMBOL
#endif
#endif