blob: 481b6a9c25d5a1737aef54f55a3aa712c859f970 [file] [log] [blame]
Avi Kivity03909182010-04-21 16:08:20 +03001The x86 kvm shadow mmu
2======================
3
4The mmu (in arch/x86/kvm, files mmu.[ch] and paging_tmpl.h) is responsible
5for presenting a standard x86 mmu to the guest, while translating guest
6physical addresses to host physical addresses.
7
8The mmu code attempts to satisfy the following requirements:
9
10- correctness: the guest should not be able to determine that it is running
11 on an emulated mmu except for timing (we attempt to comply
12 with the specification, not emulate the characteristics of
13 a particular implementation such as tlb size)
14- security: the guest must not be able to touch host memory not assigned
15 to it
16- performance: minimize the performance penalty imposed by the mmu
17- scaling: need to scale to large memory and large vcpu guests
18- hardware: support the full range of x86 virtualization hardware
19- integration: Linux memory management code must be in control of guest memory
20 so that swapping, page migration, page merging, transparent
21 hugepages, and similar features work without change
22- dirty tracking: report writes to guest memory to enable live migration
23 and framebuffer-based displays
24- footprint: keep the amount of pinned kernel memory low (most memory
25 should be shrinkable)
Lucas De Marchi25985ed2011-03-30 22:57:33 -030026- reliability: avoid multipage or GFP_ATOMIC allocations
Avi Kivity03909182010-04-21 16:08:20 +030027
28Acronyms
29========
30
31pfn host page frame number
32hpa host physical address
33hva host virtual address
34gfn guest frame number
35gpa guest physical address
36gva guest virtual address
37ngpa nested guest physical address
38ngva nested guest virtual address
39pte page table entry (used also to refer generically to paging structure
40 entries)
41gpte guest pte (referring to gfns)
42spte shadow pte (referring to pfns)
43tdp two dimensional paging (vendor neutral term for NPT and EPT)
44
45Virtual and real hardware supported
46===================================
47
48The mmu supports first-generation mmu hardware, which allows an atomic switch
49of the current paging mode and cr3 during guest entry, as well as
50two-dimensional paging (AMD's NPT and Intel's EPT). The emulated hardware
51it exposes is the traditional 2/3/4 level x86 mmu, with support for global
52pages, pae, pse, pse36, cr0.wp, and 1GB pages. Work is in progress to support
53exposing NPT capable hardware on NPT capable hosts.
54
55Translation
56===========
57
58The primary job of the mmu is to program the processor's mmu to translate
59addresses for the guest. Different translations are required at different
60times:
61
62- when guest paging is disabled, we translate guest physical addresses to
63 host physical addresses (gpa->hpa)
64- when guest paging is enabled, we translate guest virtual addresses, to
65 guest physical addresses, to host physical addresses (gva->gpa->hpa)
66- when the guest launches a guest of its own, we translate nested guest
67 virtual addresses, to nested guest physical addresses, to guest physical
68 addresses, to host physical addresses (ngva->ngpa->gpa->hpa)
69
70The primary challenge is to encode between 1 and 3 translations into hardware
71that support only 1 (traditional) and 2 (tdp) translations. When the
72number of required translations matches the hardware, the mmu operates in
73direct mode; otherwise it operates in shadow mode (see below).
74
75Memory
76======
77
Avi Kivityc4bd09b2010-04-26 11:59:21 +030078Guest memory (gpa) is part of the user address space of the process that is
79using kvm. Userspace defines the translation between guest addresses and user
Jason Wang21bbe182010-06-17 16:49:22 +080080addresses (gpa->hva); note that two gpas may alias to the same hva, but not
Avi Kivity03909182010-04-21 16:08:20 +030081vice versa.
82
Jason Wang21bbe182010-06-17 16:49:22 +080083These hvas may be backed using any method available to the host: anonymous
Avi Kivity03909182010-04-21 16:08:20 +030084memory, file backed memory, and device memory. Memory might be paged by the
85host at any time.
86
87Events
88======
89
90The mmu is driven by events, some from the guest, some from the host.
91
92Guest generated events:
93- writes to control registers (especially cr3)
94- invlpg/invlpga instruction execution
95- access to missing or protected translations
96
97Host generated events:
98- changes in the gpa->hpa translation (either through gpa->hva changes or
99 through hva->hpa changes)
100- memory pressure (the shrinker)
101
102Shadow pages
103============
104
105The principal data structure is the shadow page, 'struct kvm_mmu_page'. A
106shadow page contains 512 sptes, which can be either leaf or nonleaf sptes. A
107shadow page may contain a mix of leaf and nonleaf sptes.
108
109A nonleaf spte allows the hardware mmu to reach the leaf pages and
110is not related to a translation directly. It points to other shadow pages.
111
112A leaf spte corresponds to either one or two translations encoded into
113one paging structure entry. These are always the lowest level of the
Avi Kivityc4bd09b2010-04-26 11:59:21 +0300114translation stack, with optional higher level translations left to NPT/EPT.
Avi Kivity03909182010-04-21 16:08:20 +0300115Leaf ptes point at guest pages.
116
117The following table shows translations encoded by leaf ptes, with higher-level
118translations in parentheses:
119
120 Non-nested guests:
121 nonpaging: gpa->hpa
122 paging: gva->gpa->hpa
123 paging, tdp: (gva->)gpa->hpa
124 Nested guests:
125 non-tdp: ngva->gpa->hpa (*)
126 tdp: (ngva->)ngpa->gpa->hpa
127
128(*) the guest hypervisor will encode the ngva->gpa translation into its page
129 tables if npt is not present
130
131Shadow pages contain the following information:
132 role.level:
133 The level in the shadow paging hierarchy that this shadow page belongs to.
134 1=4k sptes, 2=2M sptes, 3=1G sptes, etc.
135 role.direct:
136 If set, leaf sptes reachable from this page are for a linear range.
137 Examples include real mode translation, large guest pages backed by small
138 host pages, and gpa->hpa translations when NPT or EPT is active.
139 The linear range starts at (gfn << PAGE_SHIFT) and its size is determined
140 by role.level (2MB for first level, 1GB for second level, 0.5TB for third
141 level, 256TB for fourth level)
142 If clear, this page corresponds to a guest page table denoted by the gfn
143 field.
144 role.quadrant:
145 When role.cr4_pae=0, the guest uses 32-bit gptes while the host uses 64-bit
146 sptes. That means a guest page table contains more ptes than the host,
147 so multiple shadow pages are needed to shadow one guest page.
148 For first-level shadow pages, role.quadrant can be 0 or 1 and denotes the
149 first or second 512-gpte block in the guest page table. For second-level
150 page tables, each 32-bit gpte is converted to two 64-bit sptes
151 (since each first-level guest page is shadowed by two first-level
152 shadow pages) so role.quadrant takes values in the range 0..3. Each
153 quadrant maps 1GB virtual address space.
154 role.access:
155 Inherited guest access permissions in the form uwx. Note execute
156 permission is positive, not negative.
157 role.invalid:
158 The page is invalid and should not be used. It is a root page that is
159 currently pinned (by a cpu hardware register pointing to it); once it is
160 unpinned it will be destroyed.
161 role.cr4_pae:
162 Contains the value of cr4.pae for which the page is valid (e.g. whether
163 32-bit or 64-bit gptes are in use).
Gui Jianfeng68597622010-05-11 14:36:58 +0800164 role.nxe:
Avi Kivity03909182010-04-21 16:08:20 +0300165 Contains the value of efer.nxe for which the page is valid.
Avi Kivity3dbe1412010-05-12 11:48:18 +0300166 role.cr0_wp:
167 Contains the value of cr0.wp for which the page is valid.
Avi Kivity411c5882011-06-06 16:11:54 +0300168 role.smep_andnot_wp:
169 Contains the value of cr4.smep && !cr0.wp for which the page is valid
170 (pages for which this is true are different from other pages; see the
171 treatment of cr0.wp=0 below).
Xiao Guangrongedc90b72015-05-11 22:55:21 +0800172 role.smap_andnot_wp:
173 Contains the value of cr4.smap && !cr0.wp for which the page is valid
174 (pages for which this is true are different from other pages; see the
175 treatment of cr0.wp=0 below).
Paolo Bonzini699023e2015-05-18 15:03:39 +0200176 role.smm:
177 Is 1 if the page is valid in system management mode. This field
178 determines which of the kvm_memslots array was used to build this
179 shadow page; it is also used to go back from a struct kvm_mmu_page
180 to a memslot, through the kvm_memslots_for_spte_role macro and
181 __gfn_to_memslot.
Avi Kivity03909182010-04-21 16:08:20 +0300182 gfn:
183 Either the guest page table containing the translations shadowed by this
184 page, or the base page frame for linear translations. See role.direct.
185 spt:
Avi Kivityc4bd09b2010-04-26 11:59:21 +0300186 A pageful of 64-bit sptes containing the translations for this page.
Avi Kivity03909182010-04-21 16:08:20 +0300187 Accessed by both kvm and hardware.
188 The page pointed to by spt will have its page->private pointing back
189 at the shadow page structure.
190 sptes in spt point either at guest pages, or at lower-level shadow pages.
191 Specifically, if sp1 and sp2 are shadow pages, then sp1->spt[n] may point
192 at __pa(sp2->spt). sp2 will point back at sp1 through parent_pte.
193 The spt array forms a DAG structure with the shadow page as a node, and
194 guest pages as leaves.
195 gfns:
196 An array of 512 guest frame numbers, one for each present pte. Used to
Lai Jiangshan2032a932010-05-26 16:49:59 +0800197 perform a reverse map from a pte to a gfn. When role.direct is set, any
198 element of this array can be calculated from the gfn field when used, in
199 this case, the array of gfns is not allocated. See role.direct and gfn.
Avi Kivity03909182010-04-21 16:08:20 +0300200 root_count:
201 A counter keeping track of how many hardware registers (guest cr3 or
202 pdptrs) are now pointing at the page. While this counter is nonzero, the
203 page cannot be destroyed. See role.invalid.
Xiao Guangrong6c806a72013-06-19 17:09:19 +0800204 parent_ptes:
205 The reverse mapping for the pte/ptes pointing at this page's spt. If
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +0900206 parent_ptes bit 0 is zero, only one spte points at this page and
Xiao Guangrong6c806a72013-06-19 17:09:19 +0800207 parent_ptes points at this single spte, otherwise, there exists multiple
208 sptes pointing at this page and (parent_ptes & ~0x1) points at a data
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +0900209 structure with a list of parent sptes.
Avi Kivity03909182010-04-21 16:08:20 +0300210 unsync:
211 If true, then the translations in this page may not match the guest's
212 translation. This is equivalent to the state of the tlb when a pte is
213 changed but before the tlb entry is flushed. Accordingly, unsync ptes
214 are synchronized when the guest executes invlpg or flushes its tlb by
215 other means. Valid for leaf pages.
216 unsync_children:
217 How many sptes in the page point at pages that are unsync (or have
218 unsynchronized children).
219 unsync_child_bitmap:
220 A bitmap indicating which sptes in spt point (directly or indirectly) at
221 pages that may be unsynchronized. Used to quickly locate all unsychronized
222 pages reachable from a given page.
Xiao Guangrongf6f8ade2013-06-19 17:09:24 +0800223 mmu_valid_gen:
224 Generation number of the page. It is compared with kvm->arch.mmu_valid_gen
225 during hash table lookup, and used to skip invalidated shadow pages (see
226 "Zapping all pages" below.)
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800227 clear_spte_count:
228 Only present on 32-bit hosts, where a 64-bit spte cannot be written
229 atomically. The reader uses this while running out of the MMU lock
230 to detect in-progress updates and retry them until the writer has
231 finished the write.
Xiao Guangrong0cbf8e42013-06-19 17:09:21 +0800232 write_flooding_count:
233 A guest may write to a page table many times, causing a lot of
234 emulations if the page needs to be write-protected (see "Synchronized
235 and unsynchronized pages" below). Leaf pages can be unsynchronized
236 so that they do not trigger frequent emulation, but this is not
237 possible for non-leafs. This field counts the number of emulations
238 since the last time the page table was actually used; if emulation
239 is triggered too frequently on this page, KVM will unmap the page
240 to avoid emulation in the future.
Avi Kivity03909182010-04-21 16:08:20 +0300241
242Reverse map
243===========
244
245The mmu maintains a reverse mapping whereby all ptes mapping a page can be
246reached given its gfn. This is used, for example, when swapping out a page.
247
248Synchronized and unsynchronized pages
249=====================================
250
251The guest uses two events to synchronize its tlb and page tables: tlb flushes
252and page invalidations (invlpg).
253
254A tlb flush means that we need to synchronize all sptes reachable from the
255guest's cr3. This is expensive, so we keep all guest page tables write
256protected, and synchronize sptes to gptes when a gpte is written.
257
258A special case is when a guest page table is reachable from the current
259guest cr3. In this case, the guest is obliged to issue an invlpg instruction
260before using the translation. We take advantage of that by removing write
261protection from the guest page, and allowing the guest to modify it freely.
262We synchronize modified gptes when the guest invokes invlpg. This reduces
263the amount of emulation we have to do when the guest modifies multiple gptes,
264or when the a guest page is no longer used as a page table and is used for
265random guest data.
266
Avi Kivityc4bd09b2010-04-26 11:59:21 +0300267As a side effect we have to resynchronize all reachable unsynchronized shadow
Avi Kivity03909182010-04-21 16:08:20 +0300268pages on a tlb flush.
269
270
271Reaction to events
272==================
273
274- guest page fault (or npt page fault, or ept violation)
275
276This is the most complicated event. The cause of a page fault can be:
277
278 - a true guest fault (the guest translation won't allow the access) (*)
279 - access to a missing translation
280 - access to a protected translation
281 - when logging dirty pages, memory is write protected
282 - synchronized shadow pages are write protected (*)
283 - access to untranslatable memory (mmio)
284
285 (*) not applicable in direct mode
286
287Handling a page fault is performed as follows:
288
Xiao Guangrong67652ed2013-06-19 17:09:22 +0800289 - if the RSV bit of the error code is set, the page fault is caused by guest
290 accessing MMIO and cached MMIO information is available.
291 - walk shadow page table
Xiao Guangrong5a9b3832013-06-19 17:09:25 +0800292 - check for valid generation number in the spte (see "Fast invalidation of
293 MMIO sptes" below)
Xiao Guangrong67652ed2013-06-19 17:09:22 +0800294 - cache the information to vcpu->arch.mmio_gva, vcpu->arch.access and
295 vcpu->arch.mmio_gfn, and call the emulator
Xiao Guangrong2d49c472013-06-19 17:09:23 +0800296 - If both P bit and R/W bit of error code are set, this could possibly
297 be handled as a "fast page fault" (fixed without taking the MMU lock). See
298 the description in Documentation/virtual/kvm/locking.txt.
Avi Kivity03909182010-04-21 16:08:20 +0300299 - if needed, walk the guest page tables to determine the guest translation
300 (gva->gpa or ngpa->gpa)
301 - if permissions are insufficient, reflect the fault back to the guest
302 - determine the host page
Xiao Guangrong67652ed2013-06-19 17:09:22 +0800303 - if this is an mmio request, there is no host page; cache the info to
304 vcpu->arch.mmio_gva, vcpu->arch.access and vcpu->arch.mmio_gfn
Avi Kivity03909182010-04-21 16:08:20 +0300305 - walk the shadow page table to find the spte for the translation,
306 instantiating missing intermediate page tables as necessary
Xiao Guangrong67652ed2013-06-19 17:09:22 +0800307 - If this is an mmio request, cache the mmio info to the spte and set some
308 reserved bit on the spte (see callers of kvm_mmu_set_mmio_spte_mask)
Avi Kivity03909182010-04-21 16:08:20 +0300309 - try to unsynchronize the page
310 - if successful, we can let the guest continue and modify the gpte
311 - emulate the instruction
312 - if failed, unshadow the page and let the guest continue
313 - update any translations that were modified by the instruction
314
315invlpg handling:
316
317 - walk the shadow page hierarchy and drop affected translations
318 - try to reinstantiate the indicated translation in the hope that the
319 guest will use it in the near future
320
321Guest control register updates:
322
323- mov to cr3
324 - look up new shadow roots
325 - synchronize newly reachable shadow pages
326
327- mov to cr0/cr4/efer
328 - set up mmu context for new paging mode
329 - look up new shadow roots
330 - synchronize newly reachable shadow pages
331
332Host translation updates:
333
334 - mmu notifier called with updated hva
335 - look up affected sptes through reverse map
336 - drop (or update) translations
337
Avi Kivityec87fe22010-05-27 14:46:04 +0300338Emulating cr0.wp
339================
340
341If tdp is not enabled, the host must keep cr0.wp=1 so page write protection
342works for the guest kernel, not guest guest userspace. When the guest
343cr0.wp=1, this does not present a problem. However when the guest cr0.wp=0,
344we cannot map the permissions for gpte.u=1, gpte.w=0 to any spte (the
345semantics require allowing any guest kernel access plus user read access).
346
347We handle this by mapping the permissions to two possible sptes, depending
348on fault type:
349
350- kernel write fault: spte.u=0, spte.w=1 (allows full kernel access,
351 disallows user access)
352- read fault: spte.u=1, spte.w=0 (allows full read access, disallows kernel
353 write access)
354
355(user write faults generate a #PF)
356
Xiao Guangrongedc90b72015-05-11 22:55:21 +0800357In the first case there are two additional complications:
358- if CR4.SMEP is enabled: since we've turned the page into a kernel page,
359 the kernel may now execute it. We handle this by also setting spte.nx.
360 If we get a user fetch or read fault, we'll change spte.u=1 and
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100361 spte.nx=gpte.nx back. For this to work, KVM forces EFER.NX to 1 when
362 shadow paging is in use.
Xiao Guangrongedc90b72015-05-11 22:55:21 +0800363- if CR4.SMAP is disabled: since the page has been changed to a kernel
364 page, it can not be reused when CR4.SMAP is enabled. We set
365 CR4.SMAP && !CR0.WP into shadow page's role to avoid this case. Note,
366 here we do not care the case that CR4.SMAP is enabled since KVM will
367 directly inject #PF to guest due to failed permission check.
Avi Kivity411c5882011-06-06 16:11:54 +0300368
369To prevent an spte that was converted into a kernel page with cr0.wp=0
370from being written by the kernel after cr0.wp has changed to 1, we make
371the value of cr0.wp part of the page role. This means that an spte created
372with one value of cr0.wp cannot be used when cr0.wp has a different value -
373it will simply be missed by the shadow page lookup code. A similar issue
374exists when an spte created with cr0.wp=0 and cr4.smep=0 is used after
375changing cr4.smep to 1. To avoid this, the value of !cr0.wp && cr4.smep
376is also made a part of the page role.
377
Avi Kivity316b9522010-05-27 16:44:12 +0300378Large pages
379===========
380
381The mmu supports all combinations of large and small guest and host pages.
382Supported page sizes include 4k, 2M, 4M, and 1G. 4M pages are treated as
383two separate 2M pages, on both guest and host, since the mmu always uses PAE
384paging.
385
386To instantiate a large spte, four constraints must be satisfied:
387
388- the spte must point to a large host page
389- the guest pte must be a large pte of at least equivalent size (if tdp is
Masanari Iida40e47122012-03-04 23:16:11 +0900390 enabled, there is no guest pte and this condition is satisfied)
Avi Kivity316b9522010-05-27 16:44:12 +0300391- if the spte will be writeable, the large page frame may not overlap any
392 write-protected pages
393- the guest page must be wholly contained by a single memory slot
394
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800395To check the last two conditions, the mmu maintains a ->disallow_lpage set of
Avi Kivity316b9522010-05-27 16:44:12 +0300396arrays for each memory slot and large page size. Every write protected page
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800397causes its disallow_lpage to be incremented, thus preventing instantiation of
Avi Kivity316b9522010-05-27 16:44:12 +0300398a large spte. The frames at the end of an unaligned memory slot have
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800399artificially inflated ->disallow_lpages so they can never be instantiated.
Avi Kivity316b9522010-05-27 16:44:12 +0300400
Xiao Guangrongf6f8ade2013-06-19 17:09:24 +0800401Zapping all pages (page generation count)
402=========================================
403
404For the large memory guests, walking and zapping all pages is really slow
405(because there are a lot of pages), and also blocks memory accesses of
406all VCPUs because it needs to hold the MMU lock.
407
408To make it be more scalable, kvm maintains a global generation number
409which is stored in kvm->arch.mmu_valid_gen. Every shadow page stores
410the current global generation-number into sp->mmu_valid_gen when it
411is created. Pages with a mismatching generation number are "obsolete".
412
413When KVM need zap all shadow pages sptes, it just simply increases the global
414generation-number then reload root shadow pages on all vcpus. As the VCPUs
415create new shadow page tables, the old pages are not used because of the
416mismatching generation number.
417
418KVM then walks through all pages and zaps obsolete pages. While the zap
419operation needs to take the MMU lock, the lock can be released periodically
420so that the VCPUs can make progress.
421
Xiao Guangrong5a9b3832013-06-19 17:09:25 +0800422Fast invalidation of MMIO sptes
423===============================
424
425As mentioned in "Reaction to events" above, kvm will cache MMIO
426information in leaf sptes. When a new memslot is added or an existing
427memslot is changed, this information may become stale and needs to be
428invalidated. This also needs to hold the MMU lock while walking all
429shadow pages, and is made more scalable with a similar technique.
430
431MMIO sptes have a few spare bits, which are used to store a
432generation number. The global generation number is stored in
433kvm_memslots(kvm)->generation, and increased whenever guest memory info
434changes. This generation number is distinct from the one described in
435the previous section.
436
437When KVM finds an MMIO spte, it checks the generation number of the spte.
438If the generation number of the spte does not equal the global generation
439number, it will ignore the cached MMIO information and handle the page
440fault through the slow path.
441
442Since only 19 bits are used to store generation-number on mmio spte, all
443pages are zapped when there is an overflow.
444
David Matlackee3d1572014-08-18 15:46:06 -0700445Unfortunately, a single memory access might access kvm_memslots(kvm) multiple
446times, the last one happening when the generation number is retrieved and
447stored into the MMIO spte. Thus, the MMIO spte might be created based on
448out-of-date information, but with an up-to-date generation number.
449
450To avoid this, the generation number is incremented again after synchronize_srcu
451returns; thus, the low bit of kvm_memslots(kvm)->generation is only 1 during a
452memslot update, while some SRCU readers might be using the old copy. We do not
453want to use an MMIO sptes created with an odd generation number, and we can do
454this without losing a bit in the MMIO spte. The low bit of the generation
455is not stored in MMIO spte, and presumed zero when it is extracted out of the
456spte. If KVM is unlucky and creates an MMIO spte while the low bit is 1,
457the next access to the spte will always be a cache miss.
458
Xiao Guangrong5a9b3832013-06-19 17:09:25 +0800459
Avi Kivity03909182010-04-21 16:08:20 +0300460Further reading
461===============
462
463- NPT presentation from KVM Forum 2008
464 http://www.linux-kvm.org/wiki/images/c/c8/KvmForum2008%24kdf2008_21.pdf
465