1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 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 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
|
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2019-2022, Linaro Limited
*/
#include <config.h>
#include <crypto/crypto.h>
#include <crypto/internal_aes-gcm.h>
#include <initcall.h>
#include <kernel/boot.h>
#include <kernel/panic.h>
#include <memtag.h>
#include <mm/core_memprot.h>
#include <mm/core_mmu.h>
#include <mm/fobj.h>
#include <mm/phys_mem.h>
#include <mm/tee_mm.h>
#include <stdlib.h>
#include <string.h>
#include <tee_api_types.h>
#include <types_ext.h>
#include <util.h>
#ifdef CFG_WITH_PAGER
#define RWP_AE_KEY_BITS 256
struct rwp_aes_gcm_iv {
uint32_t iv[3];
};
#define RWP_AES_GCM_TAG_LEN 16
struct rwp_state {
uint64_t iv;
uint8_t tag[RWP_AES_GCM_TAG_LEN];
};
/*
* Note that this struct is padded to a size which is a power of 2, this
* guarantees that this state will not span two pages. This avoids a corner
* case in the pager when making the state available.
*/
struct rwp_state_padded {
struct rwp_state state;
uint64_t pad;
};
struct fobj_rwp_unpaged_iv {
uint8_t *store;
struct rwp_state *state;
struct fobj fobj;
};
struct fobj_rwp_paged_iv {
size_t idx;
struct fobj fobj;
};
const struct fobj_ops ops_rwp_paged_iv;
const struct fobj_ops ops_rwp_unpaged_iv;
static struct internal_aes_gcm_key rwp_ae_key;
static struct rwp_state_padded *rwp_state_base;
static uint8_t *rwp_store_base;
static void fobj_init(struct fobj *fobj, const struct fobj_ops *ops,
unsigned int num_pages)
{
fobj->ops = ops;
fobj->num_pages = num_pages;
refcount_set(&fobj->refc, 1);
TAILQ_INIT(&fobj->regions);
}
static void fobj_uninit(struct fobj *fobj)
{
assert(!refcount_val(&fobj->refc));
assert(TAILQ_EMPTY(&fobj->regions));
tee_pager_invalidate_fobj(fobj);
}
static TEE_Result rwp_load_page(void *va, struct rwp_state *state,
const uint8_t *src)
{
struct rwp_aes_gcm_iv iv = {
.iv = { (vaddr_t)state, state->iv >> 32, state->iv }
};
if (!state->iv) {
/*
* IV still zero which means that this is previously unused
* page.
*/
memset(va, 0, SMALL_PAGE_SIZE);
return TEE_SUCCESS;
}
return internal_aes_gcm_dec(&rwp_ae_key, &iv, sizeof(iv),
NULL, 0, src, SMALL_PAGE_SIZE, va,
state->tag, sizeof(state->tag));
}
static TEE_Result rwp_save_page(const void *va, struct rwp_state *state,
uint8_t *dst)
{
size_t tag_len = sizeof(state->tag);
struct rwp_aes_gcm_iv iv = { };
assert(state->iv + 1 > state->iv);
state->iv++;
/*
* IV is constructed as recommended in section "8.2.1 Deterministic
* Construction" of "Recommendation for Block Cipher Modes of
* Operation: Galois/Counter Mode (GCM) and GMAC",
* http://csrc.nist.gov/publications/nistpubs/800-38D/SP-800-38D.pdf
*/
iv.iv[0] = (vaddr_t)state;
iv.iv[1] = state->iv >> 32;
iv.iv[2] = state->iv;
return internal_aes_gcm_enc(&rwp_ae_key, &iv, sizeof(iv),
NULL, 0, va, SMALL_PAGE_SIZE, dst,
state->tag, &tag_len);
}
static struct rwp_state_padded *idx_to_state_padded(size_t idx)
{
assert(rwp_state_base);
return rwp_state_base + idx;
}
static uint8_t *idx_to_store(size_t idx)
{
assert(rwp_store_base);
return rwp_store_base + idx * SMALL_PAGE_SIZE;
}
static struct fobj *rwp_paged_iv_alloc(unsigned int num_pages)
{
struct fobj_rwp_paged_iv *rwp = NULL;
tee_mm_entry_t *mm = NULL;
size_t size = 0;
COMPILE_TIME_ASSERT(IS_POWER_OF_TWO(sizeof(struct rwp_state_padded)));
rwp = calloc(1, sizeof(*rwp));
if (!rwp)
return NULL;
if (MUL_OVERFLOW(num_pages, SMALL_PAGE_SIZE, &size))
goto err;
mm = nex_phys_mem_ta_alloc(size);
if (!mm)
goto err;
rwp->idx = (tee_mm_get_smem(mm) - nex_phys_mem_get_ta_base()) /
SMALL_PAGE_SIZE;
memset(idx_to_state_padded(rwp->idx), 0,
num_pages * sizeof(struct rwp_state_padded));
fobj_init(&rwp->fobj, &ops_rwp_paged_iv, num_pages);
return &rwp->fobj;
err:
tee_mm_free(mm);
free(rwp);
return NULL;
}
static struct fobj_rwp_paged_iv *to_rwp_paged_iv(struct fobj *fobj)
{
assert(fobj->ops == &ops_rwp_paged_iv);
return container_of(fobj, struct fobj_rwp_paged_iv, fobj);
}
static TEE_Result rwp_paged_iv_load_page(struct fobj *fobj,
unsigned int page_idx, void *va)
{
struct fobj_rwp_paged_iv *rwp = to_rwp_paged_iv(fobj);
uint8_t *src = idx_to_store(rwp->idx) + page_idx * SMALL_PAGE_SIZE;
struct rwp_state_padded *st = idx_to_state_padded(rwp->idx + page_idx);
assert(refcount_val(&fobj->refc));
assert(page_idx < fobj->num_pages);
return rwp_load_page(va, &st->state, src);
}
DECLARE_KEEP_PAGER(rwp_paged_iv_load_page);
static TEE_Result rwp_paged_iv_save_page(struct fobj *fobj,
unsigned int page_idx, const void *va)
{
struct fobj_rwp_paged_iv *rwp = to_rwp_paged_iv(fobj);
uint8_t *dst = idx_to_store(rwp->idx) + page_idx * SMALL_PAGE_SIZE;
struct rwp_state_padded *st = idx_to_state_padded(rwp->idx + page_idx);
assert(page_idx < fobj->num_pages);
if (!refcount_val(&fobj->refc)) {
/*
* This fobj is being teared down, it just hasn't had the time
* to call tee_pager_invalidate_fobj() yet.
*/
assert(TAILQ_EMPTY(&fobj->regions));
return TEE_SUCCESS;
}
return rwp_save_page(va, &st->state, dst);
}
DECLARE_KEEP_PAGER(rwp_paged_iv_save_page);
static void rwp_paged_iv_free(struct fobj *fobj)
{
struct fobj_rwp_paged_iv *rwp = to_rwp_paged_iv(fobj);
paddr_t pa = rwp->idx * SMALL_PAGE_SIZE + nex_phys_mem_get_ta_base();
tee_mm_entry_t *mm = nex_phys_mem_mm_find(pa);
assert(mm);
fobj_uninit(fobj);
tee_mm_free(mm);
free(rwp);
}
static vaddr_t rwp_paged_iv_get_iv_vaddr(struct fobj *fobj,
unsigned int page_idx)
{
struct fobj_rwp_paged_iv *rwp = to_rwp_paged_iv(fobj);
struct rwp_state_padded *st = idx_to_state_padded(rwp->idx + page_idx);
assert(page_idx < fobj->num_pages);
return (vaddr_t)&st->state & ~SMALL_PAGE_MASK;
}
DECLARE_KEEP_PAGER(rwp_paged_iv_get_iv_vaddr);
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_rwp_paged_iv
__weak __relrodata_unpaged("ops_rwp_paged_iv") = {
.free = rwp_paged_iv_free,
.load_page = rwp_paged_iv_load_page,
.save_page = rwp_paged_iv_save_page,
.get_iv_vaddr = rwp_paged_iv_get_iv_vaddr,
};
static struct fobj *rwp_unpaged_iv_alloc(unsigned int num_pages)
{
struct fobj_rwp_unpaged_iv *rwp = NULL;
tee_mm_entry_t *mm = NULL;
size_t size = 0;
rwp = calloc(1, sizeof(*rwp));
if (!rwp)
return NULL;
rwp->state = calloc(num_pages, sizeof(*rwp->state));
if (!rwp->state)
goto err_free_rwp;
if (MUL_OVERFLOW(num_pages, SMALL_PAGE_SIZE, &size))
goto err_free_state;
mm = nex_phys_mem_ta_alloc(size);
if (!mm)
goto err_free_state;
rwp->store = phys_to_virt(tee_mm_get_smem(mm),
MEM_AREA_SEC_RAM_OVERALL, size);
assert(rwp->store);
fobj_init(&rwp->fobj, &ops_rwp_unpaged_iv, num_pages);
return &rwp->fobj;
err_free_state:
free(rwp->state);
err_free_rwp:
free(rwp);
return NULL;
}
static struct fobj_rwp_unpaged_iv *to_rwp_unpaged_iv(struct fobj *fobj)
{
assert(fobj->ops == &ops_rwp_unpaged_iv);
return container_of(fobj, struct fobj_rwp_unpaged_iv, fobj);
}
static TEE_Result rwp_unpaged_iv_load_page(struct fobj *fobj,
unsigned int page_idx, void *va)
{
struct fobj_rwp_unpaged_iv *rwp = to_rwp_unpaged_iv(fobj);
uint8_t *src = rwp->store + page_idx * SMALL_PAGE_SIZE;
assert(refcount_val(&fobj->refc));
assert(page_idx < fobj->num_pages);
return rwp_load_page(va, rwp->state + page_idx, src);
}
DECLARE_KEEP_PAGER(rwp_unpaged_iv_load_page);
static TEE_Result rwp_unpaged_iv_save_page(struct fobj *fobj,
unsigned int page_idx,
const void *va)
{
struct fobj_rwp_unpaged_iv *rwp = to_rwp_unpaged_iv(fobj);
uint8_t *dst = rwp->store + page_idx * SMALL_PAGE_SIZE;
assert(page_idx < fobj->num_pages);
if (!refcount_val(&fobj->refc)) {
/*
* This fobj is being teared down, it just hasn't had the time
* to call tee_pager_invalidate_fobj() yet.
*/
assert(TAILQ_EMPTY(&fobj->regions));
return TEE_SUCCESS;
}
return rwp_save_page(va, rwp->state + page_idx, dst);
}
DECLARE_KEEP_PAGER(rwp_unpaged_iv_save_page);
static void rwp_unpaged_iv_free(struct fobj *fobj)
{
struct fobj_rwp_unpaged_iv *rwp = NULL;
tee_mm_entry_t *mm = NULL;
if (IS_ENABLED(CFG_CORE_PAGE_TAG_AND_IV))
panic();
rwp = to_rwp_unpaged_iv(fobj);
mm = nex_phys_mem_mm_find(virt_to_phys(rwp->store));
assert(mm);
fobj_uninit(fobj);
tee_mm_free(mm);
free(rwp->state);
free(rwp);
}
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_rwp_unpaged_iv
__weak __relrodata_unpaged("ops_rwp_unpaged_iv") = {
.free = rwp_unpaged_iv_free,
.load_page = rwp_unpaged_iv_load_page,
.save_page = rwp_unpaged_iv_save_page,
};
static TEE_Result rwp_init(void)
{
paddr_size_t ta_size = nex_phys_mem_get_ta_size();
uint8_t key[RWP_AE_KEY_BITS / 8] = { 0 };
struct fobj *fobj = NULL;
size_t num_pool_pages = 0;
size_t num_fobj_pages = 0;
if (crypto_rng_read(key, sizeof(key)) != TEE_SUCCESS)
panic("failed to generate random");
if (crypto_aes_expand_enc_key(key, sizeof(key), rwp_ae_key.data,
sizeof(rwp_ae_key.data),
&rwp_ae_key.rounds))
panic("failed to expand key");
if (!IS_ENABLED(CFG_CORE_PAGE_TAG_AND_IV))
return TEE_SUCCESS;
assert(ta_size && !(ta_size & SMALL_PAGE_SIZE));
num_pool_pages = ta_size / SMALL_PAGE_SIZE;
num_fobj_pages = ROUNDUP_DIV(num_pool_pages * sizeof(*rwp_state_base),
SMALL_PAGE_SIZE);
/*
* Each page in the pool needs a struct rwp_state.
*
* This isn't entirely true, the pages not used by
* fobj_rw_paged_alloc() don't need any. A future optimization
* may try to avoid allocating for such pages.
*/
fobj = rwp_unpaged_iv_alloc(num_fobj_pages);
if (!fobj)
panic();
rwp_state_base = (void *)tee_pager_init_iv_region(fobj);
assert(rwp_state_base);
rwp_store_base = phys_to_virt(nex_phys_mem_get_ta_base(),
MEM_AREA_SEC_RAM_OVERALL, ta_size);
assert(rwp_store_base);
return TEE_SUCCESS;
}
driver_init_late(rwp_init);
struct fobj *fobj_rw_paged_alloc(unsigned int num_pages)
{
assert(num_pages);
if (IS_ENABLED(CFG_CORE_PAGE_TAG_AND_IV))
return rwp_paged_iv_alloc(num_pages);
else
return rwp_unpaged_iv_alloc(num_pages);
}
struct fobj_rop {
uint8_t *hashes;
uint8_t *store;
struct fobj fobj;
};
const struct fobj_ops ops_ro_paged;
static void rop_init(struct fobj_rop *rop, const struct fobj_ops *ops,
unsigned int num_pages, void *hashes, void *store)
{
rop->hashes = hashes;
rop->store = store;
fobj_init(&rop->fobj, ops, num_pages);
}
struct fobj *fobj_ro_paged_alloc(unsigned int num_pages, void *hashes,
void *store)
{
struct fobj_rop *rop = NULL;
assert(num_pages && hashes && store);
rop = calloc(1, sizeof(*rop));
if (!rop)
return NULL;
rop_init(rop, &ops_ro_paged, num_pages, hashes, store);
return &rop->fobj;
}
static struct fobj_rop *to_rop(struct fobj *fobj)
{
assert(fobj->ops == &ops_ro_paged);
return container_of(fobj, struct fobj_rop, fobj);
}
static void rop_uninit(struct fobj_rop *rop)
{
fobj_uninit(&rop->fobj);
tee_mm_free(nex_phys_mem_mm_find(virt_to_phys(rop->store)));
free(rop->hashes);
}
static void rop_free(struct fobj *fobj)
{
struct fobj_rop *rop = to_rop(fobj);
rop_uninit(rop);
free(rop);
}
static TEE_Result rop_load_page_helper(struct fobj_rop *rop,
unsigned int page_idx, void *va)
{
const uint8_t *hash = rop->hashes + page_idx * TEE_SHA256_HASH_SIZE;
const uint8_t *src = rop->store + page_idx * SMALL_PAGE_SIZE;
assert(refcount_val(&rop->fobj.refc));
assert(page_idx < rop->fobj.num_pages);
memcpy(va, src, SMALL_PAGE_SIZE);
return hash_sha256_check(hash, va, SMALL_PAGE_SIZE);
}
static TEE_Result rop_load_page(struct fobj *fobj, unsigned int page_idx,
void *va)
{
return rop_load_page_helper(to_rop(fobj), page_idx, va);
}
DECLARE_KEEP_PAGER(rop_load_page);
static TEE_Result rop_save_page(struct fobj *fobj __unused,
unsigned int page_idx __unused,
const void *va __unused)
{
return TEE_ERROR_GENERIC;
}
DECLARE_KEEP_PAGER(rop_save_page);
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_ro_paged
__weak __relrodata_unpaged("ops_ro_paged") = {
.free = rop_free,
.load_page = rop_load_page,
.save_page = rop_save_page,
};
#ifdef CFG_CORE_ASLR
/*
* When using relocated pages the relocation information must be applied
* before the pages can be used. With read-only paging the content is only
* integrity protected so relocation cannot be applied on pages in the less
* secure "store" or the load_address selected by ASLR could be given away.
* This means that each time a page has been loaded and verified it has to
* have its relocation information applied before it can be used.
*
* Only the relative relocations are supported, this allows a rather compact
* represenation of the needed relocation information in this struct.
* r_offset is replaced with the offset into the page that need to be updated,
* this number can never be larger than SMALL_PAGE_SIZE so a uint16_t can be
* used to represent it.
*
* All relocations are converted and stored in @relocs. @page_reloc_idx is
* an array of length @rop.fobj.num_pages with an entry for each page. If
* @page_reloc_idx[page_idx] isn't UINT16_MAX it's an index into @relocs.
*/
struct fobj_ro_reloc_paged {
uint16_t *page_reloc_idx;
uint16_t *relocs;
unsigned int num_relocs;
struct fobj_rop rop;
};
const struct fobj_ops ops_ro_reloc_paged;
static unsigned int get_num_rels(unsigned int num_pages,
unsigned int reloc_offs,
const uint32_t *reloc, unsigned int num_relocs)
{
const unsigned int align_mask __maybe_unused = sizeof(long) - 1;
unsigned int nrels = 0;
unsigned int n = 0;
vaddr_t offs = 0;
/*
* Count the number of relocations which are needed for these
* pages. Also check that the data is well formed, only expected
* relocations and sorted in order of address which it applies to.
*/
for (; n < num_relocs; n++) {
assert(IS_ALIGNED_WITH_TYPE(reloc[n], unsigned long));
assert(offs < reloc[n]); /* check that it's sorted */
offs = reloc[n];
if (offs >= reloc_offs &&
offs <= reloc_offs + num_pages * SMALL_PAGE_SIZE)
nrels++;
}
return nrels;
}
static void init_rels(struct fobj_ro_reloc_paged *rrp, unsigned int reloc_offs,
const uint32_t *reloc, unsigned int num_relocs)
{
unsigned int npg = rrp->rop.fobj.num_pages;
unsigned int pg_idx = 0;
unsigned int reln = 0;
unsigned int n = 0;
uint32_t r = 0;
for (n = 0; n < npg; n++)
rrp->page_reloc_idx[n] = UINT16_MAX;
for (n = 0; n < num_relocs ; n++) {
if (reloc[n] < reloc_offs)
continue;
/* r is the offset from beginning of this fobj */
r = reloc[n] - reloc_offs;
pg_idx = r / SMALL_PAGE_SIZE;
if (pg_idx >= npg)
break;
if (rrp->page_reloc_idx[pg_idx] == UINT16_MAX)
rrp->page_reloc_idx[pg_idx] = reln;
rrp->relocs[reln] = r - pg_idx * SMALL_PAGE_SIZE;
reln++;
}
assert(reln == rrp->num_relocs);
}
struct fobj *fobj_ro_reloc_paged_alloc(unsigned int num_pages, void *hashes,
unsigned int reloc_offs,
const void *reloc,
unsigned int reloc_len, void *store)
{
struct fobj_ro_reloc_paged *rrp = NULL;
const unsigned int num_relocs = reloc_len / sizeof(uint32_t);
unsigned int nrels = 0;
assert(IS_ALIGNED_WITH_TYPE(reloc, uint32_t));
assert(IS_ALIGNED_WITH_TYPE(reloc_len, uint32_t));
assert(num_pages && hashes && store);
if (!reloc_len) {
assert(!reloc);
return fobj_ro_paged_alloc(num_pages, hashes, store);
}
assert(reloc);
nrels = get_num_rels(num_pages, reloc_offs, reloc, num_relocs);
if (!nrels)
return fobj_ro_paged_alloc(num_pages, hashes, store);
rrp = calloc(1, sizeof(*rrp) + num_pages * sizeof(uint16_t) +
nrels * sizeof(uint16_t));
if (!rrp)
return NULL;
rop_init(&rrp->rop, &ops_ro_reloc_paged, num_pages, hashes, store);
rrp->page_reloc_idx = (uint16_t *)(rrp + 1);
rrp->relocs = rrp->page_reloc_idx + num_pages;
rrp->num_relocs = nrels;
init_rels(rrp, reloc_offs, reloc, num_relocs);
return &rrp->rop.fobj;
}
static struct fobj_ro_reloc_paged *to_rrp(struct fobj *fobj)
{
assert(fobj->ops == &ops_ro_reloc_paged);
return container_of(fobj, struct fobj_ro_reloc_paged, rop.fobj);
}
static void rrp_free(struct fobj *fobj)
{
struct fobj_ro_reloc_paged *rrp = to_rrp(fobj);
rop_uninit(&rrp->rop);
free(rrp);
}
static TEE_Result rrp_load_page(struct fobj *fobj, unsigned int page_idx,
void *va)
{
struct fobj_ro_reloc_paged *rrp = to_rrp(fobj);
unsigned int end_rel = rrp->num_relocs;
TEE_Result res = TEE_SUCCESS;
unsigned long *where = NULL;
unsigned int n = 0;
res = rop_load_page_helper(&rrp->rop, page_idx, va);
if (res)
return res;
/* Find the reloc index of the next page to tell when we're done */
for (n = page_idx + 1; n < fobj->num_pages; n++) {
if (rrp->page_reloc_idx[n] != UINT16_MAX) {
end_rel = rrp->page_reloc_idx[n];
break;
}
}
for (n = rrp->page_reloc_idx[page_idx]; n < end_rel; n++) {
where = (void *)((vaddr_t)va + rrp->relocs[n]);
*where += boot_mmu_config.map_offset;
}
return TEE_SUCCESS;
}
DECLARE_KEEP_PAGER(rrp_load_page);
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_ro_reloc_paged
__weak __relrodata_unpaged("ops_ro_reloc_paged") = {
.free = rrp_free,
.load_page = rrp_load_page,
.save_page = rop_save_page, /* Direct reuse */
};
#endif /*CFG_CORE_ASLR*/
const struct fobj_ops ops_locked_paged;
struct fobj *fobj_locked_paged_alloc(unsigned int num_pages)
{
struct fobj *f = NULL;
assert(num_pages);
f = calloc(1, sizeof(*f));
if (!f)
return NULL;
fobj_init(f, &ops_locked_paged, num_pages);
return f;
}
static void lop_free(struct fobj *fobj)
{
assert(fobj->ops == &ops_locked_paged);
fobj_uninit(fobj);
free(fobj);
}
static TEE_Result lop_load_page(struct fobj *fobj __maybe_unused,
unsigned int page_idx __maybe_unused,
void *va)
{
assert(fobj->ops == &ops_locked_paged);
assert(refcount_val(&fobj->refc));
assert(page_idx < fobj->num_pages);
memset(va, 0, SMALL_PAGE_SIZE);
return TEE_SUCCESS;
}
DECLARE_KEEP_PAGER(lop_load_page);
static TEE_Result lop_save_page(struct fobj *fobj __unused,
unsigned int page_idx __unused,
const void *va __unused)
{
return TEE_ERROR_GENERIC;
}
DECLARE_KEEP_PAGER(lop_save_page);
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_locked_paged
__weak __relrodata_unpaged("ops_locked_paged") = {
.free = lop_free,
.load_page = lop_load_page,
.save_page = lop_save_page,
};
#endif /*CFG_WITH_PAGER*/
#ifndef CFG_PAGED_USER_TA
struct fobj_sec_mem {
tee_mm_entry_t *mm;
struct fobj fobj;
};
const struct fobj_ops ops_sec_mem;
struct fobj *fobj_sec_mem_alloc(unsigned int num_pages)
{
struct fobj_sec_mem *f = calloc(1, sizeof(*f));
size_t size = 0;
void *va = NULL;
if (!f)
return NULL;
if (MUL_OVERFLOW(num_pages, SMALL_PAGE_SIZE, &size))
goto err;
f->mm = phys_mem_ta_alloc(size);
if (!f->mm)
goto err;
va = phys_to_virt(tee_mm_get_smem(f->mm), MEM_AREA_SEC_RAM_OVERALL,
size);
if (!va)
goto err;
memtag_clear_mem(va, size);
f->fobj.ops = &ops_sec_mem;
f->fobj.num_pages = num_pages;
refcount_set(&f->fobj.refc, 1);
return &f->fobj;
err:
tee_mm_free(f->mm);
free(f);
return NULL;
}
static struct fobj_sec_mem *to_sec_mem(struct fobj *fobj)
{
assert(fobj->ops == &ops_sec_mem);
return container_of(fobj, struct fobj_sec_mem, fobj);
}
static void sec_mem_free(struct fobj *fobj)
{
struct fobj_sec_mem *f = to_sec_mem(fobj);
assert(!refcount_val(&fobj->refc));
tee_mm_free(f->mm);
free(f);
}
static paddr_t sec_mem_get_pa(struct fobj *fobj, unsigned int page_idx)
{
struct fobj_sec_mem *f = to_sec_mem(fobj);
assert(refcount_val(&fobj->refc));
assert(page_idx < fobj->num_pages);
return tee_mm_get_smem(f->mm) + page_idx * SMALL_PAGE_SIZE;
}
/*
* Note: this variable is weak just to ease breaking its dependency chain
* when added to the unpaged area.
*/
const struct fobj_ops ops_sec_mem __weak __relrodata_unpaged("ops_sec_mem") = {
.free = sec_mem_free,
.get_pa = sec_mem_get_pa,
};
#endif /*PAGED_USER_TA*/
|