liberpal-skeleton.c 9.3 KB
Newer Older
1 2 3 4
// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
// Copyright(c) 2016-18 Intel Corporation.

#include <elf.h>
5
#include <errno.h>
6
#include <fcntl.h>
7
#include <stdbool.h>
8 9 10 11 12 13 14 15 16 17 18 19
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include "defines.h"
#include "sgx_call.h"
20

21
#define PAGE_SIZE  4096
22

23 24
#define SGX_REG_PAGE_FLAGS \
	(SGX_SECINFO_REG | SGX_SECINFO_R | SGX_SECINFO_W | SGX_SECINFO_X)
25

26 27 28
#define IMAGE		"encl.bin"
#define SIGSTRUCT	"encl.ss"
#define TOKEN		"encl.token"
29

30 31
static struct sgx_secs secs;
static bool initialized = false;
32 33
static char *sgx_dev_path;
static bool is_oot_driver;
34
static bool no_sgx_flc = false;
35 36 37 38 39
/*
 * For SGX in-tree driver, dev_fd cannot be closed until an enclave instance
 * intends to exit.
 */
static int enclave_fd = -1;
40 41 42 43 44 45 46 47

static bool is_sgx_device(const char *dev)
{
	struct stat st;
	int rc;

	rc = stat(dev, &st);
	if (!rc) {
48
		if ((st.st_mode & S_IFCHR) && (major(st.st_rdev) == 10))
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
			return true;
	}

	return false;
}

static void detect_driver_type(void)
{
	if (is_sgx_device("/dev/isgx")) {
		sgx_dev_path = "/dev/isgx";
		is_oot_driver = true;
		return;
	}

	sgx_dev_path = "/dev/sgx/enclave";
	is_oot_driver = false;
}
66

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
static uint64_t create_enclave_range(int dev_fd, uint64_t size)
{
	void *area;
	int fd;
	int flags = MAP_SHARED;

	if (is_oot_driver) {
		fd = dev_fd;
	} else {
		fd = -1;
		flags |= MAP_ANONYMOUS;
	}

	area = mmap(NULL, size * 2, PROT_NONE, flags, fd, 0);
	if (area == MAP_FAILED) {
		perror("mmap");
		return 0;
	}

	uint64_t base = ((uint64_t)area + size - 1) & ~(size - 1);
	munmap(area, base - (uint64_t)area);
	munmap((void *)(base + size), (uint64_t)area + size - base);

	if (is_oot_driver) {
		if (mprotect((void *)base, size, PROT_READ | PROT_WRITE | PROT_EXEC)) {
			perror("mprotect");
			munmap((void *)base, size);
			return 0;
		}
	}

	return base;
}

101 102
static bool encl_create(int dev_fd, unsigned long bin_size,
			struct sgx_secs *secs)
103
{
104 105 106 107 108 109 110
	struct sgx_enclave_create ioc;
	int rc;

	memset(secs, 0, sizeof(*secs));
	secs->ssa_frame_size = 1;
	secs->attributes = SGX_ATTR_MODE64BIT | SGX_ATTR_DEBUG;
	secs->xfrm = 7;
111

112 113 114
	for (secs->size = PAGE_SIZE; secs->size < bin_size; )
		secs->size <<= 1;

115 116
	uint64_t base = create_enclave_range(dev_fd, secs->size);
	if (!base)
117 118
		return false;

119
	secs->base = base;
120 121 122 123 124 125 126 127 128
	ioc.src = (unsigned long)secs;
	rc = ioctl(dev_fd, SGX_IOC_ENCLAVE_CREATE, &ioc);
	if (rc) {
		fprintf(stderr, "ECREATE failed rc=%d, err=%d.\n", rc, errno);
		munmap((void *)secs->base, secs->size);
		return false;
	}

	return true;
129 130
}

131 132 133

static bool encl_add_pages_with_mrmask(int dev_fd, uint64_t addr, void *data,
				       unsigned long length, uint64_t flags)
