enlighten.c 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207
  1. /*
  2. * Core of Xen paravirt_ops implementation.
  3. *
  4. * This file contains the xen_paravirt_ops structure itself, and the
  5. * implementations for:
  6. * - privileged instructions
  7. * - interrupt flags
  8. * - segment operations
  9. * - booting and setup
  10. *
  11. * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/smp.h>
  16. #include <linux/preempt.h>
  17. #include <linux/hardirq.h>
  18. #include <linux/percpu.h>
  19. #include <linux/delay.h>
  20. #include <linux/start_kernel.h>
  21. #include <linux/sched.h>
  22. #include <linux/kprobes.h>
  23. #include <linux/bootmem.h>
  24. #include <linux/module.h>
  25. #include <linux/mm.h>
  26. #include <linux/page-flags.h>
  27. #include <linux/highmem.h>
  28. #include <linux/console.h>
  29. #include <linux/pci.h>
  30. #include <xen/xen.h>
  31. #include <xen/interface/xen.h>
  32. #include <xen/interface/version.h>
  33. #include <xen/interface/physdev.h>
  34. #include <xen/interface/vcpu.h>
  35. #include <xen/features.h>
  36. #include <xen/page.h>
  37. #include <xen/hvc-console.h>
  38. #include <asm/paravirt.h>
  39. #include <asm/apic.h>
  40. #include <asm/page.h>
  41. #include <asm/xen/hypercall.h>
  42. #include <asm/xen/hypervisor.h>
  43. #include <asm/fixmap.h>
  44. #include <asm/processor.h>
  45. #include <asm/proto.h>
  46. #include <asm/msr-index.h>
  47. #include <asm/traps.h>
  48. #include <asm/setup.h>
  49. #include <asm/desc.h>
  50. #include <asm/pgalloc.h>
  51. #include <asm/pgtable.h>
  52. #include <asm/tlbflush.h>
  53. #include <asm/reboot.h>
  54. #include <asm/stackprotector.h>
  55. #include "xen-ops.h"
  56. #include "mmu.h"
  57. #include "multicalls.h"
  58. EXPORT_SYMBOL_GPL(hypercall_page);
  59. DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
  60. DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
  61. enum xen_domain_type xen_domain_type = XEN_NATIVE;
  62. EXPORT_SYMBOL_GPL(xen_domain_type);
  63. struct start_info *xen_start_info;
  64. EXPORT_SYMBOL_GPL(xen_start_info);
  65. struct shared_info xen_dummy_shared_info;
  66. void *xen_initial_gdt;
  67. /*
  68. * Point at some empty memory to start with. We map the real shared_info
  69. * page as soon as fixmap is up and running.
  70. */
  71. struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
  72. /*
  73. * Flag to determine whether vcpu info placement is available on all
  74. * VCPUs. We assume it is to start with, and then set it to zero on
  75. * the first failure. This is because it can succeed on some VCPUs
  76. * and not others, since it can involve hypervisor memory allocation,
  77. * or because the guest failed to guarantee all the appropriate
  78. * constraints on all VCPUs (ie buffer can't cross a page boundary).
  79. *
  80. * Note that any particular CPU may be using a placed vcpu structure,
  81. * but we can only optimise if the all are.
  82. *
  83. * 0: not available, 1: available
  84. */
  85. static int have_vcpu_info_placement = 1;
  86. static void xen_vcpu_setup(int cpu)
  87. {
  88. struct vcpu_register_vcpu_info info;
  89. int err;
  90. struct vcpu_info *vcpup;
  91. BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
  92. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  93. if (!have_vcpu_info_placement)
  94. return; /* already tested, not available */
  95. vcpup = &per_cpu(xen_vcpu_info, cpu);
  96. info.mfn = arbitrary_virt_to_mfn(vcpup);
  97. info.offset = offset_in_page(vcpup);
  98. printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
  99. cpu, vcpup, info.mfn, info.offset);
  100. /* Check to see if the hypervisor will put the vcpu_info
  101. structure where we want it, which allows direct access via
  102. a percpu-variable. */
  103. err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
  104. if (err) {
  105. printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
  106. have_vcpu_info_placement = 0;
  107. } else {
  108. /* This cpu is using the registered vcpu info, even if
  109. later ones fail to. */
  110. per_cpu(xen_vcpu, cpu) = vcpup;
  111. printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
  112. cpu, vcpup);
  113. }
  114. }
  115. /*
  116. * On restore, set the vcpu placement up again.
  117. * If it fails, then we're in a bad state, since
  118. * we can't back out from using it...
  119. */
  120. void xen_vcpu_restore(void)
  121. {
  122. int cpu;
  123. for_each_online_cpu(cpu) {
  124. bool other_cpu = (cpu != smp_processor_id());
  125. if (other_cpu &&
  126. HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
  127. BUG();
  128. xen_setup_runstate_info(cpu);
  129. if (have_vcpu_info_placement)
  130. xen_vcpu_setup(cpu);
  131. if (other_cpu &&
  132. HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
  133. BUG();
  134. }
  135. }
  136. static void __init xen_banner(void)
  137. {
  138. unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
  139. struct xen_extraversion extra;
  140. HYPERVISOR_xen_version(XENVER_extraversion, &extra);
  141. printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
  142. pv_info.name);
  143. printk(KERN_INFO "Xen version: %d.%d%s%s\n",
  144. version >> 16, version & 0xffff, extra.extraversion,
  145. xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
  146. }
  147. static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
  148. static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
  149. static void xen_cpuid(unsigned int *ax, unsigned int *bx,
  150. unsigned int *cx, unsigned int *dx)
  151. {
  152. unsigned maskebx = ~0;
  153. unsigned maskecx = ~0;
  154. unsigned maskedx = ~0;
  155. /*
  156. * Mask out inconvenient features, to try and disable as many
  157. * unsupported kernel subsystems as possible.
  158. */
  159. switch (*ax) {
  160. case 1:
  161. maskecx = cpuid_leaf1_ecx_mask;
  162. maskedx = cpuid_leaf1_edx_mask;
  163. break;
  164. case 0xb:
  165. /* Suppress extended topology stuff */
  166. maskebx = 0;
  167. break;
  168. }
  169. asm(XEN_EMULATE_PREFIX "cpuid"
  170. : "=a" (*ax),
  171. "=b" (*bx),
  172. "=c" (*cx),
  173. "=d" (*dx)
  174. : "0" (*ax), "2" (*cx));
  175. *bx &= maskebx;
  176. *cx &= maskecx;
  177. *dx &= maskedx;
  178. }
  179. static __init void xen_init_cpuid_mask(void)
  180. {
  181. unsigned int ax, bx, cx, dx;
  182. cpuid_leaf1_edx_mask =
  183. ~((1 << X86_FEATURE_MCE) | /* disable MCE */
  184. (1 << X86_FEATURE_MCA) | /* disable MCA */
  185. (1 << X86_FEATURE_ACC)); /* thermal monitoring */
  186. if (!xen_initial_domain())
  187. cpuid_leaf1_edx_mask &=
  188. ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
  189. (1 << X86_FEATURE_ACPI)); /* disable ACPI */
  190. ax = 1;
  191. cx = 0;
  192. xen_cpuid(&ax, &bx, &cx, &dx);
  193. /* cpuid claims we support xsave; try enabling it to see what happens */
  194. if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
  195. unsigned long cr4;
  196. set_in_cr4(X86_CR4_OSXSAVE);
  197. cr4 = read_cr4();
  198. if ((cr4 & X86_CR4_OSXSAVE) == 0)
  199. cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
  200. clear_in_cr4(X86_CR4_OSXSAVE);
  201. }
  202. }
  203. static void xen_set_debugreg(int reg, unsigned long val)
  204. {
  205. HYPERVISOR_set_debugreg(reg, val);
  206. }
  207. static unsigned long xen_get_debugreg(int reg)
  208. {
  209. return HYPERVISOR_get_debugreg(reg);
  210. }
  211. static void xen_end_context_switch(struct task_struct *next)
  212. {
  213. xen_mc_flush();
  214. paravirt_end_context_switch(next);
  215. }
  216. static unsigned long xen_store_tr(void)
  217. {
  218. return 0;
  219. }
  220. /*
  221. * Set the page permissions for a particular virtual address. If the
  222. * address is a vmalloc mapping (or other non-linear mapping), then
  223. * find the linear mapping of the page and also set its protections to
  224. * match.
  225. */
  226. static void set_aliased_prot(void *v, pgprot_t prot)
  227. {
  228. int level;
  229. pte_t *ptep;
  230. pte_t pte;
  231. unsigned long pfn;
  232. struct page *page;
  233. ptep = lookup_address((unsigned long)v, &level);
  234. BUG_ON(ptep == NULL);
  235. pfn = pte_pfn(*ptep);
  236. page = pfn_to_page(pfn);
  237. pte = pfn_pte(pfn, prot);
  238. if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
  239. BUG();
  240. if (!PageHighMem(page)) {
  241. void *av = __va(PFN_PHYS(pfn));
  242. if (av != v)
  243. if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
  244. BUG();
  245. } else
  246. kmap_flush_unused();
  247. }
  248. static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
  249. {
  250. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  251. int i;
  252. for(i = 0; i < entries; i += entries_per_page)
  253. set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
  254. }
  255. static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
  256. {
  257. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  258. int i;
  259. for(i = 0; i < entries; i += entries_per_page)
  260. set_aliased_prot(ldt + i, PAGE_KERNEL);
  261. }
  262. static void xen_set_ldt(const void *addr, unsigned entries)
  263. {
  264. struct mmuext_op *op;
  265. struct multicall_space mcs = xen_mc_entry(sizeof(*op));
  266. op = mcs.args;
  267. op->cmd = MMUEXT_SET_LDT;
  268. op->arg1.linear_addr = (unsigned long)addr;
  269. op->arg2.nr_ents = entries;
  270. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  271. xen_mc_issue(PARAVIRT_LAZY_CPU);
  272. }
  273. static void xen_load_gdt(const struct desc_ptr *dtr)
  274. {
  275. unsigned long va = dtr->address;
  276. unsigned int size = dtr->size + 1;
  277. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  278. unsigned long frames[pages];
  279. int f;
  280. /*
  281. * A GDT can be up to 64k in size, which corresponds to 8192
  282. * 8-byte entries, or 16 4k pages..
  283. */
  284. BUG_ON(size > 65536);
  285. BUG_ON(va & ~PAGE_MASK);
  286. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  287. int level;
  288. pte_t *ptep;
  289. unsigned long pfn, mfn;
  290. void *virt;
  291. /*
  292. * The GDT is per-cpu and is in the percpu data area.
  293. * That can be virtually mapped, so we need to do a
  294. * page-walk to get the underlying MFN for the
  295. * hypercall. The page can also be in the kernel's
  296. * linear range, so we need to RO that mapping too.
  297. */
  298. ptep = lookup_address(va, &level);
  299. BUG_ON(ptep == NULL);
  300. pfn = pte_pfn(*ptep);
  301. mfn = pfn_to_mfn(pfn);
  302. virt = __va(PFN_PHYS(pfn));
  303. frames[f] = mfn;
  304. make_lowmem_page_readonly((void *)va);
  305. make_lowmem_page_readonly(virt);
  306. }
  307. if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
  308. BUG();
  309. }
  310. /*
  311. * load_gdt for early boot, when the gdt is only mapped once
  312. */
  313. static __init void xen_load_gdt_boot(const struct desc_ptr *dtr)
  314. {
  315. unsigned long va = dtr->address;
  316. unsigned int size = dtr->size + 1;
  317. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  318. unsigned long frames[pages];
  319. int f;
  320. /*
  321. * A GDT can be up to 64k in size, which corresponds to 8192
  322. * 8-byte entries, or 16 4k pages..
  323. */
  324. BUG_ON(size > 65536);
  325. BUG_ON(va & ~PAGE_MASK);
  326. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  327. pte_t pte;
  328. unsigned long pfn, mfn;
  329. pfn = virt_to_pfn(va);
  330. mfn = pfn_to_mfn(pfn);
  331. pte = pfn_pte(pfn, PAGE_KERNEL_RO);
  332. if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
  333. BUG();
  334. frames[f] = mfn;
  335. }
  336. if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
  337. BUG();
  338. }
  339. static void load_TLS_descriptor(struct thread_struct *t,
  340. unsigned int cpu, unsigned int i)
  341. {
  342. struct desc_struct *gdt = get_cpu_gdt_table(cpu);
  343. xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
  344. struct multicall_space mc = __xen_mc_entry(0);
  345. MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
  346. }
  347. static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
  348. {
  349. /*
  350. * XXX sleazy hack: If we're being called in a lazy-cpu zone
  351. * and lazy gs handling is enabled, it means we're in a
  352. * context switch, and %gs has just been saved. This means we
  353. * can zero it out to prevent faults on exit from the
  354. * hypervisor if the next process has no %gs. Either way, it
  355. * has been saved, and the new value will get loaded properly.
  356. * This will go away as soon as Xen has been modified to not
  357. * save/restore %gs for normal hypercalls.
  358. *
  359. * On x86_64, this hack is not used for %gs, because gs points
  360. * to KERNEL_GS_BASE (and uses it for PDA references), so we
  361. * must not zero %gs on x86_64
  362. *
  363. * For x86_64, we need to zero %fs, otherwise we may get an
  364. * exception between the new %fs descriptor being loaded and
  365. * %fs being effectively cleared at __switch_to().
  366. */
  367. if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
  368. #ifdef CONFIG_X86_32
  369. lazy_load_gs(0);
  370. #else
  371. loadsegment(fs, 0);
  372. #endif
  373. }
  374. xen_mc_batch();
  375. load_TLS_descriptor(t, cpu, 0);
  376. load_TLS_descriptor(t, cpu, 1);
  377. load_TLS_descriptor(t, cpu, 2);
  378. xen_mc_issue(PARAVIRT_LAZY_CPU);
  379. }
  380. #ifdef CONFIG_X86_64
  381. static void xen_load_gs_index(unsigned int idx)
  382. {
  383. if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
  384. BUG();
  385. }
  386. #endif
  387. static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
  388. const void *ptr)
  389. {
  390. xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
  391. u64 entry = *(u64 *)ptr;
  392. preempt_disable();
  393. xen_mc_flush();
  394. if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
  395. BUG();
  396. preempt_enable();
  397. }
  398. static int cvt_gate_to_trap(int vector, const gate_desc *val,
  399. struct trap_info *info)
  400. {
  401. unsigned long addr;
  402. if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
  403. return 0;
  404. info->vector = vector;
  405. addr = gate_offset(*val);
  406. #ifdef CONFIG_X86_64
  407. /*
  408. * Look for known traps using IST, and substitute them
  409. * appropriately. The debugger ones are the only ones we care
  410. * about. Xen will handle faults like double_fault and
  411. * machine_check, so we should never see them. Warn if
  412. * there's an unexpected IST-using fault handler.
  413. */
  414. if (addr == (unsigned long)debug)
  415. addr = (unsigned long)xen_debug;
  416. else if (addr == (unsigned long)int3)
  417. addr = (unsigned long)xen_int3;
  418. else if (addr == (unsigned long)stack_segment)
  419. addr = (unsigned long)xen_stack_segment;
  420. else if (addr == (unsigned long)double_fault ||
  421. addr == (unsigned long)nmi) {
  422. /* Don't need to handle these */
  423. return 0;
  424. #ifdef CONFIG_X86_MCE
  425. } else if (addr == (unsigned long)machine_check) {
  426. return 0;
  427. #endif
  428. } else {
  429. /* Some other trap using IST? */
  430. if (WARN_ON(val->ist != 0))
  431. return 0;
  432. }
  433. #endif /* CONFIG_X86_64 */
  434. info->address = addr;
  435. info->cs = gate_segment(*val);
  436. info->flags = val->dpl;
  437. /* interrupt gates clear IF */
  438. if (val->type == GATE_INTERRUPT)
  439. info->flags |= 1 << 2;
  440. return 1;
  441. }
  442. /* Locations of each CPU's IDT */
  443. static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
  444. /* Set an IDT entry. If the entry is part of the current IDT, then
  445. also update Xen. */
  446. static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
  447. {
  448. unsigned long p = (unsigned long)&dt[entrynum];
  449. unsigned long start, end;
  450. preempt_disable();
  451. start = __get_cpu_var(idt_desc).address;
  452. end = start + __get_cpu_var(idt_desc).size + 1;
  453. xen_mc_flush();
  454. native_write_idt_entry(dt, entrynum, g);
  455. if (p >= start && (p + 8) <= end) {
  456. struct trap_info info[2];
  457. info[1].address = 0;
  458. if (cvt_gate_to_trap(entrynum, g, &info[0]))
  459. if (HYPERVISOR_set_trap_table(info))
  460. BUG();
  461. }
  462. preempt_enable();
  463. }
  464. static void xen_convert_trap_info(const struct desc_ptr *desc,
  465. struct trap_info *traps)
  466. {
  467. unsigned in, out, count;
  468. count = (desc->size+1) / sizeof(gate_desc);
  469. BUG_ON(count > 256);
  470. for (in = out = 0; in < count; in++) {
  471. gate_desc *entry = (gate_desc*)(desc->address) + in;
  472. if (cvt_gate_to_trap(in, entry, &traps[out]))
  473. out++;
  474. }
  475. traps[out].address = 0;
  476. }
  477. void xen_copy_trap_info(struct trap_info *traps)
  478. {
  479. const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
  480. xen_convert_trap_info(desc, traps);
  481. }
  482. /* Load a new IDT into Xen. In principle this can be per-CPU, so we
  483. hold a spinlock to protect the static traps[] array (static because
  484. it avoids allocation, and saves stack space). */
  485. static void xen_load_idt(const struct desc_ptr *desc)
  486. {
  487. static DEFINE_SPINLOCK(lock);
  488. static struct trap_info traps[257];
  489. spin_lock(&lock);
  490. __get_cpu_var(idt_desc) = *desc;
  491. xen_convert_trap_info(desc, traps);
  492. xen_mc_flush();
  493. if (HYPERVISOR_set_trap_table(traps))
  494. BUG();
  495. spin_unlock(&lock);
  496. }
  497. /* Write a GDT descriptor entry. Ignore LDT descriptors, since
  498. they're handled differently. */
  499. static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
  500. const void *desc, int type)
  501. {
  502. preempt_disable();
  503. switch (type) {
  504. case DESC_LDT:
  505. case DESC_TSS:
  506. /* ignore */
  507. break;
  508. default: {
  509. xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
  510. xen_mc_flush();
  511. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  512. BUG();
  513. }
  514. }
  515. preempt_enable();
  516. }
  517. /*
  518. * Version of write_gdt_entry for use at early boot-time needed to
  519. * update an entry as simply as possible.
  520. */
  521. static __init void xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
  522. const void *desc, int type)
  523. {
  524. switch (type) {
  525. case DESC_LDT:
  526. case DESC_TSS:
  527. /* ignore */
  528. break;
  529. default: {
  530. xmaddr_t maddr = virt_to_machine(&dt[entry]);
  531. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  532. dt[entry] = *(struct desc_struct *)desc;
  533. }
  534. }
  535. }
  536. static void xen_load_sp0(struct tss_struct *tss,
  537. struct thread_struct *thread)
  538. {
  539. struct multicall_space mcs = xen_mc_entry(0);
  540. MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
  541. xen_mc_issue(PARAVIRT_LAZY_CPU);
  542. }
  543. static void xen_set_iopl_mask(unsigned mask)
  544. {
  545. struct physdev_set_iopl set_iopl;
  546. /* Force the change at ring 0. */
  547. set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
  548. HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  549. }
  550. static void xen_io_delay(void)
  551. {
  552. }
  553. #ifdef CONFIG_X86_LOCAL_APIC
  554. static u32 xen_apic_read(u32 reg)
  555. {
  556. return 0;
  557. }
  558. static void xen_apic_write(u32 reg, u32 val)
  559. {
  560. /* Warn to see if there's any stray references */
  561. WARN_ON(1);
  562. }
  563. static u64 xen_apic_icr_read(void)
  564. {
  565. return 0;
  566. }
  567. static void xen_apic_icr_write(u32 low, u32 id)
  568. {
  569. /* Warn to see if there's any stray references */
  570. WARN_ON(1);
  571. }
  572. static void xen_apic_wait_icr_idle(void)
  573. {
  574. return;
  575. }
  576. static u32 xen_safe_apic_wait_icr_idle(void)
  577. {
  578. return 0;
  579. }
  580. static void set_xen_basic_apic_ops(void)
  581. {
  582. apic->read = xen_apic_read;
  583. apic->write = xen_apic_write;
  584. apic->icr_read = xen_apic_icr_read;
  585. apic->icr_write = xen_apic_icr_write;
  586. apic->wait_icr_idle = xen_apic_wait_icr_idle;
  587. apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
  588. }
  589. #endif
  590. static void xen_clts(void)
  591. {
  592. struct multicall_space mcs;
  593. mcs = xen_mc_entry(0);
  594. MULTI_fpu_taskswitch(mcs.mc, 0);
  595. xen_mc_issue(PARAVIRT_LAZY_CPU);
  596. }
  597. static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
  598. static unsigned long xen_read_cr0(void)
  599. {
  600. unsigned long cr0 = percpu_read(xen_cr0_value);
  601. if (unlikely(cr0 == 0)) {
  602. cr0 = native_read_cr0();
  603. percpu_write(xen_cr0_value, cr0);
  604. }
  605. return cr0;
  606. }
  607. static void xen_write_cr0(unsigned long cr0)
  608. {
  609. struct multicall_space mcs;
  610. percpu_write(xen_cr0_value, cr0);
  611. /* Only pay attention to cr0.TS; everything else is
  612. ignored. */
  613. mcs = xen_mc_entry(0);
  614. MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
  615. xen_mc_issue(PARAVIRT_LAZY_CPU);
  616. }
  617. static void xen_write_cr4(unsigned long cr4)
  618. {
  619. cr4 &= ~X86_CR4_PGE;
  620. cr4 &= ~X86_CR4_PSE;
  621. native_write_cr4(cr4);
  622. }
  623. static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
  624. {
  625. int ret;
  626. ret = 0;
  627. switch (msr) {
  628. #ifdef CONFIG_X86_64
  629. unsigned which;
  630. u64 base;
  631. case MSR_FS_BASE: which = SEGBASE_FS; goto set;
  632. case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
  633. case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
  634. set:
  635. base = ((u64)high << 32) | low;
  636. if (HYPERVISOR_set_segment_base(which, base) != 0)
  637. ret = -EIO;
  638. break;
  639. #endif
  640. case MSR_STAR:
  641. case MSR_CSTAR:
  642. case MSR_LSTAR:
  643. case MSR_SYSCALL_MASK:
  644. case MSR_IA32_SYSENTER_CS:
  645. case MSR_IA32_SYSENTER_ESP:
  646. case MSR_IA32_SYSENTER_EIP:
  647. /* Fast syscall setup is all done in hypercalls, so
  648. these are all ignored. Stub them out here to stop
  649. Xen console noise. */
  650. break;
  651. default:
  652. ret = native_write_msr_safe(msr, low, high);
  653. }
  654. return ret;
  655. }
  656. void xen_setup_shared_info(void)
  657. {
  658. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  659. set_fixmap(FIX_PARAVIRT_BOOTMAP,
  660. xen_start_info->shared_info);
  661. HYPERVISOR_shared_info =
  662. (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
  663. } else
  664. HYPERVISOR_shared_info =
  665. (struct shared_info *)__va(xen_start_info->shared_info);
  666. #ifndef CONFIG_SMP
  667. /* In UP this is as good a place as any to set up shared info */
  668. xen_setup_vcpu_info_placement();
  669. #endif
  670. xen_setup_mfn_list_list();
  671. }
  672. /* This is called once we have the cpu_possible_map */
  673. void xen_setup_vcpu_info_placement(void)
  674. {
  675. int cpu;
  676. for_each_possible_cpu(cpu)
  677. xen_vcpu_setup(cpu);
  678. /* xen_vcpu_setup managed to place the vcpu_info within the
  679. percpu area for all cpus, so make use of it */
  680. if (have_vcpu_info_placement) {
  681. printk(KERN_INFO "Xen: using vcpu_info placement\n");
  682. pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
  683. pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
  684. pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
  685. pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
  686. pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
  687. }
  688. }
  689. static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
  690. unsigned long addr, unsigned len)
  691. {
  692. char *start, *end, *reloc;
  693. unsigned ret;
  694. start = end = reloc = NULL;
  695. #define SITE(op, x) \
  696. case PARAVIRT_PATCH(op.x): \
  697. if (have_vcpu_info_placement) { \
  698. start = (char *)xen_##x##_direct; \
  699. end = xen_##x##_direct_end; \
  700. reloc = xen_##x##_direct_reloc; \
  701. } \
  702. goto patch_site
  703. switch (type) {
  704. SITE(pv_irq_ops, irq_enable);
  705. SITE(pv_irq_ops, irq_disable);
  706. SITE(pv_irq_ops, save_fl);
  707. SITE(pv_irq_ops, restore_fl);
  708. #undef SITE
  709. patch_site:
  710. if (start == NULL || (end-start) > len)
  711. goto default_patch;
  712. ret = paravirt_patch_insns(insnbuf, len, start, end);
  713. /* Note: because reloc is assigned from something that
  714. appears to be an array, gcc assumes it's non-null,
  715. but doesn't know its relationship with start and
  716. end. */
  717. if (reloc > start && reloc < end) {
  718. int reloc_off = reloc - start;
  719. long *relocp = (long *)(insnbuf + reloc_off);
  720. long delta = start - (char *)addr;
  721. *relocp += delta;
  722. }
  723. break;
  724. default_patch:
  725. default:
  726. ret = paravirt_patch_default(type, clobbers, insnbuf,
  727. addr, len);
  728. break;
  729. }
  730. return ret;
  731. }
  732. static const struct pv_info xen_info __initdata = {
  733. .paravirt_enabled = 1,
  734. .shared_kernel_pmd = 0,
  735. .name = "Xen",
  736. };
  737. static const struct pv_init_ops xen_init_ops __initdata = {
  738. .patch = xen_patch,
  739. };
  740. static const struct pv_time_ops xen_time_ops __initdata = {
  741. .sched_clock = xen_sched_clock,
  742. };
  743. static const struct pv_cpu_ops xen_cpu_ops __initdata = {
  744. .cpuid = xen_cpuid,
  745. .set_debugreg = xen_set_debugreg,
  746. .get_debugreg = xen_get_debugreg,
  747. .clts = xen_clts,
  748. .read_cr0 = xen_read_cr0,
  749. .write_cr0 = xen_write_cr0,
  750. .read_cr4 = native_read_cr4,
  751. .read_cr4_safe = native_read_cr4_safe,
  752. .write_cr4 = xen_write_cr4,
  753. .wbinvd = native_wbinvd,
  754. .read_msr = native_read_msr_safe,
  755. .write_msr = xen_write_msr_safe,
  756. .read_tsc = native_read_tsc,
  757. .read_pmc = native_read_pmc,
  758. .iret = xen_iret,
  759. .irq_enable_sysexit = xen_sysexit,
  760. #ifdef CONFIG_X86_64
  761. .usergs_sysret32 = xen_sysret32,
  762. .usergs_sysret64 = xen_sysret64,
  763. #endif
  764. .load_tr_desc = paravirt_nop,
  765. .set_ldt = xen_set_ldt,
  766. .load_gdt = xen_load_gdt,
  767. .load_idt = xen_load_idt,
  768. .load_tls = xen_load_tls,
  769. #ifdef CONFIG_X86_64
  770. .load_gs_index = xen_load_gs_index,
  771. #endif
  772. .alloc_ldt = xen_alloc_ldt,
  773. .free_ldt = xen_free_ldt,
  774. .store_gdt = native_store_gdt,
  775. .store_idt = native_store_idt,
  776. .store_tr = xen_store_tr,
  777. .write_ldt_entry = xen_write_ldt_entry,
  778. .write_gdt_entry = xen_write_gdt_entry,
  779. .write_idt_entry = xen_write_idt_entry,
  780. .load_sp0 = xen_load_sp0,
  781. .set_iopl_mask = xen_set_iopl_mask,
  782. .io_delay = xen_io_delay,
  783. /* Xen takes care of %gs when switching to usermode for us */
  784. .swapgs = paravirt_nop,
  785. .start_context_switch = paravirt_start_context_switch,
  786. .end_context_switch = xen_end_context_switch,
  787. };
  788. static const struct pv_apic_ops xen_apic_ops __initdata = {
  789. #ifdef CONFIG_X86_LOCAL_APIC
  790. .startup_ipi_hook = paravirt_nop,
  791. #endif
  792. };
  793. static void xen_reboot(int reason)
  794. {
  795. struct sched_shutdown r = { .reason = reason };
  796. #ifdef CONFIG_SMP
  797. smp_send_stop();
  798. #endif
  799. if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
  800. BUG();
  801. }
  802. static void xen_restart(char *msg)
  803. {
  804. xen_reboot(SHUTDOWN_reboot);
  805. }
  806. static void xen_emergency_restart(void)
  807. {
  808. xen_reboot(SHUTDOWN_reboot);
  809. }
  810. static void xen_machine_halt(void)
  811. {
  812. xen_reboot(SHUTDOWN_poweroff);
  813. }
  814. static void xen_crash_shutdown(struct pt_regs *regs)
  815. {
  816. xen_reboot(SHUTDOWN_crash);
  817. }
  818. static const struct machine_ops __initdata xen_machine_ops = {
  819. .restart = xen_restart,
  820. .halt = xen_machine_halt,
  821. .power_off = xen_machine_halt,
  822. .shutdown = xen_machine_halt,
  823. .crash_shutdown = xen_crash_shutdown,
  824. .emergency_restart = xen_emergency_restart,
  825. };
  826. /*
  827. * Set up the GDT and segment registers for -fstack-protector. Until
  828. * we do this, we have to be careful not to call any stack-protected
  829. * function, which is most of the kernel.
  830. */
  831. static void __init xen_setup_stackprotector(void)
  832. {
  833. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
  834. pv_cpu_ops.load_gdt = xen_load_gdt_boot;
  835. setup_stack_canary_segment(0);
  836. switch_to_new_gdt(0);
  837. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
  838. pv_cpu_ops.load_gdt = xen_load_gdt;
  839. }
  840. /* First C function to be called on Xen boot */
  841. asmlinkage void __init xen_start_kernel(void)
  842. {
  843. pgd_t *pgd;
  844. if (!xen_start_info)
  845. return;
  846. xen_domain_type = XEN_PV_DOMAIN;
  847. /* Install Xen paravirt ops */
  848. pv_info = xen_info;
  849. pv_init_ops = xen_init_ops;
  850. pv_time_ops = xen_time_ops;
  851. pv_cpu_ops = xen_cpu_ops;
  852. pv_apic_ops = xen_apic_ops;
  853. x86_init.resources.memory_setup = xen_memory_setup;
  854. x86_init.oem.arch_setup = xen_arch_setup;
  855. x86_init.oem.banner = xen_banner;
  856. x86_init.timers.timer_init = xen_time_init;
  857. x86_init.timers.setup_percpu_clockev = x86_init_noop;
  858. x86_cpuinit.setup_percpu_clockev = x86_init_noop;
  859. x86_platform.calibrate_tsc = xen_tsc_khz;
  860. x86_platform.get_wallclock = xen_get_wallclock;
  861. x86_platform.set_wallclock = xen_set_wallclock;
  862. /*
  863. * Set up some pagetable state before starting to set any ptes.
  864. */
  865. xen_init_mmu_ops();
  866. /* Prevent unwanted bits from being set in PTEs. */
  867. __supported_pte_mask &= ~_PAGE_GLOBAL;
  868. if (!xen_initial_domain())
  869. __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
  870. __supported_pte_mask |= _PAGE_IOMAP;
  871. /*
  872. * Prevent page tables from being allocated in highmem, even
  873. * if CONFIG_HIGHPTE is enabled.
  874. */
  875. __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
  876. /* Work out if we support NX */
  877. x86_configure_nx();
  878. xen_setup_features();
  879. /* Get mfn list */
  880. if (!xen_feature(XENFEAT_auto_translated_physmap))
  881. xen_build_dynamic_phys_to_machine();
  882. /*
  883. * Set up kernel GDT and segment registers, mainly so that
  884. * -fstack-protector code can be executed.
  885. */
  886. xen_setup_stackprotector();
  887. xen_init_irq_ops();
  888. xen_init_cpuid_mask();
  889. #ifdef CONFIG_X86_LOCAL_APIC
  890. /*
  891. * set up the basic apic ops.
  892. */
  893. set_xen_basic_apic_ops();
  894. #endif
  895. if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
  896. pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
  897. pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
  898. }
  899. machine_ops = xen_machine_ops;
  900. /*
  901. * The only reliable way to retain the initial address of the
  902. * percpu gdt_page is to remember it here, so we can go and
  903. * mark it RW later, when the initial percpu area is freed.
  904. */
  905. xen_initial_gdt = &per_cpu(gdt_page, 0);
  906. xen_smp_init();
  907. pgd = (pgd_t *)xen_start_info->pt_base;
  908. /* Don't do the full vcpu_info placement stuff until we have a
  909. possible map and a non-dummy shared_info. */
  910. per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
  911. local_irq_disable();
  912. early_boot_irqs_off();
  913. xen_raw_console_write("mapping kernel into physical memory\n");
  914. pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
  915. init_mm.pgd = pgd;
  916. /* keep using Xen gdt for now; no urgent need to change it */
  917. #ifdef CONFIG_X86_32
  918. pv_info.kernel_rpl = 1;
  919. if (xen_feature(XENFEAT_supervisor_mode_kernel))
  920. pv_info.kernel_rpl = 0;
  921. #else
  922. pv_info.kernel_rpl = 0;
  923. #endif
  924. /* set the limit of our address space */
  925. xen_reserve_top();
  926. #ifdef CONFIG_X86_32
  927. /* set up basic CPUID stuff */
  928. cpu_detect(&new_cpu_data);
  929. new_cpu_data.hard_math = 1;
  930. new_cpu_data.wp_works_ok = 1;
  931. new_cpu_data.x86_capability[0] = cpuid_edx(1);
  932. #endif
  933. /* Poke various useful things into boot_params */
  934. boot_params.hdr.type_of_loader = (9 << 4) | 0;
  935. boot_params.hdr.ramdisk_image = xen_start_info->mod_start
  936. ? __pa(xen_start_info->mod_start) : 0;
  937. boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
  938. boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
  939. if (!xen_initial_domain()) {
  940. add_preferred_console("xenboot", 0, NULL);
  941. add_preferred_console("tty", 0, NULL);
  942. add_preferred_console("hvc", 0, NULL);
  943. } else {
  944. /* Make sure ACS will be enabled */
  945. pci_request_acs();
  946. }
  947. xen_raw_console_write("about to get started...\n");
  948. xen_setup_runstate_info(0);
  949. /* Start the world */
  950. #ifdef CONFIG_X86_32
  951. i386_start_kernel();
  952. #else
  953. x86_64_start_reservations((char *)__pa_symbol(&boot_params));
  954. #endif
  955. }