123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- /* Copyright (C) 2014 Stony Brook University
- This file is part of Graphene Library OS.
- Graphene Library OS is free software: you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License
- as published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- Graphene Library OS 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 Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
- /*
- * shim_vma.c
- *
- * This file contains code to maintain bookkeeping of VMAs in library OS.
- */
- #include <shim_internal.h>
- #include <shim_thread.h>
- #include <shim_handle.h>
- #include <shim_vma.h>
- #include <shim_checkpoint.h>
- #include <shim_fs.h>
- #include <pal.h>
- #include <list.h>
- #include <asm/mman.h>
- #include <errno.h>
- #include <stdbool.h>
- /*
- * Internal bookkeeping for VMAs (virtual memory areas). This data
- * structure can only be accessed in this source file, with vma_list_lock
- * held. No reference counting needed in this data structure.
- */
- DEFINE_LIST(shim_vma);
- /* struct shim_vma tracks the area of [start, end) */
- struct shim_vma {
- LIST_TYPE(shim_vma) list;
- void * start;
- void * end;
- int prot;
- int flags;
- off_t offset;
- struct shim_handle * file;
- char comment[VMA_COMMENT_LEN];
- };
- #define VMA_MGR_ALLOC DEFAULT_VMA_COUNT
- #define RESERVED_VMAS 6
- static struct shim_vma * reserved_vmas[RESERVED_VMAS];
- static struct shim_vma early_vmas[RESERVED_VMAS];
- static void * __bkeep_unmapped (void * top_addr, void * bottom_addr,
- size_t length, int prot, int flags,
- struct shim_handle * file,
- off_t offset, const char * comment);
- /*
- * Because the default system_malloc() must create VMA(s), we need
- * a new system_malloc() to avoid cicular dependency. This __malloc()
- * stores the VMA address and size in the current thread to delay the
- * bookkeeping until the allocator finishes extension.
- */
- static inline void * __malloc (size_t size)
- {
- void * addr;
- size = ALLOC_ALIGN_UP(size);
- /*
- * Chia-Che 3/3/18: We must enforce the policy that all VMAs have to
- * be created before issuing the PAL calls.
- */
- addr = __bkeep_unmapped(PAL_CB(user_address.end),
- PAL_CB(user_address.start), size,
- PROT_READ|PROT_WRITE,
- MAP_PRIVATE|MAP_ANONYMOUS|VMA_INTERNAL,
- NULL, 0, "vma");
- debug("allocate %p-%p for vmas\n", addr, addr + size);
- return (void *) DkVirtualMemoryAlloc(addr, size, 0,
- PAL_PROT_WRITE|PAL_PROT_READ);
- }
- #undef system_malloc
- #define system_malloc __malloc
- #define OBJ_TYPE struct shim_vma
- #include <memmgr.h>
- /*
- * "vma_mgr" has no specific lock. "vma_list_lock" must be held when
- * allocating or freeing any VMAs.
- */
- static MEM_MGR vma_mgr = NULL;
- /*
- * "vma_list" contains a sorted list of non-overlapping VMAs.
- * "vma_list_lock" must be held when accessing either the vma_list or any
- * field of a VMA.
- */
- DEFINE_LISTP(shim_vma);
- static LISTP_TYPE(shim_vma) vma_list = LISTP_INIT;
- static struct shim_lock vma_list_lock;
- /*
- * Return true if [s, e) is exactly the area represented by vma.
- */
- static inline bool test_vma_equal (struct shim_vma * vma,
- void * s, void * e)
- {
- assert(s < e);
- return vma->start == s && vma->end == e;
- }
- /*
- * Return true if [s, e) is part of the area represented by vma.
- */
- static inline bool test_vma_contain (struct shim_vma * vma,
- void * s, void * e)
- {
- assert(s < e);
- return vma->start <= s && vma->end >= e;
- }
- /*
- * Return true if [s, e) contains the starting address of vma.
- */
- static inline bool test_vma_startin (struct shim_vma * vma,
- void * s, void * e)
- {
- assert(s < e);
- return vma->start >= s && vma->start < e;
- }
- /*
- * Return true if [s, e) contains the ending address of vma.
- */
- static inline bool test_vma_endin (struct shim_vma * vma,
- void * s, void * e)
- {
- assert(s < e);
- return vma->end > s && vma->end <= e;
- }
- /*
- * Return true if [s, e) overlaps with the area represented by vma.
- */
- static inline bool test_vma_overlap (struct shim_vma * vma,
- void * s, void * e)
- {
- assert(s < e);
- return test_vma_contain(vma, s, s + 1) ||
- test_vma_contain(vma, e - 1, e) ||
- test_vma_startin(vma, s, e);
- }
- static inline void __assert_vma_list (void)
- {
- struct shim_vma * tmp;
- struct shim_vma * prev __attribute__((unused)) = NULL;
- LISTP_FOR_EACH_ENTRY(tmp, &vma_list, list) {
- /* Assert we are really sorted */
- assert(tmp->end > tmp->start);
- assert(!prev || prev->end <= tmp->start);
- prev = tmp;
- }
- }
- // In a debug build only, assert that the VMA list is
- // sorted. This should be called with the vma_list_lock held.
- static inline void assert_vma_list (void)
- {
- #ifdef DEBUG
- __assert_vma_list();
- #endif
- }
- /*
- * __lookup_vma() returns the VMA that contains the address; otherwise,
- * returns NULL. "pprev" returns the highest VMA below the address.
- * __lookup_vma() fills "pprev" even when the function cannot find a
- * matching vma for "addr".
- *
- * vma_list_lock must be held when calling this function.
- */
- static inline struct shim_vma *
- __lookup_vma (void * addr, struct shim_vma ** pprev)
- {
- struct shim_vma * vma, * prev = NULL;
- struct shim_vma * found = NULL;
- LISTP_FOR_EACH_ENTRY(vma, &vma_list, list) {
- if (addr < vma->start)
- break;
- if (test_vma_contain(vma, addr, addr + 1)) {
- found = vma;
- break;
- }
- assert(vma->end > vma->start);
- assert(!prev || prev->end <= vma->start);
- prev = vma;
- }
- if (pprev) *pprev = prev;
- return found;
- }
- /*
- * __insert_vma() places "vma" after "prev", or at the beginning of
- * vma_list if "prev" is NULL. vma_list_lock must be held when calling
- * this function.
- */
- static inline void
- __insert_vma (struct shim_vma * vma, struct shim_vma * prev)
- {
- assert(!prev || prev->end <= vma->start);
- assert(vma != prev);
- /* check the next entry */
- struct shim_vma * next = prev ?
- LISTP_NEXT_ENTRY(prev, &vma_list, list) :
- LISTP_FIRST_ENTRY(&vma_list, struct shim_vma, list);
- __UNUSED(next);
- assert(!next || vma->end <= next->start);
- if (prev)
- LISTP_ADD_AFTER(vma, prev, &vma_list, list);
- else
- LISTP_ADD(vma, &vma_list, list);
- }
- /*
- * __remove_vma() removes "vma" after "prev", or at the beginnning of
- * vma_list if "prev" is NULL. vma_list_lock must be held when calling
- * this function.
- */
- static inline void
- __remove_vma (struct shim_vma * vma, struct shim_vma * prev)
- {
- __UNUSED(prev);
- assert(vma != prev);
- LISTP_DEL(vma, &vma_list, list);
- }
- /*
- * Storing a cursor pointing to the current heap top. With ASLR, the cursor
- * is randomized at initialization. The cursor is monotonically decremented
- * when allocating user VMAs. Updating this cursor needs holding vma_list_lock.
- */
- static void * current_heap_top;
- static int __bkeep_mmap (struct shim_vma * prev,
- void * start, void * end, int prot, int flags,
- struct shim_handle * file, off_t offset,
- const char * comment);
- static int __bkeep_munmap (struct shim_vma ** prev,
- void * start, void * end, int flags);
- static int __bkeep_mprotect (struct shim_vma * prev,
- void * start, void * end, int prot, int flags);
- static int
- __bkeep_preloaded (void * start, void * end, int prot, int flags,
- const char * comment)
- {
- if (!start || !end || start == end)
- return 0;
- struct shim_vma * prev = NULL;
- __lookup_vma(start, &prev);
- return __bkeep_mmap(prev, start, end, prot, flags, NULL, 0, comment);
- }
- int init_vma (void)
- {
- int ret;
- for (int i = 0 ; i < RESERVED_VMAS ; i++)
- reserved_vmas[i] = &early_vmas[i];
- /* Bookkeeping for preloaded areas */
- if (PAL_CB(user_address_hole.end) - PAL_CB(user_address_hole.start) > 0) {
- ret = __bkeep_preloaded(PAL_CB(user_address_hole.start),
- PAL_CB(user_address_hole.end),
- PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|VMA_UNMAPPED,
- "reserved");
- if (ret < 0)
- return ret;
- }
- ret = __bkeep_preloaded(PAL_CB(executable_range.start),
- PAL_CB(executable_range.end),
- PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|VMA_UNMAPPED,
- "exec");
- if (ret < 0)
- return ret;
- ret = __bkeep_preloaded(PAL_CB(manifest_preload.start),
- PAL_CB(manifest_preload.end),
- PROT_READ, MAP_PRIVATE|MAP_ANONYMOUS|VMA_INTERNAL,
- "manifest");
- if (ret < 0)
- return ret;
- /* Keep track of LibOS code itself so nothing overwrites it */
- ret = __bkeep_preloaded(&__load_address,
- ALLOC_ALIGN_UP_PTR(&__load_address_end),
- PROT_READ, MAP_PRIVATE|MAP_ANONYMOUS|VMA_INTERNAL,
- "LibOS");
- if (ret < 0)
- return ret;
- /* Initialize the allocator */
- if (!(vma_mgr = create_mem_mgr(init_align_up(VMA_MGR_ALLOC)))) {
- debug("failed creating the VMA allocator\n");
- return -ENOMEM;
- }
- for (int i = 0 ; i < RESERVED_VMAS ; i++) {
- if (!reserved_vmas[i]) {
- struct shim_vma * new = get_mem_obj_from_mgr(vma_mgr);
- assert(new);
- struct shim_vma * e = &early_vmas[i];
- struct shim_vma * prev = LISTP_PREV_ENTRY(e, &vma_list, list);
- debug("Converting early VMA [%p] %p-%p\n", e, e->start, e->end);
- memcpy(new, e, sizeof(*e));
- INIT_LIST_HEAD(new, list);
- __remove_vma(e, prev);
- __insert_vma(new, prev);
- }
- /* replace all reserved VMAs */
- reserved_vmas[i] = get_mem_obj_from_mgr(vma_mgr);
- assert(reserved_vmas[i]);
- }
- create_lock(&vma_list_lock);
- current_heap_top = PAL_CB(user_address.end);
- #if ENABLE_ASLR == 1
- /*
- * Randomize the heap top in top 5/6 of the user address space.
- * This is a simplified version of the mmap_base() logic in the Linux
- * kernel: https://elixir.bootlin.com/linux/v4.8/ident/mmap_base
- */
- size_t addr_rand_size =
- (PAL_CB(user_address.end) - PAL_CB(user_address.start)) * 5 / 6;
- size_t rand;
- ret = DkRandomBitsRead(&rand, sizeof(rand));
- if (ret < 0)
- return -convert_pal_errno(-ret);
- current_heap_top -= ALLOC_ALIGN_DOWN(rand % addr_rand_size);
- #endif
- debug("heap top adjusted to %p\n", current_heap_top);
- return 0;
- }
- static inline struct shim_vma * __get_new_vma (void)
- {
- struct shim_vma * tmp = NULL;
- if (vma_mgr)
- tmp = get_mem_obj_from_mgr(vma_mgr);
- if (tmp == NULL) {
- for (int i = 0 ; i < RESERVED_VMAS ; i++)
- if (reserved_vmas[i]) {
- tmp = reserved_vmas[i];
- reserved_vmas[i] = NULL;
- break;
- }
- }
- if (tmp == NULL) {
- /* Should never reach here; if this happens, increase RESERVED_VMAS */
- debug("failed to allocate new vma\n");
- BUG();
- return NULL;
- }
- memset(tmp, 0, sizeof(*tmp));
- INIT_LIST_HEAD(tmp, list);
- return tmp;
- }
- static inline void __restore_reserved_vmas (void)
- {
- bool nothing_reserved;
- do {
- nothing_reserved = true;
- for (int i = 0 ; i < RESERVED_VMAS ; i++)
- if (!reserved_vmas[i]) {
- struct shim_vma * new =
- get_mem_obj_from_mgr_enlarge(vma_mgr,
- size_align_up(VMA_MGR_ALLOC));
- /* this allocation must succeed */
- assert(new);
- reserved_vmas[i] = new;
- nothing_reserved = false;
- }
- } while (!nothing_reserved);
- }
- static inline void __drop_vma (struct shim_vma * vma)
- {
- if (vma->file)
- put_handle(vma->file);
- for (int i = 0 ; i < RESERVED_VMAS ; i++)
- if (!reserved_vmas[i]) {
- reserved_vmas[i] = vma;
- return;
- }
- free_mem_obj_to_mgr(vma_mgr, vma);
- }
- static inline void
- __assert_vma_flags (const struct shim_vma * vma, int flags)
- {
- if (!(vma->flags & VMA_UNMAPPED)
- && VMA_TYPE(vma->flags) != VMA_TYPE(flags)) {
- debug("Check vma flag failure: vma flags %x, checked flags %x\n",
- vma->flags, flags);
- BUG();
- }
- }
- static inline void
- __set_vma_comment (struct shim_vma * vma, const char * comment)
- {
- if (!comment) {
- vma->comment[0] = 0;
- return;
- }
- size_t len = strlen(comment);
- if (len > VMA_COMMENT_LEN - 1)
- len = VMA_COMMENT_LEN - 1;
- memcpy(vma->comment, comment, len);
- vma->comment[len] = 0;
- }
- /*
- * Add bookkeeping for mmap(). "prev" must point to the the immediately
- * precedent vma of the address to map, or be NULL if no vma is lower than
- * the address. If the bookkeeping area overlaps with some existing vmas,
- * we must check whether the caller (from user, internal code, or checkpointing
- * procedure) is allowed to overwrite the existing vmas.
- *
- * Bookkeeping convention (must follow):
- * Create the bookkeeping BEFORE any allocation PAL calls
- * (DkVirtualMemoryAlloc() or DkStreamMap()).
- */
- static int __bkeep_mmap (struct shim_vma * prev,
- void * start, void * end, int prot, int flags,
- struct shim_handle * file, off_t offset,
- const char * comment)
- {
- int ret = 0;
- struct shim_vma * new = __get_new_vma();
- /* First, remove any overlapping VMAs */
- ret = __bkeep_munmap(&prev, start, end, flags);
- if (ret < 0) {
- __drop_vma(new);
- return ret;
- }
- /* Inserting the new VMA */
- new->start = start;
- new->end = end;
- new->prot = prot;
- new->flags = flags|((file && (prot & PROT_WRITE)) ? VMA_TAINTED : 0);
- new->file = file;
- if (new->file)
- get_handle(new->file);
- new->offset = offset;
- __set_vma_comment(new, comment);
- __insert_vma(new, prev);
- return 0;
- }
- int bkeep_mmap (void * addr, size_t length, int prot, int flags,
- struct shim_handle * file, off_t offset, const char * comment)
- {
- if (!addr || !length)
- return -EINVAL;
- if (comment && !comment[0])
- comment = NULL;
- debug("bkeep_mmap: %p-%p\n", addr, addr + length);
- lock(&vma_list_lock);
- struct shim_vma * prev = NULL;
- __lookup_vma(addr, &prev);
- int ret = __bkeep_mmap(prev, addr, addr + length, prot, flags, file, offset,
- comment);
- assert_vma_list();
- __restore_reserved_vmas();
- unlock(&vma_list_lock);
- return ret;
- }
- /*
- * __shrink_vma() removes the area in a VMA that overlaps with [start, end).
- * The function deals with three cases:
- * (1) [start, end) overlaps with the beginning of the VMA.
- * (2) [start, end) overlaps with the ending of the VMA.
- * (3) [start, end) overlaps with the middle of the VMA. In this case, the VMA
- * is splitted into two. The new VMA is stored in 'tailptr'.
- * In either of these cases, "vma" is the only one changed among vma_list.
- */
- static inline void __shrink_vma (struct shim_vma * vma, void * start, void * end,
- struct shim_vma ** tailptr)
- {
- if (test_vma_startin(vma, start, end)) {
- /*
- * Dealing with the head: if the starting address of "vma" is in
- * [start, end), move the starting address.
- */
- if (end < vma->end) {
- if (vma->file) /* must adjust offset */
- vma->offset += end - vma->start;
- vma->start = end;
- } else {
- if (vma->file) /* must adjust offset */
- vma->offset += vma->end - vma->start;
- vma->start = vma->end;
- }
- } else if (test_vma_endin(vma, start, end)) {
- /*
- * Dealing with the tail: if the ending address of "vma" is in
- * [start, end), move the ending address.
- */
- if (start > vma->start) {
- vma->end = start;
- } else {
- vma->end = vma->start;
- }
- /* offset is not affected */
- } else if (test_vma_contain(vma, start, end)) {
- /*
- * If [start, end) is inside the range of "vma", divide up
- * the VMA. A new VMA is created to represent the remaining tail.
- */
- void * old_end = vma->end;
- vma->end = start;
- /* Remaining space after [start, end), creating a new VMA */
- if (old_end > end) {
- struct shim_vma * tail = __get_new_vma();
- tail->start = end;
- tail->end = old_end;
- tail->prot = vma->prot;
- tail->flags = vma->flags;
- tail->file = vma->file;
- if (tail->file) {
- get_handle(tail->file);
- tail->offset = vma->offset + (tail->start - vma->start);
- } else {
- tail->offset = 0;
- }
- memcpy(tail->comment, vma->comment, VMA_COMMENT_LEN);
- *tailptr = tail;
- }
- } else {
- /* Never reach here */
- BUG();
- }
- assert(!test_vma_overlap(vma, start, end));
- assert(vma->start < vma->end);
- }
- /*
- * Update bookkeeping for munmap(). "*pprev" must point to the immediately
- * precedent vma of the address to unmap, or be NULL if no vma is lower than
- * the address. If the bookkeeping area overlaps with some existing vmas,
- * we must check whether the caller (from user, internal code, or checkpointing
- * procedure) is allowed to overwrite the existing vmas. "pprev" can be
- * updated if a new vma lower than the unmapping address is added.
- *
- * Bookkeeping convention (must follow):
- * Make deallocation PAL calls (DkVirtualMemoryFree() or DkStreamUnmap())
- * BEFORE updating the bookkeeping.
- */
- static int __bkeep_munmap (struct shim_vma ** pprev,
- void * start, void * end, int flags)
- {
- struct shim_vma * prev = *pprev;
- struct shim_vma * cur, * next;
- if (!prev) {
- cur = LISTP_FIRST_ENTRY(&vma_list, struct shim_vma, list);
- if (!cur)
- return 0;
- } else {
- cur = LISTP_NEXT_ENTRY(prev, &vma_list, list);
- }
- next = cur ? LISTP_NEXT_ENTRY(cur, &vma_list, list) : NULL;
- while (cur) {
- struct shim_vma * tail = NULL;
- /* Stop unmapping if "cur" no longer overlaps with [start, end) */
- if (!test_vma_overlap(cur, start, end))
- break;
- if (VMA_TYPE(cur->flags) != VMA_TYPE(flags))
- return -EACCES;
- /* If [start, end) contains the VMA, just drop the VMA. */
- if (start <= cur->start && cur->end <= end) {
- __remove_vma(cur, prev);
- __drop_vma(cur);
- } else {
- __shrink_vma(cur, start, end, &tail);
- if (cur->end <= start) {
- prev = cur;
- if (tail) {
- __insert_vma(tail, cur); /* insert "tail" after "cur" */
- cur = tail; /* "tail" is the new "cur" */
- break;
- }
- } else if (cur->start >= end) {
- /* __shrink_vma() only creates a new VMA when the beginning of the
- * original VMA is preserved. */
- assert(!tail);
- break;
- } else {
- /* __shrink_vma() should never allow this case. */
- BUG();
- }
- }
- cur = next;
- next = cur ? LISTP_NEXT_ENTRY(cur, &vma_list, list) : NULL;
- }
- if (prev)
- assert(cur == LISTP_NEXT_ENTRY(prev, &vma_list, list));
- else
- assert(cur == LISTP_FIRST_ENTRY(&vma_list, struct shim_vma, list));
- assert(!prev || prev->end <= start);
- assert(!cur || end <= cur->start);
- *pprev = prev;
- return 0;
- }
- int bkeep_munmap (void * addr, size_t length, int flags)
- {
- if (!length)
- return -EINVAL;
- debug("bkeep_munmap: %p-%p\n", addr, addr + length);
- lock(&vma_list_lock);
- struct shim_vma * prev = NULL;
- __lookup_vma(addr, &prev);
- int ret = __bkeep_munmap(&prev, addr, addr + length, flags);
- assert_vma_list();
- __restore_reserved_vmas();
- /* DEP 5/20/19: If this is a debugging region we are removing, take it out
- * of the checkpoint. Otherwise, it will be restored erroneously after a fork. */
- remove_r_debug(addr);
- unlock(&vma_list_lock);
- return ret;
- }
- /*
- * Update bookkeeping for mprotect(). "prev" must point to the immediately
- * precedent vma of the address to protect, or be NULL if no vma is lower than
- * the address. If the bookkeeping area overlaps with some existing vmas,
- * we must check whether the caller (from user, internal code, or checkpointing
- * procedure) is allowed to overwrite the existing vmas.
- *
- * Bookkeeping convention (must follow):
- * Update the bookkeeping BEFORE calling DkVirtualMemoryProtect().
- */
- static int __bkeep_mprotect (struct shim_vma * prev,
- void * start, void * end, int prot, int flags)
- {
- struct shim_vma * cur, * next;
- if (!prev) {
- cur = LISTP_FIRST_ENTRY(&vma_list, struct shim_vma, list);
- if (!cur)
- return 0;
- } else {
- cur = LISTP_NEXT_ENTRY(prev, &vma_list, list);
- }
- next = cur ? LISTP_NEXT_ENTRY(cur, &vma_list, list) : NULL;
- while (cur) {
- struct shim_vma * new, * tail = NULL;
- /* Stop protecting if "cur" no longer overlaps with [start, end) */
- if (!test_vma_overlap(cur, start, end))
- break;
- if (VMA_TYPE(cur->flags) != VMA_TYPE(flags))
- /* For now, just shout loudly. */
- return -EACCES;
- /* If protection doesn't change anything, move on to the next */
- if (cur->prot != prot) {
- /* If [start, end) contains the VMA, just update its protection. */
- if (start <= cur->start && cur->end <= end) {
- cur->prot = prot;
- if (cur->file && (prot & PROT_WRITE)) {
- cur->flags |= VMA_TAINTED;
- }
- } else {
- /* Create a new VMA for the protected area */
- new = __get_new_vma();
- new->start = cur->start > start ? cur->start : start;
- new->end = cur->end < end ? cur->end : end;
- new->prot = prot;
- new->flags = cur->flags | ((cur->file && (prot & PROT_WRITE)) ? VMA_TAINTED : 0);
- new->file = cur->file;
- if (new->file) {
- get_handle(new->file);
- new->offset = cur->offset + (new->start - cur->start);
- } else {
- new->offset = 0;
- }
- memcpy(new->comment, cur->comment, VMA_COMMENT_LEN);
- /* Like unmapping, shrink (and potentially split) the VMA first. */
- __shrink_vma(cur, start, end, &tail);
- if (cur->end <= start) {
- prev = cur;
- if (tail) {
- __insert_vma(tail, cur); /* insert "tail" after "cur" */
- cur = tail; /* "tail" is the new "cur" */
- /* "next" is the same */
- }
- } else if (cur->start >= end) {
- /* __shrink_vma() only creates a new VMA when the beginning of the
- * original VMA is preserved. */
- assert(!tail);
- } else {
- /* __shrink_vma() should never allow this case. */
- BUG();
- }
- /* Now insert the new protected vma between prev and cur */
- __insert_vma(new, prev);
- assert(!prev || prev->end <= new->end);
- assert(new->start < new->end);
- }
- }
- prev = cur;
- cur = next;
- next = cur ? LISTP_NEXT_ENTRY(cur, &vma_list, list) : NULL;
- }
- return 0;
- }
- int bkeep_mprotect (void * addr, size_t length, int prot, int flags)
- {
- if (!addr || !length)
- return -EINVAL;
- debug("bkeep_mprotect: %p-%p\n", addr, addr + length);
- lock(&vma_list_lock);
- struct shim_vma * prev = NULL;
- __lookup_vma(addr, &prev);
- int ret = __bkeep_mprotect(prev, addr, addr + length, prot, flags);
- assert_vma_list();
- __restore_reserved_vmas();
- unlock(&vma_list_lock);
- return ret;
- }
- /*
- * Search for an unmapped area within [bottom, top) that is big enough
- * to allocate "length" bytes. The search approach is top-down.
- * If this function returns a non-NULL address, the corresponding VMA is
- * added to the VMA list.
- */
- static void * __bkeep_unmapped (void * top_addr, void * bottom_addr,
- size_t length, int prot, int flags,
- struct shim_handle * file,
- off_t offset, const char * comment)
- {
- assert(top_addr > bottom_addr);
- if (!length || length > (uintptr_t) top_addr - (uintptr_t) bottom_addr)
- return NULL;
- struct shim_vma * prev = NULL;
- struct shim_vma * cur = __lookup_vma(top_addr, &prev);
- while (true) {
- /* Set the range for searching */
- void * end = cur ? cur->start : top_addr;
- void * start =
- (prev && prev->end > bottom_addr) ? prev->end : bottom_addr;
- assert(start <= end);
- /* Check if there is enough space between prev and cur */
- if (length <= (uintptr_t) end - (uintptr_t) start) {
- /* create a new VMA at the top of the range */
- __bkeep_mmap(prev, end - length, end, prot, flags,
- file, offset, comment);
- assert_vma_list();
- debug("bkeep_unmapped: %p-%p%s%s\n", end - length, end,
- comment ? " => " : "", comment ? : "");
- return end - length;
- }
- if (!prev || prev->start <= bottom_addr)
- break;
- cur = prev;
- prev = LISTP_PREV_ENTRY(cur, &vma_list, list);
- }
- return NULL;
- }
- void * bkeep_unmapped (void * top_addr, void * bottom_addr, size_t length,
- int prot, int flags, off_t offset, const char * comment)
- {
- lock(&vma_list_lock);
- void * addr = __bkeep_unmapped(top_addr, bottom_addr, length, prot, flags,
- NULL, offset, comment);
- assert_vma_list();
- __restore_reserved_vmas();
- unlock(&vma_list_lock);
- return addr;
- }
- void * bkeep_unmapped_heap (size_t length, int prot, int flags,
- struct shim_handle * file,
- off_t offset, const char * comment)
- {
- lock(&vma_list_lock);
- void * bottom_addr = PAL_CB(user_address.start);
- void * top_addr = current_heap_top;
- void * heap_max = PAL_CB(user_address.end);
- void * addr = NULL;
- #ifdef MAP_32BIT
- /*
- * If MAP_32BIT is given in the flags, force the searching range to
- * be lower than 1ULL << 32.
- */
- #define ADDR_32BIT ((void*)(1ULL << 32))
- if (flags & MAP_32BIT) {
- /* Try the lower 4GB memory space */
- if (heap_max > ADDR_32BIT)
- heap_max = ADDR_32BIT;
- if (top_addr > heap_max)
- top_addr = heap_max;
- }
- #endif
- if (top_addr > bottom_addr) {
- /* Try first time */
- addr = __bkeep_unmapped(top_addr, bottom_addr,
- length, prot, flags,
- file, offset, comment);
- assert_vma_list();
- }
- if (addr) {
- /*
- * we only update the current heap top when we get the
- * address from [bottom_addr, current_heap_top).
- */
- if (top_addr == current_heap_top) {
- debug("heap top adjusted to %p\n", addr);
- current_heap_top = addr;
- }
- } else if (top_addr < heap_max) {
- /* Try to allocate above the current heap top */
- addr = __bkeep_unmapped(heap_max, bottom_addr,
- length, prot, flags,
- file, offset, comment);
- assert_vma_list();
- }
- __restore_reserved_vmas();
- unlock(&vma_list_lock);
- #ifdef MAP_32BIT
- assert(!(flags & MAP_32BIT) || !addr || addr + length <= ADDR_32BIT);
- #endif
- return addr;
- }
- static inline void
- __dump_vma (struct shim_vma_val * val, const struct shim_vma * vma)
- {
- val->addr = vma->start;
- val->length = vma->end - vma->start;
- val->prot = vma->prot;
- val->flags = vma->flags;
- val->file = vma->file;
- if (val->file)
- get_handle(val->file);
- val->offset = vma->offset;
- memcpy(val->comment, vma->comment, VMA_COMMENT_LEN);
- }
- int lookup_vma (void * addr, struct shim_vma_val * res)
- {
- lock(&vma_list_lock);
- struct shim_vma * vma = __lookup_vma(addr, NULL);
- if (!vma) {
- unlock(&vma_list_lock);
- return -ENOENT;
- }
- if (res)
- __dump_vma(res, vma);
- unlock(&vma_list_lock);
- return 0;
- }
- int lookup_overlap_vma (void * addr, size_t length, struct shim_vma_val * res)
- {
- struct shim_vma * tmp, * vma = NULL;
- lock(&vma_list_lock);
- LISTP_FOR_EACH_ENTRY(tmp, &vma_list, list)
- if (test_vma_overlap (tmp, addr, addr + length)) {
- vma = tmp;
- break;
- }
- if (!vma) {
- unlock(&vma_list_lock);
- return -ENOENT;
- }
- if (res)
- __dump_vma(res, vma);
- unlock(&vma_list_lock);
- return 0;
- }
- bool is_in_adjacent_vmas (void * addr, size_t length)
- {
- struct shim_vma* vma;
- struct shim_vma* prev = NULL;
- lock(&vma_list_lock);
- /* we rely on the fact that VMAs are sorted (for adjacent VMAs) */
- assert_vma_list();
- LISTP_FOR_EACH_ENTRY(vma, &vma_list, list) {
- if (addr >= vma->start && addr < vma->end) {
- assert(prev == NULL);
- prev = vma;
- }
- if (prev) {
- if (prev != vma && prev->end != vma->start) {
- /* prev and current VMAs are not adjacent */
- break;
- }
- if ((addr + length) > vma->start && (addr + length) <= vma->end) {
- unlock(&vma_list_lock);
- return true;
- }
- prev = vma;
- }
- }
- unlock(&vma_list_lock);
- return false;
- }
- int dump_all_vmas (struct shim_vma_val * vmas, size_t max_count)
- {
- struct shim_vma_val * val = vmas;
- struct shim_vma * vma;
- size_t cnt = 0;
- lock(&vma_list_lock);
- LISTP_FOR_EACH_ENTRY(vma, &vma_list, list) {
- if (VMA_TYPE(vma->flags))
- continue;
- if (vma->flags & VMA_UNMAPPED)
- continue;
- if (cnt == max_count) {
- cnt = -EOVERFLOW;
- for (size_t i = 0 ; i < max_count ; i++)
- if (vmas[i].file)
- put_handle(vmas[i].file);
- break;
- }
- __dump_vma(val, vma);
- cnt++;
- val++;
- }
- unlock(&vma_list_lock);
- return cnt;
- }
- BEGIN_CP_FUNC(vma)
- {
- __UNUSED(size);
- assert(size == sizeof(struct shim_vma_val));
- struct shim_vma_val * vma = (struct shim_vma_val *) obj;
- struct shim_vma_val * new_vma = NULL;
- PAL_FLG pal_prot = PAL_PROT(vma->prot, 0);
- ptr_t off = GET_FROM_CP_MAP(obj);
- if (!off) {
- off = ADD_CP_OFFSET(sizeof(*vma));
- ADD_TO_CP_MAP(obj, off);
- new_vma = (struct shim_vma_val *) (base + off);
- memcpy(new_vma, vma, sizeof(*vma));
- if (vma->file)
- DO_CP(handle, vma->file, &new_vma->file);
- void * need_mapped = vma->addr;
- if (NEED_MIGRATE_MEMORY(vma)) {
- void* send_addr = vma->addr;
- size_t send_size = vma->length;
- if (vma->file) {
- /*
- * Chia-Che 8/13/2017:
- * A fix for cloning a private VMA which maps a file to a process.
- *
- * (1) Application can access any page backed by the file, wholly
- * or partially.
- *
- * (2) Access beyond the last file-backed page will cause SIGBUS.
- * For reducing fork latency, the following code truncates the
- * memory size for migrating a process. The memory size is
- * truncated to the file size, round up to pages.
- *
- * (3) Data in the last file-backed page is valid before or after
- * forking. Has to be included in process migration.
- */
- off_t file_len = get_file_size(vma->file);
- if (file_len >= 0 &&
- (off_t)(vma->offset + vma->length) > file_len) {
- send_size = file_len > vma->offset ?
- file_len - vma->offset : 0;
- send_size = ALLOC_ALIGN_UP(send_size);
- }
- }
- if (send_size > 0) {
- if (!(pal_prot & PAL_PROT_READ)) {
- /* Make the area readable */
- DkVirtualMemoryProtect(send_addr, send_size,
- pal_prot|PAL_PROT_READ);
- }
- struct shim_mem_entry * mem;
- DO_CP_SIZE(memory, send_addr, send_size, &mem);
- mem->prot = pal_prot;
- need_mapped = vma->addr + vma->length;
- }
- }
- ADD_CP_FUNC_ENTRY(off);
- ADD_CP_ENTRY(ADDR, need_mapped);
- } else {
- new_vma = (struct shim_vma_val *) (base + off);
- }
- if (objp)
- *objp = (void *) new_vma;
- }
- END_CP_FUNC(vma)
- DEFINE_PROFILE_CATEGORY(inside_rs_vma, resume_func);
- DEFINE_PROFILE_INTERVAL(vma_add_bookkeep, inside_rs_vma);
- DEFINE_PROFILE_INTERVAL(vma_map_file, inside_rs_vma);
- DEFINE_PROFILE_INTERVAL(vma_map_anonymous, inside_rs_vma);
- BEGIN_RS_FUNC(vma)
- {
- struct shim_vma_val * vma = (void *) (base + GET_CP_FUNC_ENTRY());
- void * need_mapped = (void *) GET_CP_ENTRY(ADDR);
- BEGIN_PROFILE_INTERVAL();
- CP_REBASE(vma->file);
- int ret = bkeep_mmap(vma->addr, vma->length, vma->prot, vma->flags,
- vma->file, vma->offset, vma->comment);
- if (ret < 0)
- return ret;
- SAVE_PROFILE_INTERVAL(vma_add_bookkeep);
- DEBUG_RS("vma: %p-%p flags %x prot 0x%08x\n",
- vma->addr, vma->addr + vma->length, vma->flags, vma->prot);
- if (!(vma->flags & VMA_UNMAPPED)) {
- if (vma->file) {
- struct shim_mount * fs = vma->file->fs;
- get_handle(vma->file);
- if (need_mapped < vma->addr + vma->length) {
- /* first try, use hstat to force it resumes pal handle */
- assert(vma->file->fs && vma->file->fs->fs_ops &&
- vma->file->fs->fs_ops->mmap);
- void * addr = need_mapped;
- int ret = fs->fs_ops->mmap(vma->file, &addr,
- vma->addr + vma->length -
- need_mapped,
- vma->prot,
- vma->flags,
- vma->offset +
- (need_mapped - vma->addr));
- if (ret < 0)
- return ret;
- if (!addr)
- return -ENOMEM;
- if (addr != need_mapped)
- return -EACCES;
- need_mapped += vma->length;
- SAVE_PROFILE_INTERVAL(vma_map_file);
- }
- }
- if (need_mapped < vma->addr + vma->length) {
- int pal_alloc_type = 0;
- int pal_prot = vma->prot;
- if (DkVirtualMemoryAlloc(need_mapped,
- vma->addr + vma->length - need_mapped,
- pal_alloc_type, pal_prot)) {
- need_mapped += vma->length;
- SAVE_PROFILE_INTERVAL(vma_map_anonymous);
- }
- }
- if (need_mapped < vma->addr + vma->length)
- SYS_PRINTF("vma %p-%p cannot be allocated!\n", need_mapped,
- vma->addr + vma->length);
- }
- if (vma->file)
- get_handle(vma->file);
- if (vma->file)
- DEBUG_RS("%p-%p,size=%ld,prot=%08x,flags=%08x,off=%ld,path=%s,uri=%s",
- vma->addr, vma->addr + vma->length, vma->length,
- vma->prot, vma->flags, vma->offset,
- qstrgetstr(&vma->file->path), qstrgetstr(&vma->file->uri));
- else
- DEBUG_RS("%p-%p,size=%ld,prot=%08x,flags=%08x,off=%ld",
- vma->addr, vma->addr + vma->length, vma->length,
- vma->prot, vma->flags, vma->offset);
- }
- END_RS_FUNC(vma)
- BEGIN_CP_FUNC(all_vmas)
- {
- size_t count = DEFAULT_VMA_COUNT;
- struct shim_vma_val * vmas = malloc(sizeof(*vmas) * count);
- int ret;
- __UNUSED(obj);
- __UNUSED(size);
- __UNUSED(objp);
- if (!vmas)
- return -ENOMEM;
- while (true) {
- ret = dump_all_vmas(vmas, count);
- if (ret != -EOVERFLOW)
- break;
- struct shim_vma_val * new_vmas
- = malloc(sizeof(*new_vmas) * count * 2);
- if (!new_vmas) {
- free(vmas);
- return -ENOMEM;
- }
- free(vmas);
- vmas = new_vmas;
- count *= 2;
- }
- if (ret < 0)
- return ret;
- count = ret;
- for (struct shim_vma_val * vma = &vmas[count - 1] ; vma >= vmas ; vma--)
- DO_CP(vma, vma, NULL);
- free_vma_val_array(vmas, count);
- }
- END_CP_FUNC_NO_RS(all_vmas)
- void debug_print_vma (struct shim_vma *vma)
- {
- const char * type = "", * name = "";
- if (vma->file) {
- if (!qstrempty(&vma->file->path)) {
- type = " path=";
- name = qstrgetstr(&vma->file->path);
- } else if (!qstrempty(&vma->file->uri)) {
- type = " uri=";
- name = qstrgetstr(&vma->file->uri);
- }
- }
- SYS_PRINTF("[%p-%p] prot=%08x flags=%08x%s%s offset=%ld%s%s%s%s\n",
- vma->start, vma->end,
- vma->prot,
- vma->flags & ~(VMA_INTERNAL|VMA_UNMAPPED|VMA_TAINTED|VMA_CP),
- type, name,
- vma->offset,
- vma->flags & VMA_INTERNAL ? " (internal)" : "",
- vma->flags & VMA_UNMAPPED ? " (unmapped)" : "",
- vma->comment[0] ? " comment=" : "",
- vma->comment[0] ? vma->comment : "");
- }
- void debug_print_vma_list (void)
- {
- SYS_PRINTF("vma bookkeeping:\n");
- struct shim_vma * vma;
- LISTP_FOR_EACH_ENTRY(vma, &vma_list, list) {
- debug_print_vma(vma);
- }
- }
|