source: mainline/kernel/generic/src/mm/backend_elf.c@ 1ba41c5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1ba41c5 was 9f63a83, checked in by Jakub Jermar <jakub@…>, 18 years ago

Beat the implicit illegal virtual alias created by reusing userspace frames.
In the anonymous and ELF backends, if the architecture has virtually indexed D-cache,
selectively flush cachelines belonging to the frame being freed.
This fixes Ticket #20.

  • Property mode set to 100644
File size: 9.5 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 <arch/types.h>
41#include <typedefs.h>
42#include <mm/as.h>
43#include <mm/frame.h>
44#include <mm/slab.h>
45#include <mm/page.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
53#ifdef CONFIG_VIRT_IDX_DCACHE
54#include <arch/mm/cache.h>
55#endif
56
57static int elf_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access);
58static void elf_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame);
59static void elf_share(as_area_t *area);
60
61mem_backend_t elf_backend = {
62 .page_fault = elf_page_fault,
63 .frame_free = elf_frame_free,
64 .share = elf_share
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 */
77int elf_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access)
78{
79 elf_header_t *elf = area->backend_data.elf;
80 elf_segment_header_t *entry = area->backend_data.segment;
81 btree_node_t *leaf;
82 uintptr_t base, frame;
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;
90 base = (uintptr_t) (((void *) elf) + entry->p_offset);
91 ASSERT(ALIGN_UP(base, FRAME_SIZE) == base);
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);
101 frame = (uintptr_t) btree_search(&area->sh_info->pagemap,
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) {
118 frame_reference_add(ADDR2PFN(frame));
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 */
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) {
141 frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
142 memcpy((void *) PA2KA(frame), (void *) (base + i*FRAME_SIZE), FRAME_SIZE);
143
144 if (area->sh_info) {
145 frame_reference_add(ADDR2PFN(frame));
146 btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
147 (void *) frame, leaf);
148 }
149
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 */
160 frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
161 memsetb(PA2KA(frame), FRAME_SIZE, 0);
162
163 if (area->sh_info) {
164 frame_reference_add(ADDR2PFN(frame));
165 btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
166 (void *) frame, leaf);
167 }
168
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);
177 frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
178 memsetb(PA2KA(frame) + size, FRAME_SIZE - size, 0);
179 memcpy((void *) PA2KA(frame), (void *) (base + i*FRAME_SIZE), size);
180
181 if (area->sh_info) {
182 frame_reference_add(ADDR2PFN(frame));
183 btree_insert(&area->sh_info->pagemap, ALIGN_DOWN(addr, PAGE_SIZE) - area->base,
184 (void *) frame, leaf);
185 }
186
187 }
188
189 if (area->sh_info)
190 mutex_unlock(&area->sh_info->lock);
191
192 page_mapping_insert(AS, addr, frame, as_area_get_flags(area));
193 if (!used_space_insert(area, ALIGN_DOWN(addr, PAGE_SIZE), 1))
194 panic("Could not insert used space.\n");
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 */
208void elf_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame)
209{
210 elf_header_t *elf = area->backend_data.elf;
211 elf_segment_header_t *entry = area->backend_data.segment;
212 uintptr_t base;
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;
217 base = (uintptr_t) (((void *) elf) + entry->p_offset);
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 */
225 frame_free(frame);
226#ifdef CONFIG_VIRT_IDX_DCACHE
227 dcache_flush_frame(page, frame);
228#endif
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 */
236 frame_free(frame);
237#ifdef CONFIG_VIRT_IDX_DCACHE
238 dcache_flush_frame(page, frame);
239#endif
240 }
241}
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 */
253void 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;
258 uintptr_t start_anon = entry->p_vaddr + entry->p_filesz;
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++) {
282 uintptr_t base = node->key[i];
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);
310 frame_reference_add(ADDR2PFN(PTE_GET_FRAME(pte)));
311 }
312
313 }
314 }
315 mutex_unlock(&area->sh_info->lock);
316}
317
318/** @}
319 */
Note: See TracBrowser for help on using the repository browser.