x86_xpmap.c revision 1.72 1 1.72 maxv /* $NetBSD: x86_xpmap.c,v 1.72 2017/03/08 18:00:49 maxv Exp $ */
2 1.72 maxv
3 1.72 maxv /*
4 1.72 maxv * Copyright (c) 2017 The NetBSD Foundation, Inc.
5 1.72 maxv * All rights reserved.
6 1.72 maxv *
7 1.72 maxv * This code is derived from software contributed to The NetBSD Foundation
8 1.72 maxv * by Maxime Villard.
9 1.72 maxv *
10 1.72 maxv * Redistribution and use in source and binary forms, with or without
11 1.72 maxv * modification, are permitted provided that the following conditions
12 1.72 maxv * are met:
13 1.72 maxv * 1. Redistributions of source code must retain the above copyright
14 1.72 maxv * notice, this list of conditions and the following disclaimer.
15 1.72 maxv * 2. Redistributions in binary form must reproduce the above copyright
16 1.72 maxv * notice, this list of conditions and the following disclaimer in the
17 1.72 maxv * documentation and/or other materials provided with the distribution.
18 1.72 maxv *
19 1.72 maxv * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.72 maxv * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.72 maxv * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.72 maxv * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.72 maxv * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.72 maxv * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.72 maxv * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.72 maxv * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.72 maxv * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.72 maxv * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.72 maxv * POSSIBILITY OF SUCH DAMAGE.
30 1.72 maxv */
31 1.2 bouyer
32 1.2 bouyer /*
33 1.2 bouyer * Copyright (c) 2006 Mathieu Ropert <mro (at) adviseo.fr>
34 1.2 bouyer *
35 1.2 bouyer * Permission to use, copy, modify, and distribute this software for any
36 1.2 bouyer * purpose with or without fee is hereby granted, provided that the above
37 1.2 bouyer * copyright notice and this permission notice appear in all copies.
38 1.2 bouyer *
39 1.2 bouyer * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
40 1.2 bouyer * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
41 1.2 bouyer * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
42 1.2 bouyer * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
43 1.2 bouyer * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
44 1.2 bouyer * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
45 1.2 bouyer * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
46 1.2 bouyer */
47 1.2 bouyer
48 1.2 bouyer /*
49 1.2 bouyer * Copyright (c) 2006, 2007 Manuel Bouyer.
50 1.2 bouyer *
51 1.2 bouyer * Redistribution and use in source and binary forms, with or without
52 1.2 bouyer * modification, are permitted provided that the following conditions
53 1.2 bouyer * are met:
54 1.2 bouyer * 1. Redistributions of source code must retain the above copyright
55 1.2 bouyer * notice, this list of conditions and the following disclaimer.
56 1.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
57 1.2 bouyer * notice, this list of conditions and the following disclaimer in the
58 1.2 bouyer * documentation and/or other materials provided with the distribution.
59 1.2 bouyer *
60 1.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
61 1.2 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
62 1.2 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
63 1.2 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
64 1.2 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
65 1.2 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
66 1.2 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
67 1.2 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
68 1.2 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
69 1.2 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
70 1.2 bouyer */
71 1.2 bouyer
72 1.2 bouyer /*
73 1.2 bouyer * Copyright (c) 2004 Christian Limpach.
74 1.2 bouyer * All rights reserved.
75 1.2 bouyer *
76 1.2 bouyer * Redistribution and use in source and binary forms, with or without
77 1.2 bouyer * modification, are permitted provided that the following conditions
78 1.2 bouyer * are met:
79 1.2 bouyer * 1. Redistributions of source code must retain the above copyright
80 1.2 bouyer * notice, this list of conditions and the following disclaimer.
81 1.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
82 1.2 bouyer * notice, this list of conditions and the following disclaimer in the
83 1.2 bouyer * documentation and/or other materials provided with the distribution.
84 1.2 bouyer *
85 1.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
86 1.2 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
87 1.2 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
88 1.2 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
89 1.2 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
90 1.2 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
91 1.2 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
92 1.2 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
93 1.2 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
94 1.2 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
95 1.2 bouyer */
96 1.2 bouyer
97 1.2 bouyer #include <sys/cdefs.h>
98 1.72 maxv __KERNEL_RCSID(0, "$NetBSD: x86_xpmap.c,v 1.72 2017/03/08 18:00:49 maxv Exp $");
99 1.2 bouyer
100 1.2 bouyer #include "opt_xen.h"
101 1.4 bouyer #include "opt_ddb.h"
102 1.4 bouyer #include "ksyms.h"
103 1.2 bouyer
104 1.2 bouyer #include <sys/param.h>
105 1.2 bouyer #include <sys/systm.h>
106 1.38 cherry #include <sys/mutex.h>
107 1.42 bouyer #include <sys/cpu.h>
108 1.2 bouyer
109 1.2 bouyer #include <uvm/uvm.h>
110 1.2 bouyer
111 1.42 bouyer #include <x86/pmap.h>
112 1.2 bouyer #include <machine/gdt.h>
113 1.2 bouyer #include <xen/xenfunc.h>
114 1.2 bouyer
115 1.2 bouyer #include <dev/isa/isareg.h>
116 1.2 bouyer #include <machine/isa_machdep.h>
117 1.2 bouyer
118 1.2 bouyer #undef XENDEBUG
119 1.2 bouyer
120 1.2 bouyer #ifdef XENDEBUG
121 1.2 bouyer #define XENPRINTF(x) printf x
122 1.2 bouyer #define XENPRINTK2(x) /* printk x */
123 1.2 bouyer static char XBUF[256];
124 1.2 bouyer #else
125 1.2 bouyer #define XENPRINTF(x)
126 1.2 bouyer #define XENPRINTK2(x)
127 1.2 bouyer #endif
128 1.2 bouyer
129 1.11 jym /* Xen requires the start_info struct to be page aligned */
130 1.11 jym union start_info_union start_info_union __aligned(PAGE_SIZE);
131 1.72 maxv
132 1.72 maxv volatile shared_info_t *HYPERVISOR_shared_info __read_mostly;
133 1.72 maxv unsigned long *xpmap_phys_to_machine_mapping __read_mostly;
134 1.72 maxv kmutex_t pte_lock __cacheline_aligned;
135 1.68 maxv vaddr_t xen_dummy_page;
136 1.72 maxv pt_entry_t xpmap_pg_nx __read_mostly;
137 1.72 maxv
138 1.72 maxv #define XPQUEUE_SIZE 2048
139 1.72 maxv static mmu_update_t xpq_queue_array[MAXCPUS][XPQUEUE_SIZE];
140 1.72 maxv static int xpq_idx_array[MAXCPUS];
141 1.2 bouyer
142 1.72 maxv #ifdef XENDEBUG
143 1.72 maxv void xpq_debug_dump(void);
144 1.72 maxv #endif
145 1.70 maxv
146 1.2 bouyer void xen_failsafe_handler(void);
147 1.2 bouyer
148 1.64 maxv extern volatile struct xencons_interface *xencons_interface; /* XXX */
149 1.64 maxv extern struct xenstore_domain_interface *xenstore_interface; /* XXX */
150 1.64 maxv
151 1.64 maxv static void xen_bt_set_readonly(vaddr_t);
152 1.66 maxv static void xen_bootstrap_tables(vaddr_t, vaddr_t, size_t, size_t, bool);
153 1.64 maxv
154 1.65 maxv vaddr_t xen_locore(void);
155 1.64 maxv
156 1.48 bouyer /*
157 1.48 bouyer * kcpuset internally uses an array of uint32_t while xen uses an array of
158 1.48 bouyer * u_long. As we're little-endian we can cast one to the other.
159 1.48 bouyer */
160 1.48 bouyer typedef union {
161 1.48 bouyer #ifdef _LP64
162 1.48 bouyer uint32_t xcpum_km[2];
163 1.48 bouyer #else
164 1.48 bouyer uint32_t xcpum_km[1];
165 1.64 maxv #endif
166 1.64 maxv u_long xcpum_xm;
167 1.48 bouyer } xcpumask_t;
168 1.48 bouyer
169 1.2 bouyer void
170 1.2 bouyer xen_failsafe_handler(void)
171 1.2 bouyer {
172 1.2 bouyer
173 1.2 bouyer panic("xen_failsafe_handler called!\n");
174 1.2 bouyer }
175 1.2 bouyer
176 1.2 bouyer void
177 1.2 bouyer xen_set_ldt(vaddr_t base, uint32_t entries)
178 1.2 bouyer {
179 1.2 bouyer vaddr_t va;
180 1.2 bouyer vaddr_t end;
181 1.4 bouyer pt_entry_t *ptp;
182 1.2 bouyer int s;
183 1.2 bouyer
184 1.2 bouyer #ifdef __x86_64__
185 1.2 bouyer end = base + (entries << 3);
186 1.2 bouyer #else
187 1.2 bouyer end = base + entries * sizeof(union descriptor);
188 1.2 bouyer #endif
189 1.2 bouyer
190 1.2 bouyer for (va = base; va < end; va += PAGE_SIZE) {
191 1.2 bouyer KASSERT(va >= VM_MIN_KERNEL_ADDRESS);
192 1.2 bouyer ptp = kvtopte(va);
193 1.19 jym XENPRINTF(("xen_set_ldt %#" PRIxVADDR " %d %p\n",
194 1.19 jym base, entries, ptp));
195 1.4 bouyer pmap_pte_clearbits(ptp, PG_RW);
196 1.2 bouyer }
197 1.2 bouyer s = splvm();
198 1.2 bouyer xpq_queue_set_ldt(base, entries);
199 1.2 bouyer splx(s);
200 1.2 bouyer }
201 1.2 bouyer
202 1.2 bouyer void
203 1.35 cherry xpq_flush_queue(void)
204 1.30 cherry {
205 1.72 maxv mmu_update_t *xpq_queue;
206 1.72 maxv int i, ok = 0, ret, xpq_idx;
207 1.2 bouyer
208 1.72 maxv xpq_idx = xpq_idx_array[curcpu()->ci_cpuid];
209 1.72 maxv xpq_queue = xpq_queue_array[curcpu()->ci_cpuid];
210 1.23 jym
211 1.35 cherry retry:
212 1.72 maxv ret = HYPERVISOR_mmu_update(xpq_queue, xpq_idx, &ok, DOMID_SELF);
213 1.23 jym
214 1.23 jym if (xpq_idx != 0 && ret < 0) {
215 1.39 bouyer struct cpu_info *ci;
216 1.39 bouyer CPU_INFO_ITERATOR cii;
217 1.39 bouyer
218 1.39 bouyer printf("xpq_flush_queue: %d entries (%d successful) on "
219 1.39 bouyer "cpu%d (%ld)\n",
220 1.41 cherry xpq_idx, ok, curcpu()->ci_index, curcpu()->ci_cpuid);
221 1.35 cherry
222 1.35 cherry if (ok != 0) {
223 1.35 cherry xpq_queue += ok;
224 1.35 cherry xpq_idx -= ok;
225 1.35 cherry ok = 0;
226 1.35 cherry goto retry;
227 1.35 cherry }
228 1.35 cherry
229 1.39 bouyer for (CPU_INFO_FOREACH(cii, ci)) {
230 1.39 bouyer xpq_queue = xpq_queue_array[ci->ci_cpuid];
231 1.39 bouyer xpq_idx = xpq_idx_array[ci->ci_cpuid];
232 1.39 bouyer printf("cpu%d (%ld):\n", ci->ci_index, ci->ci_cpuid);
233 1.39 bouyer for (i = 0; i < xpq_idx; i++) {
234 1.39 bouyer printf(" 0x%016" PRIx64 ": 0x%016" PRIx64 "\n",
235 1.39 bouyer xpq_queue[i].ptr, xpq_queue[i].val);
236 1.39 bouyer }
237 1.39 bouyer #ifdef __x86_64__
238 1.39 bouyer for (i = 0; i < PDIR_SLOT_PTE; i++) {
239 1.39 bouyer if (ci->ci_kpm_pdir[i] == 0)
240 1.39 bouyer continue;
241 1.39 bouyer printf(" kpm_pdir[%d]: 0x%" PRIx64 "\n",
242 1.39 bouyer i, ci->ci_kpm_pdir[i]);
243 1.39 bouyer }
244 1.39 bouyer #endif
245 1.39 bouyer }
246 1.23 jym panic("HYPERVISOR_mmu_update failed, ret: %d\n", ret);
247 1.2 bouyer }
248 1.41 cherry xpq_idx_array[curcpu()->ci_cpuid] = 0;
249 1.2 bouyer }
250 1.2 bouyer
251 1.2 bouyer static inline void
252 1.2 bouyer xpq_increment_idx(void)
253 1.2 bouyer {
254 1.2 bouyer
255 1.41 cherry if (__predict_false(++xpq_idx_array[curcpu()->ci_cpuid] == XPQUEUE_SIZE))
256 1.2 bouyer xpq_flush_queue();
257 1.2 bouyer }
258 1.2 bouyer
259 1.2 bouyer void
260 1.2 bouyer xpq_queue_machphys_update(paddr_t ma, paddr_t pa)
261 1.2 bouyer {
262 1.41 cherry mmu_update_t *xpq_queue = xpq_queue_array[curcpu()->ci_cpuid];
263 1.41 cherry int xpq_idx = xpq_idx_array[curcpu()->ci_cpuid];
264 1.35 cherry
265 1.2 bouyer xpq_queue[xpq_idx].ptr = ma | MMU_MACHPHYS_UPDATE;
266 1.45 jym xpq_queue[xpq_idx].val = pa >> PAGE_SHIFT;
267 1.2 bouyer xpq_increment_idx();
268 1.2 bouyer }
269 1.2 bouyer
270 1.2 bouyer void
271 1.6 bouyer xpq_queue_pte_update(paddr_t ptr, pt_entry_t val)
272 1.2 bouyer {
273 1.41 cherry mmu_update_t *xpq_queue = xpq_queue_array[curcpu()->ci_cpuid];
274 1.41 cherry int xpq_idx = xpq_idx_array[curcpu()->ci_cpuid];
275 1.35 cherry
276 1.72 maxv xpq_queue[xpq_idx].ptr = ptr | MMU_NORMAL_PT_UPDATE;
277 1.2 bouyer xpq_queue[xpq_idx].val = val;
278 1.2 bouyer xpq_increment_idx();
279 1.2 bouyer }
280 1.2 bouyer
281 1.2 bouyer void
282 1.2 bouyer xpq_queue_pt_switch(paddr_t pa)
283 1.2 bouyer {
284 1.2 bouyer struct mmuext_op op;
285 1.72 maxv
286 1.2 bouyer xpq_flush_queue();
287 1.2 bouyer
288 1.2 bouyer op.cmd = MMUEXT_NEW_BASEPTR;
289 1.2 bouyer op.arg1.mfn = pa >> PAGE_SHIFT;
290 1.2 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
291 1.2 bouyer panic("xpq_queue_pt_switch");
292 1.2 bouyer }
293 1.2 bouyer
294 1.2 bouyer void
295 1.24 jym xpq_queue_pin_table(paddr_t pa, int lvl)
296 1.2 bouyer {
297 1.2 bouyer struct mmuext_op op;
298 1.29 cherry
299 1.2 bouyer xpq_flush_queue();
300 1.2 bouyer
301 1.6 bouyer op.arg1.mfn = pa >> PAGE_SHIFT;
302 1.24 jym op.cmd = lvl;
303 1.6 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
304 1.6 bouyer panic("xpq_queue_pin_table");
305 1.6 bouyer }
306 1.6 bouyer
307 1.2 bouyer void
308 1.2 bouyer xpq_queue_unpin_table(paddr_t pa)
309 1.2 bouyer {
310 1.2 bouyer struct mmuext_op op;
311 1.29 cherry
312 1.2 bouyer xpq_flush_queue();
313 1.2 bouyer
314 1.2 bouyer op.arg1.mfn = pa >> PAGE_SHIFT;
315 1.2 bouyer op.cmd = MMUEXT_UNPIN_TABLE;
316 1.2 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
317 1.2 bouyer panic("xpq_queue_unpin_table");
318 1.2 bouyer }
319 1.2 bouyer
320 1.2 bouyer void
321 1.2 bouyer xpq_queue_set_ldt(vaddr_t va, uint32_t entries)
322 1.2 bouyer {
323 1.2 bouyer struct mmuext_op op;
324 1.29 cherry
325 1.2 bouyer xpq_flush_queue();
326 1.2 bouyer
327 1.2 bouyer KASSERT(va == (va & ~PAGE_MASK));
328 1.2 bouyer op.cmd = MMUEXT_SET_LDT;
329 1.2 bouyer op.arg1.linear_addr = va;
330 1.2 bouyer op.arg2.nr_ents = entries;
331 1.2 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
332 1.2 bouyer panic("xpq_queue_set_ldt");
333 1.2 bouyer }
334 1.2 bouyer
335 1.2 bouyer void
336 1.8 cegger xpq_queue_tlb_flush(void)
337 1.2 bouyer {
338 1.2 bouyer struct mmuext_op op;
339 1.29 cherry
340 1.2 bouyer xpq_flush_queue();
341 1.2 bouyer
342 1.2 bouyer op.cmd = MMUEXT_TLB_FLUSH_LOCAL;
343 1.2 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
344 1.2 bouyer panic("xpq_queue_tlb_flush");
345 1.2 bouyer }
346 1.2 bouyer
347 1.2 bouyer void
348 1.8 cegger xpq_flush_cache(void)
349 1.2 bouyer {
350 1.52 jnemeth int s = splvm();
351 1.29 cherry
352 1.2 bouyer xpq_flush_queue();
353 1.2 bouyer
354 1.52 jnemeth asm("wbinvd":::"memory");
355 1.29 cherry splx(s); /* XXX: removeme */
356 1.2 bouyer }
357 1.2 bouyer
358 1.2 bouyer void
359 1.2 bouyer xpq_queue_invlpg(vaddr_t va)
360 1.2 bouyer {
361 1.2 bouyer struct mmuext_op op;
362 1.72 maxv
363 1.2 bouyer xpq_flush_queue();
364 1.2 bouyer
365 1.2 bouyer op.cmd = MMUEXT_INVLPG_LOCAL;
366 1.2 bouyer op.arg1.linear_addr = (va & ~PAGE_MASK);
367 1.2 bouyer if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
368 1.2 bouyer panic("xpq_queue_invlpg");
369 1.2 bouyer }
370 1.2 bouyer
371 1.29 cherry void
372 1.43 rmind xen_mcast_invlpg(vaddr_t va, kcpuset_t *kc)
373 1.29 cherry {
374 1.48 bouyer xcpumask_t xcpumask;
375 1.29 cherry mmuext_op_t op;
376 1.29 cherry
377 1.49 rmind kcpuset_export_u32(kc, &xcpumask.xcpum_km[0], sizeof(xcpumask));
378 1.44 rmind
379 1.29 cherry xpq_flush_queue();
380 1.29 cherry
381 1.29 cherry op.cmd = MMUEXT_INVLPG_MULTI;
382 1.29 cherry op.arg1.linear_addr = va;
383 1.48 bouyer op.arg2.vcpumask = &xcpumask.xcpum_xm;
384 1.29 cherry
385 1.72 maxv if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
386 1.29 cherry panic("xpq_queue_invlpg_all");
387 1.29 cherry }
388 1.29 cherry
389 1.29 cherry void
390 1.29 cherry xen_bcast_invlpg(vaddr_t va)
391 1.29 cherry {
392 1.29 cherry mmuext_op_t op;
393 1.29 cherry
394 1.29 cherry xpq_flush_queue();
395 1.29 cherry
396 1.29 cherry op.cmd = MMUEXT_INVLPG_ALL;
397 1.29 cherry op.arg1.linear_addr = va;
398 1.29 cherry
399 1.72 maxv if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
400 1.29 cherry panic("xpq_queue_invlpg_all");
401 1.29 cherry }
402 1.29 cherry
403 1.29 cherry /* This is a synchronous call. */
404 1.29 cherry void
405 1.43 rmind xen_mcast_tlbflush(kcpuset_t *kc)
406 1.29 cherry {
407 1.48 bouyer xcpumask_t xcpumask;
408 1.29 cherry mmuext_op_t op;
409 1.29 cherry
410 1.49 rmind kcpuset_export_u32(kc, &xcpumask.xcpum_km[0], sizeof(xcpumask));
411 1.44 rmind
412 1.29 cherry xpq_flush_queue();
413 1.29 cherry
414 1.29 cherry op.cmd = MMUEXT_TLB_FLUSH_MULTI;
415 1.48 bouyer op.arg2.vcpumask = &xcpumask.xcpum_xm;
416 1.29 cherry
417 1.72 maxv if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
418 1.29 cherry panic("xpq_queue_invlpg_all");
419 1.29 cherry }
420 1.29 cherry
421 1.29 cherry /* This is a synchronous call. */
422 1.29 cherry void
423 1.29 cherry xen_bcast_tlbflush(void)
424 1.29 cherry {
425 1.29 cherry mmuext_op_t op;
426 1.29 cherry
427 1.29 cherry xpq_flush_queue();
428 1.29 cherry
429 1.29 cherry op.cmd = MMUEXT_TLB_FLUSH_ALL;
430 1.29 cherry
431 1.72 maxv if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
432 1.29 cherry panic("xpq_queue_invlpg_all");
433 1.29 cherry }
434 1.29 cherry
435 1.53 cherry void
436 1.53 cherry xen_copy_page(paddr_t srcpa, paddr_t dstpa)
437 1.53 cherry {
438 1.53 cherry mmuext_op_t op;
439 1.53 cherry
440 1.53 cherry op.cmd = MMUEXT_COPY_PAGE;
441 1.53 cherry op.arg1.mfn = xpmap_ptom(dstpa) >> PAGE_SHIFT;
442 1.53 cherry op.arg2.src_mfn = xpmap_ptom(srcpa) >> PAGE_SHIFT;
443 1.53 cherry
444 1.53 cherry if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0) {
445 1.53 cherry panic(__func__);
446 1.53 cherry }
447 1.53 cherry }
448 1.53 cherry
449 1.53 cherry void
450 1.53 cherry xen_pagezero(paddr_t pa)
451 1.53 cherry {
452 1.53 cherry mmuext_op_t op;
453 1.53 cherry
454 1.53 cherry op.cmd = MMUEXT_CLEAR_PAGE;
455 1.53 cherry op.arg1.mfn = xpmap_ptom(pa) >> PAGE_SHIFT;
456 1.53 cherry
457 1.53 cherry if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0) {
458 1.53 cherry panic(__func__);
459 1.53 cherry }
460 1.53 cherry }
461 1.53 cherry
462 1.2 bouyer int
463 1.6 bouyer xpq_update_foreign(paddr_t ptr, pt_entry_t val, int dom)
464 1.2 bouyer {
465 1.2 bouyer mmu_update_t op;
466 1.2 bouyer int ok;
467 1.29 cherry
468 1.2 bouyer xpq_flush_queue();
469 1.2 bouyer
470 1.6 bouyer op.ptr = ptr;
471 1.2 bouyer op.val = val;
472 1.2 bouyer if (HYPERVISOR_mmu_update(&op, 1, &ok, dom) < 0)
473 1.2 bouyer return EFAULT;
474 1.72 maxv return 0;
475 1.2 bouyer }
476 1.2 bouyer
477 1.2 bouyer #ifdef XENDEBUG
478 1.2 bouyer void
479 1.8 cegger xpq_debug_dump(void)
480 1.2 bouyer {
481 1.2 bouyer int i;
482 1.2 bouyer
483 1.41 cherry mmu_update_t *xpq_queue = xpq_queue_array[curcpu()->ci_cpuid];
484 1.41 cherry int xpq_idx = xpq_idx_array[curcpu()->ci_cpuid];
485 1.35 cherry
486 1.2 bouyer XENPRINTK2(("idx: %d\n", xpq_idx));
487 1.2 bouyer for (i = 0; i < xpq_idx; i++) {
488 1.13 cegger snprintf(XBUF, sizeof(XBUF), "%" PRIx64 " %08" PRIx64,
489 1.19 jym xpq_queue[i].ptr, xpq_queue[i].val);
490 1.2 bouyer if (++i < xpq_idx)
491 1.13 cegger snprintf(XBUF + strlen(XBUF),
492 1.13 cegger sizeof(XBUF) - strlen(XBUF),
493 1.13 cegger "%" PRIx64 " %08" PRIx64,
494 1.19 jym xpq_queue[i].ptr, xpq_queue[i].val);
495 1.2 bouyer if (++i < xpq_idx)
496 1.13 cegger snprintf(XBUF + strlen(XBUF),
497 1.13 cegger sizeof(XBUF) - strlen(XBUF),
498 1.72 maxv "%" PRIx64 " %08" PRIx64,
499 1.19 jym xpq_queue[i].ptr, xpq_queue[i].val);
500 1.2 bouyer if (++i < xpq_idx)
501 1.13 cegger snprintf(XBUF + strlen(XBUF),
502 1.13 cegger sizeof(XBUF) - strlen(XBUF),
503 1.13 cegger "%" PRIx64 " %08" PRIx64,
504 1.19 jym xpq_queue[i].ptr, xpq_queue[i].val);
505 1.2 bouyer XENPRINTK2(("%d: %s\n", xpq_idx, XBUF));
506 1.2 bouyer }
507 1.2 bouyer }
508 1.2 bouyer #endif
509 1.2 bouyer
510 1.2 bouyer
511 1.2 bouyer #if L2_SLOT_KERNBASE > 0
512 1.2 bouyer #define TABLE_L2_ENTRIES (2 * (NKL2_KIMG_ENTRIES + 1))
513 1.2 bouyer #else
514 1.2 bouyer #define TABLE_L2_ENTRIES (NKL2_KIMG_ENTRIES + 1)
515 1.2 bouyer #endif
516 1.2 bouyer
517 1.6 bouyer #ifdef PAE
518 1.6 bouyer /*
519 1.66 maxv * For PAE, we consider a single contiguous L2 "superpage" of 4 pages, all of
520 1.64 maxv * them mapped by the L3 page. We also need a shadow page for L3[3].
521 1.6 bouyer */
522 1.6 bouyer static const int l2_4_count = 6;
523 1.36 cherry #elif defined(__x86_64__)
524 1.36 cherry static const int l2_4_count = PTP_LEVELS;
525 1.6 bouyer #else
526 1.6 bouyer static const int l2_4_count = PTP_LEVELS - 1;
527 1.6 bouyer #endif
528 1.6 bouyer
529 1.64 maxv /*
530 1.64 maxv * Xen locore: get rid of the Xen bootstrap tables. Build and switch to new page
531 1.64 maxv * tables.
532 1.68 maxv *
533 1.68 maxv * Virtual address space of the kernel when leaving this function:
534 1.68 maxv * +--------------+------------------+-------------+------------+---------------
535 1.72 maxv * | KERNEL IMAGE | BOOTSTRAP TABLES | PROC0 UAREA | DUMMY PAGE | HYPER. SHARED
536 1.68 maxv * +--------------+------------------+-------------+------------+---------------
537 1.68 maxv *
538 1.68 maxv * ------+-----------------+-------------+
539 1.68 maxv * INFO | EARLY ZERO PAGE | ISA I/O MEM |
540 1.68 maxv * ------+-----------------+-------------+
541 1.68 maxv *
542 1.68 maxv * DUMMY PAGE is either a PDG for amd64 or a GDT for i386.
543 1.68 maxv *
544 1.68 maxv * (HYPER. SHARED INFO + EARLY ZERO PAGE + ISA I/O MEM) have no physical
545 1.68 maxv * addresses preallocated.
546 1.64 maxv */
547 1.2 bouyer vaddr_t
548 1.65 maxv xen_locore(void)
549 1.2 bouyer {
550 1.64 maxv size_t count, oldcount, mapsize;
551 1.2 bouyer vaddr_t bootstrap_tables, init_tables;
552 1.70 maxv u_int descs[4];
553 1.2 bouyer
554 1.54 bouyer xen_init_features();
555 1.54 bouyer
556 1.55 maxv memset(xpq_idx_array, 0, sizeof(xpq_idx_array));
557 1.35 cherry
558 1.6 bouyer xpmap_phys_to_machine_mapping =
559 1.6 bouyer (unsigned long *)xen_start_info.mfn_list;
560 1.2 bouyer
561 1.70 maxv /* Set the NX/XD bit, if available. descs[3] = %edx. */
562 1.70 maxv x86_cpuid(0x80000001, descs);
563 1.70 maxv xpmap_pg_nx = (descs[3] & CPUID_NOX) ? PG_NX : 0;
564 1.70 maxv
565 1.2 bouyer /* Space after Xen boostrap tables should be free */
566 1.64 maxv init_tables = xen_start_info.pt_base;
567 1.64 maxv bootstrap_tables = init_tables +
568 1.64 maxv (xen_start_info.nr_pt_frames * PAGE_SIZE);
569 1.2 bouyer
570 1.4 bouyer /*
571 1.64 maxv * Calculate how much space we need. First, everything mapped before
572 1.64 maxv * the Xen bootstrap tables.
573 1.4 bouyer */
574 1.4 bouyer mapsize = init_tables - KERNTEXTOFF;
575 1.4 bouyer /* after the tables we'll have:
576 1.4 bouyer * - UAREA
577 1.4 bouyer * - dummy user PGD (x86_64)
578 1.4 bouyer * - HYPERVISOR_shared_info
579 1.40 bouyer * - early_zerop
580 1.4 bouyer * - ISA I/O mem (if needed)
581 1.4 bouyer */
582 1.55 maxv mapsize += UPAGES * PAGE_SIZE;
583 1.4 bouyer #ifdef __x86_64__
584 1.55 maxv mapsize += PAGE_SIZE;
585 1.4 bouyer #endif
586 1.55 maxv mapsize += PAGE_SIZE;
587 1.55 maxv mapsize += PAGE_SIZE;
588 1.2 bouyer #ifdef DOM0OPS
589 1.10 cegger if (xendomain_is_dom0()) {
590 1.4 bouyer mapsize += IOM_SIZE;
591 1.4 bouyer }
592 1.4 bouyer #endif
593 1.4 bouyer
594 1.64 maxv /*
595 1.64 maxv * At this point, mapsize doesn't include the table size.
596 1.64 maxv */
597 1.4 bouyer #ifdef __x86_64__
598 1.4 bouyer count = TABLE_L2_ENTRIES;
599 1.4 bouyer #else
600 1.66 maxv count = (mapsize + (NBPD_L2 - 1)) >> L2_SHIFT;
601 1.64 maxv #endif
602 1.64 maxv
603 1.64 maxv /*
604 1.64 maxv * Now compute how many L2 pages we need exactly. This is useful only
605 1.64 maxv * on i386, since the initial count for amd64 is already enough.
606 1.64 maxv */
607 1.66 maxv while (KERNTEXTOFF + mapsize + (count + l2_4_count) * PAGE_SIZE >
608 1.66 maxv KERNBASE + (count << L2_SHIFT)) {
609 1.4 bouyer count++;
610 1.2 bouyer }
611 1.64 maxv
612 1.69 maxv #ifdef i386
613 1.5 bouyer /*
614 1.64 maxv * One more L2 page: we'll allocate several pages after kva_start
615 1.5 bouyer * in pmap_bootstrap() before pmap_growkernel(), which have not been
616 1.5 bouyer * counted here. It's not a big issue to allocate one more L2 as
617 1.5 bouyer * pmap_growkernel() will be called anyway.
618 1.5 bouyer */
619 1.5 bouyer count++;
620 1.4 bouyer nkptp[1] = count;
621 1.2 bouyer #endif
622 1.2 bouyer
623 1.4 bouyer /*
624 1.64 maxv * Install bootstrap pages. We may need more L2 pages than will
625 1.64 maxv * have the final table here, as it's installed after the final table.
626 1.4 bouyer */
627 1.4 bouyer oldcount = count;
628 1.4 bouyer
629 1.4 bouyer bootstrap_again:
630 1.64 maxv
631 1.72 maxv /*
632 1.2 bouyer * Xen space we'll reclaim may not be enough for our new page tables,
633 1.64 maxv * move bootstrap tables if necessary.
634 1.2 bouyer */
635 1.4 bouyer if (bootstrap_tables < init_tables + ((count + l2_4_count) * PAGE_SIZE))
636 1.2 bouyer bootstrap_tables = init_tables +
637 1.64 maxv ((count + l2_4_count) * PAGE_SIZE);
638 1.64 maxv
639 1.66 maxv /*
640 1.66 maxv * Make sure the number of L2 pages we have is enough to map everything
641 1.66 maxv * from KERNBASE to the bootstrap tables themselves.
642 1.66 maxv */
643 1.72 maxv if (bootstrap_tables + ((oldcount + l2_4_count) * PAGE_SIZE) >
644 1.66 maxv KERNBASE + (oldcount << L2_SHIFT)) {
645 1.4 bouyer oldcount++;
646 1.4 bouyer goto bootstrap_again;
647 1.4 bouyer }
648 1.2 bouyer
649 1.2 bouyer /* Create temporary tables */
650 1.64 maxv xen_bootstrap_tables(init_tables, bootstrap_tables,
651 1.66 maxv xen_start_info.nr_pt_frames, oldcount, false);
652 1.2 bouyer
653 1.2 bouyer /* Create final tables */
654 1.2 bouyer xen_bootstrap_tables(bootstrap_tables, init_tables,
655 1.66 maxv oldcount + l2_4_count, count, true);
656 1.2 bouyer
657 1.68 maxv /* Zero out PROC0 UAREA and DUMMY PAGE. */
658 1.4 bouyer memset((void *)(init_tables + ((count + l2_4_count) * PAGE_SIZE)), 0,
659 1.55 maxv (UPAGES + 1) * PAGE_SIZE);
660 1.28 rmind
661 1.28 rmind /* Finally, flush TLB. */
662 1.28 rmind xpq_queue_tlb_flush();
663 1.28 rmind
664 1.4 bouyer return (init_tables + ((count + l2_4_count) * PAGE_SIZE));
665 1.2 bouyer }
666 1.2 bouyer
667 1.2 bouyer /*
668 1.55 maxv * Build a new table and switch to it.
669 1.55 maxv * old_count is # of old tables (including PGD, PDTPE and PDE).
670 1.55 maxv * new_count is # of new tables (PTE only).
671 1.55 maxv * We assume the areas don't overlap.
672 1.2 bouyer */
673 1.2 bouyer static void
674 1.64 maxv xen_bootstrap_tables(vaddr_t old_pgd, vaddr_t new_pgd, size_t old_count,
675 1.66 maxv size_t new_count, bool final)
676 1.2 bouyer {
677 1.2 bouyer pd_entry_t *pdtpe, *pde, *pte;
678 1.50 mrg pd_entry_t *bt_pgd;
679 1.6 bouyer paddr_t addr;
680 1.61 bouyer vaddr_t page, avail, map_end;
681 1.2 bouyer int i;
682 1.61 bouyer extern char __rodata_start;
683 1.2 bouyer extern char __data_start;
684 1.61 bouyer extern char __kernel_end;
685 1.40 bouyer extern char *early_zerop; /* from pmap.c */
686 1.72 maxv #ifdef i386
687 1.72 maxv extern union descriptor tmpgdt[];
688 1.72 maxv #endif
689 1.55 maxv
690 1.2 bouyer /*
691 1.66 maxv * Layout of RW area after the kernel image:
692 1.55 maxv * xencons_interface (if present)
693 1.55 maxv * xenstore_interface (if present)
694 1.55 maxv * table pages (new_count + l2_4_count entries)
695 1.64 maxv * Extra mappings (only when final is true):
696 1.55 maxv * UAREA
697 1.64 maxv * dummy user PGD (x86_64 only) / GDT page (i386 only)
698 1.55 maxv * HYPERVISOR_shared_info
699 1.55 maxv * early_zerop
700 1.55 maxv * ISA I/O mem (if needed)
701 1.2 bouyer */
702 1.55 maxv map_end = new_pgd + ((new_count + l2_4_count) * PAGE_SIZE);
703 1.2 bouyer if (final) {
704 1.68 maxv map_end += UPAGES * PAGE_SIZE;
705 1.68 maxv xen_dummy_page = (vaddr_t)map_end;
706 1.68 maxv map_end += PAGE_SIZE;
707 1.4 bouyer HYPERVISOR_shared_info = (shared_info_t *)map_end;
708 1.55 maxv map_end += PAGE_SIZE;
709 1.40 bouyer early_zerop = (char *)map_end;
710 1.55 maxv map_end += PAGE_SIZE;
711 1.2 bouyer }
712 1.55 maxv
713 1.4 bouyer /*
714 1.64 maxv * We always set atdevbase, as it's used by init386 to find the first
715 1.4 bouyer * available VA. map_end is updated only if we are dom0, so
716 1.4 bouyer * atdevbase -> atdevbase + IOM_SIZE will be mapped only in
717 1.4 bouyer * this case.
718 1.4 bouyer */
719 1.66 maxv if (final) {
720 1.4 bouyer atdevbase = map_end;
721 1.2 bouyer #ifdef DOM0OPS
722 1.66 maxv if (xendomain_is_dom0()) {
723 1.66 maxv /* ISA I/O mem */
724 1.66 maxv map_end += IOM_SIZE;
725 1.66 maxv }
726 1.66 maxv #endif
727 1.2 bouyer }
728 1.2 bouyer
729 1.61 bouyer __PRINTK(("xen_bootstrap_tables map_end 0x%lx\n", map_end));
730 1.19 jym __PRINTK(("console %#lx ", xen_start_info.console_mfn));
731 1.19 jym __PRINTK(("xenstore %#" PRIx32 "\n", xen_start_info.store_mfn));
732 1.2 bouyer
733 1.72 maxv /*
734 1.55 maxv * Create bootstrap page tables. What we need:
735 1.2 bouyer * - a PGD (level 4)
736 1.2 bouyer * - a PDTPE (level 3)
737 1.55 maxv * - a PDE (level 2)
738 1.2 bouyer * - some PTEs (level 1)
739 1.2 bouyer */
740 1.72 maxv
741 1.55 maxv bt_pgd = (pd_entry_t *)new_pgd;
742 1.55 maxv memset(bt_pgd, 0, PAGE_SIZE);
743 1.2 bouyer avail = new_pgd + PAGE_SIZE;
744 1.55 maxv
745 1.4 bouyer #if PTP_LEVELS > 3
746 1.64 maxv /* Per-cpu L4 */
747 1.36 cherry pd_entry_t *bt_cpu_pgd = bt_pgd;
748 1.64 maxv /* pmap_kernel() "shadow" L4 */
749 1.55 maxv bt_pgd = (pd_entry_t *)avail;
750 1.36 cherry memset(bt_pgd, 0, PAGE_SIZE);
751 1.36 cherry avail += PAGE_SIZE;
752 1.36 cherry
753 1.64 maxv /* Install L3 */
754 1.55 maxv pdtpe = (pd_entry_t *)avail;
755 1.55 maxv memset(pdtpe, 0, PAGE_SIZE);
756 1.2 bouyer avail += PAGE_SIZE;
757 1.2 bouyer
758 1.55 maxv addr = ((u_long)pdtpe) - KERNBASE;
759 1.67 maxv bt_pgd[pl4_pi(KERNTEXTOFF)] = bt_cpu_pgd[pl4_pi(KERNTEXTOFF)] =
760 1.72 maxv xpmap_ptom_masked(addr) | PG_V | PG_RW;
761 1.4 bouyer #else
762 1.4 bouyer pdtpe = bt_pgd;
763 1.64 maxv #endif
764 1.2 bouyer
765 1.4 bouyer #if PTP_LEVELS > 2
766 1.2 bouyer /* Level 2 */
767 1.55 maxv pde = (pd_entry_t *)avail;
768 1.2 bouyer memset(pde, 0, PAGE_SIZE);
769 1.2 bouyer avail += PAGE_SIZE;
770 1.2 bouyer
771 1.55 maxv addr = ((u_long)pde) - KERNBASE;
772 1.67 maxv pdtpe[pl3_pi(KERNTEXTOFF)] =
773 1.72 maxv xpmap_ptom_masked(addr) | PG_V | PG_RW;
774 1.6 bouyer #elif defined(PAE)
775 1.69 maxv /*
776 1.69 maxv * Our PAE-style level 2, 5 contiguous pages (4 L2 + 1 shadow).
777 1.69 maxv * +-----------------+----------------+---------+
778 1.69 maxv * Physical layout: | 3 * USERLAND L2 | L2 KERN SHADOW | L2 KERN |
779 1.69 maxv * +-----------------+----------------+---------+
780 1.69 maxv * However, we enter pdtpte[3] into L2 KERN, and not L2 KERN SHADOW.
781 1.69 maxv * This way, pde[L2_SLOT_KERN] always points to the shadow.
782 1.69 maxv */
783 1.55 maxv pde = (pd_entry_t *)avail;
784 1.6 bouyer memset(pde, 0, PAGE_SIZE * 5);
785 1.6 bouyer avail += PAGE_SIZE * 5;
786 1.64 maxv
787 1.6 bouyer /*
788 1.69 maxv * Link L2 pages in L3, with a special case for L2 KERN. Xen doesn't
789 1.69 maxv * want RW permissions in L3 entries, it'll add them itself.
790 1.6 bouyer */
791 1.69 maxv addr = ((u_long)pde) - KERNBASE;
792 1.6 bouyer for (i = 0; i < 3; i++, addr += PAGE_SIZE) {
793 1.72 maxv pdtpe[i] = xpmap_ptom_masked(addr) | PG_V;
794 1.6 bouyer }
795 1.6 bouyer addr += PAGE_SIZE;
796 1.72 maxv pdtpe[3] = xpmap_ptom_masked(addr) | PG_V;
797 1.64 maxv #else
798 1.4 bouyer pde = bt_pgd;
799 1.64 maxv #endif
800 1.2 bouyer
801 1.2 bouyer /* Level 1 */
802 1.2 bouyer page = KERNTEXTOFF;
803 1.2 bouyer for (i = 0; i < new_count; i ++) {
804 1.6 bouyer vaddr_t cur_page = page;
805 1.2 bouyer
806 1.55 maxv pte = (pd_entry_t *)avail;
807 1.2 bouyer avail += PAGE_SIZE;
808 1.2 bouyer
809 1.2 bouyer memset(pte, 0, PAGE_SIZE);
810 1.55 maxv while (pl2_pi(page) == pl2_pi(cur_page)) {
811 1.2 bouyer if (page >= map_end) {
812 1.2 bouyer /* not mapped at all */
813 1.2 bouyer pte[pl1_pi(page)] = 0;
814 1.2 bouyer page += PAGE_SIZE;
815 1.2 bouyer continue;
816 1.2 bouyer }
817 1.2 bouyer pte[pl1_pi(page)] = xpmap_ptom_masked(page - KERNBASE);
818 1.2 bouyer if (page == (vaddr_t)HYPERVISOR_shared_info) {
819 1.2 bouyer pte[pl1_pi(page)] = xen_start_info.shared_info;
820 1.2 bouyer }
821 1.7 bouyer if ((xpmap_ptom_masked(page - KERNBASE) >> PAGE_SHIFT)
822 1.12 cegger == xen_start_info.console.domU.mfn) {
823 1.2 bouyer xencons_interface = (void *)page;
824 1.19 jym pte[pl1_pi(page)] = xen_start_info.console_mfn;
825 1.6 bouyer pte[pl1_pi(page)] <<= PAGE_SHIFT;
826 1.2 bouyer }
827 1.7 bouyer if ((xpmap_ptom_masked(page - KERNBASE) >> PAGE_SHIFT)
828 1.7 bouyer == xen_start_info.store_mfn) {
829 1.2 bouyer xenstore_interface = (void *)page;
830 1.6 bouyer pte[pl1_pi(page)] = xen_start_info.store_mfn;
831 1.6 bouyer pte[pl1_pi(page)] <<= PAGE_SHIFT;
832 1.2 bouyer }
833 1.2 bouyer #ifdef DOM0OPS
834 1.2 bouyer if (page >= (vaddr_t)atdevbase &&
835 1.2 bouyer page < (vaddr_t)atdevbase + IOM_SIZE) {
836 1.2 bouyer pte[pl1_pi(page)] =
837 1.2 bouyer IOM_BEGIN + (page - (vaddr_t)atdevbase);
838 1.70 maxv pte[pl1_pi(page)] |= xpmap_pg_nx;
839 1.2 bouyer }
840 1.2 bouyer #endif
841 1.61 bouyer
842 1.72 maxv pte[pl1_pi(page)] |= PG_V;
843 1.61 bouyer if (page < (vaddr_t)&__rodata_start) {
844 1.61 bouyer /* Map the kernel text RX. */
845 1.56 maxv pte[pl1_pi(page)] |= PG_RO;
846 1.61 bouyer } else if (page >= (vaddr_t)&__rodata_start &&
847 1.61 bouyer page < (vaddr_t)&__data_start) {
848 1.61 bouyer /* Map the kernel rodata R. */
849 1.70 maxv pte[pl1_pi(page)] |= PG_RO | xpmap_pg_nx;
850 1.55 maxv } else if (page >= old_pgd &&
851 1.55 maxv page < old_pgd + (old_count * PAGE_SIZE)) {
852 1.61 bouyer /* Map the old page tables R. */
853 1.70 maxv pte[pl1_pi(page)] |= PG_RO | xpmap_pg_nx;
854 1.2 bouyer } else if (page >= new_pgd &&
855 1.6 bouyer page < new_pgd + ((new_count + l2_4_count) * PAGE_SIZE)) {
856 1.61 bouyer /* Map the new page tables R. */
857 1.70 maxv pte[pl1_pi(page)] |= PG_RO | xpmap_pg_nx;
858 1.41 cherry #ifdef i386
859 1.41 cherry } else if (page == (vaddr_t)tmpgdt) {
860 1.41 cherry /*
861 1.64 maxv * Map bootstrap gdt R/O. Later, we will re-add
862 1.64 maxv * this page to uvm after making it writable.
863 1.41 cherry */
864 1.41 cherry pte[pl1_pi(page)] = 0;
865 1.41 cherry page += PAGE_SIZE;
866 1.41 cherry continue;
867 1.64 maxv #endif
868 1.61 bouyer } else if (page >= (vaddr_t)&__data_start &&
869 1.61 bouyer page < (vaddr_t)&__kernel_end) {
870 1.61 bouyer /* Map the kernel data+bss RW. */
871 1.70 maxv pte[pl1_pi(page)] |= PG_RW | xpmap_pg_nx;
872 1.2 bouyer } else {
873 1.62 maxv /* Map the page RW. */
874 1.70 maxv pte[pl1_pi(page)] |= PG_RW | xpmap_pg_nx;
875 1.2 bouyer }
876 1.64 maxv
877 1.2 bouyer page += PAGE_SIZE;
878 1.2 bouyer }
879 1.2 bouyer
880 1.64 maxv addr = ((u_long)pte) - KERNBASE;
881 1.2 bouyer pde[pl2_pi(cur_page)] =
882 1.72 maxv xpmap_ptom_masked(addr) | PG_RW | PG_V;
883 1.64 maxv
884 1.2 bouyer /* Mark readonly */
885 1.64 maxv xen_bt_set_readonly((vaddr_t)pte);
886 1.2 bouyer }
887 1.2 bouyer
888 1.2 bouyer /* Install recursive page tables mapping */
889 1.6 bouyer #ifdef PAE
890 1.69 maxv /* Copy L2 KERN into L2 KERN SHADOW, and reference the latter in cpu0. */
891 1.6 bouyer memcpy(&pde[L2_SLOT_KERN + NPDPG], &pde[L2_SLOT_KERN], PAGE_SIZE);
892 1.36 cherry cpu_info_primary.ci_kpm_pdir = &pde[L2_SLOT_KERN + NPDPG];
893 1.36 cherry cpu_info_primary.ci_kpm_pdirpa =
894 1.69 maxv (vaddr_t)cpu_info_primary.ci_kpm_pdir - KERNBASE;
895 1.6 bouyer
896 1.6 bouyer /*
897 1.64 maxv * We don't enter a recursive entry from the L3 PD. Instead, we enter
898 1.64 maxv * the first 4 L2 pages, which includes the kernel's L2 shadow. But we
899 1.64 maxv * have to enter the shadow after switching %cr3, or Xen will refcount
900 1.64 maxv * some PTEs with the wrong type.
901 1.6 bouyer */
902 1.6 bouyer addr = (u_long)pde - KERNBASE;
903 1.6 bouyer for (i = 0; i < 3; i++, addr += PAGE_SIZE) {
904 1.72 maxv pde[PDIR_SLOT_PTE + i] = xpmap_ptom_masked(addr) | PG_V |
905 1.70 maxv xpmap_pg_nx;
906 1.6 bouyer }
907 1.69 maxv
908 1.69 maxv /* Mark tables RO, and pin L2 KERN SHADOW. */
909 1.6 bouyer addr = (u_long)pde - KERNBASE;
910 1.6 bouyer for (i = 0; i < 5; i++, addr += PAGE_SIZE) {
911 1.6 bouyer xen_bt_set_readonly(((vaddr_t)pde) + PAGE_SIZE * i);
912 1.6 bouyer }
913 1.6 bouyer if (final) {
914 1.6 bouyer addr = (u_long)pde - KERNBASE + 3 * PAGE_SIZE;
915 1.24 jym xpq_queue_pin_l2_table(xpmap_ptom_masked(addr));
916 1.6 bouyer }
917 1.6 bouyer #else /* PAE */
918 1.61 bouyer
919 1.61 bouyer /* Recursive entry in pmap_kernel(). */
920 1.61 bouyer bt_pgd[PDIR_SLOT_PTE] = xpmap_ptom_masked((paddr_t)bt_pgd - KERNBASE)
921 1.72 maxv | PG_RO | PG_V | xpmap_pg_nx;
922 1.36 cherry #ifdef __x86_64__
923 1.61 bouyer /* Recursive entry in higher-level per-cpu PD. */
924 1.61 bouyer bt_cpu_pgd[PDIR_SLOT_PTE] = xpmap_ptom_masked((paddr_t)bt_cpu_pgd - KERNBASE)
925 1.72 maxv | PG_RO | PG_V | xpmap_pg_nx;
926 1.61 bouyer #endif
927 1.61 bouyer
928 1.2 bouyer /* Mark tables RO */
929 1.64 maxv xen_bt_set_readonly((vaddr_t)pde);
930 1.69 maxv #endif /* PAE */
931 1.69 maxv
932 1.6 bouyer #if PTP_LEVELS > 2 || defined(PAE)
933 1.64 maxv xen_bt_set_readonly((vaddr_t)pdtpe);
934 1.4 bouyer #endif
935 1.4 bouyer #if PTP_LEVELS > 3
936 1.2 bouyer xen_bt_set_readonly(new_pgd);
937 1.4 bouyer #endif
938 1.61 bouyer
939 1.2 bouyer /* Pin the PGD */
940 1.24 jym #ifdef __x86_64__
941 1.24 jym xpq_queue_pin_l4_table(xpmap_ptom_masked(new_pgd - KERNBASE));
942 1.24 jym #elif PAE
943 1.6 bouyer xpq_queue_pin_l3_table(xpmap_ptom_masked(new_pgd - KERNBASE));
944 1.6 bouyer #else
945 1.24 jym xpq_queue_pin_l2_table(xpmap_ptom_masked(new_pgd - KERNBASE));
946 1.6 bouyer #endif
947 1.21 jym
948 1.4 bouyer /* Save phys. addr of PDP, for libkvm. */
949 1.6 bouyer #ifdef PAE
950 1.21 jym PDPpaddr = (u_long)pde - KERNBASE; /* PDP is the L2 with PAE */
951 1.21 jym #else
952 1.36 cherry PDPpaddr = (u_long)bt_pgd - KERNBASE;
953 1.21 jym #endif
954 1.21 jym
955 1.2 bouyer /* Switch to new tables */
956 1.2 bouyer xpq_queue_pt_switch(xpmap_ptom_masked(new_pgd - KERNBASE));
957 1.21 jym
958 1.6 bouyer #ifdef PAE
959 1.6 bouyer if (final) {
960 1.64 maxv /* Save the address of the L3 page */
961 1.21 jym cpu_info_primary.ci_pae_l3_pdir = pdtpe;
962 1.21 jym cpu_info_primary.ci_pae_l3_pdirpa = (new_pgd - KERNBASE);
963 1.21 jym
964 1.64 maxv /* Now enter the kernel's PTE mappings */
965 1.64 maxv addr = (u_long)pde - KERNBASE + PAGE_SIZE * 3;
966 1.6 bouyer xpq_queue_pte_update(
967 1.64 maxv xpmap_ptom(((vaddr_t)&pde[PDIR_SLOT_PTE + 3]) - KERNBASE),
968 1.72 maxv xpmap_ptom_masked(addr) | PG_V);
969 1.6 bouyer xpq_flush_queue();
970 1.6 bouyer }
971 1.36 cherry #elif defined(__x86_64__)
972 1.36 cherry if (final) {
973 1.66 maxv /* Save the address of the real per-cpu L4 page. */
974 1.36 cherry cpu_info_primary.ci_kpm_pdir = bt_cpu_pgd;
975 1.66 maxv cpu_info_primary.ci_kpm_pdirpa = ((paddr_t)bt_cpu_pgd - KERNBASE);
976 1.36 cherry }
977 1.6 bouyer #endif
978 1.51 christos __USE(pdtpe);
979 1.6 bouyer
980 1.66 maxv /*
981 1.66 maxv * Now we can safely reclaim the space taken by the old tables.
982 1.66 maxv */
983 1.66 maxv
984 1.2 bouyer /* Unpin old PGD */
985 1.2 bouyer xpq_queue_unpin_table(xpmap_ptom_masked(old_pgd - KERNBASE));
986 1.66 maxv
987 1.2 bouyer /* Mark old tables RW */
988 1.2 bouyer page = old_pgd;
989 1.66 maxv addr = xpmap_mtop((paddr_t)pde[pl2_pi(page)] & PG_FRAME);
990 1.64 maxv pte = (pd_entry_t *)((u_long)addr + KERNBASE);
991 1.2 bouyer pte += pl1_pi(page);
992 1.2 bouyer while (page < old_pgd + (old_count * PAGE_SIZE) && page < map_end) {
993 1.66 maxv addr = xpmap_ptom(((u_long)pte) - KERNBASE);
994 1.6 bouyer xpq_queue_pte_update(addr, *pte | PG_RW);
995 1.2 bouyer page += PAGE_SIZE;
996 1.72 maxv /*
997 1.55 maxv * Our PTEs are contiguous so it's safe to just "++" here.
998 1.2 bouyer */
999 1.2 bouyer pte++;
1000 1.2 bouyer }
1001 1.2 bouyer xpq_flush_queue();
1002 1.2 bouyer }
1003 1.2 bouyer
1004 1.2 bouyer /*
1005 1.70 maxv * Mark a page read-only, assuming vaddr = paddr + KERNBASE.
1006 1.2 bouyer */
1007 1.2 bouyer static void
1008 1.64 maxv xen_bt_set_readonly(vaddr_t page)
1009 1.2 bouyer {
1010 1.2 bouyer pt_entry_t entry;
1011 1.2 bouyer
1012 1.2 bouyer entry = xpmap_ptom_masked(page - KERNBASE);
1013 1.72 maxv entry |= PG_V | xpmap_pg_nx;
1014 1.2 bouyer
1015 1.64 maxv HYPERVISOR_update_va_mapping(page, entry, UVMF_INVLPG);
1016 1.2 bouyer }
1017 1.4 bouyer
1018 1.4 bouyer #ifdef __x86_64__
1019 1.4 bouyer void
1020 1.4 bouyer xen_set_user_pgd(paddr_t page)
1021 1.4 bouyer {
1022 1.4 bouyer struct mmuext_op op;
1023 1.4 bouyer int s = splvm();
1024 1.4 bouyer
1025 1.4 bouyer xpq_flush_queue();
1026 1.4 bouyer op.cmd = MMUEXT_NEW_USER_BASEPTR;
1027 1.46 jym op.arg1.mfn = xpmap_ptom_masked(page) >> PAGE_SHIFT;
1028 1.64 maxv if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0)
1029 1.4 bouyer panic("xen_set_user_pgd: failed to install new user page"
1030 1.19 jym " directory %#" PRIxPADDR, page);
1031 1.4 bouyer splx(s);
1032 1.4 bouyer }
1033 1.4 bouyer #endif /* __x86_64__ */
1034