i386_head.S 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #include <linux/linkage.h>
  2. #include <linux/lguest.h>
  3. #include <asm/lguest_hcall.h>
  4. #include <asm/asm-offsets.h>
  5. #include <asm/thread_info.h>
  6. #include <asm/processor-flags.h>
  7. /*G:020 This is where we begin: head.S notes that the boot header's platform
  8. * type field is "1" (lguest), so calls us here.
  9. *
  10. * WARNING: be very careful here! We're running at addresses equal to physical
  11. * addesses (around 0), not above PAGE_OFFSET as most code expectes
  12. * (eg. 0xC0000000). Jumps are relative, so they're OK, but we can't touch any
  13. * data.
  14. *
  15. * The .section line puts this code in .init.text so it will be discarded after
  16. * boot. */
  17. .section .init.text, "ax", @progbits
  18. ENTRY(lguest_entry)
  19. /* We make the "initialization" hypercall now to tell the Host about
  20. * us, and also find out where it put our page tables. */
  21. movl $LHCALL_LGUEST_INIT, %eax
  22. movl $lguest_data - __PAGE_OFFSET, %edx
  23. int $LGUEST_TRAP_ENTRY
  24. /* The Host put the toplevel pagetable in lguest_data.pgdir. The movsl
  25. * instruction uses %esi implicitly as the source for the copy we'
  26. * about to do. */
  27. movl lguest_data - __PAGE_OFFSET + LGUEST_DATA_pgdir, %esi
  28. /* Copy first 32 entries of page directory to __PAGE_OFFSET entries.
  29. * This means the first 128M of kernel memory will be mapped at
  30. * PAGE_OFFSET where the kernel expects to run. This will get it far
  31. * enough through boot to switch to its own pagetables. */
  32. movl $32, %ecx
  33. movl %esi, %edi
  34. addl $((__PAGE_OFFSET >> 22) * 4), %edi
  35. rep
  36. movsl
  37. /* Set up the initial stack so we can run C code. */
  38. movl $(init_thread_union+THREAD_SIZE),%esp
  39. /* Jumps are relative, and we're running __PAGE_OFFSET too low at the
  40. * moment. */
  41. jmp lguest_init+__PAGE_OFFSET
  42. /*G:055 We create a macro which puts the assembler code between lgstart_ and
  43. * lgend_ markers. These templates are put in the .text section: they can't be
  44. * discarded after boot as we may need to patch modules, too. */
  45. .text
  46. #define LGUEST_PATCH(name, insns...) \
  47. lgstart_##name: insns; lgend_##name:; \
  48. .globl lgstart_##name; .globl lgend_##name
  49. LGUEST_PATCH(cli, movl $0, lguest_data+LGUEST_DATA_irq_enabled)
  50. LGUEST_PATCH(sti, movl $X86_EFLAGS_IF, lguest_data+LGUEST_DATA_irq_enabled)
  51. LGUEST_PATCH(popf, movl %eax, lguest_data+LGUEST_DATA_irq_enabled)
  52. LGUEST_PATCH(pushf, movl lguest_data+LGUEST_DATA_irq_enabled, %eax)
  53. /*:*/
  54. /* These demark the EIP range where host should never deliver interrupts. */
  55. .global lguest_noirq_start
  56. .global lguest_noirq_end
  57. /*M:004 When the Host reflects a trap or injects an interrupt into the Guest,
  58. * it sets the eflags interrupt bit on the stack based on
  59. * lguest_data.irq_enabled, so the Guest iret logic does the right thing when
  60. * restoring it. However, when the Host sets the Guest up for direct traps,
  61. * such as system calls, the processor is the one to push eflags onto the
  62. * stack, and the interrupt bit will be 1 (in reality, interrupts are always
  63. * enabled in the Guest).
  64. *
  65. * This turns out to be harmless: the only trap which should happen under Linux
  66. * with interrupts disabled is Page Fault (due to our lazy mapping of vmalloc
  67. * regions), which has to be reflected through the Host anyway. If another
  68. * trap *does* go off when interrupts are disabled, the Guest will panic, and
  69. * we'll never get to this iret! :*/
  70. /*G:045 There is one final paravirt_op that the Guest implements, and glancing
  71. * at it you can see why I left it to last. It's *cool*! It's in *assembler*!
  72. *
  73. * The "iret" instruction is used to return from an interrupt or trap. The
  74. * stack looks like this:
  75. * old address
  76. * old code segment & privilege level
  77. * old processor flags ("eflags")
  78. *
  79. * The "iret" instruction pops those values off the stack and restores them all
  80. * at once. The only problem is that eflags includes the Interrupt Flag which
  81. * the Guest can't change: the CPU will simply ignore it when we do an "iret".
  82. * So we have to copy eflags from the stack to lguest_data.irq_enabled before
  83. * we do the "iret".
  84. *
  85. * There are two problems with this: firstly, we need to use a register to do
  86. * the copy and secondly, the whole thing needs to be atomic. The first
  87. * problem is easy to solve: push %eax on the stack so we can use it, and then
  88. * restore it at the end just before the real "iret".
  89. *
  90. * The second is harder: copying eflags to lguest_data.irq_enabled will turn
  91. * interrupts on before we're finished, so we could be interrupted before we
  92. * return to userspace or wherever. Our solution to this is to surround the
  93. * code with lguest_noirq_start: and lguest_noirq_end: labels. We tell the
  94. * Host that it is *never* to interrupt us there, even if interrupts seem to be
  95. * enabled. */
  96. ENTRY(lguest_iret)
  97. pushl %eax
  98. movl 12(%esp), %eax
  99. lguest_noirq_start:
  100. /* Note the %ss: segment prefix here. Normal data accesses use the
  101. * "ds" segment, but that will have already been restored for whatever
  102. * we're returning to (such as userspace): we can't trust it. The %ss:
  103. * prefix makes sure we use the stack segment, which is still valid. */
  104. movl %eax,%ss:lguest_data+LGUEST_DATA_irq_enabled
  105. popl %eax
  106. iret
  107. lguest_noirq_end: