source: mainline/kernel/generic/src/mm/backend_elf.c@ 6a75c134

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6a75c134 was 83b6ba9f, checked in by Jakub Jermar <jakub@…>, 11 years ago

Support for AS area backend shared data.

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