134
{
135
	struct sgx_enclave_add_pages_with_mrmask ioc;
136 137
	struct sgx_secinfo secinfo;
	int rc;
138

139 140
	memset(&secinfo, 0, sizeof(secinfo));
	secinfo.flags = flags;
141

142 143 144 145
	ioc.src = (uint64_t)data;
	ioc.addr = addr;
	ioc.secinfo = (unsigned long)&secinfo;
	ioc.mrmask = (__u16)-1;
146

147 148
	uint64_t added_size = 0;
	while (added_size < length) {
149
		rc = ioctl(dev_fd, SGX_IOC_ENCLAVE_ADD_PAGES_WITH_MRMASK, &ioc);
150 151 152
		if (rc) {
			fprintf(stderr, "EADD failed rc=%d.\n", rc);
			return false;
153
		}
154 155 156 157 158 159 160 161 162

		ioc.addr += PAGE_SIZE;
		ioc.src += PAGE_SIZE;
		added_size += PAGE_SIZE;
	}

	return true;
}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
static bool encl_add_pages(int dev_fd, uint64_t addr, void *data,
			   unsigned long length, uint64_t flags)
{
	struct sgx_enclave_add_pages ioc;
	struct sgx_secinfo secinfo;
	int rc;

	memset(&secinfo, 0, sizeof(secinfo));
	secinfo.flags = flags;

	ioc.src = (uint64_t)data;
	ioc.offset = addr;
	ioc.length = length;
	ioc.secinfo = (unsigned long)&secinfo;
	ioc.flags = SGX_PAGE_MEASURE;

	rc = ioctl(dev_fd, SGX_IOC_ENCLAVE_ADD_PAGES, &ioc);
	if (rc) {
		fprintf(stderr, "EADD failed rc=%d.\n", rc);
		return false;
	}

	if (ioc.count != length) {
		fprintf(stderr, "EADD short of data.\n");
		return false;
	}

	return true;
}

193
static bool encl_build(struct sgx_secs *secs, void *bin, unsigned long bin_size, 
194 195
		       struct sgx_sigstruct *sigstruct,
		       struct sgx_einittoken *token)
196 197 198 199
{
	int dev_fd;
	int rc;

200
	dev_fd = open(sgx_dev_path, O_RDWR);
201
	if (dev_fd < 0) {
202
		fprintf(stderr, "Unable to open %s\n", sgx_dev_path);
203
		return false;
204 205
	}

206 207 208
	if (!encl_create(dev_fd, bin_size, secs))
		goto out_dev_fd;

209
	if (is_oot_driver) {
210
		if (!encl_add_pages_with_mrmask(dev_fd, secs->base, bin, PAGE_SIZE, SGX_SECINFO_TCS))
211 212 213 214 215 216 217 218 219 220 221 222
			goto out_map;

		if (!encl_add_pages_with_mrmask(dev_fd, secs->base + PAGE_SIZE, bin + PAGE_SIZE,
						bin_size - PAGE_SIZE, SGX_REG_PAGE_FLAGS))
			goto out_map;
	} else {
		if (!encl_add_pages(dev_fd, 0, bin, PAGE_SIZE, SGX_SECINFO_TCS))
			goto out_map;

		if (!encl_add_pages(dev_fd, PAGE_SIZE, bin + PAGE_SIZE,
				    bin_size - PAGE_SIZE, SGX_REG_PAGE_FLAGS))
			goto out_map;
223
	}
224

225
	if (is_oot_driver || no_sgx_flc) {
226 227 228 229 230 231
		struct sgx_enclave_init_with_token ioc;
		ioc.addr = secs->base;
		ioc.sigstruct = (uint64_t)sigstruct;
		ioc.einittoken = (uint64_t)token;
		rc = ioctl(dev_fd, SGX_IOC_ENCLAVE_INIT_WITH_TOKEN, &ioc);
	} else {
232 233 234 235
		struct sgx_enclave_init ioc;
		ioc.sigstruct = (uint64_t)sigstruct;
		rc = ioctl(dev_fd, SGX_IOC_ENCLAVE_INIT, &ioc);
	}
236 237 238 239 240 241

	if (rc) {
		printf("EINIT failed rc=%d\n", rc);
		goto out_map;
	}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
	if (is_oot_driver)
		close(dev_fd);
	else {
		void *rc;

		rc = mmap((void *)secs->base, PAGE_SIZE,
			  PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED,
			  dev_fd, 0);
		if (rc == MAP_FAILED) {
			perror("mmap TCS");
			goto out_map;
		}

		rc = mmap((void *)secs->base + PAGE_SIZE, bin_size - PAGE_SIZE,
			  PROT_READ | PROT_WRITE | PROT_EXEC, MAP_FIXED | MAP_SHARED,
			  dev_fd, 0);
		if (rc == MAP_FAILED) {
			perror("mmap text & data");
			goto out_map;
		}

		enclave_fd = dev_fd;
	}

266 267 268 269 270 271 272 273
	return true;
out_map:
	munmap((void *)secs->base, secs->size);
out_dev_fd:
	close(dev_fd);
	return false;
}

274
static bool get_file_size(const char *path, off_t *bin_size)
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
{
	struct stat sb;
	int ret;

	ret = stat(path, &sb);
	if (ret) {
		perror("stat");
		return false;
	}

	if (!sb.st_size || sb.st_size & 0xfff) {
		fprintf(stderr, "Invalid blob size %lu\n", sb.st_size);
		return false;
	}

	*bin_size = sb.st_size;
	return true;
}

