interrupts_and_traps.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /*P:800 Interrupts (traps) are complicated enough to earn their own file.
  2. * There are three classes of interrupts:
  3. *
  4. * 1) Real hardware interrupts which occur while we're running the Guest,
  5. * 2) Interrupts for virtual devices attached to the Guest, and
  6. * 3) Traps and faults from the Guest.
  7. *
  8. * Real hardware interrupts must be delivered to the Host, not the Guest.
  9. * Virtual interrupts must be delivered to the Guest, but we make them look
  10. * just like real hardware would deliver them. Traps from the Guest can be set
  11. * up to go directly back into the Guest, but sometimes the Host wants to see
  12. * them first, so we also have a way of "reflecting" them into the Guest as if
  13. * they had been delivered to it directly. :*/
  14. #include <linux/uaccess.h>
  15. #include "lg.h"
  16. /* The address of the interrupt handler is split into two bits: */
  17. static unsigned long idt_address(u32 lo, u32 hi)
  18. {
  19. return (lo & 0x0000FFFF) | (hi & 0xFFFF0000);
  20. }
  21. /* The "type" of the interrupt handler is a 4 bit field: we only support a
  22. * couple of types. */
  23. static int idt_type(u32 lo, u32 hi)
  24. {
  25. return (hi >> 8) & 0xF;
  26. }
  27. /* An IDT entry can't be used unless the "present" bit is set. */
  28. static int idt_present(u32 lo, u32 hi)
  29. {
  30. return (hi & 0x8000);
  31. }
  32. /* We need a helper to "push" a value onto the Guest's stack, since that's a
  33. * big part of what delivering an interrupt does. */
  34. static void push_guest_stack(struct lguest *lg, unsigned long *gstack, u32 val)
  35. {
  36. /* Stack grows upwards: move stack then write value. */
  37. *gstack -= 4;
  38. lgwrite_u32(lg, *gstack, val);
  39. }
  40. /*H:210 The set_guest_interrupt() routine actually delivers the interrupt or
  41. * trap. The mechanics of delivering traps and interrupts to the Guest are the
  42. * same, except some traps have an "error code" which gets pushed onto the
  43. * stack as well: the caller tells us if this is one.
  44. *
  45. * "lo" and "hi" are the two parts of the Interrupt Descriptor Table for this
  46. * interrupt or trap. It's split into two parts for traditional reasons: gcc
  47. * on i386 used to be frightened by 64 bit numbers.
  48. *
  49. * We set up the stack just like the CPU does for a real interrupt, so it's
  50. * identical for the Guest (and the standard "iret" instruction will undo
  51. * it). */
  52. static void set_guest_interrupt(struct lguest *lg, u32 lo, u32 hi, int has_err)
  53. {
  54. unsigned long gstack;
  55. u32 eflags, ss, irq_enable;
  56. /* There are two cases for interrupts: one where the Guest is already
  57. * in the kernel, and a more complex one where the Guest is in
  58. * userspace. We check the privilege level to find out. */
  59. if ((lg->regs->ss&0x3) != GUEST_PL) {
  60. /* The Guest told us their kernel stack with the SET_STACK
  61. * hypercall: both the virtual address and the segment */
  62. gstack = guest_pa(lg, lg->esp1);
  63. ss = lg->ss1;
  64. /* We push the old stack segment and pointer onto the new
  65. * stack: when the Guest does an "iret" back from the interrupt
  66. * handler the CPU will notice they're dropping privilege
  67. * levels and expect these here. */
  68. push_guest_stack(lg, &gstack, lg->regs->ss);
  69. push_guest_stack(lg, &gstack, lg->regs->esp);
  70. } else {
  71. /* We're staying on the same Guest (kernel) stack. */
  72. gstack = guest_pa(lg, lg->regs->esp);
  73. ss = lg->regs->ss;
  74. }
  75. /* Remember that we never let the Guest actually disable interrupts, so
  76. * the "Interrupt Flag" bit is always set. We copy that bit from the
  77. * Guest's "irq_enabled" field into the eflags word: the Guest copies
  78. * it back in "lguest_iret". */
  79. eflags = lg->regs->eflags;
  80. if (get_user(irq_enable, &lg->lguest_data->irq_enabled) == 0
  81. && !(irq_enable & X86_EFLAGS_IF))
  82. eflags &= ~X86_EFLAGS_IF;
  83. /* An interrupt is expected to push three things on the stack: the old
  84. * "eflags" word, the old code segment, and the old instruction
  85. * pointer. */
  86. push_guest_stack(lg, &gstack, eflags);
  87. push_guest_stack(lg, &gstack, lg->regs->cs);
  88. push_guest_stack(lg, &gstack, lg->regs->eip);
  89. /* For the six traps which supply an error code, we push that, too. */
  90. if (has_err)
  91. push_guest_stack(lg, &gstack, lg->regs->errcode);
  92. /* Now we've pushed all the old state, we change the stack, the code
  93. * segment and the address to execute. */
  94. lg->regs->ss = ss;
  95. lg->regs->esp = gstack + lg->page_offset;
  96. lg->regs->cs = (__KERNEL_CS|GUEST_PL);
  97. lg->regs->eip = idt_address(lo, hi);
  98. /* There are two kinds of interrupt handlers: 0xE is an "interrupt
  99. * gate" which expects interrupts to be disabled on entry. */
  100. if (idt_type(lo, hi) == 0xE)
  101. if (put_user(0, &lg->lguest_data->irq_enabled))
  102. kill_guest(lg, "Disabling interrupts");
  103. }
  104. /*H:200
  105. * Virtual Interrupts.
  106. *
  107. * maybe_do_interrupt() gets called before every entry to the Guest, to see if
  108. * we should divert the Guest to running an interrupt handler. */
  109. void maybe_do_interrupt(struct lguest *lg)
  110. {
  111. unsigned int irq;
  112. DECLARE_BITMAP(blk, LGUEST_IRQS);
  113. struct desc_struct *idt;
  114. /* If the Guest hasn't even initialized yet, we can do nothing. */
  115. if (!lg->lguest_data)
  116. return;
  117. /* Take our "irqs_pending" array and remove any interrupts the Guest
  118. * wants blocked: the result ends up in "blk". */
  119. if (copy_from_user(&blk, lg->lguest_data->blocked_interrupts,
  120. sizeof(blk)))
  121. return;
  122. bitmap_andnot(blk, lg->irqs_pending, blk, LGUEST_IRQS);
  123. /* Find the first interrupt. */
  124. irq = find_first_bit(blk, LGUEST_IRQS);
  125. /* None? Nothing to do */
  126. if (irq >= LGUEST_IRQS)
  127. return;
  128. /* They may be in the middle of an iret, where they asked us never to
  129. * deliver interrupts. */
  130. if (lg->regs->eip >= lg->noirq_start && lg->regs->eip < lg->noirq_end)
  131. return;
  132. /* If they're halted, interrupts restart them. */
  133. if (lg->halted) {
  134. /* Re-enable interrupts. */
  135. if (put_user(X86_EFLAGS_IF, &lg->lguest_data->irq_enabled))
  136. kill_guest(lg, "Re-enabling interrupts");
  137. lg->halted = 0;
  138. } else {
  139. /* Otherwise we check if they have interrupts disabled. */
  140. u32 irq_enabled;
  141. if (get_user(irq_enabled, &lg->lguest_data->irq_enabled))
  142. irq_enabled = 0;
  143. if (!irq_enabled)
  144. return;
  145. }
  146. /* Look at the IDT entry the Guest gave us for this interrupt. The
  147. * first 32 (FIRST_EXTERNAL_VECTOR) entries are for traps, so we skip
  148. * over them. */
  149. idt = &lg->idt[FIRST_EXTERNAL_VECTOR+irq];
  150. /* If they don't have a handler (yet?), we just ignore it */
  151. if (idt_present(idt->a, idt->b)) {
  152. /* OK, mark it no longer pending and deliver it. */
  153. clear_bit(irq, lg->irqs_pending);
  154. /* set_guest_interrupt() takes the interrupt descriptor and a
  155. * flag to say whether this interrupt pushes an error code onto
  156. * the stack as well: virtual interrupts never do. */
  157. set_guest_interrupt(lg, idt->a, idt->b, 0);
  158. }
  159. /* Every time we deliver an interrupt, we update the timestamp in the
  160. * Guest's lguest_data struct. It would be better for the Guest if we
  161. * did this more often, but it can actually be quite slow: doing it
  162. * here is a compromise which means at least it gets updated every
  163. * timer interrupt. */
  164. write_timestamp(lg);
  165. }
  166. /*H:220 Now we've got the routines to deliver interrupts, delivering traps
  167. * like page fault is easy. The only trick is that Intel decided that some
  168. * traps should have error codes: */
  169. static int has_err(unsigned int trap)
  170. {
  171. return (trap == 8 || (trap >= 10 && trap <= 14) || trap == 17);
  172. }
  173. /* deliver_trap() returns true if it could deliver the trap. */
  174. int deliver_trap(struct lguest *lg, unsigned int num)
  175. {
  176. /* Trap numbers are always 8 bit, but we set an impossible trap number
  177. * for traps inside the Switcher, so check that here. */
  178. if (num >= ARRAY_SIZE(lg->idt))
  179. return 0;
  180. /* Early on the Guest hasn't set the IDT entries (or maybe it put a
  181. * bogus one in): if we fail here, the Guest will be killed. */
  182. if (!idt_present(lg->idt[num].a, lg->idt[num].b))
  183. return 0;
  184. set_guest_interrupt(lg, lg->idt[num].a, lg->idt[num].b, has_err(num));
  185. return 1;
  186. }
  187. /*H:250 Here's the hard part: returning to the Host every time a trap happens
  188. * and then calling deliver_trap() and re-entering the Guest is slow.
  189. * Particularly because Guest userspace system calls are traps (trap 128).
  190. *
  191. * So we'd like to set up the IDT to tell the CPU to deliver traps directly
  192. * into the Guest. This is possible, but the complexities cause the size of
  193. * this file to double! However, 150 lines of code is worth writing for taking
  194. * system calls down from 1750ns to 270ns. Plus, if lguest didn't do it, all
  195. * the other hypervisors would tease it.
  196. *
  197. * This routine determines if a trap can be delivered directly. */
  198. static int direct_trap(const struct lguest *lg,
  199. const struct desc_struct *trap,
  200. unsigned int num)
  201. {
  202. /* Hardware interrupts don't go to the Guest at all (except system
  203. * call). */
  204. if (num >= FIRST_EXTERNAL_VECTOR && num != SYSCALL_VECTOR)
  205. return 0;
  206. /* The Host needs to see page faults (for shadow paging and to save the
  207. * fault address), general protection faults (in/out emulation) and
  208. * device not available (TS handling), and of course, the hypercall
  209. * trap. */
  210. if (num == 14 || num == 13 || num == 7 || num == LGUEST_TRAP_ENTRY)
  211. return 0;
  212. /* Only trap gates (type 15) can go direct to the Guest. Interrupt
  213. * gates (type 14) disable interrupts as they are entered, which we
  214. * never let the Guest do. Not present entries (type 0x0) also can't
  215. * go direct, of course 8) */
  216. return idt_type(trap->a, trap->b) == 0xF;
  217. }
  218. /*:*/
  219. /*M:005 The Guest has the ability to turn its interrupt gates into trap gates,
  220. * if it is careful. The Host will let trap gates can go directly to the
  221. * Guest, but the Guest needs the interrupts atomically disabled for an
  222. * interrupt gate. It can do this by pointing the trap gate at instructions
  223. * within noirq_start and noirq_end, where it can safely disable interrupts. */
  224. /*M:006 The Guests do not use the sysenter (fast system call) instruction,
  225. * because it's hardcoded to enter privilege level 0 and so can't go direct.
  226. * It's about twice as fast as the older "int 0x80" system call, so it might
  227. * still be worthwhile to handle it in the Switcher and lcall down to the
  228. * Guest. The sysenter semantics are hairy tho: search for that keyword in
  229. * entry.S :*/
  230. /*H:260 When we make traps go directly into the Guest, we need to make sure
  231. * the kernel stack is valid (ie. mapped in the page tables). Otherwise, the
  232. * CPU trying to deliver the trap will fault while trying to push the interrupt
  233. * words on the stack: this is called a double fault, and it forces us to kill
  234. * the Guest.
  235. *
  236. * Which is deeply unfair, because (literally!) it wasn't the Guests' fault. */
  237. void pin_stack_pages(struct lguest *lg)
  238. {
  239. unsigned int i;
  240. /* Depending on the CONFIG_4KSTACKS option, the Guest can have one or
  241. * two pages of stack space. */
  242. for (i = 0; i < lg->stack_pages; i++)
  243. /* The stack grows *upwards*, so the address we're given is the
  244. * start of the page after the kernel stack. Subtract one to
  245. * get back onto the first stack page, and keep subtracting to
  246. * get to the rest of the stack pages. */
  247. pin_page(lg, lg->esp1 - 1 - i * PAGE_SIZE);
  248. }
  249. /* Direct traps also mean that we need to know whenever the Guest wants to use
  250. * a different kernel stack, so we can change the IDT entries to use that
  251. * stack. The IDT entries expect a virtual address, so unlike most addresses
  252. * the Guest gives us, the "esp" (stack pointer) value here is virtual, not
  253. * physical.
  254. *
  255. * In Linux each process has its own kernel stack, so this happens a lot: we
  256. * change stacks on each context switch. */
  257. void guest_set_stack(struct lguest *lg, u32 seg, u32 esp, unsigned int pages)
  258. {
  259. /* You are not allowd have a stack segment with privilege level 0: bad
  260. * Guest! */
  261. if ((seg & 0x3) != GUEST_PL)
  262. kill_guest(lg, "bad stack segment %i", seg);
  263. /* We only expect one or two stack pages. */
  264. if (pages > 2)
  265. kill_guest(lg, "bad stack pages %u", pages);
  266. /* Save where the stack is, and how many pages */
  267. lg->ss1 = seg;
  268. lg->esp1 = esp;
  269. lg->stack_pages = pages;
  270. /* Make sure the new stack pages are mapped */
  271. pin_stack_pages(lg);
  272. }
  273. /* All this reference to mapping stacks leads us neatly into the other complex
  274. * part of the Host: page table handling. */
  275. /*H:235 This is the routine which actually checks the Guest's IDT entry and
  276. * transfers it into our entry in "struct lguest": */
  277. static void set_trap(struct lguest *lg, struct desc_struct *trap,
  278. unsigned int num, u32 lo, u32 hi)
  279. {
  280. u8 type = idt_type(lo, hi);
  281. /* We zero-out a not-present entry */
  282. if (!idt_present(lo, hi)) {
  283. trap->a = trap->b = 0;
  284. return;
  285. }
  286. /* We only support interrupt and trap gates. */
  287. if (type != 0xE && type != 0xF)
  288. kill_guest(lg, "bad IDT type %i", type);
  289. /* We only copy the handler address, present bit, privilege level and
  290. * type. The privilege level controls where the trap can be triggered
  291. * manually with an "int" instruction. This is usually GUEST_PL,
  292. * except for system calls which userspace can use. */
  293. trap->a = ((__KERNEL_CS|GUEST_PL)<<16) | (lo&0x0000FFFF);
  294. trap->b = (hi&0xFFFFEF00);
  295. }
  296. /*H:230 While we're here, dealing with delivering traps and interrupts to the
  297. * Guest, we might as well complete the picture: how the Guest tells us where
  298. * it wants them to go. This would be simple, except making traps fast
  299. * requires some tricks.
  300. *
  301. * We saw the Guest setting Interrupt Descriptor Table (IDT) entries with the
  302. * LHCALL_LOAD_IDT_ENTRY hypercall before: that comes here. */
  303. void load_guest_idt_entry(struct lguest *lg, unsigned int num, u32 lo, u32 hi)
  304. {
  305. /* Guest never handles: NMI, doublefault, spurious interrupt or
  306. * hypercall. We ignore when it tries to set them. */
  307. if (num == 2 || num == 8 || num == 15 || num == LGUEST_TRAP_ENTRY)
  308. return;
  309. /* Mark the IDT as changed: next time the Guest runs we'll know we have
  310. * to copy this again. */
  311. lg->changed |= CHANGED_IDT;
  312. /* The IDT which we keep in "struct lguest" only contains 32 entries
  313. * for the traps and LGUEST_IRQS (32) entries for interrupts. We
  314. * ignore attempts to set handlers for higher interrupt numbers, except
  315. * for the system call "interrupt" at 128: we have a special IDT entry
  316. * for that. */
  317. if (num < ARRAY_SIZE(lg->idt))
  318. set_trap(lg, &lg->idt[num], num, lo, hi);
  319. else if (num == SYSCALL_VECTOR)
  320. set_trap(lg, &lg->syscall_idt, num, lo, hi);
  321. }
  322. /* The default entry for each interrupt points into the Switcher routines which
  323. * simply return to the Host. The run_guest() loop will then call
  324. * deliver_trap() to bounce it back into the Guest. */
  325. static void default_idt_entry(struct desc_struct *idt,
  326. int trap,
  327. const unsigned long handler)
  328. {
  329. /* A present interrupt gate. */
  330. u32 flags = 0x8e00;
  331. /* Set the privilege level on the entry for the hypercall: this allows
  332. * the Guest to use the "int" instruction to trigger it. */
  333. if (trap == LGUEST_TRAP_ENTRY)
  334. flags |= (GUEST_PL << 13);
  335. /* Now pack it into the IDT entry in its weird format. */
  336. idt->a = (LGUEST_CS<<16) | (handler&0x0000FFFF);
  337. idt->b = (handler&0xFFFF0000) | flags;
  338. }
  339. /* When the Guest first starts, we put default entries into the IDT. */
  340. void setup_default_idt_entries(struct lguest_ro_state *state,
  341. const unsigned long *def)
  342. {
  343. unsigned int i;
  344. for (i = 0; i < ARRAY_SIZE(state->guest_idt); i++)
  345. default_idt_entry(&state->guest_idt[i], i, def[i]);
  346. }
  347. /*H:240 We don't use the IDT entries in the "struct lguest" directly, instead
  348. * we copy them into the IDT which we've set up for Guests on this CPU, just
  349. * before we run the Guest. This routine does that copy. */
  350. void copy_traps(const struct lguest *lg, struct desc_struct *idt,
  351. const unsigned long *def)
  352. {
  353. unsigned int i;
  354. /* We can simply copy the direct traps, otherwise we use the default
  355. * ones in the Switcher: they will return to the Host. */
  356. for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++) {
  357. if (direct_trap(lg, &lg->idt[i], i))
  358. idt[i] = lg->idt[i];
  359. else
  360. default_idt_entry(&idt[i], i, def[i]);
  361. }
  362. /* Don't forget the system call trap! The IDT entries for other
  363. * interupts never change, so no need to copy them. */
  364. i = SYSCALL_VECTOR;
  365. if (direct_trap(lg, &lg->syscall_idt, i))
  366. idt[i] = lg->syscall_idt;
  367. else
  368. default_idt_entry(&idt[i], i, def[i]);
  369. }
  370. void guest_set_clockevent(struct lguest *lg, unsigned long delta)
  371. {
  372. ktime_t expires;
  373. if (unlikely(delta == 0)) {
  374. /* Clock event device is shutting down. */
  375. hrtimer_cancel(&lg->hrt);
  376. return;
  377. }
  378. expires = ktime_add_ns(ktime_get_real(), delta);
  379. hrtimer_start(&lg->hrt, expires, HRTIMER_MODE_ABS);
  380. }
  381. static enum hrtimer_restart clockdev_fn(struct hrtimer *timer)
  382. {
  383. struct lguest *lg = container_of(timer, struct lguest, hrt);
  384. set_bit(0, lg->irqs_pending);
  385. if (lg->halted)
  386. wake_up_process(lg->tsk);
  387. return HRTIMER_NORESTART;
  388. }
  389. void init_clockdev(struct lguest *lg)
  390. {
  391. hrtimer_init(&lg->hrt, CLOCK_REALTIME, HRTIMER_MODE_ABS);
  392. lg->hrt.function = clockdev_fn;
  393. }