123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- /*
- * Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include "enclave_creator_hw.h"
- #include "se_trace.h"
- #include "se_page_attr.h"
- #include "isgx_user.h"
- #include "sig_handler.h"
- #include "se_error_internal.h"
- #include "se_memcpy.h"
- #include "se_atomic.h"
- #include "se_detect.h"
- #include "cpuid.h"
- #include <assert.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <sys/ioctl.h>
- #include <errno.h>
- #include <sys/mman.h>
- #include <stdlib.h>
- EnclaveCreator* g_enclave_creator = new EnclaveCreatorHW();
- static uint64_t g_eid = 0x1;
- EnclaveCreatorHW::EnclaveCreatorHW():
- m_hdevice(-1),
- m_sig_registered(false)
- {
- se_mutex_init(&m_sig_mutex);
- }
- EnclaveCreatorHW::~EnclaveCreatorHW()
- {
- close_se_device();
- }
- int EnclaveCreatorHW::error_driver2urts(int driver_error)
- {
- int ret = SGX_ERROR_UNEXPECTED;
- switch(driver_error)
- {
- #if 0
- case SGX_ERROR:
- if(ENOMEM == errno)
- ret = SGX_ERROR_OUT_OF_MEMORY;
- else
- ret = SGX_ERROR_NO_DEVICE;
- break;
- #endif
- case SGX_INVALID_ATTRIBUTE:
- ret = SGX_ERROR_INVALID_ATTRIBUTE;
- break;
- case SGX_INVALID_MEASUREMENT:
- ret = SE_ERROR_INVALID_MEASUREMENT;
- break;
- case SGX_INVALID_SIG_STRUCT:
- case SGX_INVALID_SIGNATURE:
- ret = SGX_ERROR_INVALID_SIGNATURE;
- break;
- case SGX_INVALID_CPUSVN:
- ret = SGX_ERROR_INVALID_CPUSVN;
- break;
- case SGX_INVALID_ISVSVN:
- ret = SGX_ERROR_INVALID_ISVSVN;
- break;
- case SGX_UNMASKED_EVENT:
- ret = SGX_ERROR_DEVICE_BUSY;
- break;
- case (int)SGX_POWER_LOST_ENCLAVE: // [-Wc++11-narrowing]
- ret = SGX_ERROR_ENCLAVE_LOST;
- break;
- default:
- SE_TRACE(SE_TRACE_WARNING, "unexpected error %#x from driver, should be uRTS/driver bug\n", driver_error);
- ret = SGX_ERROR_UNEXPECTED;
- break;
- }
- return ret;
- }
- int EnclaveCreatorHW::create_enclave(secs_t *secs, sgx_enclave_id_t *enclave_id, void **start_addr, bool ae)
- {
- assert(secs != NULL && enclave_id != NULL && start_addr != NULL);
- UNUSED(ae);
- int ret = 0;
- if (false == open_se_device())
- return SGX_ERROR_NO_DEVICE;
- SE_TRACE(SE_TRACE_DEBUG, "\n secs.attibutes.flags = %llx, secs.attributes.xfrm = %llx \n"
- , secs->attributes.flags, secs->attributes.xfrm);
- //SECS:BASEADDR must be naturally aligned on an SECS.SIZE boundary
- void* enclave_base = mmap(NULL, (size_t)secs->size *2, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_SHARED, m_hdevice, 0);
- if(enclave_base == NULL)
- {
- SE_TRACE(SE_TRACE_WARNING, "\nISGX_IOCTL_ENCLAVE_CREATE fails: mmap fail\n");
- return SGX_ERROR_OUT_OF_MEMORY;
- }
- //find a suitable base for enclave
- uintptr_t base = (uintptr_t)enclave_base + ((size_t)secs->size - ((uintptr_t)enclave_base % (size_t)secs->size)) ;
- secs->base = (void*)base;
- //remove unneed page
- munmap(enclave_base, (size_t)(secs->base) - (size_t)(enclave_base));
- if(((uintptr_t)(enclave_base) + secs->size *2) != ((uintptr_t)secs->base + secs->size))
- {
- munmap((void*)((size_t)secs->base + secs->size), (size_t)(enclave_base) + (size_t)secs->size - (size_t)(secs->base));
- }
-
- struct sgx_enclave_create param = {0};
- param.src = (uintptr_t)(secs);
- ret = ioctl(m_hdevice, SGX_IOC_ENCLAVE_CREATE, ¶m);
- if(ret) {
- SE_TRACE(SE_TRACE_WARNING, "\nISGX_IOCTL_ENCLAVE_CREATE fails: errno = %x\n", errno);
- return error_driver2urts(ret);
- }
- *enclave_id = se_atomic_inc64(&g_eid);
- *start_addr = secs->base;
- return SGX_SUCCESS;
- }
- int EnclaveCreatorHW::add_enclave_page(sgx_enclave_id_t enclave_id, void *src, uint64_t rva, const sec_info_t &sinfo, uint32_t attr)
- {
- assert((rva & ((1<<SE_PAGE_SHIFT)-1)) == 0);
- void* source = src;
- uint8_t color_page[SE_PAGE_SIZE] = { 0 };
- if(NULL == source)
- {
- memset(color_page, 0, SE_PAGE_SIZE);
- source = reinterpret_cast<void*>(&color_page);
- }
- int ret = 0;
- struct sgx_enclave_add_page addp = { 0, 0, 0, 0 };
- addp.addr = (__u64)enclave_id + (__u64)rva;
- addp.src = reinterpret_cast<uintptr_t>(source);
- addp.secinfo = reinterpret_cast<uintptr_t>(const_cast<sec_info_t *>(&sinfo));
- if(((1<<DoEEXTEND) & attr))
- addp.mrmask |= 0xFFFF;
-
- ret = ioctl(m_hdevice, SGX_IOC_ENCLAVE_ADD_PAGE, &addp);
- if(ret) {
- SE_TRACE(SE_TRACE_WARNING, "\nAdd Page - %p to %p... FAIL\n", source, rva);
- return error_driver2urts(ret);
- }
-
- return SGX_SUCCESS;
- }
- int EnclaveCreatorHW::try_init_enclave(sgx_enclave_id_t enclave_id, enclave_css_t *enclave_css, token_t *launch)
- {
- int ret = 0;
- struct sgx_enclave_init initp = { 0, 0, 0 };
- initp.addr = (__u64)enclave_id;
- initp.sigstruct = reinterpret_cast<uintptr_t>(enclave_css);
- //launch should NOT be NULL, because it has been checked in urts_com.h::_create_enclave(...)
- assert(launch != NULL);
- initp.einittoken = reinterpret_cast<uintptr_t>(launch);
- ret = ioctl(m_hdevice, SGX_IOC_ENCLAVE_INIT, &initp);
- if (ret) {
- SE_TRACE(SE_TRACE_WARNING, "\nISGX_IOCTL_ENCLAVE_INIT fails error = %x\n", ret);
- return error_driver2urts(ret);
- }
- //register signal handler
- se_mutex_lock(&m_sig_mutex);
- if(false == m_sig_registered)
- {
- reg_sig_handler();
- m_sig_registered = true;
- }
- se_mutex_unlock(&m_sig_mutex);
- return SGX_SUCCESS;
- }
- //for linux hw mode, enclave_id is actually start address here
- int EnclaveCreatorHW::destroy_enclave(sgx_enclave_id_t enclave_id, uint64_t enclave_size)
- {
- int ret = 0;
- ret = munmap((void*)enclave_id, (size_t)enclave_size);
- if (0 != ret) {
- SE_TRACE(SE_TRACE_WARNING, "destroy SGX enclave failed, error = %d\n", errno);
- ret = SGX_ERROR_UNEXPECTED;
- }
- else
- {
- ret = SGX_SUCCESS;
- }
- return ret;
- }
- bool EnclaveCreatorHW::get_plat_cap(sgx_misc_attribute_t *misc_attr)
- {
- return get_plat_cap_by_cpuid(misc_attr);
- }
- bool EnclaveCreatorHW::open_se_device()
- {
- LockGuard lock(&m_dev_mutex);
- int fd = -1;
- if(-1 != m_hdevice)
- {
- return true;
- }
- fd = open("/dev/isgx", O_RDWR);
- if (-1 == fd) {
- SE_TRACE(SE_TRACE_WARNING, "open isgx device failed\n");
- return false;
- }
- m_hdevice = fd;
- return true;
- }
- void EnclaveCreatorHW::close_se_device()
- {
- LockGuard lock(&m_dev_mutex);
- if (m_hdevice != -1)
- {
- close(m_hdevice);
- m_hdevice = -1;
- }
- }
|