294
static bool encl_data_map(const char *path, void **bin, off_t *bin_size)
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
{
	int fd;

	fd = open(path, O_RDONLY);
	if (fd == -1)  {
		fprintf(stderr, "open() %s failed, errno=%d.\n", path, errno);
		return false;
	}

	if (!get_file_size(path, bin_size))
		goto err_out;

	*bin = mmap(NULL, *bin_size, PROT_READ, MAP_PRIVATE, fd, 0);
	if (*bin == MAP_FAILED) {
		fprintf(stderr, "mmap() %s failed, errno=%d.\n", path, errno);
		goto err_out;
	}

	close(fd);
	return true;

err_out:
	close(fd);
	return false;
}

321
static bool load_sigstruct(const char *path, void *sigstruct)
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
{
	int fd;

	fd = open(path, O_RDONLY);
	if (fd == -1)  {
		fprintf(stderr, "open() %s failed, errno=%d.\n", path, errno);
		return false;
	}

	if (read(fd, sigstruct, sizeof(struct sgx_sigstruct)) !=
	    sizeof(struct sgx_sigstruct)) {
		fprintf(stderr, "read() %s failed, errno=%d.\n", path, errno);
		close(fd);
		return false;
	}

	close(fd);
	return true;
}

342
static bool load_token(const char *path, void *token)
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
{
	int fd;

	fd = open(path, O_RDONLY);
	if (fd == -1)  {
		fprintf(stderr, "open() %s failed, errno=%d.\n", path, errno);
		return false;
	}

	if (read(fd, token, sizeof(struct sgx_einittoken)) !=
		sizeof(struct sgx_einittoken)) {
		fprintf(stderr, "read() %s failed, errno=%d.\n", path, errno);
		close(fd);
		return false;
	}

	close(fd);
	return true;
}

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
static void check_opts(const char *opt)
{
	if (!strcmp(opt, "no-sgx-flc"))
		no_sgx_flc = true;
}

static void parse_args(const char *args)
{
	char *a = strdup(args);
	if (!a)
		return;

	char *opt = strtok(a, " ");
	check_opts(opt);

	if (!opt) {
		free(a);
		return;
	}

	do {
		char *opt = strtok(NULL, " ");
		if (!opt)
			break;

		check_opts(opt);
	} while (1);

	free(a);
}

394 395 396 397 398
int pal_get_version(void)
{
	return 1;
}

399 400 401 402 403 404
typedef struct {
	const char *args;
	const char *log_level;
} pal_attr_t;

int pal_init(pal_attr_t *attr)
405 406 407 408 409 410
{
	struct sgx_sigstruct sigstruct;
	struct sgx_einittoken token;
	off_t bin_size;
	void *bin;

411 412
	parse_args(attr->args);

413 414
	detect_driver_type();

415
	if (!encl_data_map(IMAGE, &bin, &bin_size))
416
		return -ENOENT;
417 418

	if (!load_sigstruct(SIGSTRUCT, &sigstruct))
419
		return -ENOENT;
420 421

	if (!load_token(TOKEN, &token))
422
		return -ENOENT;
423 424

	if (!encl_build(&secs, bin, bin_size, &sigstruct, &token))
425
		return -EINVAL;
426 427

	initialized = true;	
428

429 430 431
	return 0;
}

432 433 434 435 436 437
typedef struct {
	int stdin, stdout, stderr;
} pal_stdio_fds;

int pal_exec(char *path, char *argv[], pal_stdio_fds *stdio,
	     int *exit_code)
438
{
439
	FILE *fp = fdopen(stdio->stderr, "w");
440 441
	if (!fp)
		return -1;
442 443

	if (!initialized) {
444
		fprintf(fp, "enclave runtime skeleton uninitialized yet!\n");
445
		fclose(fp);
446
		return -1;
447
	}
448

449
	uint64_t result = 0;
450 451 452 453 454 455 456 457
	int ret = SGX_ENTER_1_ARG(ECALL_MAGIC, (void *)secs.base, &result);
	if (ret) {
		fprintf(fp, "failed to initialize enclave\n");
		fclose(fp);
		return ret;
	}
	if (result != INIT_MAGIC) {
		fprintf(fp, "Unexpected result: 0x%lx != 0x%lx\n", result, INIT_MAGIC);
458
		fclose(fp);
459 460 461
		return -1;
	}

462
	fprintf(fp, "Enclave runtime skeleton initialization succeeded\n");
463
	fclose(fp);
464

465
	*exit_code = 0;
466

467 468 469
	return 0;
}

470
int pal_destroy(void)
471 472
{
	if (!initialized) {
473
		fprintf(stderr, "Enclave runtime skeleton uninitialized yet!\n");
474 475
		return -1;
	}
476 477 478

	close(enclave_fd);

479 480
	return 0;
}