1 | /*
|
---|
2 | * Copyright (c) 2006 Jakub Jermar
|
---|
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 |
|
---|
29 | /** @addtogroup genericmm
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * @file
|
---|
35 | * @brief Backend for address space areas backed by an ELF image.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <lib/elf.h>
|
---|
39 | #include <debug.h>
|
---|
40 | #include <typedefs.h>
|
---|
41 | #include <mm/as.h>
|
---|
42 | #include <mm/frame.h>
|
---|
43 | #include <mm/slab.h>
|
---|
44 | #include <mm/page.h>
|
---|
45 | #include <mm/reserve.h>
|
---|
46 | #include <genarch/mm/page_pt.h>
|
---|
47 | #include <genarch/mm/page_ht.h>
|
---|
48 | #include <align.h>
|
---|
49 | #include <memstr.h>
|
---|
50 | #include <macros.h>
|
---|
51 | #include <arch.h>
|
---|
52 | #include <arch/barrier.h>
|
---|
53 |
|
---|
54 | static bool elf_create(as_area_t *);
|
---|
55 | static bool elf_resize(as_area_t *, size_t);
|
---|
56 | static void elf_share(as_area_t *);
|
---|
57 | static void elf_destroy(as_area_t *);
|
---|
58 |
|
---|
59 | static int elf_page_fault(as_area_t *, uintptr_t, pf_access_t);
|
---|
60 | static void elf_frame_free(as_area_t *, uintptr_t, uintptr_t);
|
---|
61 |
|
---|
62 | mem_backend_t elf_backend = {
|
---|
63 | .create = elf_create,
|
---|
64 | .resize = elf_resize,
|
---|
65 | .share = elf_share,
|
---|
66 | .destroy = elf_destroy,
|
---|
67 |
|
---|
68 | .page_fault = elf_page_fault,
|
---|
69 | .frame_free = elf_frame_free,
|
---|
70 | };
|
---|
71 |
|
---|
72 | static size_t elf_nonanon_pages_get(as_area_t *area)
|
---|
73 | {
|
---|
74 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
75 | uintptr_t first = ALIGN_UP(entry->p_vaddr, PAGE_SIZE);
|
---|
76 | uintptr_t last = ALIGN_DOWN(entry->p_vaddr + entry->p_filesz,
|
---|
77 | PAGE_SIZE);
|
---|
78 |
|
---|
79 | if (entry->p_flags & PF_W)
|
---|
80 | return 0;
|
---|
81 |
|
---|
82 | if (last < first)
|
---|
83 | return 0;
|
---|
84 |
|
---|
85 | return last - first;
|
---|
86 | }
|
---|
87 |
|
---|
88 | bool elf_create(as_area_t *area)
|
---|
89 | {
|
---|
90 | size_t nonanon_pages = elf_nonanon_pages_get(area);
|
---|
91 |
|
---|
92 | if (area->pages <= nonanon_pages)
|
---|
93 | return true;
|
---|
94 |
|
---|
95 | return reserve_try_alloc(area->pages - nonanon_pages);
|
---|
96 | }
|
---|
97 |
|
---|
98 | bool elf_resize(as_area_t *area, size_t new_pages)
|
---|
99 | {
|
---|
100 | size_t nonanon_pages = elf_nonanon_pages_get(area);
|
---|
101 |
|
---|
102 | if (new_pages > area->pages) {
|
---|
103 | /* The area is growing. */
|
---|
104 | if (area->pages >= nonanon_pages)
|
---|
105 | return reserve_try_alloc(new_pages - area->pages);
|
---|
106 | else if (new_pages > nonanon_pages)
|
---|
107 | return reserve_try_alloc(new_pages - nonanon_pages);
|
---|
108 | } else if (new_pages < area->pages) {
|
---|
109 | /* The area is shrinking. */
|
---|
110 | if (new_pages >= nonanon_pages)
|
---|
111 | reserve_free(area->pages - new_pages);
|
---|
112 | else if (area->pages > nonanon_pages)
|
---|
113 | reserve_free(nonanon_pages - new_pages);
|
---|
114 | }
|
---|
115 |
|
---|
116 | return true;
|
---|
117 | }
|
---|
118 |
|
---|
119 | /** Share ELF image backed address space area.
|
---|
120 | *
|
---|
121 | * If the area is writable, then all mapped pages are duplicated in the pagemap.
|
---|
122 | * Otherwise only portions of the area that are not backed by the ELF image
|
---|
123 | * are put into the pagemap.
|
---|
124 | *
|
---|
125 | * @param area Address space area.
|
---|
126 | */
|
---|
127 | void elf_share(as_area_t *area)
|
---|
128 | {
|
---|
129 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
130 | link_t *cur;
|
---|
131 | btree_node_t *leaf, *node;
|
---|
132 | uintptr_t start_anon = entry->p_vaddr + entry->p_filesz;
|
---|
133 |
|
---|
134 | ASSERT(mutex_locked(&area->as->lock));
|
---|
135 | ASSERT(mutex_locked(&area->lock));
|
---|
136 |
|
---|
137 | /*
|
---|
138 | * Find the node in which to start linear search.
|
---|
139 | */
|
---|
140 | if (area->flags & AS_AREA_WRITE) {
|
---|
141 | node = list_get_instance(area->used_space.leaf_head.next,
|
---|
142 | btree_node_t, leaf_link);
|
---|
143 | } else {
|
---|
144 | (void) btree_search(&area->sh_info->pagemap, start_anon, &leaf);
|
---|
145 | node = btree_leaf_node_left_neighbour(&area->sh_info->pagemap,
|
---|
146 | leaf);
|
---|
147 | if (!node)
|
---|
148 | node = leaf;
|
---|
149 | }
|
---|
150 |
|
---|
151 | /*
|
---|
152 | * Copy used anonymous portions of the area to sh_info's page map.
|
---|
153 | */
|
---|
154 | mutex_lock(&area->sh_info->lock);
|
---|
155 | for (cur = &node->leaf_link; cur != &area->used_space.leaf_head;
|
---|
156 | cur = cur->next) {
|
---|
157 | unsigned int i;
|
---|
158 |
|
---|
159 | node = list_get_instance(cur, btree_node_t, leaf_link);
|
---|
160 |
|
---|
161 | for (i = 0; i < node->keys; i++) {
|
---|
162 | uintptr_t base = node->key[i];
|
---|
163 | size_t count = (size_t) node->value[i];
|
---|
164 | unsigned int j;
|
---|
165 |
|
---|
166 | /*
|
---|
167 | * Skip read-only areas of used space that are backed
|
---|
168 | * by the ELF image.
|
---|
169 | */
|
---|
170 | if (!(area->flags & AS_AREA_WRITE))
|
---|
171 | if (base >= entry->p_vaddr &&
|
---|
172 | base + count * PAGE_SIZE <= start_anon)
|
---|
173 | continue;
|
---|
174 |
|
---|
175 | for (j = 0; j < count; j++) {
|
---|
176 | pte_t *pte;
|
---|
177 |
|
---|
178 | /*
|
---|
179 | * Skip read-only pages that are backed by the
|
---|
180 | * ELF image.
|
---|
181 | */
|
---|
182 | if (!(area->flags & AS_AREA_WRITE))
|
---|
183 | if (base >= entry->p_vaddr &&
|
---|
184 | base + (j + 1) * PAGE_SIZE <=
|
---|
185 | start_anon)
|
---|
186 | continue;
|
---|
187 |
|
---|
188 | page_table_lock(area->as, false);
|
---|
189 | pte = page_mapping_find(area->as,
|
---|
190 | base + j * PAGE_SIZE);
|
---|
191 | ASSERT(pte && PTE_VALID(pte) &&
|
---|
192 | PTE_PRESENT(pte));
|
---|
193 | btree_insert(&area->sh_info->pagemap,
|
---|
194 | (base + j * PAGE_SIZE) - area->base,
|
---|
195 | (void *) PTE_GET_FRAME(pte), NULL);
|
---|
196 | page_table_unlock(area->as, false);
|
---|
197 |
|
---|
198 | pfn_t pfn = ADDR2PFN(PTE_GET_FRAME(pte));
|
---|
199 | frame_reference_add(pfn);
|
---|
200 | }
|
---|
201 |
|
---|
202 | }
|
---|
203 | }
|
---|
204 | mutex_unlock(&area->sh_info->lock);
|
---|
205 | }
|
---|
206 |
|
---|
207 | void elf_destroy(as_area_t *area)
|
---|
208 | {
|
---|
209 | size_t nonanon_pages = elf_nonanon_pages_get(area);
|
---|
210 |
|
---|
211 | if (area->pages > nonanon_pages)
|
---|
212 | reserve_free(area->pages - nonanon_pages);
|
---|
213 | }
|
---|
214 |
|
---|
215 | /** Service a page fault in the ELF backend address space area.
|
---|
216 | *
|
---|
217 | * The address space area and page tables must be already locked.
|
---|
218 | *
|
---|
219 | * @param area Pointer to the address space area.
|
---|
220 | * @param addr Faulting virtual address.
|
---|
221 | * @param access Access mode that caused the fault (i.e.
|
---|
222 | * read/write/exec).
|
---|
223 | *
|
---|
224 | * @return AS_PF_FAULT on failure (i.e. page fault) or AS_PF_OK
|
---|
225 | * on success (i.e. serviced).
|
---|
226 | */
|
---|
227 | int elf_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access)
|
---|
228 | {
|
---|
229 | elf_header_t *elf = area->backend_data.elf;
|
---|
230 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
231 | btree_node_t *leaf;
|
---|
232 | uintptr_t base, frame, page, start_anon;
|
---|
233 | size_t i;
|
---|
234 | bool dirty = false;
|
---|
235 |
|
---|
236 | ASSERT(page_table_locked(AS));
|
---|
237 | ASSERT(mutex_locked(&area->lock));
|
---|
238 |
|
---|
239 | if (!as_area_check_access(area, access))
|
---|
240 | return AS_PF_FAULT;
|
---|
241 |
|
---|
242 | if (addr < ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE))
|
---|
243 | return AS_PF_FAULT;
|
---|
244 |
|
---|
245 | if (addr >= entry->p_vaddr + entry->p_memsz)
|
---|
246 | return AS_PF_FAULT;
|
---|
247 |
|
---|
248 | i = (addr - ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE)) >> PAGE_WIDTH;
|
---|
249 | base = (uintptr_t)
|
---|
250 | (((void *) elf) + ALIGN_DOWN(entry->p_offset, PAGE_SIZE));
|
---|
251 |
|
---|
252 | /* Virtual address of faulting page*/
|
---|
253 | page = ALIGN_DOWN(addr, PAGE_SIZE);
|
---|
254 |
|
---|
255 | /* Virtual address of the end of initialized part of segment */
|
---|
256 | start_anon = entry->p_vaddr + entry->p_filesz;
|
---|
257 |
|
---|
258 | if (area->sh_info) {
|
---|
259 | bool found = false;
|
---|
260 |
|
---|
261 | /*
|
---|
262 | * The address space area is shared.
|
---|
263 | */
|
---|
264 |
|
---|
265 | mutex_lock(&area->sh_info->lock);
|
---|
266 | frame = (uintptr_t) btree_search(&area->sh_info->pagemap,
|
---|
267 | page - area->base, &leaf);
|
---|
268 | if (!frame) {
|
---|
269 | unsigned int i;
|
---|
270 |
|
---|
271 | /*
|
---|
272 | * Workaround for valid NULL address.
|
---|
273 | */
|
---|
274 |
|
---|
275 | for (i = 0; i < leaf->keys; i++) {
|
---|
276 | if (leaf->key[i] == page - area->base) {
|
---|
277 | found = true;
|
---|
278 | break;
|
---|
279 | }
|
---|
280 | }
|
---|
281 | }
|
---|
282 | if (frame || found) {
|
---|
283 | frame_reference_add(ADDR2PFN(frame));
|
---|
284 | page_mapping_insert(AS, addr, frame,
|
---|
285 | as_area_get_flags(area));
|
---|
286 | if (!used_space_insert(area, page, 1))
|
---|
287 | panic("Cannot insert used space.");
|
---|
288 | mutex_unlock(&area->sh_info->lock);
|
---|
289 | return AS_PF_OK;
|
---|
290 | }
|
---|
291 | }
|
---|
292 |
|
---|
293 | /*
|
---|
294 | * The area is either not shared or the pagemap does not contain the
|
---|
295 | * mapping.
|
---|
296 | */
|
---|
297 | if (page >= entry->p_vaddr && page + PAGE_SIZE <= start_anon) {
|
---|
298 | /*
|
---|
299 | * Initialized portion of the segment. The memory is backed
|
---|
300 | * directly by the content of the ELF image. Pages are
|
---|
301 | * only copied if the segment is writable so that there
|
---|
302 | * can be more instantions of the same memory ELF image
|
---|
303 | * used at a time. Note that this could be later done
|
---|
304 | * as COW.
|
---|
305 | */
|
---|
306 | if (entry->p_flags & PF_W) {
|
---|
307 | frame = (uintptr_t)frame_alloc_noreserve(ONE_FRAME, 0);
|
---|
308 | memcpy((void *) PA2KA(frame),
|
---|
309 | (void *) (base + i * FRAME_SIZE), FRAME_SIZE);
|
---|
310 | if (entry->p_flags & PF_X) {
|
---|
311 | smc_coherence_block((void *) PA2KA(frame),
|
---|
312 | FRAME_SIZE);
|
---|
313 | }
|
---|
314 | dirty = true;
|
---|
315 | } else {
|
---|
316 | frame = KA2PA(base + i * FRAME_SIZE);
|
---|
317 | }
|
---|
318 | } else if (page >= start_anon) {
|
---|
319 | /*
|
---|
320 | * This is the uninitialized portion of the segment.
|
---|
321 | * It is not physically present in the ELF image.
|
---|
322 | * To resolve the situation, a frame must be allocated
|
---|
323 | * and cleared.
|
---|
324 | */
|
---|
325 | frame = (uintptr_t) frame_alloc_noreserve(ONE_FRAME, 0);
|
---|
326 | memsetb((void *) PA2KA(frame), FRAME_SIZE, 0);
|
---|
327 | dirty = true;
|
---|
328 | } else {
|
---|
329 | size_t pad_lo, pad_hi;
|
---|
330 | /*
|
---|
331 | * The mixed case.
|
---|
332 | *
|
---|
333 | * The middle part is backed by the ELF image and
|
---|
334 | * the lower and upper parts are anonymous memory.
|
---|
335 | * (The segment can be and often is shorter than 1 page).
|
---|
336 | */
|
---|
337 | if (page < entry->p_vaddr)
|
---|
338 | pad_lo = entry->p_vaddr - page;
|
---|
339 | else
|
---|
340 | pad_lo = 0;
|
---|
341 |
|
---|
342 | if (start_anon < page + PAGE_SIZE)
|
---|
343 | pad_hi = page + PAGE_SIZE - start_anon;
|
---|
344 | else
|
---|
345 | pad_hi = 0;
|
---|
346 |
|
---|
347 | frame = (uintptr_t) frame_alloc_noreserve(ONE_FRAME, 0);
|
---|
348 | memcpy((void *) (PA2KA(frame) + pad_lo),
|
---|
349 | (void *) (base + i * FRAME_SIZE + pad_lo),
|
---|
350 | FRAME_SIZE - pad_lo - pad_hi);
|
---|
351 | if (entry->p_flags & PF_X) {
|
---|
352 | smc_coherence_block((void *) (PA2KA(frame) + pad_lo),
|
---|
353 | FRAME_SIZE - pad_lo - pad_hi);
|
---|
354 | }
|
---|
355 | memsetb((void *) PA2KA(frame), pad_lo, 0);
|
---|
356 | memsetb((void *) (PA2KA(frame) + FRAME_SIZE - pad_hi), pad_hi,
|
---|
357 | 0);
|
---|
358 | dirty = true;
|
---|
359 | }
|
---|
360 |
|
---|
361 | if (dirty && area->sh_info) {
|
---|
362 | frame_reference_add(ADDR2PFN(frame));
|
---|
363 | btree_insert(&area->sh_info->pagemap, page - area->base,
|
---|
364 | (void *) frame, leaf);
|
---|
365 | }
|
---|
366 |
|
---|
367 | if (area->sh_info)
|
---|
368 | mutex_unlock(&area->sh_info->lock);
|
---|
369 |
|
---|
370 | page_mapping_insert(AS, addr, frame, as_area_get_flags(area));
|
---|
371 | if (!used_space_insert(area, page, 1))
|
---|
372 | panic("Cannot insert used space.");
|
---|
373 |
|
---|
374 | return AS_PF_OK;
|
---|
375 | }
|
---|
376 |
|
---|
377 | /** Free a frame that is backed by the ELF backend.
|
---|
378 | *
|
---|
379 | * The address space area and page tables must be already locked.
|
---|
380 | *
|
---|
381 | * @param area Pointer to the address space area.
|
---|
382 | * @param page Page that is mapped to frame. Must be aligned to
|
---|
383 | * PAGE_SIZE.
|
---|
384 | * @param frame Frame to be released.
|
---|
385 | *
|
---|
386 | */
|
---|
387 | void elf_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame)
|
---|
388 | {
|
---|
389 | elf_segment_header_t *entry = area->backend_data.segment;
|
---|
390 | uintptr_t start_anon;
|
---|
391 |
|
---|
392 | ASSERT(page_table_locked(area->as));
|
---|
393 | ASSERT(mutex_locked(&area->lock));
|
---|
394 |
|
---|
395 | ASSERT(page >= ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE));
|
---|
396 | ASSERT(page < entry->p_vaddr + entry->p_memsz);
|
---|
397 |
|
---|
398 | start_anon = entry->p_vaddr + entry->p_filesz;
|
---|
399 |
|
---|
400 | if (page >= entry->p_vaddr && page + PAGE_SIZE <= start_anon) {
|
---|
401 | if (entry->p_flags & PF_W) {
|
---|
402 | /*
|
---|
403 | * Free the frame with the copy of writable segment
|
---|
404 | * data.
|
---|
405 | */
|
---|
406 | frame_free_noreserve(frame);
|
---|
407 | }
|
---|
408 | } else {
|
---|
409 | /*
|
---|
410 | * The frame is either anonymous memory or the mixed case (i.e.
|
---|
411 | * lower part is backed by the ELF image and the upper is
|
---|
412 | * anonymous). In any case, a frame needs to be freed.
|
---|
413 | */
|
---|
414 | frame_free_noreserve(frame);
|
---|
415 | }
|
---|
416 | }
|
---|
417 |
|
---|
418 | /** @}
|
---|
419 | */
|
---|