[0ee077ee] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Jakub Jermar
|
---|
[0ee077ee] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[cc73a8a1] | 29 | /** @addtogroup genericmm
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
[0ee077ee] | 33 | /**
|
---|
[b45c443] | 34 | * @file
|
---|
[0ee077ee] | 35 | * @brief Backend for address space areas backed by an ELF image.
|
---|
| 36 | */
|
---|
| 37 |
|
---|
[d4b5542] | 38 | #include <lib/elf.h>
|
---|
[0ee077ee] | 39 | #include <debug.h>
|
---|
| 40 | #include <arch/types.h>
|
---|
| 41 | #include <typedefs.h>
|
---|
| 42 | #include <mm/as.h>
|
---|
| 43 | #include <mm/frame.h>
|
---|
| 44 | #include <mm/slab.h>
|
---|
[00b595b] | 45 | #include <mm/page.h>
|
---|
| 46 | #include <genarch/mm/page_pt.h>
|
---|
| 47 | #include <genarch/mm/page_ht.h>
|
---|
[0ee077ee] | 48 | #include <align.h>
|
---|
| 49 | #include <memstr.h>
|
---|
| 50 | #include <macros.h>
|
---|
| 51 | #include <arch.h>
|
---|
| 52 |
|
---|
[9f63a83] | 53 | #ifdef CONFIG_VIRT_IDX_DCACHE
|
---|
| 54 | #include <arch/mm/cache.h>
|
---|
| 55 | #endif
|
---|
| 56 |
|
---|
[7f1c620] | 57 | static int elf_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access);
|
---|
| 58 | static void elf_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame);
|
---|
[00b595b] | 59 | static void elf_share(as_area_t *area);
|
---|
[0ee077ee] | 60 |
|
---|
| 61 | mem_backend_t elf_backend = {
|
---|
| 62 | .page_fault = elf_page_fault,
|
---|
| 63 | .frame_free = elf_frame_free,
|
---|
[00b595b] | 64 | .share = elf_share
|
---|
[0ee077ee] | 65 | };
|
---|
| 66 |
|
---|
| 67 | /** Service a page fault in the ELF backend address space area.
|
---|
| 68 | *
|
---|
| 69 | * The address space area and page tables must be already locked.
|
---|
| 70 | *
|
---|
| 71 | * @param area Pointer to the address space area.
|
---|
| 72 | * @param addr Faulting virtual address.
|
---|
| 73 | * @param access Access mode that caused the fault (i.e. read/write/exec).
|
---|
| 74 | *
|
---|
| 75 | * @return AS_PF_FAULT on failure (i.e. page fault) or AS_PF_OK on success (i.e. serviced).
|
---|
| 76 | */
|
---|
[7f1c620] | 77 | int elf_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access)
|
---|
[0ee077ee] | 78 | {
|
---|
[127c957b] | 79 | elf_header_t *elf = area->backend_data.elf;
|
---|
| 80 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
[00b595b] | 81 | btree_node_t *leaf;
|
---|
[7f1c620] | 82 | uintptr_t base, frame;
|
---|
[0ee077ee] | 83 | index_t i;
|
---|
| 84 |
|
---|
| 85 | if (!as_area_check_access(area, access))
|
---|
| 86 | return AS_PF_FAULT;
|
---|
| 87 |
|
---|
| 88 | ASSERT((addr >= entry->p_vaddr) && (addr < entry->p_vaddr + entry->p_memsz));
|
---|
| 89 | i = (addr - entry->p_vaddr) >> PAGE_WIDTH;
|
---|
[7f1c620] | 90 | base = (uintptr_t) (((void *) elf) + entry->p_offset);
|
---|
[0ee077ee] | 91 | ASSERT(ALIGN_UP(base, FRAME_SIZE) == base);
|
---|
[00b595b] | 92 |
|
---|
| 93 | if (area->sh_info) {
|
---|
| 94 | bool found = false;
|
---|
| 95 |
|
---|
| 96 | /*
|
---|
| 97 | * The address space area is shared.
|
---|
| 98 | */
|
---|
| 99 |
|
---|
| 100 | mutex_lock(&area->sh_info->lock);
|
---|
[7f1c620] | 101 | frame = (uintptr_t) btree_search(&area->sh_info->pagemap,
|
---|
[00b595b] | 102 | ALIGN_DOWN(addr, PAGE_SIZE) - area->base, &leaf);
|
---|
| 103 | if (!frame) {
|
---|
| 104 | int i;
|
---|
| 105 |
|
---|
| 106 | /*
|
---|
| 107 | * Workaround for valid NULL address.
|
---|
| 108 | */
|
---|
| 109 |
|
---|
| 110 | for (i = 0; i < leaf->keys; i++) {
|
---|
| 111 | if (leaf->key[i] == ALIGN_DOWN(addr, PAGE_SIZE)) {
|
---|
| 112 | found = true;
|
---|
| 113 | break;
|
---|
| 114 | }
|
---|
| 115 | }
|
---|
| 116 | }
|
---|
| 117 | if (frame || found) {
|
---|
[c9d2235b] | 118 | frame_reference_add(ADDR2PFN(frame));
|
---|
[00b595b] | 119 | page_mapping_insert(AS, addr, frame, as_area_get_flags(area));
|
---|
| 120 | if (!used_space_insert(area, ALIGN_DOWN(addr, PAGE_SIZE), 1))
|
---|
| 121 | panic("Could not insert used space.\n");
|
---|
| 122 | mutex_unlock(&area->sh_info->lock);
|
---|
| 123 | return AS_PF_OK;
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | /*
|
---|
| 128 | * The area is either not shared or the pagemap does not contain the mapping.
|
---|
| 129 | */
|
---|
[0ee077ee] | 130 |
|
---|
| 131 | if (ALIGN_DOWN(addr, PAGE_SIZE) + PAGE_SIZE < entry->p_vaddr + entry->p_filesz) {
|
---|
| 132 | /*
|
---|
| 133 | * Initialized portion of the segment. The memory is backed
|
---|
| 134 | * directly by the content of the ELF image. Pages are
|
---|
| 135 | * only copied if the segment is writable so that there
|
---|
| 136 | * can be more instantions of the same memory ELF image
|
---|
| 137 | * used at a time. Note that this could be later done
|
---|
| 138 | * as COW.
|
---|
| 139 | */
|
---|
| 140 | if (entry->p_flags & PF_W) {
|
---|
[7f1c620] | 141 | frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
|
---|
[0ee077ee] | 142 | memcpy((void *) PA2KA(frame), (void *) (base + i*FRAME_SIZE), FRAME_SIZE);
|
---|
[00b595b] | 143 |
|
---|
| 144 | if (area->sh_info) {
|
---|
[c9d2235b] | 145 | frame_reference_add(ADDR2PFN(frame));
|
---|
[00b595b] | 146 | btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
|
---|
| 147 | (void *) frame, leaf);
|
---|
| 148 | }
|
---|
| 149 |
|
---|
[0ee077ee] | 150 | } else {
|
---|
| 151 | frame = KA2PA(base + i*FRAME_SIZE);
|
---|
| 152 | }
|
---|
| 153 | } else if (ALIGN_DOWN(addr, PAGE_SIZE) >= ALIGN_UP(entry->p_vaddr + entry->p_filesz, PAGE_SIZE)) {
|
---|
| 154 | /*
|
---|
| 155 | * This is the uninitialized portion of the segment.
|
---|
| 156 | * It is not physically present in the ELF image.
|
---|
| 157 | * To resolve the situation, a frame must be allocated
|
---|
| 158 | * and cleared.
|
---|
| 159 | */
|
---|
[7f1c620] | 160 | frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
|
---|
[0ee077ee] | 161 | memsetb(PA2KA(frame), FRAME_SIZE, 0);
|
---|
[00b595b] | 162 |
|
---|
| 163 | if (area->sh_info) {
|
---|
[c9d2235b] | 164 | frame_reference_add(ADDR2PFN(frame));
|
---|
[00b595b] | 165 | btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
|
---|
| 166 | (void *) frame, leaf);
|
---|
| 167 | }
|
---|
| 168 |
|
---|
[0ee077ee] | 169 | } else {
|
---|
| 170 | size_t size;
|
---|
| 171 | /*
|
---|
| 172 | * The mixed case.
|
---|
| 173 | * The lower part is backed by the ELF image and
|
---|
| 174 | * the upper part is anonymous memory.
|
---|
| 175 | */
|
---|
| 176 | size = entry->p_filesz - (i<<PAGE_WIDTH);
|
---|
[7f1c620] | 177 | frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
|
---|
[0ee077ee] | 178 | memsetb(PA2KA(frame) + size, FRAME_SIZE - size, 0);
|
---|
| 179 | memcpy((void *) PA2KA(frame), (void *) (base + i*FRAME_SIZE), size);
|
---|
[00b595b] | 180 |
|
---|
| 181 | if (area->sh_info) {
|
---|
[c9d2235b] | 182 | frame_reference_add(ADDR2PFN(frame));
|
---|
[00b595b] | 183 | btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
|
---|
| 184 | (void *) frame, leaf);
|
---|
| 185 | }
|
---|
| 186 |
|
---|
[0ee077ee] | 187 | }
|
---|
| 188 |
|
---|
[00b595b] | 189 | if (area->sh_info)
|
---|
| 190 | mutex_unlock(&area->sh_info->lock);
|
---|
| 191 |
|
---|
[0ee077ee] | 192 | page_mapping_insert(AS, addr, frame, as_area_get_flags(area));
|
---|
[00b595b] | 193 | if (!used_space_insert(area, ALIGN_DOWN(addr, PAGE_SIZE), 1))
|
---|
| 194 | panic("Could not insert used space.\n");
|
---|
[0ee077ee] | 195 |
|
---|
| 196 | return AS_PF_OK;
|
---|
| 197 | }
|
---|
| 198 |
|
---|
| 199 | /** Free a frame that is backed by the ELF backend.
|
---|
| 200 | *
|
---|
| 201 | * The address space area and page tables must be already locked.
|
---|
| 202 | *
|
---|
| 203 | * @param area Pointer to the address space area.
|
---|
| 204 | * @param page Page that is mapped to frame. Must be aligned to PAGE_SIZE.
|
---|
| 205 | * @param frame Frame to be released.
|
---|
| 206 | *
|
---|
| 207 | */
|
---|
[7f1c620] | 208 | void elf_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame)
|
---|
[0ee077ee] | 209 | {
|
---|
[127c957b] | 210 | elf_header_t *elf = area->backend_data.elf;
|
---|
| 211 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
[7f1c620] | 212 | uintptr_t base;
|
---|
[0ee077ee] | 213 | index_t i;
|
---|
| 214 |
|
---|
| 215 | ASSERT((page >= entry->p_vaddr) && (page < entry->p_vaddr + entry->p_memsz));
|
---|
| 216 | i = (page - entry->p_vaddr) >> PAGE_WIDTH;
|
---|
[7f1c620] | 217 | base = (uintptr_t) (((void *) elf) + entry->p_offset);
|
---|
[0ee077ee] | 218 | ASSERT(ALIGN_UP(base, FRAME_SIZE) == base);
|
---|
| 219 |
|
---|
| 220 | if (page + PAGE_SIZE < ALIGN_UP(entry->p_vaddr + entry->p_filesz, PAGE_SIZE)) {
|
---|
| 221 | if (entry->p_flags & PF_W) {
|
---|
| 222 | /*
|
---|
| 223 | * Free the frame with the copy of writable segment data.
|
---|
| 224 | */
|
---|
[2e9eae2] | 225 | frame_free(frame);
|
---|
[9f63a83] | 226 | #ifdef CONFIG_VIRT_IDX_DCACHE
|
---|
| 227 | dcache_flush_frame(page, frame);
|
---|
| 228 | #endif
|
---|
[0ee077ee] | 229 | }
|
---|
| 230 | } else {
|
---|
| 231 | /*
|
---|
| 232 | * The frame is either anonymous memory or the mixed case (i.e. lower
|
---|
| 233 | * part is backed by the ELF image and the upper is anonymous).
|
---|
| 234 | * In any case, a frame needs to be freed.
|
---|
| 235 | */
|
---|
[2e9eae2] | 236 | frame_free(frame);
|
---|
[9f63a83] | 237 | #ifdef CONFIG_VIRT_IDX_DCACHE
|
---|
| 238 | dcache_flush_frame(page, frame);
|
---|
| 239 | #endif
|
---|
[0ee077ee] | 240 | }
|
---|
| 241 | }
|
---|
[00b595b] | 242 |
|
---|
| 243 | /** Share ELF image backed address space area.
|
---|
| 244 | *
|
---|
| 245 | * If the area is writable, then all mapped pages are duplicated in the pagemap.
|
---|
| 246 | * Otherwise only portions of the area that are not backed by the ELF image
|
---|
| 247 | * are put into the pagemap.
|
---|
| 248 | *
|
---|
| 249 | * The address space and address space area must be locked prior to the call.
|
---|
| 250 | *
|
---|
| 251 | * @param area Address space area.
|
---|
| 252 | */
|
---|
| 253 | void elf_share(as_area_t *area)
|
---|
| 254 | {
|
---|
| 255 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
| 256 | link_t *cur;
|
---|
| 257 | btree_node_t *leaf, *node;
|
---|
[7f1c620] | 258 | uintptr_t start_anon = entry->p_vaddr + entry->p_filesz;
|
---|
[00b595b] | 259 |
|
---|
| 260 | /*
|
---|
| 261 | * Find the node in which to start linear search.
|
---|
| 262 | */
|
---|
| 263 | if (area->flags & AS_AREA_WRITE) {
|
---|
| 264 | node = list_get_instance(area->used_space.leaf_head.next, btree_node_t, leaf_link);
|
---|
| 265 | } else {
|
---|
| 266 | (void) btree_search(&area->sh_info->pagemap, start_anon, &leaf);
|
---|
| 267 | node = btree_leaf_node_left_neighbour(&area->sh_info->pagemap, leaf);
|
---|
| 268 | if (!node)
|
---|
| 269 | node = leaf;
|
---|
| 270 | }
|
---|
| 271 |
|
---|
| 272 | /*
|
---|
| 273 | * Copy used anonymous portions of the area to sh_info's page map.
|
---|
| 274 | */
|
---|
| 275 | mutex_lock(&area->sh_info->lock);
|
---|
| 276 | for (cur = &node->leaf_link; cur != &area->used_space.leaf_head; cur = cur->next) {
|
---|
| 277 | int i;
|
---|
| 278 |
|
---|
| 279 | node = list_get_instance(cur, btree_node_t, leaf_link);
|
---|
| 280 |
|
---|
| 281 | for (i = 0; i < node->keys; i++) {
|
---|
[7f1c620] | 282 | uintptr_t base = node->key[i];
|
---|
[00b595b] | 283 | count_t count = (count_t) node->value[i];
|
---|
| 284 | int j;
|
---|
| 285 |
|
---|
| 286 | /*
|
---|
| 287 | * Skip read-only areas of used space that are backed
|
---|
| 288 | * by the ELF image.
|
---|
| 289 | */
|
---|
| 290 | if (!(area->flags & AS_AREA_WRITE))
|
---|
| 291 | if (base + count*PAGE_SIZE <= start_anon)
|
---|
| 292 | continue;
|
---|
| 293 |
|
---|
| 294 | for (j = 0; j < count; j++) {
|
---|
| 295 | pte_t *pte;
|
---|
| 296 |
|
---|
| 297 | /*
|
---|
| 298 | * Skip read-only pages that are backed by the ELF image.
|
---|
| 299 | */
|
---|
| 300 | if (!(area->flags & AS_AREA_WRITE))
|
---|
| 301 | if (base + (j + 1)*PAGE_SIZE <= start_anon)
|
---|
| 302 | continue;
|
---|
| 303 |
|
---|
| 304 | page_table_lock(area->as, false);
|
---|
| 305 | pte = page_mapping_find(area->as, base + j*PAGE_SIZE);
|
---|
| 306 | ASSERT(pte && PTE_VALID(pte) && PTE_PRESENT(pte));
|
---|
| 307 | btree_insert(&area->sh_info->pagemap, (base + j*PAGE_SIZE) - area->base,
|
---|
| 308 | (void *) PTE_GET_FRAME(pte), NULL);
|
---|
| 309 | page_table_unlock(area->as, false);
|
---|
[c9d2235b] | 310 | frame_reference_add(ADDR2PFN(PTE_GET_FRAME(pte)));
|
---|
[00b595b] | 311 | }
|
---|
| 312 |
|
---|
| 313 | }
|
---|
| 314 | }
|
---|
| 315 | mutex_unlock(&area->sh_info->lock);
|
---|
| 316 | }
|
---|
[b45c443] | 317 |
|
---|
[cc73a8a1] | 318 | /** @}
|
---|
[b45c443] | 319 | */
|
---|