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