enlighten.c 28 KB

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