lguest_asm.S 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #include <linux/linkage.h>
  2. #include <linux/lguest.h>
  3. #include <asm/asm-offsets.h>
  4. #include <asm/thread_info.h>
  5. #include <asm/processor-flags.h>
  6. /*G:020 This is where we begin: we have a magic signature which the launcher
  7. * looks for. The plan is that the Linux boot protocol will be extended with a
  8. * "platform type" field which will guide us here from the normal entry point,
  9. * but for the moment this suffices. The normal boot code uses %esi for the
  10. * boot header, so we do too. We convert it to a virtual address by adding
  11. * PAGE_OFFSET, and hand it to lguest_init() as its argument (ie. %eax).
  12. *
  13. * The .section line puts this code in .init.text so it will be discarded after
  14. * boot. */
  15. .section .init.text, "ax", @progbits
  16. .ascii "GenuineLguest"
  17. /* Set up initial stack. */
  18. movl $(init_thread_union+THREAD_SIZE),%esp
  19. movl %esi, %eax
  20. addl $__PAGE_OFFSET, %eax
  21. jmp lguest_init
  22. /*G:055 We create a macro which puts the assembler code between lgstart_ and
  23. * lgend_ markers. These templates are put in the .text section: they can't be
  24. * discarded after boot as we may need to patch modules, too. */
  25. .text
  26. #define LGUEST_PATCH(name, insns...) \
  27. lgstart_##name: insns; lgend_##name:; \
  28. .globl lgstart_##name; .globl lgend_##name
  29. LGUEST_PATCH(cli, movl $0, lguest_data+LGUEST_DATA_irq_enabled)
  30. LGUEST_PATCH(sti, movl $X86_EFLAGS_IF, lguest_data+LGUEST_DATA_irq_enabled)
  31. LGUEST_PATCH(popf, movl %eax, lguest_data+LGUEST_DATA_irq_enabled)
  32. LGUEST_PATCH(pushf, movl lguest_data+LGUEST_DATA_irq_enabled, %eax)
  33. /*:*/
  34. /* These demark the EIP range where host should never deliver interrupts. */
  35. .global lguest_noirq_start
  36. .global lguest_noirq_end
  37. /*M:004 When the Host reflects a trap or injects an interrupt into the Guest,
  38. * it sets the eflags interrupt bit on the stack based on
  39. * lguest_data.irq_enabled, so the Guest iret logic does the right thing when
  40. * restoring it. However, when the Host sets the Guest up for direct traps,
  41. * such as system calls, the processor is the one to push eflags onto the
  42. * stack, and the interrupt bit will be 1 (in reality, interrupts are always
  43. * enabled in the Guest).
  44. *
  45. * This turns out to be harmless: the only trap which should happen under Linux
  46. * with interrupts disabled is Page Fault (due to our lazy mapping of vmalloc
  47. * regions), which has to be reflected through the Host anyway. If another
  48. * trap *does* go off when interrupts are disabled, the Guest will panic, and
  49. * we'll never get to this iret! :*/
  50. /*G:045 There is one final paravirt_op that the Guest implements, and glancing
  51. * at it you can see why I left it to last. It's *cool*! It's in *assembler*!
  52. *
  53. * The "iret" instruction is used to return from an interrupt or trap. The
  54. * stack looks like this:
  55. * old address
  56. * old code segment & privilege level
  57. * old processor flags ("eflags")
  58. *
  59. * The "iret" instruction pops those values off the stack and restores them all
  60. * at once. The only problem is that eflags includes the Interrupt Flag which
  61. * the Guest can't change: the CPU will simply ignore it when we do an "iret".
  62. * So we have to copy eflags from the stack to lguest_data.irq_enabled before
  63. * we do the "iret".
  64. *
  65. * There are two problems with this: firstly, we need to use a register to do
  66. * the copy and secondly, the whole thing needs to be atomic. The first
  67. * problem is easy to solve: push %eax on the stack so we can use it, and then
  68. * restore it at the end just before the real "iret".
  69. *
  70. * The second is harder: copying eflags to lguest_data.irq_enabled will turn
  71. * interrupts on before we're finished, so we could be interrupted before we
  72. * return to userspace or wherever. Our solution to this is to surround the
  73. * code with lguest_noirq_start: and lguest_noirq_end: labels. We tell the
  74. * Host that it is *never* to interrupt us there, even if interrupts seem to be
  75. * enabled. */
  76. ENTRY(lguest_iret)
  77. pushl %eax
  78. movl 12(%esp), %eax
  79. lguest_noirq_start:
  80. /* Note the %ss: segment prefix here. Normal data accesses use the
  81. * "ds" segment, but that will have already been restored for whatever
  82. * we're returning to (such as userspace): we can't trust it. The %ss:
  83. * prefix makes sure we use the stack segment, which is still valid. */
  84. movl %eax,%ss:lguest_data+LGUEST_DATA_irq_enabled
  85. popl %eax
  86. iret
  87. lguest_noirq_end: