Rev 3397 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1424 | jermar | 1 | /* |
2071 | jermar | 2 | * Copyright (c) 2006 Jakub Jermar |
1424 | 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 | |||
1757 | jermar | 29 | /** @addtogroup genericmm |
1702 | cejka | 30 | * @{ |
31 | */ |
||
32 | |||
1424 | jermar | 33 | /** |
1702 | cejka | 34 | * @file |
1424 | jermar | 35 | * @brief Backend for anonymous memory address space areas. |
36 | * |
||
37 | */ |
||
38 | |||
39 | #include <mm/as.h> |
||
40 | #include <mm/page.h> |
||
41 | #include <genarch/mm/page_pt.h> |
||
42 | #include <genarch/mm/page_ht.h> |
||
43 | #include <mm/frame.h> |
||
44 | #include <mm/slab.h> |
||
45 | #include <synch/mutex.h> |
||
46 | #include <adt/list.h> |
||
47 | #include <adt/btree.h> |
||
48 | #include <errno.h> |
||
3862 | rimsky | 49 | #include <arch/asm.h> |
1424 | jermar | 50 | #include <arch/types.h> |
51 | #include <align.h> |
||
52 | #include <arch.h> |
||
53 | |||
2076 | jermar | 54 | #ifdef CONFIG_VIRT_IDX_DCACHE |
55 | #include <arch/mm/cache.h> |
||
56 | #endif |
||
57 | |||
1780 | jermar | 58 | static int anon_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access); |
59 | static void anon_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame); |
||
1424 | jermar | 60 | static void anon_share(as_area_t *area); |
61 | |||
62 | mem_backend_t anon_backend = { |
||
63 | .page_fault = anon_page_fault, |
||
64 | .frame_free = anon_frame_free, |
||
65 | .share = anon_share |
||
66 | }; |
||
67 | |||
68 | /** Service a page fault in the anonymous memory address space area. |
||
69 | * |
||
70 | * The address space area and page tables must be already locked. |
||
71 | * |
||
72 | * @param area Pointer to the address space area. |
||
73 | * @param addr Faulting virtual address. |
||
74 | * @param access Access mode that caused the fault (i.e. read/write/exec). |
||
75 | * |
||
2132 | jermar | 76 | * @return AS_PF_FAULT on failure (i.e. page fault) or AS_PF_OK on success (i.e. |
77 | * serviced). |
||
1424 | jermar | 78 | */ |
1780 | jermar | 79 | int anon_page_fault(as_area_t *area, uintptr_t addr, pf_access_t access) |
1424 | jermar | 80 | { |
1780 | jermar | 81 | uintptr_t frame; |
1424 | jermar | 82 | |
83 | if (!as_area_check_access(area, access)) |
||
84 | return AS_PF_FAULT; |
||
85 | |||
86 | if (area->sh_info) { |
||
87 | btree_node_t *leaf; |
||
88 | |||
89 | /* |
||
90 | * The area is shared, chances are that the mapping can be found |
||
2132 | jermar | 91 | * in the pagemap of the address space area share info |
92 | * structure. |
||
1424 | jermar | 93 | * In the case that the pagemap does not contain the respective |
94 | * mapping, a new frame is allocated and the mapping is created. |
||
95 | */ |
||
96 | mutex_lock(&area->sh_info->lock); |
||
1780 | jermar | 97 | frame = (uintptr_t) btree_search(&area->sh_info->pagemap, |
2134 | jermar | 98 | ALIGN_DOWN(addr, PAGE_SIZE) - area->base, &leaf); |
1424 | jermar | 99 | if (!frame) { |
100 | bool allocate = true; |
||
2745 | decky | 101 | unsigned int i; |
1424 | jermar | 102 | |
103 | /* |
||
104 | * Zero can be returned as a valid frame address. |
||
105 | * Just a small workaround. |
||
106 | */ |
||
107 | for (i = 0; i < leaf->keys; i++) { |
||
2132 | jermar | 108 | if (leaf->key[i] == |
3397 | rimsky | 109 | ALIGN_DOWN(addr, PAGE_SIZE) - area->base) { |
1424 | jermar | 110 | allocate = false; |
111 | break; |
||
112 | } |
||
113 | } |
||
114 | if (allocate) { |
||
1780 | jermar | 115 | frame = (uintptr_t) frame_alloc(ONE_FRAME, 0); |
3104 | svoboda | 116 | memsetb((void *) PA2KA(frame), FRAME_SIZE, 0); |
1424 | jermar | 117 | |
118 | /* |
||
2132 | jermar | 119 | * Insert the address of the newly allocated |
120 | * frame to the pagemap. |
||
1424 | jermar | 121 | */ |
2132 | jermar | 122 | btree_insert(&area->sh_info->pagemap, |
123 | ALIGN_DOWN(addr, PAGE_SIZE) - area->base, |
||
124 | (void *) frame, leaf); |
||
1424 | jermar | 125 | } |
126 | } |
||
1545 | jermar | 127 | frame_reference_add(ADDR2PFN(frame)); |
1424 | jermar | 128 | mutex_unlock(&area->sh_info->lock); |
129 | } else { |
||
130 | |||
131 | /* |
||
132 | * In general, there can be several reasons that |
||
133 | * can have caused this fault. |
||
134 | * |
||
135 | * - non-existent mapping: the area is an anonymous |
||
136 | * area (e.g. heap or stack) and so far has not been |
||
137 | * allocated a frame for the faulting page |
||
138 | * |
||
139 | * - non-present mapping: another possibility, |
||
140 | * currently not implemented, would be frame |
||
141 | * reuse; when this becomes a possibility, |
||
142 | * do not forget to distinguish between |
||
143 | * the different causes |
||
144 | */ |
||
1954 | jermar | 145 | frame = (uintptr_t) frame_alloc(ONE_FRAME, 0); |
3104 | svoboda | 146 | memsetb((void *) PA2KA(frame), FRAME_SIZE, 0); |
1424 | jermar | 147 | } |
148 | |||
149 | /* |
||
150 | * Map 'page' to 'frame'. |
||
2132 | jermar | 151 | * Note that TLB shootdown is not attempted as only new information is |
152 | * being inserted into page tables. |
||
1424 | jermar | 153 | */ |
154 | page_mapping_insert(AS, addr, frame, as_area_get_flags(area)); |
||
155 | if (!used_space_insert(area, ALIGN_DOWN(addr, PAGE_SIZE), 1)) |
||
156 | panic("Could not insert used space.\n"); |
||
157 | |||
158 | return AS_PF_OK; |
||
159 | } |
||
160 | |||
161 | /** Free a frame that is backed by the anonymous memory backend. |
||
162 | * |
||
163 | * The address space area and page tables must be already locked. |
||
164 | * |
||
165 | * @param area Ignored. |
||
2076 | jermar | 166 | * @param page Virtual address of the page corresponding to the frame. |
1424 | jermar | 167 | * @param frame Frame to be released. |
168 | */ |
||
1780 | jermar | 169 | void anon_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame) |
1424 | jermar | 170 | { |
1760 | palkovsky | 171 | frame_free(frame); |
1424 | jermar | 172 | } |
173 | |||
174 | /** Share the anonymous address space area. |
||
175 | * |
||
176 | * Sharing of anonymous area is done by duplicating its entire mapping |
||
177 | * to the pagemap. Page faults will primarily search for frames there. |
||
178 | * |
||
1426 | jermar | 179 | * The address space and address space area must be already locked. |
1424 | jermar | 180 | * |
181 | * @param area Address space area to be shared. |
||
182 | */ |
||
183 | void anon_share(as_area_t *area) |
||
184 | { |
||
185 | link_t *cur; |
||
186 | |||
187 | /* |
||
188 | * Copy used portions of the area to sh_info's page map. |
||
189 | */ |
||
190 | mutex_lock(&area->sh_info->lock); |
||
2132 | jermar | 191 | for (cur = area->used_space.leaf_head.next; |
192 | cur != &area->used_space.leaf_head; cur = cur->next) { |
||
1424 | jermar | 193 | btree_node_t *node; |
2745 | decky | 194 | unsigned int i; |
1424 | jermar | 195 | |
196 | node = list_get_instance(cur, btree_node_t, leaf_link); |
||
197 | for (i = 0; i < node->keys; i++) { |
||
1780 | jermar | 198 | uintptr_t base = node->key[i]; |
1424 | jermar | 199 | count_t count = (count_t) node->value[i]; |
2745 | decky | 200 | unsigned int j; |
1424 | jermar | 201 | |
202 | for (j = 0; j < count; j++) { |
||
203 | pte_t *pte; |
||
204 | |||
205 | page_table_lock(area->as, false); |
||
2132 | jermar | 206 | pte = page_mapping_find(area->as, |
207 | base + j * PAGE_SIZE); |
||
208 | ASSERT(pte && PTE_VALID(pte) && |
||
209 | PTE_PRESENT(pte)); |
||
210 | btree_insert(&area->sh_info->pagemap, |
||
211 | (base + j * PAGE_SIZE) - area->base, |
||
212 | (void *) PTE_GET_FRAME(pte), NULL); |
||
1424 | jermar | 213 | page_table_unlock(area->as, false); |
2132 | jermar | 214 | |
215 | pfn_t pfn = ADDR2PFN(PTE_GET_FRAME(pte)); |
||
216 | frame_reference_add(pfn); |
||
1424 | jermar | 217 | } |
2134 | jermar | 218 | |
1424 | jermar | 219 | } |
220 | } |
||
221 | mutex_unlock(&area->sh_info->lock); |
||
222 | } |
||
1702 | cejka | 223 | |
1757 | jermar | 224 | /** @} |
1702 | cejka | 225 | */ |