blob: d1b3da2960ab65aed69f2427f4f731fde34f242f [file] [log] [blame]
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -08001/*
2 * Xen leaves the responsibility for maintaining p2m mappings to the
3 * guests themselves, but it must also access and update the p2m array
4 * during suspend/resume when all the pages are reallocated.
5 *
6 * The p2m table is logically a flat array, but we implement it as a
7 * three-level tree to allow the address space to be sparse.
8 *
9 * Xen
10 * |
11 * p2m_top p2m_top_mfn
12 * / \ / \
13 * p2m_mid p2m_mid p2m_mid_mfn p2m_mid_mfn
14 * / \ / \ / /
15 * p2m p2m p2m p2m p2m p2m p2m ...
16 *
17 * The p2m_mid_mfn pages are mapped by p2m_top_mfn_p.
18 *
19 * The p2m_top and p2m_top_mfn levels are limited to 1 page, so the
20 * maximum representable pseudo-physical address space is:
21 * P2M_TOP_PER_PAGE * P2M_MID_PER_PAGE * P2M_PER_PAGE pages
22 *
23 * P2M_PER_PAGE depends on the architecture, as a mfn is always
24 * unsigned long (8 bytes on 64-bit, 4 bytes on 32), leading to
Konrad Rzeszutek Wilka3118be2012-06-28 22:12:36 -040025 * 512 and 1024 entries respectively.
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -050026 *
27 * In short, these structures contain the Machine Frame Number (MFN) of the PFN.
28 *
29 * However not all entries are filled with MFNs. Specifically for all other
30 * leaf entries, or for the top root, or middle one, for which there is a void
31 * entry, we assume it is "missing". So (for example)
32 * pfn_to_mfn(0x90909090)=INVALID_P2M_ENTRY.
33 *
34 * We also have the possibility of setting 1-1 mappings on certain regions, so
35 * that:
36 * pfn_to_mfn(0xc0000)=0xc0000
37 *
38 * The benefit of this is, that we can assume for non-RAM regions (think
David Vrabel3cb83e42014-01-07 11:44:32 +000039 * PCI BARs, or ACPI spaces), we can create mappings easily because we
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -050040 * get the PFN value to match the MFN.
41 *
42 * For this to work efficiently we have one new page p2m_identity and
43 * allocate (via reserved_brk) any other pages we need to cover the sides
44 * (1GB or 4MB boundary violations). All entries in p2m_identity are set to
45 * INVALID_P2M_ENTRY type (Xen toolstack only recognizes that and MFNs,
46 * no other fancy value).
47 *
48 * On lookup we spot that the entry points to p2m_identity and return the
49 * identity value instead of dereferencing and returning INVALID_P2M_ENTRY.
50 * If the entry points to an allocated page, we just proceed as before and
51 * return the PFN. If the PFN has IDENTITY_FRAME_BIT set we unmask that in
52 * appropriate functions (pfn_to_mfn).
53 *
54 * The reason for having the IDENTITY_FRAME_BIT instead of just returning the
55 * PFN is that we could find ourselves where pfn_to_mfn(pfn)==pfn for a
56 * non-identity pfn. To protect ourselves against we elect to set (and get) the
57 * IDENTITY_FRAME_BIT on all identity mapped PFNs.
58 *
59 * This simplistic diagram is used to explain the more subtle piece of code.
60 * There is also a digram of the P2M at the end that can help.
61 * Imagine your E820 looking as so:
62 *
David Vrabel3cb83e42014-01-07 11:44:32 +000063 * 1GB 2GB 4GB
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -050064 * /-------------------+---------\/----\ /----------\ /---+-----\
65 * | System RAM | Sys RAM ||ACPI| | reserved | | Sys RAM |
66 * \-------------------+---------/\----/ \----------/ \---+-----/
67 * ^- 1029MB ^- 2001MB
68 *
69 * [1029MB = 263424 (0x40500), 2001MB = 512256 (0x7D100),
70 * 2048MB = 524288 (0x80000)]
71 *
72 * And dom0_mem=max:3GB,1GB is passed in to the guest, meaning memory past 1GB
73 * is actually not present (would have to kick the balloon driver to put it in).
74 *
75 * When we are told to set the PFNs for identity mapping (see patch: "xen/setup:
76 * Set identity mapping for non-RAM E820 and E820 gaps.") we pass in the start
77 * of the PFN and the end PFN (263424 and 512256 respectively). The first step
78 * is to reserve_brk a top leaf page if the p2m[1] is missing. The top leaf page
79 * covers 512^2 of page estate (1GB) and in case the start or end PFN is not
David Vrabel3cb83e42014-01-07 11:44:32 +000080 * aligned on 512^2*PAGE_SIZE (1GB) we reserve_brk new middle and leaf pages as
81 * required to split any existing p2m_mid_missing middle pages.
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -050082 *
83 * With the E820 example above, 263424 is not 1GB aligned so we allocate a
84 * reserve_brk page which will cover the PFNs estate from 0x40000 to 0x80000.
85 * Each entry in the allocate page is "missing" (points to p2m_missing).
86 *
87 * Next stage is to determine if we need to do a more granular boundary check
88 * on the 4MB (or 2MB depending on architecture) off the start and end pfn's.
89 * We check if the start pfn and end pfn violate that boundary check, and if
David Vrabel3cb83e42014-01-07 11:44:32 +000090 * so reserve_brk a (p2m[x][y]) leaf page. This way we have a much finer
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -050091 * granularity of setting which PFNs are missing and which ones are identity.
92 * In our example 263424 and 512256 both fail the check so we reserve_brk two
93 * pages. Populate them with INVALID_P2M_ENTRY (so they both have "missing"
94 * values) and assign them to p2m[1][2] and p2m[1][488] respectively.
95 *
96 * At this point we would at minimum reserve_brk one page, but could be up to
97 * three. Each call to set_phys_range_identity has at maximum a three page
98 * cost. If we were to query the P2M at this stage, all those entries from
99 * start PFN through end PFN (so 1029MB -> 2001MB) would return
100 * INVALID_P2M_ENTRY ("missing").
101 *
102 * The next step is to walk from the start pfn to the end pfn setting
103 * the IDENTITY_FRAME_BIT on each PFN. This is done in set_phys_range_identity.
David Vrabel3cb83e42014-01-07 11:44:32 +0000104 * If we find that the middle entry is pointing to p2m_missing we can swap it
105 * over to p2m_identity - this way covering 4MB (or 2MB) PFN space (and
106 * similarly swapping p2m_mid_missing for p2m_mid_identity for larger regions).
107 * At this point we do not need to worry about boundary aligment (so no need to
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500108 * reserve_brk a middle page, figure out which PFNs are "missing" and which
109 * ones are identity), as that has been done earlier. If we find that the
110 * middle leaf is not occupied by p2m_identity or p2m_missing, we dereference
111 * that page (which covers 512 PFNs) and set the appropriate PFN with
112 * IDENTITY_FRAME_BIT. In our example 263424 and 512256 end up there, and we
113 * set from p2m[1][2][256->511] and p2m[1][488][0->256] with
114 * IDENTITY_FRAME_BIT set.
115 *
116 * All other regions that are void (or not filled) either point to p2m_missing
117 * (considered missing) or have the default value of INVALID_P2M_ENTRY (also
118 * considered missing). In our case, p2m[1][2][0->255] and p2m[1][488][257->511]
119 * contain the INVALID_P2M_ENTRY value and are considered "missing."
120 *
David Vrabel3cb83e42014-01-07 11:44:32 +0000121 * Finally, the region beyond the end of of the E820 (4 GB in this example)
122 * is set to be identity (in case there are MMIO regions placed here).
123 *
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500124 * This is what the p2m ends up looking (for the E820 above) with this
125 * fabulous drawing:
126 *
127 * p2m /--------------\
128 * /-----\ | &mfn_list[0],| /-----------------\
129 * | 0 |------>| &mfn_list[1],| /---------------\ | ~0, ~0, .. |
130 * |-----| | ..., ~0, ~0 | | ~0, ~0, [x]---+----->| IDENTITY [@256] |
131 * | 1 |---\ \--------------/ | [p2m_identity]+\ | IDENTITY [@257] |
132 * |-----| \ | [p2m_identity]+\\ | .... |
133 * | 2 |--\ \-------------------->| ... | \\ \----------------/
134 * |-----| \ \---------------/ \\
David Vrabel3cb83e42014-01-07 11:44:32 +0000135 * | 3 |-\ \ \\ p2m_identity [1]
136 * |-----| \ \-------------------->/---------------\ /-----------------\
137 * | .. |\ | | [p2m_identity]+-->| ~0, ~0, ~0, ... |
138 * \-----/ | | | [p2m_identity]+-->| ..., ~0 |
139 * | | | .... | \-----------------/
140 * | | +-[x], ~0, ~0.. +\
141 * | | \---------------/ \
142 * | | \-> /---------------\
143 * | V p2m_mid_missing p2m_missing | IDENTITY[@0] |
144 * | /-----------------\ /------------\ | IDENTITY[@256]|
145 * | | [p2m_missing] +---->| ~0, ~0, ...| | ~0, ~0, .... |
146 * | | [p2m_missing] +---->| ..., ~0 | \---------------/
147 * | | ... | \------------/
148 * | \-----------------/
149 * |
150 * | p2m_mid_identity
151 * | /-----------------\
152 * \-->| [p2m_identity] +---->[1]
153 * | [p2m_identity] +---->[1]
154 * | ... |
155 * \-----------------/
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500156 *
157 * where ~0 is INVALID_P2M_ENTRY. IDENTITY is (PFN | IDENTITY_BIT)
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800158 */
159
160#include <linux/init.h>
161#include <linux/module.h>
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000162#include <linux/list.h>
163#include <linux/hash.h>
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000164#include <linux/sched.h>
Konrad Rzeszutek Wilk2222e712010-12-22 08:57:30 -0500165#include <linux/seq_file.h>
Juergen Gross2c185682014-10-14 13:33:46 +0200166#include <linux/bootmem.h>
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800167
168#include <asm/cache.h>
169#include <asm/setup.h>
170
171#include <asm/xen/page.h>
172#include <asm/xen/hypercall.h>
173#include <asm/xen/hypervisor.h>
Stefano Stabelliniee072642013-07-23 17:23:54 +0000174#include <xen/balloon.h>
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100175#include <xen/grant_table.h>
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800176
Matt Rushton4fbb67e32014-08-11 11:57:57 -0700177#include "p2m.h"
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100178#include "multicalls.h"
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800179#include "xen-ops.h"
180
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000181static void __init m2p_override_init(void);
182
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800183unsigned long xen_max_p2m_pfn __read_mostly;
184
Juergen Gross2c185682014-10-14 13:33:46 +0200185static unsigned long *p2m_mid_missing_mfn;
186static unsigned long *p2m_top_mfn;
187static unsigned long **p2m_top_mfn_p;
188
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800189/* Placeholders for holes in the address space */
190static RESERVE_BRK_ARRAY(unsigned long, p2m_missing, P2M_PER_PAGE);
191static RESERVE_BRK_ARRAY(unsigned long *, p2m_mid_missing, P2M_MID_PER_PAGE);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800192
193static RESERVE_BRK_ARRAY(unsigned long **, p2m_top, P2M_TOP_PER_PAGE);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800194
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500195static RESERVE_BRK_ARRAY(unsigned long, p2m_identity, P2M_PER_PAGE);
David Vrabel3cb83e42014-01-07 11:44:32 +0000196static RESERVE_BRK_ARRAY(unsigned long *, p2m_mid_identity, P2M_MID_PER_PAGE);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500197
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800198RESERVE_BRK(p2m_mid, PAGE_SIZE * (MAX_DOMAIN_PAGES / (P2M_PER_PAGE * P2M_MID_PER_PAGE)));
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800199
Matt Rushton4fbb67e32014-08-11 11:57:57 -0700200/* For each I/O range remapped we may lose up to two leaf pages for the boundary
201 * violations and three mid pages to cover up to 3GB. With
202 * early_can_reuse_p2m_middle() most of the leaf pages will be reused by the
203 * remapped region.
204 */
205RESERVE_BRK(p2m_identity_remap, PAGE_SIZE * 2 * 3 * MAX_REMAP_RANGES);
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400206
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800207static inline unsigned p2m_top_index(unsigned long pfn)
208{
209 BUG_ON(pfn >= MAX_P2M_PFN);
210 return pfn / (P2M_MID_PER_PAGE * P2M_PER_PAGE);
211}
212
213static inline unsigned p2m_mid_index(unsigned long pfn)
214{
215 return (pfn / P2M_PER_PAGE) % P2M_MID_PER_PAGE;
216}
217
218static inline unsigned p2m_index(unsigned long pfn)
219{
220 return pfn % P2M_PER_PAGE;
221}
222
223static void p2m_top_init(unsigned long ***top)
224{
225 unsigned i;
226
227 for (i = 0; i < P2M_TOP_PER_PAGE; i++)
228 top[i] = p2m_mid_missing;
229}
230
231static void p2m_top_mfn_init(unsigned long *top)
232{
233 unsigned i;
234
235 for (i = 0; i < P2M_TOP_PER_PAGE; i++)
236 top[i] = virt_to_mfn(p2m_mid_missing_mfn);
237}
238
239static void p2m_top_mfn_p_init(unsigned long **top)
240{
241 unsigned i;
242
243 for (i = 0; i < P2M_TOP_PER_PAGE; i++)
244 top[i] = p2m_mid_missing_mfn;
245}
246
David Vrabel3cb83e42014-01-07 11:44:32 +0000247static void p2m_mid_init(unsigned long **mid, unsigned long *leaf)
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800248{
249 unsigned i;
250
251 for (i = 0; i < P2M_MID_PER_PAGE; i++)
David Vrabel3cb83e42014-01-07 11:44:32 +0000252 mid[i] = leaf;
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800253}
254
David Vrabel3cb83e42014-01-07 11:44:32 +0000255static void p2m_mid_mfn_init(unsigned long *mid, unsigned long *leaf)
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800256{
257 unsigned i;
258
259 for (i = 0; i < P2M_MID_PER_PAGE; i++)
David Vrabel3cb83e42014-01-07 11:44:32 +0000260 mid[i] = virt_to_mfn(leaf);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800261}
262
263static void p2m_init(unsigned long *p2m)
264{
265 unsigned i;
266
267 for (i = 0; i < P2M_MID_PER_PAGE; i++)
268 p2m[i] = INVALID_P2M_ENTRY;
269}
270
271/*
272 * Build the parallel p2m_top_mfn and p2m_mid_mfn structures
273 *
274 * This is called both at boot time, and after resuming from suspend:
Juergen Gross2c185682014-10-14 13:33:46 +0200275 * - At boot time we're called rather early, and must use alloc_bootmem*()
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800276 * to allocate memory.
277 *
278 * - After resume we're called from within stop_machine, but the mfn
Juergen Gross2c185682014-10-14 13:33:46 +0200279 * tree should already be completely allocated.
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800280 */
Ian Campbell44b46c32011-02-11 16:37:41 +0000281void __ref xen_build_mfn_list_list(void)
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800282{
283 unsigned long pfn;
284
Konrad Rzeszutek Wilk696fd7c2013-12-15 12:37:46 -0500285 if (xen_feature(XENFEAT_auto_translated_physmap))
286 return;
287
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800288 /* Pre-initialize p2m_top_mfn to be completely missing */
289 if (p2m_top_mfn == NULL) {
Juergen Gross2c185682014-10-14 13:33:46 +0200290 p2m_mid_missing_mfn = alloc_bootmem_align(PAGE_SIZE, PAGE_SIZE);
David Vrabel3cb83e42014-01-07 11:44:32 +0000291 p2m_mid_mfn_init(p2m_mid_missing_mfn, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800292
Juergen Gross2c185682014-10-14 13:33:46 +0200293 p2m_top_mfn_p = alloc_bootmem_align(PAGE_SIZE, PAGE_SIZE);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800294 p2m_top_mfn_p_init(p2m_top_mfn_p);
295
Juergen Gross2c185682014-10-14 13:33:46 +0200296 p2m_top_mfn = alloc_bootmem_align(PAGE_SIZE, PAGE_SIZE);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800297 p2m_top_mfn_init(p2m_top_mfn);
298 } else {
299 /* Reinitialise, mfn's all change after migration */
David Vrabel3cb83e42014-01-07 11:44:32 +0000300 p2m_mid_mfn_init(p2m_mid_missing_mfn, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800301 }
302
303 for (pfn = 0; pfn < xen_max_p2m_pfn; pfn += P2M_PER_PAGE) {
304 unsigned topidx = p2m_top_index(pfn);
305 unsigned mididx = p2m_mid_index(pfn);
306 unsigned long **mid;
307 unsigned long *mid_mfn_p;
308
309 mid = p2m_top[topidx];
310 mid_mfn_p = p2m_top_mfn_p[topidx];
311
312 /* Don't bother allocating any mfn mid levels if
313 * they're just missing, just update the stored mfn,
314 * since all could have changed over a migrate.
315 */
316 if (mid == p2m_mid_missing) {
317 BUG_ON(mididx);
318 BUG_ON(mid_mfn_p != p2m_mid_missing_mfn);
319 p2m_top_mfn[topidx] = virt_to_mfn(p2m_mid_missing_mfn);
320 pfn += (P2M_MID_PER_PAGE - 1) * P2M_PER_PAGE;
321 continue;
322 }
323
324 if (mid_mfn_p == p2m_mid_missing_mfn) {
325 /*
326 * XXX boot-time only! We should never find
327 * missing parts of the mfn tree after
Juergen Gross2c185682014-10-14 13:33:46 +0200328 * runtime.
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800329 */
Juergen Gross2c185682014-10-14 13:33:46 +0200330 mid_mfn_p = alloc_bootmem_align(PAGE_SIZE, PAGE_SIZE);
David Vrabel3cb83e42014-01-07 11:44:32 +0000331 p2m_mid_mfn_init(mid_mfn_p, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800332
333 p2m_top_mfn_p[topidx] = mid_mfn_p;
334 }
335
336 p2m_top_mfn[topidx] = virt_to_mfn(mid_mfn_p);
337 mid_mfn_p[mididx] = virt_to_mfn(mid[mididx]);
338 }
339}
340
341void xen_setup_mfn_list_list(void)
342{
Mukesh Rathor4dd322b2013-12-31 14:02:44 -0500343 if (xen_feature(XENFEAT_auto_translated_physmap))
344 return;
345
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800346 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
347
348 HYPERVISOR_shared_info->arch.pfn_to_mfn_frame_list_list =
349 virt_to_mfn(p2m_top_mfn);
350 HYPERVISOR_shared_info->arch.max_pfn = xen_max_p2m_pfn;
351}
352
353/* Set up p2m_top to point to the domain-builder provided p2m pages */
354void __init xen_build_dynamic_phys_to_machine(void)
355{
Konrad Rzeszutek Wilk696fd7c2013-12-15 12:37:46 -0500356 unsigned long *mfn_list;
357 unsigned long max_pfn;
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800358 unsigned long pfn;
359
Konrad Rzeszutek Wilk696fd7c2013-12-15 12:37:46 -0500360 if (xen_feature(XENFEAT_auto_translated_physmap))
361 return;
362
363 mfn_list = (unsigned long *)xen_start_info->mfn_list;
364 max_pfn = min(MAX_DOMAIN_PAGES, xen_start_info->nr_pages);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800365 xen_max_p2m_pfn = max_pfn;
366
367 p2m_missing = extend_brk(PAGE_SIZE, PAGE_SIZE);
368 p2m_init(p2m_missing);
David Vrabel3cb83e42014-01-07 11:44:32 +0000369 p2m_identity = extend_brk(PAGE_SIZE, PAGE_SIZE);
370 p2m_init(p2m_identity);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800371
372 p2m_mid_missing = extend_brk(PAGE_SIZE, PAGE_SIZE);
David Vrabel3cb83e42014-01-07 11:44:32 +0000373 p2m_mid_init(p2m_mid_missing, p2m_missing);
374 p2m_mid_identity = extend_brk(PAGE_SIZE, PAGE_SIZE);
375 p2m_mid_init(p2m_mid_identity, p2m_identity);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800376
377 p2m_top = extend_brk(PAGE_SIZE, PAGE_SIZE);
378 p2m_top_init(p2m_top);
379
380 /*
381 * The domain builder gives us a pre-constructed p2m array in
382 * mfn_list for all the pages initially given to us, so we just
383 * need to graft that into our tree structure.
384 */
385 for (pfn = 0; pfn < max_pfn; pfn += P2M_PER_PAGE) {
386 unsigned topidx = p2m_top_index(pfn);
387 unsigned mididx = p2m_mid_index(pfn);
388
389 if (p2m_top[topidx] == p2m_mid_missing) {
390 unsigned long **mid = extend_brk(PAGE_SIZE, PAGE_SIZE);
David Vrabel3cb83e42014-01-07 11:44:32 +0000391 p2m_mid_init(mid, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800392
393 p2m_top[topidx] = mid;
394 }
395
Stefan Bader8e1b4cf2011-01-20 15:38:23 +0100396 /*
397 * As long as the mfn_list has enough entries to completely
398 * fill a p2m page, pointing into the array is ok. But if
399 * not the entries beyond the last pfn will be undefined.
Stefan Bader8e1b4cf2011-01-20 15:38:23 +0100400 */
401 if (unlikely(pfn + P2M_PER_PAGE > max_pfn)) {
402 unsigned long p2midx;
Stefan Bader8e1b4cf2011-01-20 15:38:23 +0100403
Stefan Badercf04d122011-01-27 10:03:14 -0500404 p2midx = max_pfn % P2M_PER_PAGE;
405 for ( ; p2midx < P2M_PER_PAGE; p2midx++)
406 mfn_list[pfn + p2midx] = INVALID_P2M_ENTRY;
407 }
408 p2m_top[topidx][mididx] = &mfn_list[pfn];
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800409 }
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000410
411 m2p_override_init();
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800412}
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400413#ifdef CONFIG_X86_64
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400414unsigned long __init xen_revector_p2m_tree(void)
415{
416 unsigned long va_start;
417 unsigned long va_end;
418 unsigned long pfn;
Konrad Rzeszutek Wilk3fc509f2012-08-16 16:38:55 -0400419 unsigned long pfn_free = 0;
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400420 unsigned long *mfn_list = NULL;
421 unsigned long size;
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800422
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400423 va_start = xen_start_info->mfn_list;
424 /*We copy in increments of P2M_PER_PAGE * sizeof(unsigned long),
425 * so make sure it is rounded up to that */
426 size = PAGE_ALIGN(xen_start_info->nr_pages * sizeof(unsigned long));
427 va_end = va_start + size;
428
429 /* If we were revectored already, don't do it again. */
430 if (va_start <= __START_KERNEL_map && va_start >= __PAGE_OFFSET)
431 return 0;
432
433 mfn_list = alloc_bootmem_align(size, PAGE_SIZE);
434 if (!mfn_list) {
435 pr_warn("Could not allocate space for a new P2M tree!\n");
436 return xen_start_info->mfn_list;
437 }
438 /* Fill it out with INVALID_P2M_ENTRY value */
439 memset(mfn_list, 0xFF, size);
440
441 for (pfn = 0; pfn < ALIGN(MAX_DOMAIN_PAGES, P2M_PER_PAGE); pfn += P2M_PER_PAGE) {
442 unsigned topidx = p2m_top_index(pfn);
443 unsigned mididx;
444 unsigned long *mid_p;
445
446 if (!p2m_top[topidx])
447 continue;
448
449 if (p2m_top[topidx] == p2m_mid_missing)
450 continue;
451
452 mididx = p2m_mid_index(pfn);
453 mid_p = p2m_top[topidx][mididx];
454 if (!mid_p)
455 continue;
456 if ((mid_p == p2m_missing) || (mid_p == p2m_identity))
457 continue;
458
459 if ((unsigned long)mid_p == INVALID_P2M_ENTRY)
460 continue;
461
462 /* The old va. Rebase it on mfn_list */
463 if (mid_p >= (unsigned long *)va_start && mid_p <= (unsigned long *)va_end) {
464 unsigned long *new;
465
Konrad Rzeszutek Wilk3fc509f2012-08-16 16:38:55 -0400466 if (pfn_free > (size / sizeof(unsigned long))) {
467 WARN(1, "Only allocated for %ld pages, but we want %ld!\n",
468 size / sizeof(unsigned long), pfn_free);
469 return 0;
470 }
471 new = &mfn_list[pfn_free];
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400472
473 copy_page(new, mid_p);
Konrad Rzeszutek Wilk3fc509f2012-08-16 16:38:55 -0400474 p2m_top[topidx][mididx] = &mfn_list[pfn_free];
Konrad Rzeszutek Wilk3fc509f2012-08-16 16:38:55 -0400475
476 pfn_free += P2M_PER_PAGE;
Konrad Rzeszutek Wilk357a3cf2012-07-19 13:52:29 -0400477
478 }
479 /* This should be the leafs allocated for identity from _brk. */
480 }
481 return (unsigned long)mfn_list;
482
483}
484#else
485unsigned long __init xen_revector_p2m_tree(void)
486{
487 return 0;
488}
489#endif
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800490unsigned long get_phys_to_machine(unsigned long pfn)
491{
492 unsigned topidx, mididx, idx;
493
494 if (unlikely(pfn >= MAX_P2M_PFN))
David Vrabel25b884a2014-01-03 15:46:10 +0000495 return IDENTITY_FRAME(pfn);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800496
497 topidx = p2m_top_index(pfn);
498 mididx = p2m_mid_index(pfn);
499 idx = p2m_index(pfn);
500
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500501 /*
502 * The INVALID_P2M_ENTRY is filled in both p2m_*identity
503 * and in p2m_*missing, so returning the INVALID_P2M_ENTRY
504 * would be wrong.
505 */
506 if (p2m_top[topidx][mididx] == p2m_identity)
507 return IDENTITY_FRAME(pfn);
508
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800509 return p2m_top[topidx][mididx][idx];
510}
511EXPORT_SYMBOL_GPL(get_phys_to_machine);
512
513static void *alloc_p2m_page(void)
514{
515 return (void *)__get_free_page(GFP_KERNEL | __GFP_REPEAT);
516}
517
518static void free_p2m_page(void *p)
519{
520 free_page((unsigned long)p);
521}
522
Konrad Rzeszutek Wilka3118be2012-06-28 22:12:36 -0400523/*
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800524 * Fully allocate the p2m structure for a given pfn. We need to check
525 * that both the top and mid levels are allocated, and make sure the
526 * parallel mfn tree is kept in sync. We may race with other cpus, so
527 * the new pages are installed with cmpxchg; if we lose the race then
528 * simply free the page we allocated and use the one that's there.
529 */
530static bool alloc_p2m(unsigned long pfn)
531{
532 unsigned topidx, mididx;
533 unsigned long ***top_p, **mid;
534 unsigned long *top_mfn_p, *mid_mfn;
535
536 topidx = p2m_top_index(pfn);
537 mididx = p2m_mid_index(pfn);
538
539 top_p = &p2m_top[topidx];
540 mid = *top_p;
541
542 if (mid == p2m_mid_missing) {
543 /* Mid level is missing, allocate a new one */
544 mid = alloc_p2m_page();
545 if (!mid)
546 return false;
547
David Vrabel3cb83e42014-01-07 11:44:32 +0000548 p2m_mid_init(mid, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800549
550 if (cmpxchg(top_p, p2m_mid_missing, mid) != p2m_mid_missing)
551 free_p2m_page(mid);
552 }
553
554 top_mfn_p = &p2m_top_mfn[topidx];
555 mid_mfn = p2m_top_mfn_p[topidx];
556
557 BUG_ON(virt_to_mfn(mid_mfn) != *top_mfn_p);
558
559 if (mid_mfn == p2m_mid_missing_mfn) {
560 /* Separately check the mid mfn level */
561 unsigned long missing_mfn;
562 unsigned long mid_mfn_mfn;
Juergen Gross239af7c2014-10-14 11:00:18 +0200563 unsigned long old_mfn;
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800564
565 mid_mfn = alloc_p2m_page();
566 if (!mid_mfn)
567 return false;
568
David Vrabel3cb83e42014-01-07 11:44:32 +0000569 p2m_mid_mfn_init(mid_mfn, p2m_missing);
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800570
571 missing_mfn = virt_to_mfn(p2m_mid_missing_mfn);
572 mid_mfn_mfn = virt_to_mfn(mid_mfn);
Juergen Gross239af7c2014-10-14 11:00:18 +0200573 old_mfn = cmpxchg(top_mfn_p, missing_mfn, mid_mfn_mfn);
574 if (old_mfn != missing_mfn) {
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800575 free_p2m_page(mid_mfn);
Juergen Gross239af7c2014-10-14 11:00:18 +0200576 mid_mfn = mfn_to_virt(old_mfn);
577 } else {
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800578 p2m_top_mfn_p[topidx] = mid_mfn;
Juergen Gross239af7c2014-10-14 11:00:18 +0200579 }
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800580 }
581
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500582 if (p2m_top[topidx][mididx] == p2m_identity ||
583 p2m_top[topidx][mididx] == p2m_missing) {
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800584 /* p2m leaf page is missing */
585 unsigned long *p2m;
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500586 unsigned long *p2m_orig = p2m_top[topidx][mididx];
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800587
588 p2m = alloc_p2m_page();
589 if (!p2m)
590 return false;
591
592 p2m_init(p2m);
593
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500594 if (cmpxchg(&mid[mididx], p2m_orig, p2m) != p2m_orig)
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800595 free_p2m_page(p2m);
596 else
597 mid_mfn[mididx] = virt_to_mfn(p2m);
598 }
599
600 return true;
601}
602
David Vrabelfcca2e32014-01-07 11:53:35 +0000603static bool __init early_alloc_p2m(unsigned long pfn, bool check_boundary)
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500604{
605 unsigned topidx, mididx, idx;
Konrad Rzeszutek Wilkd5096852012-03-30 14:16:49 -0400606 unsigned long *p2m;
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500607
608 topidx = p2m_top_index(pfn);
609 mididx = p2m_mid_index(pfn);
610 idx = p2m_index(pfn);
611
612 /* Pfff.. No boundary cross-over, lets get out. */
Konrad Rzeszutek Wilkcef4cca2012-03-30 14:15:14 -0400613 if (!idx && check_boundary)
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500614 return false;
615
616 WARN(p2m_top[topidx][mididx] == p2m_identity,
617 "P2M[%d][%d] == IDENTITY, should be MISSING (or alloced)!\n",
618 topidx, mididx);
619
620 /*
621 * Could be done by xen_build_dynamic_phys_to_machine..
622 */
623 if (p2m_top[topidx][mididx] != p2m_missing)
624 return false;
625
626 /* Boundary cross-over for the edges: */
Konrad Rzeszutek Wilkd5096852012-03-30 14:16:49 -0400627 p2m = extend_brk(PAGE_SIZE, PAGE_SIZE);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500628
Konrad Rzeszutek Wilkd5096852012-03-30 14:16:49 -0400629 p2m_init(p2m);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500630
Konrad Rzeszutek Wilkd5096852012-03-30 14:16:49 -0400631 p2m_top[topidx][mididx] = p2m;
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500632
Konrad Rzeszutek Wilkd5096852012-03-30 14:16:49 -0400633 return true;
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500634}
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400635
David Vrabelfcca2e32014-01-07 11:53:35 +0000636static bool __init early_alloc_p2m_middle(unsigned long pfn)
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400637{
638 unsigned topidx = p2m_top_index(pfn);
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400639 unsigned long **mid;
640
641 mid = p2m_top[topidx];
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400642 if (mid == p2m_mid_missing) {
643 mid = extend_brk(PAGE_SIZE, PAGE_SIZE);
644
David Vrabel3cb83e42014-01-07 11:44:32 +0000645 p2m_mid_init(mid, p2m_missing);
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400646
647 p2m_top[topidx] = mid;
Konrad Rzeszutek Wilk3f3aaea2012-03-30 11:45:01 -0400648 }
649 return true;
650}
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400651
652/*
653 * Skim over the P2M tree looking at pages that are either filled with
654 * INVALID_P2M_ENTRY or with 1:1 PFNs. If found, re-use that page and
655 * replace the P2M leaf with a p2m_missing or p2m_identity.
656 * Stick the old page in the new P2M tree location.
657 */
Juergen Gross2c185682014-10-14 13:33:46 +0200658static bool __init early_can_reuse_p2m_middle(unsigned long set_pfn)
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400659{
660 unsigned topidx;
661 unsigned mididx;
662 unsigned ident_pfns;
663 unsigned inv_pfns;
664 unsigned long *p2m;
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400665 unsigned idx;
666 unsigned long pfn;
667
668 /* We only look when this entails a P2M middle layer */
669 if (p2m_index(set_pfn))
670 return false;
671
Konrad Rzeszutek Wilk50e90042012-09-04 15:45:17 -0400672 for (pfn = 0; pfn < MAX_DOMAIN_PAGES; pfn += P2M_PER_PAGE) {
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400673 topidx = p2m_top_index(pfn);
674
675 if (!p2m_top[topidx])
676 continue;
677
678 if (p2m_top[topidx] == p2m_mid_missing)
679 continue;
680
681 mididx = p2m_mid_index(pfn);
682 p2m = p2m_top[topidx][mididx];
683 if (!p2m)
684 continue;
685
686 if ((p2m == p2m_missing) || (p2m == p2m_identity))
687 continue;
688
689 if ((unsigned long)p2m == INVALID_P2M_ENTRY)
690 continue;
691
692 ident_pfns = 0;
693 inv_pfns = 0;
694 for (idx = 0; idx < P2M_PER_PAGE; idx++) {
695 /* IDENTITY_PFNs are 1:1 */
696 if (p2m[idx] == IDENTITY_FRAME(pfn + idx))
697 ident_pfns++;
698 else if (p2m[idx] == INVALID_P2M_ENTRY)
699 inv_pfns++;
700 else
701 break;
702 }
703 if ((ident_pfns == P2M_PER_PAGE) || (inv_pfns == P2M_PER_PAGE))
704 goto found;
705 }
706 return false;
707found:
708 /* Found one, replace old with p2m_identity or p2m_missing */
709 p2m_top[topidx][mididx] = (ident_pfns ? p2m_identity : p2m_missing);
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400710
711 /* Reset where we want to stick the old page in. */
712 topidx = p2m_top_index(set_pfn);
713 mididx = p2m_mid_index(set_pfn);
714
715 /* This shouldn't happen */
716 if (WARN_ON(p2m_top[topidx] == p2m_mid_missing))
David Vrabelfcca2e32014-01-07 11:53:35 +0000717 early_alloc_p2m_middle(set_pfn);
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400718
719 if (WARN_ON(p2m_top[topidx][mididx] != p2m_missing))
720 return false;
721
722 p2m_init(p2m);
723 p2m_top[topidx][mididx] = p2m;
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400724
725 return true;
726}
Konrad Rzeszutek Wilk940713b2012-03-30 14:33:14 -0400727bool __init early_set_phys_to_machine(unsigned long pfn, unsigned long mfn)
728{
729 if (unlikely(!__set_phys_to_machine(pfn, mfn))) {
David Vrabelfcca2e32014-01-07 11:53:35 +0000730 if (!early_alloc_p2m_middle(pfn))
Konrad Rzeszutek Wilk940713b2012-03-30 14:33:14 -0400731 return false;
732
Juergen Gross2c185682014-10-14 13:33:46 +0200733 if (early_can_reuse_p2m_middle(pfn))
Konrad Rzeszutek Wilk250a41e2012-08-17 09:27:35 -0400734 return __set_phys_to_machine(pfn, mfn);
735
David Vrabelfcca2e32014-01-07 11:53:35 +0000736 if (!early_alloc_p2m(pfn, false /* boundary crossover OK!*/))
Konrad Rzeszutek Wilk940713b2012-03-30 14:33:14 -0400737 return false;
738
739 if (!__set_phys_to_machine(pfn, mfn))
740 return false;
741 }
742
743 return true;
744}
David Vrabel3cb83e42014-01-07 11:44:32 +0000745
746static void __init early_split_p2m(unsigned long pfn)
747{
748 unsigned long mididx, idx;
749
750 mididx = p2m_mid_index(pfn);
751 idx = p2m_index(pfn);
752
753 /*
754 * Allocate new middle and leaf pages if this pfn lies in the
755 * middle of one.
756 */
757 if (mididx || idx)
758 early_alloc_p2m_middle(pfn);
759 if (idx)
760 early_alloc_p2m(pfn, false);
761}
762
Randy Dunlapb83c6e52011-03-24 13:34:32 -0700763unsigned long __init set_phys_range_identity(unsigned long pfn_s,
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500764 unsigned long pfn_e)
765{
766 unsigned long pfn;
767
David Vrabela9b5bff2014-01-06 11:55:13 +0000768 if (unlikely(pfn_s >= MAX_P2M_PFN))
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500769 return 0;
770
771 if (unlikely(xen_feature(XENFEAT_auto_translated_physmap)))
772 return pfn_e - pfn_s;
773
774 if (pfn_s > pfn_e)
775 return 0;
776
David Vrabela9b5bff2014-01-06 11:55:13 +0000777 if (pfn_e > MAX_P2M_PFN)
778 pfn_e = MAX_P2M_PFN;
779
David Vrabel3cb83e42014-01-07 11:44:32 +0000780 early_split_p2m(pfn_s);
781 early_split_p2m(pfn_e);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500782
David Vrabel3cb83e42014-01-07 11:44:32 +0000783 for (pfn = pfn_s; pfn < pfn_e;) {
784 unsigned topidx = p2m_top_index(pfn);
785 unsigned mididx = p2m_mid_index(pfn);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500786
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500787 if (!__set_phys_to_machine(pfn, IDENTITY_FRAME(pfn)))
788 break;
David Vrabel3cb83e42014-01-07 11:44:32 +0000789 pfn++;
790
791 /*
792 * If the PFN was set to a middle or leaf identity
793 * page the remainder must also be identity, so skip
794 * ahead to the next middle or leaf entry.
795 */
796 if (p2m_top[topidx] == p2m_mid_identity)
797 pfn = ALIGN(pfn, P2M_MID_PER_PAGE * P2M_PER_PAGE);
798 else if (p2m_top[topidx][mididx] == p2m_identity)
799 pfn = ALIGN(pfn, P2M_PER_PAGE);
800 }
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500801
Matt Rushton3fbdf632014-07-19 17:01:34 -0700802 WARN((pfn - pfn_s) != (pfn_e - pfn_s),
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500803 "Identity mapping failed. We are %ld short of 1-1 mappings!\n",
Matt Rushton3fbdf632014-07-19 17:01:34 -0700804 (pfn_e - pfn_s) - (pfn - pfn_s));
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500805
806 return pfn - pfn_s;
807}
808
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800809/* Try to install p2m mapping; fail if intermediate bits missing */
810bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn)
811{
812 unsigned topidx, mididx, idx;
813
Stefano Stabellini2f558d42013-10-09 20:39:01 +0000814 /* don't track P2M changes in autotranslate guests */
815 if (unlikely(xen_feature(XENFEAT_auto_translated_physmap)))
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -0500816 return true;
Stefano Stabellini2f558d42013-10-09 20:39:01 +0000817
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800818 if (unlikely(pfn >= MAX_P2M_PFN)) {
819 BUG_ON(mfn != INVALID_P2M_ENTRY);
820 return true;
821 }
822
823 topidx = p2m_top_index(pfn);
824 mididx = p2m_mid_index(pfn);
825 idx = p2m_index(pfn);
826
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500827 /* For sparse holes were the p2m leaf has real PFN along with
828 * PCI holes, stick in the PFN as the MFN value.
David Vrabel3cb83e42014-01-07 11:44:32 +0000829 *
830 * set_phys_range_identity() will have allocated new middle
831 * and leaf pages as required so an existing p2m_mid_missing
832 * or p2m_missing mean that whole range will be identity so
833 * these can be switched to p2m_mid_identity or p2m_identity.
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500834 */
835 if (mfn != INVALID_P2M_ENTRY && (mfn & IDENTITY_FRAME_BIT)) {
David Vrabel3cb83e42014-01-07 11:44:32 +0000836 if (p2m_top[topidx] == p2m_mid_identity)
837 return true;
838
839 if (p2m_top[topidx] == p2m_mid_missing) {
840 WARN_ON(cmpxchg(&p2m_top[topidx], p2m_mid_missing,
841 p2m_mid_identity) != p2m_mid_missing);
842 return true;
843 }
844
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500845 if (p2m_top[topidx][mididx] == p2m_identity)
846 return true;
847
848 /* Swap over from MISSING to IDENTITY if needed. */
849 if (p2m_top[topidx][mididx] == p2m_missing) {
Konrad Rzeszutek Wilkc7617792011-01-18 20:17:10 -0500850 WARN_ON(cmpxchg(&p2m_top[topidx][mididx], p2m_missing,
851 p2m_identity) != p2m_missing);
Konrad Rzeszutek Wilkf4cec352011-01-18 20:15:21 -0500852 return true;
853 }
854 }
855
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800856 if (p2m_top[topidx][mididx] == p2m_missing)
857 return mfn == INVALID_P2M_ENTRY;
858
859 p2m_top[topidx][mididx][idx] = mfn;
860
861 return true;
862}
863
864bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
865{
Jeremy Fitzhardingeb5eafe92010-12-06 16:29:22 -0800866 if (unlikely(!__set_phys_to_machine(pfn, mfn))) {
867 if (!alloc_p2m(pfn))
868 return false;
869
870 if (!__set_phys_to_machine(pfn, mfn))
871 return false;
872 }
873
874 return true;
875}
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000876
877#define M2P_OVERRIDE_HASH_SHIFT 10
878#define M2P_OVERRIDE_HASH (1 << M2P_OVERRIDE_HASH_SHIFT)
879
880static RESERVE_BRK_ARRAY(struct list_head, m2p_overrides, M2P_OVERRIDE_HASH);
881static DEFINE_SPINLOCK(m2p_override_lock);
882
883static void __init m2p_override_init(void)
884{
885 unsigned i;
886
887 m2p_overrides = extend_brk(sizeof(*m2p_overrides) * M2P_OVERRIDE_HASH,
888 sizeof(unsigned long));
889
890 for (i = 0; i < M2P_OVERRIDE_HASH; i++)
891 INIT_LIST_HEAD(&m2p_overrides[i]);
892}
893
894static unsigned long mfn_hash(unsigned long mfn)
895{
896 return hash_long(mfn, M2P_OVERRIDE_HASH_SHIFT);
897}
898
Zoltan Kiss1429d462014-02-27 15:55:30 +0000899int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
900 struct gnttab_map_grant_ref *kmap_ops,
901 struct page **pages, unsigned int count)
902{
903 int i, ret = 0;
904 bool lazy = false;
905 pte_t *pte;
906
907 if (xen_feature(XENFEAT_auto_translated_physmap))
908 return 0;
909
910 if (kmap_ops &&
911 !in_interrupt() &&
912 paravirt_get_lazy_mode() == PARAVIRT_LAZY_NONE) {
913 arch_enter_lazy_mmu_mode();
914 lazy = true;
915 }
916
917 for (i = 0; i < count; i++) {
918 unsigned long mfn, pfn;
919
920 /* Do not add to override if the map failed. */
921 if (map_ops[i].status)
922 continue;
923
924 if (map_ops[i].flags & GNTMAP_contains_pte) {
925 pte = (pte_t *) (mfn_to_virt(PFN_DOWN(map_ops[i].host_addr)) +
926 (map_ops[i].host_addr & ~PAGE_MASK));
927 mfn = pte_mfn(*pte);
928 } else {
929 mfn = PFN_DOWN(map_ops[i].dev_bus_addr);
930 }
931 pfn = page_to_pfn(pages[i]);
932
933 WARN_ON(PagePrivate(pages[i]));
934 SetPagePrivate(pages[i]);
935 set_page_private(pages[i], mfn);
936 pages[i]->index = pfn_to_mfn(pfn);
937
938 if (unlikely(!set_phys_to_machine(pfn, FOREIGN_FRAME(mfn)))) {
939 ret = -ENOMEM;
940 goto out;
941 }
942
943 if (kmap_ops) {
944 ret = m2p_add_override(mfn, pages[i], &kmap_ops[i]);
945 if (ret)
946 goto out;
947 }
948 }
949
950out:
951 if (lazy)
952 arch_leave_lazy_mmu_mode();
953
954 return ret;
955}
956EXPORT_SYMBOL_GPL(set_foreign_p2m_mapping);
957
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000958/* Add an MFN override for a particular page */
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100959int m2p_add_override(unsigned long mfn, struct page *page,
960 struct gnttab_map_grant_ref *kmap_op)
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000961{
962 unsigned long flags;
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000963 unsigned long pfn;
Ian Campbell6b08cfe2011-02-11 15:23:58 +0000964 unsigned long uninitialized_var(address);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000965 unsigned level;
966 pte_t *ptep = NULL;
967
968 pfn = page_to_pfn(page);
969 if (!PageHighMem(page)) {
970 address = (unsigned long)__va(pfn << PAGE_SHIFT);
971 ptep = lookup_address(address, &level);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000972 if (WARN(ptep == NULL || level != PG_LEVEL_4K,
973 "m2p_add_override: pfn %lx not mapped", pfn))
974 return -EINVAL;
975 }
Daniel De Graafb2542442011-03-24 08:10:07 -0400976
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100977 if (kmap_op != NULL) {
978 if (!PageHighMem(page)) {
979 struct multicall_space mcs =
980 xen_mc_entry(sizeof(*kmap_op));
981
982 MULTI_grant_table_op(mcs.mc,
983 GNTTABOP_map_grant_ref, kmap_op, 1);
984
985 xen_mc_issue(PARAVIRT_LAZY_MMU);
986 }
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100987 }
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +0000988 spin_lock_irqsave(&m2p_override_lock, flags);
989 list_add(&page->lru, &m2p_overrides[mfn_hash(mfn)]);
990 spin_unlock_irqrestore(&m2p_override_lock, flags);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000991
Stefano Stabellinib9e0d952012-05-23 18:57:20 +0100992 /* p2m(m2p(mfn)) == mfn: the mfn is already present somewhere in
993 * this domain. Set the FOREIGN_FRAME_BIT in the p2m for the other
994 * pfn so that the following mfn_to_pfn(mfn) calls will return the
995 * pfn from the m2p_override (the backend pfn) instead.
996 * We need to do this because the pages shared by the frontend
997 * (xen-blkfront) can be already locked (lock_page, called by
998 * do_read_cache_page); when the userspace backend tries to use them
999 * with direct_IO, mfn_to_pfn returns the pfn of the frontend, so
1000 * do_blockdev_direct_IO is going to try to lock the same pages
1001 * again resulting in a deadlock.
1002 * As a side effect get_user_pages_fast might not be safe on the
1003 * frontend pages while they are being shared with the backend,
1004 * because mfn_to_pfn (that ends up being called by GUPF) will
1005 * return the backend pfn rather than the frontend pfn. */
David Vrabel01606762013-09-13 15:13:30 +01001006 pfn = mfn_to_pfn_no_overrides(mfn);
1007 if (get_phys_to_machine(pfn) == mfn)
Stefano Stabellinib9e0d952012-05-23 18:57:20 +01001008 set_phys_to_machine(pfn, FOREIGN_FRAME(mfn));
1009
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001010 return 0;
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001011}
Konrad Rzeszutek Wilk8a917072011-04-20 11:54:10 -04001012EXPORT_SYMBOL_GPL(m2p_add_override);
Zoltan Kiss1429d462014-02-27 15:55:30 +00001013
1014int clear_foreign_p2m_mapping(struct gnttab_unmap_grant_ref *unmap_ops,
1015 struct gnttab_map_grant_ref *kmap_ops,
1016 struct page **pages, unsigned int count)
1017{
1018 int i, ret = 0;
1019 bool lazy = false;
1020
1021 if (xen_feature(XENFEAT_auto_translated_physmap))
1022 return 0;
1023
1024 if (kmap_ops &&
1025 !in_interrupt() &&
1026 paravirt_get_lazy_mode() == PARAVIRT_LAZY_NONE) {
1027 arch_enter_lazy_mmu_mode();
1028 lazy = true;
1029 }
1030
1031 for (i = 0; i < count; i++) {
1032 unsigned long mfn = get_phys_to_machine(page_to_pfn(pages[i]));
1033 unsigned long pfn = page_to_pfn(pages[i]);
1034
1035 if (mfn == INVALID_P2M_ENTRY || !(mfn & FOREIGN_FRAME_BIT)) {
1036 ret = -EINVAL;
1037 goto out;
1038 }
1039
1040 set_page_private(pages[i], INVALID_P2M_ENTRY);
1041 WARN_ON(!PagePrivate(pages[i]));
1042 ClearPagePrivate(pages[i]);
1043 set_phys_to_machine(pfn, pages[i]->index);
1044
1045 if (kmap_ops)
1046 ret = m2p_remove_override(pages[i], &kmap_ops[i], mfn);
1047 if (ret)
1048 goto out;
1049 }
1050
1051out:
1052 if (lazy)
1053 arch_leave_lazy_mmu_mode();
1054 return ret;
1055}
1056EXPORT_SYMBOL_GPL(clear_foreign_p2m_mapping);
1057
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001058int m2p_remove_override(struct page *page,
Zoltan Kiss1429d462014-02-27 15:55:30 +00001059 struct gnttab_map_grant_ref *kmap_op,
1060 unsigned long mfn)
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001061{
1062 unsigned long flags;
Stefano Stabellini9b705f02010-12-10 14:52:45 +00001063 unsigned long pfn;
Ian Campbell6b08cfe2011-02-11 15:23:58 +00001064 unsigned long uninitialized_var(address);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001065 unsigned level;
1066 pte_t *ptep = NULL;
Stefano Stabellini9b705f02010-12-10 14:52:45 +00001067
1068 pfn = page_to_pfn(page);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001069
1070 if (!PageHighMem(page)) {
1071 address = (unsigned long)__va(pfn << PAGE_SHIFT);
1072 ptep = lookup_address(address, &level);
1073
1074 if (WARN(ptep == NULL || level != PG_LEVEL_4K,
1075 "m2p_remove_override: pfn %lx not mapped", pfn))
1076 return -EINVAL;
1077 }
Stefano Stabellini9b705f02010-12-10 14:52:45 +00001078
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001079 spin_lock_irqsave(&m2p_override_lock, flags);
1080 list_del(&page->lru);
1081 spin_unlock_irqrestore(&m2p_override_lock, flags);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001082
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001083 if (kmap_op != NULL) {
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001084 if (!PageHighMem(page)) {
1085 struct multicall_space mcs;
Stefano Stabelliniee072642013-07-23 17:23:54 +00001086 struct gnttab_unmap_and_replace *unmap_op;
1087 struct page *scratch_page = get_balloon_scratch_page();
1088 unsigned long scratch_page_address = (unsigned long)
1089 __va(page_to_pfn(scratch_page) << PAGE_SHIFT);
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001090
1091 /*
1092 * It might be that we queued all the m2p grant table
1093 * hypercalls in a multicall, then m2p_remove_override
1094 * get called before the multicall has actually been
1095 * issued. In this case handle is going to -1 because
1096 * it hasn't been modified yet.
1097 */
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001098 if (kmap_op->handle == -1)
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001099 xen_mc_flush();
1100 /*
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001101 * Now if kmap_op->handle is negative it means that the
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001102 * hypercall actually returned an error.
1103 */
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001104 if (kmap_op->handle == GNTST_general_error) {
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001105 printk(KERN_WARNING "m2p_remove_override: "
1106 "pfn %lx mfn %lx, failed to modify kernel mappings",
1107 pfn, mfn);
Boris Ostrovskyd7f8f482013-09-09 10:44:26 +00001108 put_balloon_scratch_page();
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001109 return -1;
1110 }
1111
Boris Ostrovskyd7f8f482013-09-09 10:44:26 +00001112 xen_mc_batch();
1113
1114 mcs = __xen_mc_entry(
Stefano Stabelliniee072642013-07-23 17:23:54 +00001115 sizeof(struct gnttab_unmap_and_replace));
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001116 unmap_op = mcs.args;
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001117 unmap_op->host_addr = kmap_op->host_addr;
Stefano Stabelliniee072642013-07-23 17:23:54 +00001118 unmap_op->new_addr = scratch_page_address;
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001119 unmap_op->handle = kmap_op->handle;
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001120
1121 MULTI_grant_table_op(mcs.mc,
Stefano Stabelliniee072642013-07-23 17:23:54 +00001122 GNTTABOP_unmap_and_replace, unmap_op, 1);
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001123
Stefano Stabelliniee072642013-07-23 17:23:54 +00001124 mcs = __xen_mc_entry(0);
1125 MULTI_update_va_mapping(mcs.mc, scratch_page_address,
Boris Ostrovskyd7f8f482013-09-09 10:44:26 +00001126 pfn_pte(page_to_pfn(scratch_page),
Stefano Stabelliniee072642013-07-23 17:23:54 +00001127 PAGE_KERNEL_RO), 0);
Boris Ostrovskyd7f8f482013-09-09 10:44:26 +00001128
Stefano Stabelliniee072642013-07-23 17:23:54 +00001129 xen_mc_issue(PARAVIRT_LAZY_MMU);
1130
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001131 kmap_op->host_addr = 0;
Stefano Stabelliniee072642013-07-23 17:23:54 +00001132 put_balloon_scratch_page();
Stefano Stabellini0930bba2011-09-29 11:57:56 +01001133 }
Stefano Stabellini2fc136e2012-09-12 12:44:30 +01001134 }
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001135
Stefano Stabellinib9e0d952012-05-23 18:57:20 +01001136 /* p2m(m2p(mfn)) == FOREIGN_FRAME(mfn): the mfn is already present
1137 * somewhere in this domain, even before being added to the
1138 * m2p_override (see comment above in m2p_add_override).
1139 * If there are no other entries in the m2p_override corresponding
1140 * to this mfn, then remove the FOREIGN_FRAME_BIT from the p2m for
1141 * the original pfn (the one shared by the frontend): the backend
1142 * cannot do any IO on this page anymore because it has been
1143 * unshared. Removing the FOREIGN_FRAME_BIT from the p2m entry of
1144 * the original pfn causes mfn_to_pfn(mfn) to return the frontend
1145 * pfn again. */
1146 mfn &= ~FOREIGN_FRAME_BIT;
David Vrabel01606762013-09-13 15:13:30 +01001147 pfn = mfn_to_pfn_no_overrides(mfn);
1148 if (get_phys_to_machine(pfn) == FOREIGN_FRAME(mfn) &&
Stefano Stabellinib9e0d952012-05-23 18:57:20 +01001149 m2p_find_override(mfn) == NULL)
1150 set_phys_to_machine(pfn, mfn);
1151
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +00001152 return 0;
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001153}
Konrad Rzeszutek Wilk8a917072011-04-20 11:54:10 -04001154EXPORT_SYMBOL_GPL(m2p_remove_override);
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001155
1156struct page *m2p_find_override(unsigned long mfn)
1157{
1158 unsigned long flags;
1159 struct list_head *bucket = &m2p_overrides[mfn_hash(mfn)];
1160 struct page *p, *ret;
1161
1162 ret = NULL;
1163
1164 spin_lock_irqsave(&m2p_override_lock, flags);
1165
1166 list_for_each_entry(p, bucket, lru) {
Konrad Rzeszutek Wilk0f4b49e2011-09-23 17:36:07 -04001167 if (page_private(p) == mfn) {
Jeremy Fitzhardinge448f28312010-12-15 13:19:33 +00001168 ret = p;
1169 break;
1170 }
1171 }
1172
1173 spin_unlock_irqrestore(&m2p_override_lock, flags);
1174
1175 return ret;
1176}
1177
1178unsigned long m2p_find_override_pfn(unsigned long mfn, unsigned long pfn)
1179{
1180 struct page *p = m2p_find_override(mfn);
1181 unsigned long ret = pfn;
1182
1183 if (p)
1184 ret = page_to_pfn(p);
1185
1186 return ret;
1187}
Konrad Rzeszutek Wilke1b478e2011-01-11 15:09:16 -05001188EXPORT_SYMBOL_GPL(m2p_find_override_pfn);
Konrad Rzeszutek Wilk2222e712010-12-22 08:57:30 -05001189
1190#ifdef CONFIG_XEN_DEBUG_FS
Konrad Rzeszutek Wilka867db12011-09-23 16:32:47 -04001191#include <linux/debugfs.h>
1192#include "debugfs.h"
1193static int p2m_dump_show(struct seq_file *m, void *v)
Konrad Rzeszutek Wilk2222e712010-12-22 08:57:30 -05001194{
1195 static const char * const level_name[] = { "top", "middle",
Konrad Rzeszutek Wilk84048772011-09-29 13:09:34 -04001196 "entry", "abnormal", "error"};
Konrad Rzeszutek Wilk2222e712010-12-22 08:57:30 -05001197#define TYPE_IDENTITY 0
1198#define TYPE_MISSING 1
1199#define TYPE_PFN 2
1200#define TYPE_UNKNOWN 3
Konrad Rzeszutek Wilka491dbe2011-10-03 12:35:26 -04001201 static const char * const type_name[] = {
1202 [TYPE_IDENTITY] = "identity",
1203 [TYPE_MISSING] = "missing",
1204 [TYPE_PFN] = "pfn",
1205 [TYPE_UNKNOWN] = "abnormal"};
Konrad Rzeszutek Wilk2222e712010-12-22 08:57:30 -05001206 unsigned long pfn, prev_pfn_type = 0, prev_pfn_level = 0;
1207 unsigned int uninitialized_var(prev_level);
1208 unsigned int uninitialized_var(prev_type);
1209
1210 if (!p2m_top)
1211 return 0;
1212
1213 for (pfn = 0; pfn < MAX_DOMAIN_PAGES; pfn++) {
1214 unsigned topidx = p2m_top_index(pfn);
1215 unsigned mididx = p2m_mid_index(pfn);
1216 unsigned idx = p2m_index(pfn);
1217 unsigned lvl, type;
1218
1219 lvl = 4;
1220 type = TYPE_UNKNOWN;
1221 if (p2m_top[topidx] == p2m_mid_missing) {
1222 lvl = 0; type = TYPE_MISSING;
1223 } else if (p2m_top[topidx] == NULL) {
1224 lvl = 0; type = TYPE_UNKNOWN;
1225 } else if (p2m_top[topidx][mididx] == NULL) {
1226 lvl = 1; type = TYPE_UNKNOWN;
1227 } else if (p2m_top[topidx][mididx] == p2m_identity) {
1228 lvl = 1; type = TYPE_IDENTITY;
1229 } else if (p2m_top[topidx][mididx] == p2m_missing) {
1230 lvl = 1; type = TYPE_MISSING;
1231 } else if (p2m_top[topidx][mididx][idx] == 0) {
1232 lvl = 2; type = TYPE_UNKNOWN;
1233 } else if (p2m_top[topidx][mididx][idx] == IDENTITY_FRAME(pfn)) {
1234 lvl = 2; type = TYPE_IDENTITY;
1235 } else if (p2m_top[topidx][mididx][idx] == INVALID_P2M_ENTRY) {
1236 lvl = 2; type = TYPE_MISSING;
1237 } else if (p2m_top[topidx][mididx][idx] == pfn) {
1238 lvl = 2; type = TYPE_PFN;
1239 } else if (p2m_top[topidx][mididx][idx] != pfn) {
1240 lvl = 2; type = TYPE_PFN;
1241 }
1242 if (pfn == 0) {
1243 prev_level = lvl;
1244 prev_type = type;
1245 }
1246 if (pfn == MAX_DOMAIN_PAGES-1) {
1247 lvl = 3;
1248 type = TYPE_UNKNOWN;
1249 }
1250 if (prev_type != type) {
1251 seq_printf(m, " [0x%lx->0x%lx] %s\n",
1252 prev_pfn_type, pfn, type_name[prev_type]);
1253 prev_pfn_type = pfn;
1254 prev_type = type;
1255 }
1256 if (prev_level != lvl) {
1257 seq_printf(m, " [0x%lx->0x%lx] level %s\n",
1258 prev_pfn_level, pfn, level_name[prev_level]);
1259 prev_pfn_level = pfn;
1260 prev_level = lvl;
1261 }
1262 }
1263 return 0;
1264#undef TYPE_IDENTITY
1265#undef TYPE_MISSING
1266#undef TYPE_PFN
1267#undef TYPE_UNKNOWN
1268}
Konrad Rzeszutek Wilka867db12011-09-23 16:32:47 -04001269
1270static int p2m_dump_open(struct inode *inode, struct file *filp)
1271{
1272 return single_open(filp, p2m_dump_show, NULL);
1273}
1274
1275static const struct file_operations p2m_dump_fops = {
1276 .open = p2m_dump_open,
1277 .read = seq_read,
1278 .llseek = seq_lseek,
1279 .release = single_release,
1280};
1281
1282static struct dentry *d_mmu_debug;
1283
1284static int __init xen_p2m_debugfs(void)
1285{
1286 struct dentry *d_xen = xen_init_debugfs();
1287
1288 if (d_xen == NULL)
1289 return -ENOMEM;
1290
1291 d_mmu_debug = debugfs_create_dir("mmu", d_xen);
1292
1293 debugfs_create_file("p2m", 0600, d_mmu_debug, NULL, &p2m_dump_fops);
1294 return 0;
1295}
1296fs_initcall(xen_p2m_debugfs);
1297#endif /* CONFIG_XEN_DEBUG_FS */