blob: 3da902e4b4cbb6adb2ea42a13e916eba5aa5213f [file] [log] [blame]
Rusty Russell2e04ef72009-07-30 16:03:45 -06001/*P:700
2 * The pagetable code, on the other hand, still shows the scars of
Rusty Russellf938d2c2007-07-26 10:41:02 -07003 * previous encounters. It's functional, and as neat as it can be in the
4 * circumstances, but be wary, for these things are subtle and break easily.
5 * The Guest provides a virtual to physical mapping, but we can neither trust
Rusty Russella6bd8e12008-03-28 11:05:53 -05006 * it nor use it: we verify and convert it here then point the CPU to the
Rusty Russell2e04ef72009-07-30 16:03:45 -06007 * converted Guest pages when running the Guest.
8:*/
Rusty Russellf938d2c2007-07-26 10:41:02 -07009
10/* Copyright (C) Rusty Russell IBM Corporation 2006.
Rusty Russelld7e28ff2007-07-19 01:49:23 -070011 * GPL v2 and any later version */
12#include <linux/mm.h>
13#include <linux/types.h>
14#include <linux/spinlock.h>
15#include <linux/random.h>
16#include <linux/percpu.h>
17#include <asm/tlbflush.h>
Rusty Russell47436aa2007-10-22 11:03:36 +100018#include <asm/uaccess.h>
Matias Zabaljauregui58a24562008-09-29 01:40:07 -030019#include <asm/bootparam.h>
Rusty Russelld7e28ff2007-07-19 01:49:23 -070020#include "lg.h"
21
Rusty Russell2e04ef72009-07-30 16:03:45 -060022/*M:008
23 * We hold reference to pages, which prevents them from being swapped.
Rusty Russellf56a3842007-07-26 10:41:05 -070024 * It'd be nice to have a callback in the "struct mm_struct" when Linux wants
25 * to swap out. If we had this, and a shrinker callback to trim PTE pages, we
Rusty Russell2e04ef72009-07-30 16:03:45 -060026 * could probably consider launching Guests as non-root.
27:*/
Rusty Russellf56a3842007-07-26 10:41:05 -070028
Rusty Russellbff672e2007-07-26 10:41:04 -070029/*H:300
30 * The Page Table Code
31 *
32 * We use two-level page tables for the Guest. If you're not entirely
33 * comfortable with virtual addresses, physical addresses and page tables then
Rusty Russelle1e72962007-10-25 15:02:50 +100034 * I recommend you review arch/x86/lguest/boot.c's "Page Table Handling" (with
35 * diagrams!).
Rusty Russellbff672e2007-07-26 10:41:04 -070036 *
37 * The Guest keeps page tables, but we maintain the actual ones here: these are
38 * called "shadow" page tables. Which is a very Guest-centric name: these are
39 * the real page tables the CPU uses, although we keep them up to date to
40 * reflect the Guest's. (See what I mean about weird naming? Since when do
41 * shadows reflect anything?)
42 *
43 * Anyway, this is the most complicated part of the Host code. There are seven
44 * parts to this:
Rusty Russelle1e72962007-10-25 15:02:50 +100045 * (i) Looking up a page table entry when the Guest faults,
46 * (ii) Making sure the Guest stack is mapped,
47 * (iii) Setting up a page table entry when the Guest tells us one has changed,
Rusty Russellbff672e2007-07-26 10:41:04 -070048 * (iv) Switching page tables,
Rusty Russelle1e72962007-10-25 15:02:50 +100049 * (v) Flushing (throwing away) page tables,
Rusty Russellbff672e2007-07-26 10:41:04 -070050 * (vi) Mapping the Switcher when the Guest is about to run,
51 * (vii) Setting up the page tables initially.
Rusty Russell2e04ef72009-07-30 16:03:45 -060052:*/
Rusty Russellbff672e2007-07-26 10:41:04 -070053
Rusty Russell2e04ef72009-07-30 16:03:45 -060054/*
55 * 1024 entries in a page table page maps 1024 pages: 4MB. The Switcher is
Rusty Russellbff672e2007-07-26 10:41:04 -070056 * conveniently placed at the top 4MB, so it uses a separate, complete PTE
Rusty Russell2e04ef72009-07-30 16:03:45 -060057 * page.
58 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +100059#define SWITCHER_PGD_INDEX (PTRS_PER_PGD - 1)
Rusty Russelld7e28ff2007-07-19 01:49:23 -070060
Rusty Russell2e04ef72009-07-30 16:03:45 -060061/*
62 * For PAE we need the PMD index as well. We use the last 2MB, so we
63 * will need the last pmd entry of the last pmd page.
64 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -060065#ifdef CONFIG_X86_PAE
66#define SWITCHER_PMD_INDEX (PTRS_PER_PMD - 1)
67#define RESERVE_MEM 2U
68#define CHECK_GPGD_MASK _PAGE_PRESENT
69#else
70#define RESERVE_MEM 4U
71#define CHECK_GPGD_MASK _PAGE_TABLE
72#endif
73
Rusty Russell2e04ef72009-07-30 16:03:45 -060074/*
75 * We actually need a separate PTE page for each CPU. Remember that after the
Rusty Russellbff672e2007-07-26 10:41:04 -070076 * Switcher code itself comes two pages for each CPU, and we don't want this
Rusty Russell2e04ef72009-07-30 16:03:45 -060077 * CPU's guest to see the pages of any other CPU.
78 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +100079static DEFINE_PER_CPU(pte_t *, switcher_pte_pages);
Rusty Russelld7e28ff2007-07-19 01:49:23 -070080#define switcher_pte_page(cpu) per_cpu(switcher_pte_pages, cpu)
81
Rusty Russell2e04ef72009-07-30 16:03:45 -060082/*H:320
83 * The page table code is curly enough to need helper functions to keep it
Rusty Russelle1e72962007-10-25 15:02:50 +100084 * clear and clean.
Rusty Russellbff672e2007-07-26 10:41:04 -070085 *
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +100086 * There are two functions which return pointers to the shadow (aka "real")
Rusty Russellbff672e2007-07-26 10:41:04 -070087 * page tables.
88 *
89 * spgd_addr() takes the virtual address and returns a pointer to the top-level
Rusty Russelle1e72962007-10-25 15:02:50 +100090 * page directory entry (PGD) for that address. Since we keep track of several
91 * page tables, the "i" argument tells us which one we're interested in (it's
Rusty Russell2e04ef72009-07-30 16:03:45 -060092 * usually the current one).
93 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -020094static pgd_t *spgd_addr(struct lg_cpu *cpu, u32 i, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -070095{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +100096 unsigned int index = pgd_index(vaddr);
Rusty Russelld7e28ff2007-07-19 01:49:23 -070097
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -060098#ifndef CONFIG_X86_PAE
Rusty Russellbff672e2007-07-26 10:41:04 -070099 /* We kill any Guest trying to touch the Switcher addresses. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700100 if (index >= SWITCHER_PGD_INDEX) {
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200101 kill_guest(cpu, "attempt to access switcher pages");
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700102 index = 0;
103 }
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600104#endif
Rusty Russellbff672e2007-07-26 10:41:04 -0700105 /* Return a pointer index'th pgd entry for the i'th page table. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200106 return &cpu->lg->pgdirs[i].pgdir[index];
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700107}
108
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600109#ifdef CONFIG_X86_PAE
Rusty Russell2e04ef72009-07-30 16:03:45 -0600110/*
111 * This routine then takes the PGD entry given above, which contains the
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600112 * address of the PMD page. It then returns a pointer to the PMD entry for the
Rusty Russell2e04ef72009-07-30 16:03:45 -0600113 * given address.
114 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600115static pmd_t *spmd_addr(struct lg_cpu *cpu, pgd_t spgd, unsigned long vaddr)
116{
117 unsigned int index = pmd_index(vaddr);
118 pmd_t *page;
119
120 /* We kill any Guest trying to touch the Switcher addresses. */
121 if (pgd_index(vaddr) == SWITCHER_PGD_INDEX &&
122 index >= SWITCHER_PMD_INDEX) {
123 kill_guest(cpu, "attempt to access switcher pages");
124 index = 0;
125 }
126
127 /* You should never call this if the PGD entry wasn't valid */
128 BUG_ON(!(pgd_flags(spgd) & _PAGE_PRESENT));
129 page = __va(pgd_pfn(spgd) << PAGE_SHIFT);
130
131 return &page[index];
132}
133#endif
134
Rusty Russell2e04ef72009-07-30 16:03:45 -0600135/*
136 * This routine then takes the page directory entry returned above, which
Rusty Russelle1e72962007-10-25 15:02:50 +1000137 * contains the address of the page table entry (PTE) page. It then returns a
Rusty Russell2e04ef72009-07-30 16:03:45 -0600138 * pointer to the PTE entry for the given address.
139 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600140static pte_t *spte_addr(struct lg_cpu *cpu, pgd_t spgd, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700141{
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600142#ifdef CONFIG_X86_PAE
143 pmd_t *pmd = spmd_addr(cpu, spgd, vaddr);
144 pte_t *page = __va(pmd_pfn(*pmd) << PAGE_SHIFT);
145
146 /* You should never call this if the PMD entry wasn't valid */
147 BUG_ON(!(pmd_flags(*pmd) & _PAGE_PRESENT));
148#else
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000149 pte_t *page = __va(pgd_pfn(spgd) << PAGE_SHIFT);
Rusty Russellbff672e2007-07-26 10:41:04 -0700150 /* You should never call this if the PGD entry wasn't valid */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000151 BUG_ON(!(pgd_flags(spgd) & _PAGE_PRESENT));
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600152#endif
153
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600154 return &page[pte_index(vaddr)];
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700155}
156
Rusty Russell2e04ef72009-07-30 16:03:45 -0600157/*
158 * These two functions just like the above two, except they access the Guest
159 * page tables. Hence they return a Guest address.
160 */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200161static unsigned long gpgd_addr(struct lg_cpu *cpu, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700162{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000163 unsigned int index = vaddr >> (PGDIR_SHIFT);
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200164 return cpu->lg->pgdirs[cpu->cpu_pgd].gpgdir + index * sizeof(pgd_t);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700165}
166
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600167#ifdef CONFIG_X86_PAE
168static unsigned long gpmd_addr(pgd_t gpgd, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700169{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000170 unsigned long gpage = pgd_pfn(gpgd) << PAGE_SHIFT;
171 BUG_ON(!(pgd_flags(gpgd) & _PAGE_PRESENT));
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600172 return gpage + pmd_index(vaddr) * sizeof(pmd_t);
173}
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600174
175static unsigned long gpte_addr(struct lg_cpu *cpu,
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600176 pmd_t gpmd, unsigned long vaddr)
177{
178 unsigned long gpage = pmd_pfn(gpmd) << PAGE_SHIFT;
179
180 BUG_ON(!(pmd_flags(gpmd) & _PAGE_PRESENT));
181 return gpage + pte_index(vaddr) * sizeof(pte_t);
182}
183#else
184static unsigned long gpte_addr(struct lg_cpu *cpu,
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600185 pgd_t gpgd, unsigned long vaddr)
186{
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600187 unsigned long gpage = pgd_pfn(gpgd) << PAGE_SHIFT;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600188
189 BUG_ON(!(pgd_flags(gpgd) & _PAGE_PRESENT));
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600190 return gpage + pte_index(vaddr) * sizeof(pte_t);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700191}
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600192#endif
Rusty Russella6bd8e12008-03-28 11:05:53 -0500193/*:*/
194
Rusty Russell2e04ef72009-07-30 16:03:45 -0600195/*M:014
196 * get_pfn is slow: we could probably try to grab batches of pages here as
197 * an optimization (ie. pre-faulting).
198:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700199
Rusty Russell2e04ef72009-07-30 16:03:45 -0600200/*H:350
201 * This routine takes a page number given by the Guest and converts it to
Rusty Russellbff672e2007-07-26 10:41:04 -0700202 * an actual, physical page number. It can fail for several reasons: the
203 * virtual address might not be mapped by the Launcher, the write flag is set
204 * and the page is read-only, or the write flag was set and the page was
205 * shared so had to be copied, but we ran out of memory.
206 *
Rusty Russella6bd8e12008-03-28 11:05:53 -0500207 * This holds a reference to the page, so release_pte() is careful to put that
Rusty Russell2e04ef72009-07-30 16:03:45 -0600208 * back.
209 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700210static unsigned long get_pfn(unsigned long virtpfn, int write)
211{
212 struct page *page;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700213
Rusty Russell71a3f4e2008-08-12 17:52:53 -0500214 /* gup me one page at this address please! */
215 if (get_user_pages_fast(virtpfn << PAGE_SHIFT, 1, write, &page) == 1)
216 return page_to_pfn(page);
217
218 /* This value indicates failure. */
219 return -1UL;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700220}
221
Rusty Russell2e04ef72009-07-30 16:03:45 -0600222/*H:340
223 * Converting a Guest page table entry to a shadow (ie. real) page table
Rusty Russellbff672e2007-07-26 10:41:04 -0700224 * entry can be a little tricky. The flags are (almost) the same, but the
225 * Guest PTE contains a virtual page number: the CPU needs the real page
Rusty Russell2e04ef72009-07-30 16:03:45 -0600226 * number.
227 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200228static pte_t gpte_to_spte(struct lg_cpu *cpu, pte_t gpte, int write)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700229{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000230 unsigned long pfn, base, flags;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700231
Rusty Russell2e04ef72009-07-30 16:03:45 -0600232 /*
233 * The Guest sets the global flag, because it thinks that it is using
Rusty Russellbff672e2007-07-26 10:41:04 -0700234 * PGE. We only told it to use PGE so it would tell us whether it was
235 * flushing a kernel mapping or a userspace mapping. We don't actually
Rusty Russell2e04ef72009-07-30 16:03:45 -0600236 * use the global bit, so throw it away.
237 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000238 flags = (pte_flags(gpte) & ~_PAGE_GLOBAL);
Rusty Russellbff672e2007-07-26 10:41:04 -0700239
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000240 /* The Guest's pages are offset inside the Launcher. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200241 base = (unsigned long)cpu->lg->mem_base / PAGE_SIZE;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000242
Rusty Russell2e04ef72009-07-30 16:03:45 -0600243 /*
244 * We need a temporary "unsigned long" variable to hold the answer from
Rusty Russellbff672e2007-07-26 10:41:04 -0700245 * get_pfn(), because it returns 0xFFFFFFFF on failure, which wouldn't
246 * fit in spte.pfn. get_pfn() finds the real physical number of the
Rusty Russell2e04ef72009-07-30 16:03:45 -0600247 * page, given the virtual number.
248 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000249 pfn = get_pfn(base + pte_pfn(gpte), write);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700250 if (pfn == -1UL) {
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200251 kill_guest(cpu, "failed to get page %lu", pte_pfn(gpte));
Rusty Russell2e04ef72009-07-30 16:03:45 -0600252 /*
253 * When we destroy the Guest, we'll go through the shadow page
Rusty Russellbff672e2007-07-26 10:41:04 -0700254 * tables and release_pte() them. Make sure we don't think
Rusty Russell2e04ef72009-07-30 16:03:45 -0600255 * this one is valid!
256 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000257 flags = 0;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700258 }
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000259 /* Now we assemble our shadow PTE from the page number and flags. */
260 return pfn_pte(pfn, __pgprot(flags));
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700261}
262
Rusty Russellbff672e2007-07-26 10:41:04 -0700263/*H:460 And to complete the chain, release_pte() looks like this: */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000264static void release_pte(pte_t pte)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700265{
Rusty Russell2e04ef72009-07-30 16:03:45 -0600266 /*
267 * Remember that get_user_pages_fast() took a reference to the page, in
268 * get_pfn()? We have to put it back now.
269 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000270 if (pte_flags(pte) & _PAGE_PRESENT)
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600271 put_page(pte_page(pte));
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700272}
Rusty Russellbff672e2007-07-26 10:41:04 -0700273/*:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700274
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200275static void check_gpte(struct lg_cpu *cpu, pte_t gpte)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700276{
Ahmed S. Darwish31f4b462008-02-09 23:24:09 +0100277 if ((pte_flags(gpte) & _PAGE_PSE) ||
278 pte_pfn(gpte) >= cpu->lg->pfn_limit)
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200279 kill_guest(cpu, "bad page table entry");
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700280}
281
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200282static void check_gpgd(struct lg_cpu *cpu, pgd_t gpgd)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700283{
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600284 if ((pgd_flags(gpgd) & ~CHECK_GPGD_MASK) ||
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200285 (pgd_pfn(gpgd) >= cpu->lg->pfn_limit))
286 kill_guest(cpu, "bad page directory entry");
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700287}
288
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600289#ifdef CONFIG_X86_PAE
290static void check_gpmd(struct lg_cpu *cpu, pmd_t gpmd)
291{
292 if ((pmd_flags(gpmd) & ~_PAGE_TABLE) ||
293 (pmd_pfn(gpmd) >= cpu->lg->pfn_limit))
294 kill_guest(cpu, "bad page middle directory entry");
295}
296#endif
297
Rusty Russellbff672e2007-07-26 10:41:04 -0700298/*H:330
Rusty Russelle1e72962007-10-25 15:02:50 +1000299 * (i) Looking up a page table entry when the Guest faults.
Rusty Russellbff672e2007-07-26 10:41:04 -0700300 *
301 * We saw this call in run_guest(): when we see a page fault in the Guest, we
302 * come here. That's because we only set up the shadow page tables lazily as
303 * they're needed, so we get page faults all the time and quietly fix them up
304 * and return to the Guest without it knowing.
305 *
306 * If we fixed up the fault (ie. we mapped the address), this routine returns
Rusty Russell2e04ef72009-07-30 16:03:45 -0600307 * true. Otherwise, it was a real fault and we need to tell the Guest.
308 */
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300309bool demand_page(struct lg_cpu *cpu, unsigned long vaddr, int errcode)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700310{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000311 pgd_t gpgd;
312 pgd_t *spgd;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700313 unsigned long gpte_ptr;
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000314 pte_t gpte;
315 pte_t *spte;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700316
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600317#ifdef CONFIG_X86_PAE
318 pmd_t *spmd;
319 pmd_t gpmd;
320#endif
321
Rusty Russellbff672e2007-07-26 10:41:04 -0700322 /* First step: get the top-level Guest page table entry. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200323 gpgd = lgread(cpu, gpgd_addr(cpu, vaddr), pgd_t);
Rusty Russellbff672e2007-07-26 10:41:04 -0700324 /* Toplevel not present? We can't map it in. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000325 if (!(pgd_flags(gpgd) & _PAGE_PRESENT))
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300326 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700327
Rusty Russellbff672e2007-07-26 10:41:04 -0700328 /* Now look at the matching shadow entry. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200329 spgd = spgd_addr(cpu, cpu->cpu_pgd, vaddr);
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000330 if (!(pgd_flags(*spgd) & _PAGE_PRESENT)) {
Rusty Russellbff672e2007-07-26 10:41:04 -0700331 /* No shadow entry: allocate a new shadow PTE page. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700332 unsigned long ptepage = get_zeroed_page(GFP_KERNEL);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600333 /*
334 * This is not really the Guest's fault, but killing it is
335 * simple for this corner case.
336 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700337 if (!ptepage) {
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200338 kill_guest(cpu, "out of memory allocating pte page");
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300339 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700340 }
Rusty Russellbff672e2007-07-26 10:41:04 -0700341 /* We check that the Guest pgd is OK. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200342 check_gpgd(cpu, gpgd);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600343 /*
344 * And we copy the flags to the shadow PGD entry. The page
345 * number in the shadow PGD is the page we just allocated.
346 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600347 set_pgd(spgd, __pgd(__pa(ptepage) | pgd_flags(gpgd)));
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700348 }
349
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600350#ifdef CONFIG_X86_PAE
351 gpmd = lgread(cpu, gpmd_addr(gpgd, vaddr), pmd_t);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600352 /* Middle level not present? We can't map it in. */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600353 if (!(pmd_flags(gpmd) & _PAGE_PRESENT))
354 return false;
355
356 /* Now look at the matching shadow entry. */
357 spmd = spmd_addr(cpu, *spgd, vaddr);
358
359 if (!(pmd_flags(*spmd) & _PAGE_PRESENT)) {
360 /* No shadow entry: allocate a new shadow PTE page. */
361 unsigned long ptepage = get_zeroed_page(GFP_KERNEL);
362
Rusty Russell2e04ef72009-07-30 16:03:45 -0600363 /*
364 * This is not really the Guest's fault, but killing it is
365 * simple for this corner case.
366 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600367 if (!ptepage) {
368 kill_guest(cpu, "out of memory allocating pte page");
369 return false;
370 }
371
372 /* We check that the Guest pmd is OK. */
373 check_gpmd(cpu, gpmd);
374
Rusty Russell2e04ef72009-07-30 16:03:45 -0600375 /*
376 * And we copy the flags to the shadow PMD entry. The page
377 * number in the shadow PMD is the page we just allocated.
378 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600379 native_set_pmd(spmd, __pmd(__pa(ptepage) | pmd_flags(gpmd)));
380 }
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600381
Rusty Russell2e04ef72009-07-30 16:03:45 -0600382 /*
383 * OK, now we look at the lower level in the Guest page table: keep its
384 * address, because we might update it later.
385 */
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600386 gpte_ptr = gpte_addr(cpu, gpmd, vaddr);
387#else
Rusty Russell2e04ef72009-07-30 16:03:45 -0600388 /*
389 * OK, now we look at the lower level in the Guest page table: keep its
390 * address, because we might update it later.
391 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600392 gpte_ptr = gpte_addr(cpu, gpgd, vaddr);
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600393#endif
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200394 gpte = lgread(cpu, gpte_ptr, pte_t);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700395
Rusty Russellbff672e2007-07-26 10:41:04 -0700396 /* If this page isn't in the Guest page tables, we can't page it in. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000397 if (!(pte_flags(gpte) & _PAGE_PRESENT))
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300398 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700399
Rusty Russell2e04ef72009-07-30 16:03:45 -0600400 /*
401 * Check they're not trying to write to a page the Guest wants
402 * read-only (bit 2 of errcode == write).
403 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000404 if ((errcode & 2) && !(pte_flags(gpte) & _PAGE_RW))
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300405 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700406
Rusty Russelle1e72962007-10-25 15:02:50 +1000407 /* User access to a kernel-only page? (bit 3 == user access) */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000408 if ((errcode & 4) && !(pte_flags(gpte) & _PAGE_USER))
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300409 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700410
Rusty Russell2e04ef72009-07-30 16:03:45 -0600411 /*
412 * Check that the Guest PTE flags are OK, and the page number is below
413 * the pfn_limit (ie. not mapping the Launcher binary).
414 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200415 check_gpte(cpu, gpte);
Rusty Russelle1e72962007-10-25 15:02:50 +1000416
Rusty Russellbff672e2007-07-26 10:41:04 -0700417 /* Add the _PAGE_ACCESSED and (for a write) _PAGE_DIRTY flag */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000418 gpte = pte_mkyoung(gpte);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700419 if (errcode & 2)
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000420 gpte = pte_mkdirty(gpte);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700421
Rusty Russellbff672e2007-07-26 10:41:04 -0700422 /* Get the pointer to the shadow PTE entry we're going to set. */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600423 spte = spte_addr(cpu, *spgd, vaddr);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600424
425 /*
426 * If there was a valid shadow PTE entry here before, we release it.
427 * This can happen with a write to a previously read-only entry.
428 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700429 release_pte(*spte);
430
Rusty Russell2e04ef72009-07-30 16:03:45 -0600431 /*
432 * If this is a write, we insist that the Guest page is writable (the
433 * final arg to gpte_to_spte()).
434 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000435 if (pte_dirty(gpte))
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200436 *spte = gpte_to_spte(cpu, gpte, 1);
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000437 else
Rusty Russell2e04ef72009-07-30 16:03:45 -0600438 /*
439 * If this is a read, don't set the "writable" bit in the page
Rusty Russellbff672e2007-07-26 10:41:04 -0700440 * table entry, even if the Guest says it's writable. That way
Rusty Russelle1e72962007-10-25 15:02:50 +1000441 * we will come back here when a write does actually occur, so
Rusty Russell2e04ef72009-07-30 16:03:45 -0600442 * we can update the Guest's _PAGE_DIRTY flag.
443 */
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600444 native_set_pte(spte, gpte_to_spte(cpu, pte_wrprotect(gpte), 0));
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700445
Rusty Russell2e04ef72009-07-30 16:03:45 -0600446 /*
447 * Finally, we write the Guest PTE entry back: we've set the
448 * _PAGE_ACCESSED and maybe the _PAGE_DIRTY flags.
449 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200450 lgwrite(cpu, gpte_ptr, pte_t, gpte);
Rusty Russellbff672e2007-07-26 10:41:04 -0700451
Rusty Russell2e04ef72009-07-30 16:03:45 -0600452 /*
453 * The fault is fixed, the page table is populated, the mapping
Rusty Russelle1e72962007-10-25 15:02:50 +1000454 * manipulated, the result returned and the code complete. A small
455 * delay and a trace of alliteration are the only indications the Guest
Rusty Russell2e04ef72009-07-30 16:03:45 -0600456 * has that a page fault occurred at all.
457 */
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300458 return true;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700459}
460
Rusty Russelle1e72962007-10-25 15:02:50 +1000461/*H:360
462 * (ii) Making sure the Guest stack is mapped.
Rusty Russellbff672e2007-07-26 10:41:04 -0700463 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000464 * Remember that direct traps into the Guest need a mapped Guest kernel stack.
465 * pin_stack_pages() calls us here: we could simply call demand_page(), but as
466 * we've seen that logic is quite long, and usually the stack pages are already
467 * mapped, so it's overkill.
Rusty Russellbff672e2007-07-26 10:41:04 -0700468 *
469 * This is a quick version which answers the question: is this virtual address
Rusty Russell2e04ef72009-07-30 16:03:45 -0600470 * mapped by the shadow page tables, and is it writable?
471 */
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300472static bool page_writable(struct lg_cpu *cpu, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700473{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000474 pgd_t *spgd;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700475 unsigned long flags;
476
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600477#ifdef CONFIG_X86_PAE
478 pmd_t *spmd;
479#endif
Rusty Russelle1e72962007-10-25 15:02:50 +1000480 /* Look at the current top level entry: is it present? */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200481 spgd = spgd_addr(cpu, cpu->cpu_pgd, vaddr);
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000482 if (!(pgd_flags(*spgd) & _PAGE_PRESENT))
Matias Zabaljaureguidf1693a2009-03-18 13:38:35 -0300483 return false;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700484
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600485#ifdef CONFIG_X86_PAE
486 spmd = spmd_addr(cpu, *spgd, vaddr);
487 if (!(pmd_flags(*spmd) & _PAGE_PRESENT))
488 return false;
489#endif
490
Rusty Russell2e04ef72009-07-30 16:03:45 -0600491 /*
492 * Check the flags on the pte entry itself: it must be present and
493 * writable.
494 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600495 flags = pte_flags(*(spte_addr(cpu, *spgd, vaddr)));
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000496
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700497 return (flags & (_PAGE_PRESENT|_PAGE_RW)) == (_PAGE_PRESENT|_PAGE_RW);
498}
499
Rusty Russell2e04ef72009-07-30 16:03:45 -0600500/*
501 * So, when pin_stack_pages() asks us to pin a page, we check if it's already
Rusty Russellbff672e2007-07-26 10:41:04 -0700502 * in the page tables, and if not, we call demand_page() with error code 2
Rusty Russell2e04ef72009-07-30 16:03:45 -0600503 * (meaning "write").
504 */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200505void pin_page(struct lg_cpu *cpu, unsigned long vaddr)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700506{
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200507 if (!page_writable(cpu, vaddr) && !demand_page(cpu, vaddr, 2))
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200508 kill_guest(cpu, "bad stack page %#lx", vaddr);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700509}
510
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600511#ifdef CONFIG_X86_PAE
512static void release_pmd(pmd_t *spmd)
513{
514 /* If the entry's not present, there's nothing to release. */
515 if (pmd_flags(*spmd) & _PAGE_PRESENT) {
516 unsigned int i;
517 pte_t *ptepage = __va(pmd_pfn(*spmd) << PAGE_SHIFT);
518 /* For each entry in the page, we might need to release it. */
519 for (i = 0; i < PTRS_PER_PTE; i++)
520 release_pte(ptepage[i]);
521 /* Now we can free the page of PTEs */
522 free_page((long)ptepage);
523 /* And zero out the PMD entry so we never release it twice. */
524 native_set_pmd(spmd, __pmd(0));
525 }
526}
527
528static void release_pgd(pgd_t *spgd)
529{
530 /* If the entry's not present, there's nothing to release. */
531 if (pgd_flags(*spgd) & _PAGE_PRESENT) {
532 unsigned int i;
533 pmd_t *pmdpage = __va(pgd_pfn(*spgd) << PAGE_SHIFT);
534
535 for (i = 0; i < PTRS_PER_PMD; i++)
536 release_pmd(&pmdpage[i]);
537
538 /* Now we can free the page of PMDs */
539 free_page((long)pmdpage);
540 /* And zero out the PGD entry so we never release it twice. */
541 set_pgd(spgd, __pgd(0));
542 }
543}
544
545#else /* !CONFIG_X86_PAE */
Rusty Russellbff672e2007-07-26 10:41:04 -0700546/*H:450 If we chase down the release_pgd() code, it looks like this: */
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600547static void release_pgd(pgd_t *spgd)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700548{
Rusty Russellbff672e2007-07-26 10:41:04 -0700549 /* If the entry's not present, there's nothing to release. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000550 if (pgd_flags(*spgd) & _PAGE_PRESENT) {
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700551 unsigned int i;
Rusty Russell2e04ef72009-07-30 16:03:45 -0600552 /*
553 * Converting the pfn to find the actual PTE page is easy: turn
Rusty Russellbff672e2007-07-26 10:41:04 -0700554 * the page number into a physical address, then convert to a
Rusty Russell2e04ef72009-07-30 16:03:45 -0600555 * virtual address (easy for kernel pages like this one).
556 */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000557 pte_t *ptepage = __va(pgd_pfn(*spgd) << PAGE_SHIFT);
Rusty Russellbff672e2007-07-26 10:41:04 -0700558 /* For each entry in the page, we might need to release it. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000559 for (i = 0; i < PTRS_PER_PTE; i++)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700560 release_pte(ptepage[i]);
Rusty Russellbff672e2007-07-26 10:41:04 -0700561 /* Now we can free the page of PTEs */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700562 free_page((long)ptepage);
Rusty Russelle1e72962007-10-25 15:02:50 +1000563 /* And zero out the PGD entry so we never release it twice. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000564 *spgd = __pgd(0);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700565 }
566}
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600567#endif
Rusty Russell2e04ef72009-07-30 16:03:45 -0600568
569/*H:445
570 * We saw flush_user_mappings() twice: once from the flush_user_mappings()
Rusty Russelle1e72962007-10-25 15:02:50 +1000571 * hypercall and once in new_pgdir() when we re-used a top-level pgdir page.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600572 * It simply releases every PTE page from 0 up to the Guest's kernel address.
573 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700574static void flush_user_mappings(struct lguest *lg, int idx)
575{
576 unsigned int i;
Rusty Russellbff672e2007-07-26 10:41:04 -0700577 /* Release every pgd entry up to the kernel's address. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000578 for (i = 0; i < pgd_index(lg->kernel_address); i++)
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600579 release_pgd(lg->pgdirs[idx].pgdir + i);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700580}
581
Rusty Russell2e04ef72009-07-30 16:03:45 -0600582/*H:440
583 * (v) Flushing (throwing away) page tables,
Rusty Russelle1e72962007-10-25 15:02:50 +1000584 *
585 * The Guest has a hypercall to throw away the page tables: it's used when a
Rusty Russell2e04ef72009-07-30 16:03:45 -0600586 * large number of mappings have been changed.
587 */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200588void guest_pagetable_flush_user(struct lg_cpu *cpu)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700589{
Rusty Russellbff672e2007-07-26 10:41:04 -0700590 /* Drop the userspace part of the current page table. */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200591 flush_user_mappings(cpu->lg, cpu->cpu_pgd);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700592}
Rusty Russellbff672e2007-07-26 10:41:04 -0700593/*:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700594
Rusty Russell47436aa2007-10-22 11:03:36 +1000595/* We walk down the guest page tables to get a guest-physical address */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200596unsigned long guest_pa(struct lg_cpu *cpu, unsigned long vaddr)
Rusty Russell47436aa2007-10-22 11:03:36 +1000597{
598 pgd_t gpgd;
599 pte_t gpte;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600600#ifdef CONFIG_X86_PAE
601 pmd_t gpmd;
602#endif
Rusty Russell47436aa2007-10-22 11:03:36 +1000603 /* First step: get the top-level Guest page table entry. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200604 gpgd = lgread(cpu, gpgd_addr(cpu, vaddr), pgd_t);
Rusty Russell47436aa2007-10-22 11:03:36 +1000605 /* Toplevel not present? We can't map it in. */
Rusty Russell6afbdd02009-03-30 21:55:23 -0600606 if (!(pgd_flags(gpgd) & _PAGE_PRESENT)) {
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200607 kill_guest(cpu, "Bad address %#lx", vaddr);
Rusty Russell6afbdd02009-03-30 21:55:23 -0600608 return -1UL;
609 }
Rusty Russell47436aa2007-10-22 11:03:36 +1000610
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600611#ifdef CONFIG_X86_PAE
612 gpmd = lgread(cpu, gpmd_addr(gpgd, vaddr), pmd_t);
613 if (!(pmd_flags(gpmd) & _PAGE_PRESENT))
614 kill_guest(cpu, "Bad address %#lx", vaddr);
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600615 gpte = lgread(cpu, gpte_addr(cpu, gpmd, vaddr), pte_t);
616#else
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600617 gpte = lgread(cpu, gpte_addr(cpu, gpgd, vaddr), pte_t);
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600618#endif
Rusty Russell47436aa2007-10-22 11:03:36 +1000619 if (!(pte_flags(gpte) & _PAGE_PRESENT))
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200620 kill_guest(cpu, "Bad address %#lx", vaddr);
Rusty Russell47436aa2007-10-22 11:03:36 +1000621
622 return pte_pfn(gpte) * PAGE_SIZE | (vaddr & ~PAGE_MASK);
623}
624
Rusty Russell2e04ef72009-07-30 16:03:45 -0600625/*
626 * We keep several page tables. This is a simple routine to find the page
Rusty Russellbff672e2007-07-26 10:41:04 -0700627 * table (if any) corresponding to this top-level address the Guest has given
Rusty Russell2e04ef72009-07-30 16:03:45 -0600628 * us.
629 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700630static unsigned int find_pgdir(struct lguest *lg, unsigned long pgtable)
631{
632 unsigned int i;
633 for (i = 0; i < ARRAY_SIZE(lg->pgdirs); i++)
Rusty Russell4357bd92008-03-11 09:35:57 -0500634 if (lg->pgdirs[i].pgdir && lg->pgdirs[i].gpgdir == pgtable)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700635 break;
636 return i;
637}
638
Rusty Russell2e04ef72009-07-30 16:03:45 -0600639/*H:435
640 * And this is us, creating the new page directory. If we really do
Rusty Russellbff672e2007-07-26 10:41:04 -0700641 * allocate a new one (and so the kernel parts are not there), we set
Rusty Russell2e04ef72009-07-30 16:03:45 -0600642 * blank_pgdir.
643 */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200644static unsigned int new_pgdir(struct lg_cpu *cpu,
Rusty Russellee3db0f2007-10-22 11:03:34 +1000645 unsigned long gpgdir,
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700646 int *blank_pgdir)
647{
648 unsigned int next;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600649#ifdef CONFIG_X86_PAE
650 pmd_t *pmd_table;
651#endif
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700652
Rusty Russell2e04ef72009-07-30 16:03:45 -0600653 /*
654 * We pick one entry at random to throw out. Choosing the Least
655 * Recently Used might be better, but this is easy.
656 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200657 next = random32() % ARRAY_SIZE(cpu->lg->pgdirs);
Rusty Russellbff672e2007-07-26 10:41:04 -0700658 /* If it's never been allocated at all before, try now. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200659 if (!cpu->lg->pgdirs[next].pgdir) {
660 cpu->lg->pgdirs[next].pgdir =
661 (pgd_t *)get_zeroed_page(GFP_KERNEL);
Rusty Russellbff672e2007-07-26 10:41:04 -0700662 /* If the allocation fails, just keep using the one we have */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200663 if (!cpu->lg->pgdirs[next].pgdir)
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200664 next = cpu->cpu_pgd;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600665 else {
666#ifdef CONFIG_X86_PAE
Rusty Russell2e04ef72009-07-30 16:03:45 -0600667 /*
668 * In PAE mode, allocate a pmd page and populate the
669 * last pgd entry.
670 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600671 pmd_table = (pmd_t *)get_zeroed_page(GFP_KERNEL);
672 if (!pmd_table) {
673 free_page((long)cpu->lg->pgdirs[next].pgdir);
674 set_pgd(cpu->lg->pgdirs[next].pgdir, __pgd(0));
675 next = cpu->cpu_pgd;
676 } else {
677 set_pgd(cpu->lg->pgdirs[next].pgdir +
678 SWITCHER_PGD_INDEX,
679 __pgd(__pa(pmd_table) | _PAGE_PRESENT));
Rusty Russell2e04ef72009-07-30 16:03:45 -0600680 /*
681 * This is a blank page, so there are no kernel
682 * mappings: caller must map the stack!
683 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600684 *blank_pgdir = 1;
685 }
686#else
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700687 *blank_pgdir = 1;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600688#endif
689 }
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700690 }
Rusty Russellbff672e2007-07-26 10:41:04 -0700691 /* Record which Guest toplevel this shadows. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200692 cpu->lg->pgdirs[next].gpgdir = gpgdir;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700693 /* Release all the non-kernel mappings. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200694 flush_user_mappings(cpu->lg, next);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700695
696 return next;
697}
698
Rusty Russell2e04ef72009-07-30 16:03:45 -0600699/*H:430
700 * (iv) Switching page tables
Rusty Russellbff672e2007-07-26 10:41:04 -0700701 *
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600702 * Now we've seen all the page table setting and manipulation, let's see
Rusty Russelle1e72962007-10-25 15:02:50 +1000703 * what happens when the Guest changes page tables (ie. changes the top-level
Rusty Russell2e04ef72009-07-30 16:03:45 -0600704 * pgdir). This occurs on almost every context switch.
705 */
Glauber de Oliveira Costa4665ac8e2008-01-07 11:05:35 -0200706void guest_new_pagetable(struct lg_cpu *cpu, unsigned long pgtable)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700707{
708 int newpgdir, repin = 0;
709
Rusty Russellbff672e2007-07-26 10:41:04 -0700710 /* Look to see if we have this one already. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200711 newpgdir = find_pgdir(cpu->lg, pgtable);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600712 /*
713 * If not, we allocate or mug an existing one: if it's a fresh one,
714 * repin gets set to 1.
715 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200716 if (newpgdir == ARRAY_SIZE(cpu->lg->pgdirs))
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200717 newpgdir = new_pgdir(cpu, pgtable, &repin);
Rusty Russellbff672e2007-07-26 10:41:04 -0700718 /* Change the current pgd index to the new one. */
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -0200719 cpu->cpu_pgd = newpgdir;
Rusty Russellbff672e2007-07-26 10:41:04 -0700720 /* If it was completely blank, we map in the Guest kernel stack */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700721 if (repin)
Glauber de Oliveira Costa4665ac8e2008-01-07 11:05:35 -0200722 pin_stack_pages(cpu);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700723}
724
Rusty Russell2e04ef72009-07-30 16:03:45 -0600725/*H:470
726 * Finally, a routine which throws away everything: all PGD entries in all
Rusty Russelle1e72962007-10-25 15:02:50 +1000727 * the shadow page tables, including the Guest's kernel mappings. This is used
Rusty Russell2e04ef72009-07-30 16:03:45 -0600728 * when we destroy the Guest.
729 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700730static void release_all_pagetables(struct lguest *lg)
731{
732 unsigned int i, j;
733
Rusty Russellbff672e2007-07-26 10:41:04 -0700734 /* Every shadow pagetable this Guest has */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700735 for (i = 0; i < ARRAY_SIZE(lg->pgdirs); i++)
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600736 if (lg->pgdirs[i].pgdir) {
737#ifdef CONFIG_X86_PAE
738 pgd_t *spgd;
739 pmd_t *pmdpage;
740 unsigned int k;
741
742 /* Get the last pmd page. */
743 spgd = lg->pgdirs[i].pgdir + SWITCHER_PGD_INDEX;
744 pmdpage = __va(pgd_pfn(*spgd) << PAGE_SHIFT);
745
Rusty Russell2e04ef72009-07-30 16:03:45 -0600746 /*
747 * And release the pmd entries of that pmd page,
748 * except for the switcher pmd.
749 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600750 for (k = 0; k < SWITCHER_PMD_INDEX; k++)
751 release_pmd(&pmdpage[k]);
752#endif
Rusty Russellbff672e2007-07-26 10:41:04 -0700753 /* Every PGD entry except the Switcher at the top */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700754 for (j = 0; j < SWITCHER_PGD_INDEX; j++)
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600755 release_pgd(lg->pgdirs[i].pgdir + j);
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600756 }
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700757}
758
Rusty Russell2e04ef72009-07-30 16:03:45 -0600759/*
760 * We also throw away everything when a Guest tells us it's changed a kernel
Rusty Russellbff672e2007-07-26 10:41:04 -0700761 * mapping. Since kernel mappings are in every page table, it's easiest to
Rusty Russelle1e72962007-10-25 15:02:50 +1000762 * throw them all away. This traps the Guest in amber for a while as
Rusty Russell2e04ef72009-07-30 16:03:45 -0600763 * everything faults back in, but it's rare.
764 */
Glauber de Oliveira Costa4665ac8e2008-01-07 11:05:35 -0200765void guest_pagetable_clear_all(struct lg_cpu *cpu)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700766{
Glauber de Oliveira Costa4665ac8e2008-01-07 11:05:35 -0200767 release_all_pagetables(cpu->lg);
Rusty Russellbff672e2007-07-26 10:41:04 -0700768 /* We need the Guest kernel stack mapped again. */
Glauber de Oliveira Costa4665ac8e2008-01-07 11:05:35 -0200769 pin_stack_pages(cpu);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700770}
Rusty Russelle1e72962007-10-25 15:02:50 +1000771/*:*/
Rusty Russell2e04ef72009-07-30 16:03:45 -0600772
773/*M:009
774 * Since we throw away all mappings when a kernel mapping changes, our
Rusty Russelle1e72962007-10-25 15:02:50 +1000775 * performance sucks for guests using highmem. In fact, a guest with
776 * PAGE_OFFSET 0xc0000000 (the default) and more than about 700MB of RAM is
777 * usually slower than a Guest with less memory.
778 *
779 * This, of course, cannot be fixed. It would take some kind of... well, I
Rusty Russell2e04ef72009-07-30 16:03:45 -0600780 * don't know, but the term "puissant code-fu" comes to mind.
781:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700782
Rusty Russell2e04ef72009-07-30 16:03:45 -0600783/*H:420
784 * This is the routine which actually sets the page table entry for then
Rusty Russellbff672e2007-07-26 10:41:04 -0700785 * "idx"'th shadow page table.
786 *
787 * Normally, we can just throw out the old entry and replace it with 0: if they
788 * use it demand_page() will put the new entry in. We need to do this anyway:
789 * The Guest expects _PAGE_ACCESSED to be set on its PTE the first time a page
790 * is read from, and _PAGE_DIRTY when it's written to.
791 *
792 * But Avi Kivity pointed out that most Operating Systems (Linux included) set
793 * these bits on PTEs immediately anyway. This is done to save the CPU from
794 * having to update them, but it helps us the same way: if they set
795 * _PAGE_ACCESSED then we can put a read-only PTE entry in immediately, and if
796 * they set _PAGE_DIRTY then we can put a writable PTE entry in immediately.
797 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200798static void do_set_pte(struct lg_cpu *cpu, int idx,
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000799 unsigned long vaddr, pte_t gpte)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700800{
Rusty Russelle1e72962007-10-25 15:02:50 +1000801 /* Look up the matching shadow page directory entry. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200802 pgd_t *spgd = spgd_addr(cpu, idx, vaddr);
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600803#ifdef CONFIG_X86_PAE
804 pmd_t *spmd;
805#endif
Rusty Russellbff672e2007-07-26 10:41:04 -0700806
807 /* If the top level isn't present, there's no entry to update. */
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +1000808 if (pgd_flags(*spgd) & _PAGE_PRESENT) {
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600809#ifdef CONFIG_X86_PAE
810 spmd = spmd_addr(cpu, *spgd, vaddr);
811 if (pmd_flags(*spmd) & _PAGE_PRESENT) {
812#endif
Rusty Russell2e04ef72009-07-30 16:03:45 -0600813 /* Otherwise, start by releasing the existing entry. */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600814 pte_t *spte = spte_addr(cpu, *spgd, vaddr);
815 release_pte(*spte);
Rusty Russellbff672e2007-07-26 10:41:04 -0700816
Rusty Russell2e04ef72009-07-30 16:03:45 -0600817 /*
818 * If they're setting this entry as dirty or accessed,
819 * we might as well put that entry they've given us in
820 * now. This shaves 10% off a copy-on-write
821 * micro-benchmark.
822 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600823 if (pte_flags(gpte) & (_PAGE_DIRTY | _PAGE_ACCESSED)) {
824 check_gpte(cpu, gpte);
825 native_set_pte(spte,
826 gpte_to_spte(cpu, gpte,
827 pte_flags(gpte) & _PAGE_DIRTY));
Rusty Russell2e04ef72009-07-30 16:03:45 -0600828 } else {
829 /*
830 * Otherwise kill it and we can demand_page()
831 * it in later.
832 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600833 native_set_pte(spte, __pte(0));
Rusty Russell2e04ef72009-07-30 16:03:45 -0600834 }
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600835#ifdef CONFIG_X86_PAE
836 }
837#endif
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700838 }
839}
840
Rusty Russell2e04ef72009-07-30 16:03:45 -0600841/*H:410
842 * Updating a PTE entry is a little trickier.
Rusty Russellbff672e2007-07-26 10:41:04 -0700843 *
844 * We keep track of several different page tables (the Guest uses one for each
845 * process, so it makes sense to cache at least a few). Each of these have
846 * identical kernel parts: ie. every mapping above PAGE_OFFSET is the same for
847 * all processes. So when the page table above that address changes, we update
848 * all the page tables, not just the current one. This is rare.
849 *
Rusty Russella6bd8e12008-03-28 11:05:53 -0500850 * The benefit is that when we have to track a new page table, we can keep all
Rusty Russell2e04ef72009-07-30 16:03:45 -0600851 * the kernel mappings. This speeds up context switch immensely.
852 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200853void guest_set_pte(struct lg_cpu *cpu,
Rusty Russellee3db0f2007-10-22 11:03:34 +1000854 unsigned long gpgdir, unsigned long vaddr, pte_t gpte)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700855{
Rusty Russell2e04ef72009-07-30 16:03:45 -0600856 /*
857 * Kernel mappings must be changed on all top levels. Slow, but doesn't
858 * happen often.
859 */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200860 if (vaddr >= cpu->lg->kernel_address) {
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700861 unsigned int i;
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200862 for (i = 0; i < ARRAY_SIZE(cpu->lg->pgdirs); i++)
863 if (cpu->lg->pgdirs[i].pgdir)
864 do_set_pte(cpu, i, vaddr, gpte);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700865 } else {
Rusty Russellbff672e2007-07-26 10:41:04 -0700866 /* Is this page table one we have a shadow for? */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200867 int pgdir = find_pgdir(cpu->lg, gpgdir);
868 if (pgdir != ARRAY_SIZE(cpu->lg->pgdirs))
Rusty Russellbff672e2007-07-26 10:41:04 -0700869 /* If so, do the update. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -0200870 do_set_pte(cpu, pgdir, vaddr, gpte);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700871 }
872}
873
Rusty Russellbff672e2007-07-26 10:41:04 -0700874/*H:400
Rusty Russelle1e72962007-10-25 15:02:50 +1000875 * (iii) Setting up a page table entry when the Guest tells us one has changed.
Rusty Russellbff672e2007-07-26 10:41:04 -0700876 *
877 * Just like we did in interrupts_and_traps.c, it makes sense for us to deal
878 * with the other side of page tables while we're here: what happens when the
879 * Guest asks for a page table to be updated?
880 *
881 * We already saw that demand_page() will fill in the shadow page tables when
882 * needed, so we can simply remove shadow page table entries whenever the Guest
883 * tells us they've changed. When the Guest tries to use the new entry it will
884 * fault and demand_page() will fix it up.
885 *
886 * So with that in mind here's our code to to update a (top-level) PGD entry:
887 */
Matias Zabaljaureguiebe0ba82009-05-30 15:48:08 -0300888void guest_set_pgd(struct lguest *lg, unsigned long gpgdir, u32 idx)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700889{
890 int pgdir;
891
892 if (idx >= SWITCHER_PGD_INDEX)
893 return;
894
Rusty Russellbff672e2007-07-26 10:41:04 -0700895 /* If they're talking about a page table we have a shadow for... */
Rusty Russellee3db0f2007-10-22 11:03:34 +1000896 pgdir = find_pgdir(lg, gpgdir);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700897 if (pgdir < ARRAY_SIZE(lg->pgdirs))
Rusty Russellbff672e2007-07-26 10:41:04 -0700898 /* ... throw it away. */
Matias Zabaljauregui90603d12009-06-12 22:27:06 -0600899 release_pgd(lg->pgdirs[pgdir].pgdir + idx);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700900}
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600901#ifdef CONFIG_X86_PAE
902void guest_set_pmd(struct lguest *lg, unsigned long pmdp, u32 idx)
903{
904 guest_pagetable_clear_all(&lg->cpus[0]);
905}
906#endif
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700907
Rusty Russell2e04ef72009-07-30 16:03:45 -0600908/*
909 * Once we know how much memory we have we can construct simple identity (which
910 * set virtual == physical) and linear mappings which will get the Guest far
911 * enough into the boot to create its own.
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300912 *
913 * We lay them out of the way, just below the initrd (which is why we need to
Rusty Russell2e04ef72009-07-30 16:03:45 -0600914 * know its size here).
915 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300916static unsigned long setup_pagetables(struct lguest *lg,
917 unsigned long mem,
918 unsigned long initrd_size)
919{
920 pgd_t __user *pgdir;
921 pte_t __user *linear;
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300922 unsigned long mem_base = (unsigned long)lg->mem_base;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600923 unsigned int mapped_pages, i, linear_pages;
924#ifdef CONFIG_X86_PAE
925 pmd_t __user *pmds;
926 unsigned int j;
927 pgd_t pgd;
928 pmd_t pmd;
929#else
930 unsigned int phys_linear;
931#endif
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300932
Rusty Russell2e04ef72009-07-30 16:03:45 -0600933 /*
934 * We have mapped_pages frames to map, so we need linear_pages page
935 * tables to map them.
936 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300937 mapped_pages = mem / PAGE_SIZE;
938 linear_pages = (mapped_pages + PTRS_PER_PTE - 1) / PTRS_PER_PTE;
939
940 /* We put the toplevel page directory page at the top of memory. */
941 pgdir = (pgd_t *)(mem + mem_base - initrd_size - PAGE_SIZE);
942
943 /* Now we use the next linear_pages pages as pte pages */
944 linear = (void *)pgdir - linear_pages * PAGE_SIZE;
945
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600946#ifdef CONFIG_X86_PAE
947 pmds = (void *)linear - PAGE_SIZE;
948#endif
Rusty Russell2e04ef72009-07-30 16:03:45 -0600949 /*
950 * Linear mapping is easy: put every page's address into the
951 * mapping in order.
952 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300953 for (i = 0; i < mapped_pages; i++) {
954 pte_t pte;
955 pte = pfn_pte(i, __pgprot(_PAGE_PRESENT|_PAGE_RW|_PAGE_USER));
956 if (copy_to_user(&linear[i], &pte, sizeof(pte)) != 0)
957 return -EFAULT;
958 }
959
Rusty Russell2e04ef72009-07-30 16:03:45 -0600960 /*
961 * The top level points to the linear page table pages above.
962 * We setup the identity and linear mappings here.
963 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600964#ifdef CONFIG_X86_PAE
Rusty Russell92b4d8d2009-06-12 22:27:08 -0600965 for (i = j = 0; i < mapped_pages && j < PTRS_PER_PMD;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600966 i += PTRS_PER_PTE, j++) {
967 native_set_pmd(&pmd, __pmd(((unsigned long)(linear + i)
968 - mem_base) | _PAGE_PRESENT | _PAGE_RW | _PAGE_USER));
969
970 if (copy_to_user(&pmds[j], &pmd, sizeof(pmd)) != 0)
971 return -EFAULT;
972 }
973
974 set_pgd(&pgd, __pgd(((u32)pmds - mem_base) | _PAGE_PRESENT));
975 if (copy_to_user(&pgdir[0], &pgd, sizeof(pgd)) != 0)
976 return -EFAULT;
977 if (copy_to_user(&pgdir[3], &pgd, sizeof(pgd)) != 0)
978 return -EFAULT;
979#else
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300980 phys_linear = (unsigned long)linear - mem_base;
981 for (i = 0; i < mapped_pages; i += PTRS_PER_PTE) {
982 pgd_t pgd;
983 pgd = __pgd((phys_linear + i * sizeof(pte_t)) |
984 (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER));
985
986 if (copy_to_user(&pgdir[i / PTRS_PER_PTE], &pgd, sizeof(pgd))
987 || copy_to_user(&pgdir[pgd_index(PAGE_OFFSET)
988 + i / PTRS_PER_PTE],
989 &pgd, sizeof(pgd)))
990 return -EFAULT;
991 }
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -0600992#endif
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300993
Rusty Russell2e04ef72009-07-30 16:03:45 -0600994 /*
995 * We return the top level (guest-physical) address: remember where
996 * this is.
997 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300998 return (unsigned long)pgdir - mem_base;
999}
1000
Rusty Russell2e04ef72009-07-30 16:03:45 -06001001/*H:500
1002 * (vii) Setting up the page tables initially.
Rusty Russellbff672e2007-07-26 10:41:04 -07001003 *
1004 * When a Guest is first created, the Launcher tells us where the toplevel of
Rusty Russell2e04ef72009-07-30 16:03:45 -06001005 * its first page table is. We set some things up here:
1006 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03001007int init_guest_pagetable(struct lguest *lg)
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001008{
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03001009 u64 mem;
1010 u32 initrd_size;
1011 struct boot_params __user *boot = (struct boot_params *)lg->mem_base;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001012#ifdef CONFIG_X86_PAE
1013 pgd_t *pgd;
1014 pmd_t *pmd_table;
1015#endif
Rusty Russell2e04ef72009-07-30 16:03:45 -06001016 /*
1017 * Get the Guest memory size and the ramdisk size from the boot header
1018 * located at lg->mem_base (Guest address 0).
1019 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03001020 if (copy_from_user(&mem, &boot->e820_map[0].size, sizeof(mem))
1021 || get_user(initrd_size, &boot->hdr.ramdisk_size))
1022 return -EFAULT;
1023
Rusty Russell2e04ef72009-07-30 16:03:45 -06001024 /*
1025 * We start on the first shadow page table, and give it a blank PGD
1026 * page.
1027 */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03001028 lg->pgdirs[0].gpgdir = setup_pagetables(lg, mem, initrd_size);
1029 if (IS_ERR_VALUE(lg->pgdirs[0].gpgdir))
1030 return lg->pgdirs[0].gpgdir;
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -02001031 lg->pgdirs[0].pgdir = (pgd_t *)get_zeroed_page(GFP_KERNEL);
1032 if (!lg->pgdirs[0].pgdir)
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001033 return -ENOMEM;
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001034#ifdef CONFIG_X86_PAE
1035 pgd = lg->pgdirs[0].pgdir;
1036 pmd_table = (pmd_t *) get_zeroed_page(GFP_KERNEL);
1037 if (!pmd_table)
1038 return -ENOMEM;
1039
1040 set_pgd(pgd + SWITCHER_PGD_INDEX,
1041 __pgd(__pa(pmd_table) | _PAGE_PRESENT));
1042#endif
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -02001043 lg->cpus[0].cpu_pgd = 0;
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001044 return 0;
1045}
1046
Rusty Russell47436aa2007-10-22 11:03:36 +10001047/* When the Guest calls LHCALL_LGUEST_INIT we do more setup. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -02001048void page_table_guest_data_init(struct lg_cpu *cpu)
Rusty Russell47436aa2007-10-22 11:03:36 +10001049{
1050 /* We get the kernel address: above this is all kernel memory. */
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -02001051 if (get_user(cpu->lg->kernel_address,
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001052 &cpu->lg->lguest_data->kernel_address)
Rusty Russell2e04ef72009-07-30 16:03:45 -06001053 /*
1054 * We tell the Guest that it can't use the top 2 or 4 MB
1055 * of virtual addresses used by the Switcher.
1056 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001057 || put_user(RESERVE_MEM * 1024 * 1024,
1058 &cpu->lg->lguest_data->reserve_mem)
1059 || put_user(cpu->lg->pgdirs[0].gpgdir,
1060 &cpu->lg->lguest_data->pgdir))
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -02001061 kill_guest(cpu, "bad guest page %p", cpu->lg->lguest_data);
Rusty Russell47436aa2007-10-22 11:03:36 +10001062
Rusty Russell2e04ef72009-07-30 16:03:45 -06001063 /*
1064 * In flush_user_mappings() we loop from 0 to
Rusty Russell47436aa2007-10-22 11:03:36 +10001065 * "pgd_index(lg->kernel_address)". This assumes it won't hit the
Rusty Russell2e04ef72009-07-30 16:03:45 -06001066 * Switcher mappings, so check that now.
1067 */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001068#ifdef CONFIG_X86_PAE
1069 if (pgd_index(cpu->lg->kernel_address) == SWITCHER_PGD_INDEX &&
1070 pmd_index(cpu->lg->kernel_address) == SWITCHER_PMD_INDEX)
1071#else
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -02001072 if (pgd_index(cpu->lg->kernel_address) >= SWITCHER_PGD_INDEX)
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001073#endif
Glauber de Oliveira Costa382ac6b2008-01-17 19:19:42 -02001074 kill_guest(cpu, "bad kernel address %#lx",
1075 cpu->lg->kernel_address);
Rusty Russell47436aa2007-10-22 11:03:36 +10001076}
1077
Rusty Russellbff672e2007-07-26 10:41:04 -07001078/* When a Guest dies, our cleanup is fairly simple. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001079void free_guest_pagetable(struct lguest *lg)
1080{
1081 unsigned int i;
1082
Rusty Russellbff672e2007-07-26 10:41:04 -07001083 /* Throw away all page table pages. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001084 release_all_pagetables(lg);
Rusty Russellbff672e2007-07-26 10:41:04 -07001085 /* Now free the top levels: free_page() can handle 0 just fine. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001086 for (i = 0; i < ARRAY_SIZE(lg->pgdirs); i++)
1087 free_page((long)lg->pgdirs[i].pgdir);
1088}
1089
Rusty Russell2e04ef72009-07-30 16:03:45 -06001090/*H:480
1091 * (vi) Mapping the Switcher when the Guest is about to run.
Rusty Russellbff672e2007-07-26 10:41:04 -07001092 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001093 * The Switcher and the two pages for this CPU need to be visible in the
Rusty Russellbff672e2007-07-26 10:41:04 -07001094 * Guest (and not the pages for other CPUs). We have the appropriate PTE pages
Rusty Russelle1e72962007-10-25 15:02:50 +10001095 * for each CPU already set up, we just need to hook them in now we know which
Rusty Russell2e04ef72009-07-30 16:03:45 -06001096 * Guest is about to run on this CPU.
1097 */
Glauber de Oliveira Costa0c784412008-01-07 11:05:30 -02001098void map_switcher_in_guest(struct lg_cpu *cpu, struct lguest_pages *pages)
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001099{
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001100 pte_t *switcher_pte_page = __get_cpu_var(switcher_pte_pages);
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001101 pte_t regs_pte;
Glauber de Oliveira Costaa53a35a2008-01-07 11:05:32 -02001102 unsigned long pfn;
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001103
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001104#ifdef CONFIG_X86_PAE
1105 pmd_t switcher_pmd;
1106 pmd_t *pmd_table;
1107
1108 native_set_pmd(&switcher_pmd, pfn_pmd(__pa(switcher_pte_page) >>
1109 PAGE_SHIFT, PAGE_KERNEL_EXEC));
1110
1111 pmd_table = __va(pgd_pfn(cpu->lg->
1112 pgdirs[cpu->cpu_pgd].pgdir[SWITCHER_PGD_INDEX])
1113 << PAGE_SHIFT);
1114 native_set_pmd(&pmd_table[SWITCHER_PMD_INDEX], switcher_pmd);
1115#else
1116 pgd_t switcher_pgd;
1117
Rusty Russell2e04ef72009-07-30 16:03:45 -06001118 /*
1119 * Make the last PGD entry for this Guest point to the Switcher's PTE
1120 * page for this CPU (with appropriate flags).
1121 */
Matias Zabaljaureguied1dc772009-05-30 15:35:49 -03001122 switcher_pgd = __pgd(__pa(switcher_pte_page) | __PAGE_KERNEL_EXEC);
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001123
Glauber de Oliveira Costa17136082008-01-07 11:05:37 -02001124 cpu->lg->pgdirs[cpu->cpu_pgd].pgdir[SWITCHER_PGD_INDEX] = switcher_pgd;
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001125
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -06001126#endif
Rusty Russell2e04ef72009-07-30 16:03:45 -06001127 /*
1128 * We also change the Switcher PTE page. When we're running the Guest,
Rusty Russellbff672e2007-07-26 10:41:04 -07001129 * we want the Guest's "regs" page to appear where the first Switcher
1130 * page for this CPU is. This is an optimization: when the Switcher
1131 * saves the Guest registers, it saves them into the first page of this
1132 * CPU's "struct lguest_pages": if we make sure the Guest's register
1133 * page is already mapped there, we don't have to copy them out
Rusty Russell2e04ef72009-07-30 16:03:45 -06001134 * again.
1135 */
Glauber de Oliveira Costaa53a35a2008-01-07 11:05:32 -02001136 pfn = __pa(cpu->regs_page) >> PAGE_SHIFT;
Matias Zabaljauregui90603d12009-06-12 22:27:06 -06001137 native_set_pte(&regs_pte, pfn_pte(pfn, PAGE_KERNEL));
1138 native_set_pte(&switcher_pte_page[pte_index((unsigned long)pages)],
1139 regs_pte);
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001140}
Rusty Russellbff672e2007-07-26 10:41:04 -07001141/*:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001142
1143static void free_switcher_pte_pages(void)
1144{
1145 unsigned int i;
1146
1147 for_each_possible_cpu(i)
1148 free_page((long)switcher_pte_page(i));
1149}
1150
Rusty Russell2e04ef72009-07-30 16:03:45 -06001151/*H:520
1152 * Setting up the Switcher PTE page for given CPU is fairly easy, given
Rusty Russellbff672e2007-07-26 10:41:04 -07001153 * the CPU number and the "struct page"s for the Switcher code itself.
1154 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001155 * Currently the Switcher is less than a page long, so "pages" is always 1.
1156 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001157static __init void populate_switcher_pte_page(unsigned int cpu,
1158 struct page *switcher_page[],
1159 unsigned int pages)
1160{
1161 unsigned int i;
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001162 pte_t *pte = switcher_pte_page(cpu);
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001163
Rusty Russellbff672e2007-07-26 10:41:04 -07001164 /* The first entries are easy: they map the Switcher code. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001165 for (i = 0; i < pages; i++) {
Matias Zabaljauregui90603d12009-06-12 22:27:06 -06001166 native_set_pte(&pte[i], mk_pte(switcher_page[i],
1167 __pgprot(_PAGE_PRESENT|_PAGE_ACCESSED)));
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001168 }
1169
Rusty Russellbff672e2007-07-26 10:41:04 -07001170 /* The only other thing we map is this CPU's pair of pages. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001171 i = pages + cpu*2;
1172
Rusty Russellbff672e2007-07-26 10:41:04 -07001173 /* First page (Guest registers) is writable from the Guest */
Matias Zabaljauregui90603d12009-06-12 22:27:06 -06001174 native_set_pte(&pte[i], pfn_pte(page_to_pfn(switcher_page[i]),
1175 __pgprot(_PAGE_PRESENT|_PAGE_ACCESSED|_PAGE_RW)));
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001176
Rusty Russell2e04ef72009-07-30 16:03:45 -06001177 /*
1178 * The second page contains the "struct lguest_ro_state", and is
1179 * read-only.
1180 */
Matias Zabaljauregui90603d12009-06-12 22:27:06 -06001181 native_set_pte(&pte[i+1], pfn_pte(page_to_pfn(switcher_page[i+1]),
1182 __pgprot(_PAGE_PRESENT|_PAGE_ACCESSED)));
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001183}
1184
Rusty Russell2e04ef72009-07-30 16:03:45 -06001185/*
1186 * We've made it through the page table code. Perhaps our tired brains are
Rusty Russelle1e72962007-10-25 15:02:50 +10001187 * still processing the details, or perhaps we're simply glad it's over.
1188 *
Rusty Russella6bd8e12008-03-28 11:05:53 -05001189 * If nothing else, note that all this complexity in juggling shadow page tables
1190 * in sync with the Guest's page tables is for one reason: for most Guests this
1191 * page table dance determines how bad performance will be. This is why Xen
1192 * uses exotic direct Guest pagetable manipulation, and why both Intel and AMD
1193 * have implemented shadow page table support directly into hardware.
Rusty Russelle1e72962007-10-25 15:02:50 +10001194 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001195 * There is just one file remaining in the Host.
1196 */
Rusty Russelle1e72962007-10-25 15:02:50 +10001197
Rusty Russell2e04ef72009-07-30 16:03:45 -06001198/*H:510
1199 * At boot or module load time, init_pagetables() allocates and populates
1200 * the Switcher PTE page for each CPU.
1201 */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001202__init int init_pagetables(struct page **switcher_page, unsigned int pages)
1203{
1204 unsigned int i;
1205
1206 for_each_possible_cpu(i) {
Matias Zabaljaureguidf29f432007-10-22 11:03:33 +10001207 switcher_pte_page(i) = (pte_t *)get_zeroed_page(GFP_KERNEL);
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001208 if (!switcher_pte_page(i)) {
1209 free_switcher_pte_pages();
1210 return -ENOMEM;
1211 }
1212 populate_switcher_pte_page(i, switcher_page, pages);
1213 }
1214 return 0;
1215}
Rusty Russellbff672e2007-07-26 10:41:04 -07001216/*:*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001217
Rusty Russellbff672e2007-07-26 10:41:04 -07001218/* Cleaning up simply involves freeing the PTE page for each CPU. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -07001219void free_pagetables(void)
1220{
1221 free_switcher_pte_pages();
1222}