i386_head.S 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 Our story starts with the kernel booting into startup_32 in
  8. * arch/x86/kernel/head_32.S. It expects a boot header, which is created by
  9. * the bootloader (the Launcher in our case).
  10. *
  11. * The startup_32 function does very little: it clears the uninitialized global
  12. * C variables which we expect to be zero (ie. BSS) and then copies the boot
  13. * header and kernel command line somewhere safe. Finally it checks the
  14. * 'hardware_subarch' field. This was introduced in 2.6.24 for lguest and Xen:
  15. * if it's set to '1' (lguest's assigned number), then it calls us here.
  16. *
  17. * WARNING: be very careful here! We're running at addresses equal to physical
  18. * addesses (around 0), not above PAGE_OFFSET as most code expectes
  19. * (eg. 0xC0000000). Jumps are relative, so they're OK, but we can't touch any
  20. * data without remembering to subtract __PAGE_OFFSET!
  21. *
  22. * The .section line puts this code in .init.text so it will be discarded after
  23. * boot. */
  24. .section .init.text, "ax", @progbits
  25. ENTRY(lguest_entry)
  26. /* We make the "initialization" hypercall now to tell the Host about
  27. * us, and also find out where it put our page tables. */
  28. movl $LHCALL_LGUEST_INIT, %eax
  29. movl $lguest_data - __PAGE_OFFSET, %ebx
  30. .byte 0x0f,0x01,0xc1 /* KVM_HYPERCALL */
  31. /* Set up the initial stack so we can run C code. */
  32. movl $(init_thread_union+THREAD_SIZE),%esp
  33. /* Jumps are relative, and we're running __PAGE_OFFSET too low at the
  34. * moment. */
  35. jmp lguest_init+__PAGE_OFFSET
  36. /*G:055 We create a macro which puts the assembler code between lgstart_ and
  37. * lgend_ markers. These templates are put in the .text section: they can't be
  38. * discarded after boot as we may need to patch modules, too. */
  39. .text
  40. #define LGUEST_PATCH(name, insns...) \
  41. lgstart_##name: insns; lgend_##name:; \
  42. .globl lgstart_##name; .globl lgend_##name
  43. LGUEST_PATCH(cli, movl $0, lguest_data+LGUEST_DATA_irq_enabled)
  44. LGUEST_PATCH(pushf, movl lguest_data+LGUEST_DATA_irq_enabled, %eax)
  45. /*G:033 But using those wrappers is inefficient (we'll see why that doesn't
  46. * matter for save_fl and irq_disable later). If we write our routines
  47. * carefully in assembler, we can avoid clobbering any registers and avoid
  48. * jumping through the wrapper functions.
  49. *
  50. * I skipped over our first piece of assembler, but this one is worth studying
  51. * in a bit more detail so I'll describe in easy stages. First, the routine
  52. * to enable interrupts: */
  53. ENTRY(lg_irq_enable)
  54. /* The reverse of irq_disable, this sets lguest_data.irq_enabled to
  55. * X86_EFLAGS_IF (ie. "Interrupts enabled"). */
  56. movl $X86_EFLAGS_IF, lguest_data+LGUEST_DATA_irq_enabled
  57. /* But now we need to check if the Host wants to know: there might have
  58. * been interrupts waiting to be delivered, in which case it will have
  59. * set lguest_data.irq_pending to X86_EFLAGS_IF. If it's not zero, we
  60. * jump to send_interrupts, otherwise we're done. */
  61. testl $0, lguest_data+LGUEST_DATA_irq_pending
  62. jnz send_interrupts
  63. /* One cool thing about x86 is that you can do many things without using
  64. * a register. In this case, the normal path hasn't needed to save or
  65. * restore any registers at all! */
  66. ret
  67. send_interrupts:
  68. /* OK, now we need a register: eax is used for the hypercall number,
  69. * which is LHCALL_SEND_INTERRUPTS.
  70. *
  71. * We used not to bother with this pending detection at all, which was
  72. * much simpler. Sooner or later the Host would realize it had to
  73. * send us an interrupt. But that turns out to make performance 7
  74. * times worse on a simple tcp benchmark. So now we do this the hard
  75. * way. */
  76. pushl %eax
  77. movl $LHCALL_SEND_INTERRUPTS, %eax
  78. /* This is a vmcall instruction (same thing that KVM uses). Older
  79. * assembler versions might not know the "vmcall" instruction, so we
  80. * create one manually here. */
  81. .byte 0x0f,0x01,0xc1 /* KVM_HYPERCALL */
  82. popl %eax
  83. ret
  84. /* Finally, the "popf" or "restore flags" routine. The %eax register holds the
  85. * flags (in practice, either X86_EFLAGS_IF or 0): if it's X86_EFLAGS_IF we're
  86. * enabling interrupts again, if it's 0 we're leaving them off. */
  87. ENTRY(lg_restore_fl)
  88. /* This is just "lguest_data.irq_enabled = flags;" */
  89. movl %eax, lguest_data+LGUEST_DATA_irq_enabled
  90. /* Now, if the %eax value has enabled interrupts and
  91. * lguest_data.irq_pending is set, we want to tell the Host so it can
  92. * deliver any outstanding interrupts. Fortunately, both values will
  93. * be X86_EFLAGS_IF (ie. 512) in that case, and the "testl"
  94. * instruction will AND them together for us. If both are set, we
  95. * jump to send_interrupts. */
  96. testl lguest_data+LGUEST_DATA_irq_pending, %eax
  97. jnz send_interrupts
  98. /* Again, the normal path has used no extra registers. Clever, huh? */
  99. ret
  100. /* These demark the EIP range where host should never deliver interrupts. */
  101. .global lguest_noirq_start
  102. .global lguest_noirq_end
  103. /*M:004 When the Host reflects a trap or injects an interrupt into the Guest,
  104. * it sets the eflags interrupt bit on the stack based on
  105. * lguest_data.irq_enabled, so the Guest iret logic does the right thing when
  106. * restoring it. However, when the Host sets the Guest up for direct traps,
  107. * such as system calls, the processor is the one to push eflags onto the
  108. * stack, and the interrupt bit will be 1 (in reality, interrupts are always
  109. * enabled in the Guest).
  110. *
  111. * This turns out to be harmless: the only trap which should happen under Linux
  112. * with interrupts disabled is Page Fault (due to our lazy mapping of vmalloc
  113. * regions), which has to be reflected through the Host anyway. If another
  114. * trap *does* go off when interrupts are disabled, the Guest will panic, and
  115. * we'll never get to this iret! :*/
  116. /*G:045 There is one final paravirt_op that the Guest implements, and glancing
  117. * at it you can see why I left it to last. It's *cool*! It's in *assembler*!
  118. *
  119. * The "iret" instruction is used to return from an interrupt or trap. The
  120. * stack looks like this:
  121. * old address
  122. * old code segment & privilege level
  123. * old processor flags ("eflags")
  124. *
  125. * The "iret" instruction pops those values off the stack and restores them all
  126. * at once. The only problem is that eflags includes the Interrupt Flag which
  127. * the Guest can't change: the CPU will simply ignore it when we do an "iret".
  128. * So we have to copy eflags from the stack to lguest_data.irq_enabled before
  129. * we do the "iret".
  130. *
  131. * There are two problems with this: firstly, we need to use a register to do
  132. * the copy and secondly, the whole thing needs to be atomic. The first
  133. * problem is easy to solve: push %eax on the stack so we can use it, and then
  134. * restore it at the end just before the real "iret".
  135. *
  136. * The second is harder: copying eflags to lguest_data.irq_enabled will turn
  137. * interrupts on before we're finished, so we could be interrupted before we
  138. * return to userspace or wherever. Our solution to this is to surround the
  139. * code with lguest_noirq_start: and lguest_noirq_end: labels. We tell the
  140. * Host that it is *never* to interrupt us there, even if interrupts seem to be
  141. * enabled. */
  142. ENTRY(lguest_iret)
  143. pushl %eax
  144. movl 12(%esp), %eax
  145. lguest_noirq_start:
  146. /* Note the %ss: segment prefix here. Normal data accesses use the
  147. * "ds" segment, but that will have already been restored for whatever
  148. * we're returning to (such as userspace): we can't trust it. The %ss:
  149. * prefix makes sure we use the stack segment, which is still valid. */
  150. movl %eax,%ss:lguest_data+LGUEST_DATA_irq_enabled
  151. popl %eax
  152. iret
  153. lguest_noirq_end: