switcher.S 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /*P:900 This is the Switcher: code which sits at 0xFFC00000 to do the low-level
  2. * Guest<->Host switch. It is as simple as it can be made, but it's naturally
  3. * very specific to x86.
  4. *
  5. * You have now completed Preparation. If this has whet your appetite; if you
  6. * are feeling invigorated and refreshed then the next, more challenging stage
  7. * can be found in "make Guest". :*/
  8. /*S:100
  9. * Welcome to the Switcher itself!
  10. *
  11. * This file contains the low-level code which changes the CPU to run the Guest
  12. * code, and returns to the Host when something happens. Understand this, and
  13. * you understand the heart of our journey.
  14. *
  15. * Because this is in assembler rather than C, our tale switches from prose to
  16. * verse. First I tried limericks:
  17. *
  18. * There once was an eax reg,
  19. * To which our pointer was fed,
  20. * It needed an add,
  21. * Which asm-offsets.h had
  22. * But this limerick is hurting my head.
  23. *
  24. * Next I tried haikus, but fitting the required reference to the seasons in
  25. * every stanza was quickly becoming tiresome:
  26. *
  27. * The %eax reg
  28. * Holds "struct lguest_pages" now:
  29. * Cherry blossoms fall.
  30. *
  31. * Then I started with Heroic Verse, but the rhyming requirement leeched away
  32. * the content density and led to some uniquely awful oblique rhymes:
  33. *
  34. * These constants are coming from struct offsets
  35. * For use within the asm switcher text.
  36. *
  37. * Finally, I settled for something between heroic hexameter, and normal prose
  38. * with inappropriate linebreaks. Anyway, it aint no Shakespeare.
  39. */
  40. // Not all kernel headers work from assembler
  41. // But these ones are needed: the ENTRY() define
  42. // And constants extracted from struct offsets
  43. // To avoid magic numbers and breakage:
  44. // Should they change the compiler can't save us
  45. // Down here in the depths of assembler code.
  46. #include <linux/linkage.h>
  47. #include <asm/asm-offsets.h>
  48. #include <asm/page.h>
  49. #include "lg.h"
  50. // We mark the start of the code to copy
  51. // It's placed in .text tho it's never run here
  52. // You'll see the trick macro at the end
  53. // Which interleaves data and text to effect.
  54. .text
  55. ENTRY(start_switcher_text)
  56. // When we reach switch_to_guest we have just left
  57. // The safe and comforting shores of C code
  58. // %eax has the "struct lguest_pages" to use
  59. // Where we save state and still see it from the Guest
  60. // And %ebx holds the Guest shadow pagetable:
  61. // Once set we have truly left Host behind.
  62. ENTRY(switch_to_guest)
  63. // We told gcc all its regs could fade,
  64. // Clobbered by our journey into the Guest
  65. // We could have saved them, if we tried
  66. // But time is our master and cycles count.
  67. // Segment registers must be saved for the Host
  68. // We push them on the Host stack for later
  69. pushl %es
  70. pushl %ds
  71. pushl %gs
  72. pushl %fs
  73. // But the compiler is fickle, and heeds
  74. // No warning of %ebp clobbers
  75. // When frame pointers are used. That register
  76. // Must be saved and restored or chaos strikes.
  77. pushl %ebp
  78. // The Host's stack is done, now save it away
  79. // In our "struct lguest_pages" at offset
  80. // Distilled into asm-offsets.h
  81. movl %esp, LGUEST_PAGES_host_sp(%eax)
  82. // All saved and there's now five steps before us:
  83. // Stack, GDT, IDT, TSS
  84. // And last of all the page tables are flipped.
  85. // Yet beware that our stack pointer must be
  86. // Always valid lest an NMI hits
  87. // %edx does the duty here as we juggle
  88. // %eax is lguest_pages: our stack lies within.
  89. movl %eax, %edx
  90. addl $LGUEST_PAGES_regs, %edx
  91. movl %edx, %esp
  92. // The Guest's GDT we so carefully
  93. // Placed in the "struct lguest_pages" before
  94. lgdt LGUEST_PAGES_guest_gdt_desc(%eax)
  95. // The Guest's IDT we did partially
  96. // Move to the "struct lguest_pages" as well.
  97. lidt LGUEST_PAGES_guest_idt_desc(%eax)
  98. // The TSS entry which controls traps
  99. // Must be loaded up with "ltr" now:
  100. // For after we switch over our page tables
  101. // It (as the rest) will be writable no more.
  102. // (The GDT entry TSS needs
  103. // Changes type when we load it: damn Intel!)
  104. movl $(GDT_ENTRY_TSS*8), %edx
  105. ltr %dx
  106. // Look back now, before we take this last step!
  107. // The Host's TSS entry was also marked used;
  108. // Let's clear it again, ere we return.
  109. // The GDT descriptor of the Host
  110. // Points to the table after two "size" bytes
  111. movl (LGUEST_PAGES_host_gdt_desc+2)(%eax), %edx
  112. // Clear the type field of "used" (byte 5, bit 2)
  113. andb $0xFD, (GDT_ENTRY_TSS*8 + 5)(%edx)
  114. // Once our page table's switched, the Guest is live!
  115. // The Host fades as we run this final step.
  116. // Our "struct lguest_pages" is now read-only.
  117. movl %ebx, %cr3
  118. // The page table change did one tricky thing:
  119. // The Guest's register page has been mapped
  120. // Writable onto our %esp (stack) --
  121. // We can simply pop off all Guest regs.
  122. popl %ebx
  123. popl %ecx
  124. popl %edx
  125. popl %esi
  126. popl %edi
  127. popl %ebp
  128. popl %gs
  129. popl %eax
  130. popl %fs
  131. popl %ds
  132. popl %es
  133. // Near the base of the stack lurk two strange fields
  134. // Which we fill as we exit the Guest
  135. // These are the trap number and its error
  136. // We can simply step past them on our way.
  137. addl $8, %esp
  138. // The last five stack slots hold return address
  139. // And everything needed to change privilege
  140. // Into the Guest privilege level of 1,
  141. // And the stack where the Guest had last left it.
  142. // Interrupts are turned back on: we are Guest.
  143. iret
  144. // There are two paths where we switch to the Host
  145. // So we put the routine in a macro.
  146. // We are on our way home, back to the Host
  147. // Interrupted out of the Guest, we come here.
  148. #define SWITCH_TO_HOST \
  149. /* We save the Guest state: all registers first \
  150. * Laid out just as "struct lguest_regs" defines */ \
  151. pushl %es; \
  152. pushl %ds; \
  153. pushl %fs; \
  154. pushl %eax; \
  155. pushl %gs; \
  156. pushl %ebp; \
  157. pushl %edi; \
  158. pushl %esi; \
  159. pushl %edx; \
  160. pushl %ecx; \
  161. pushl %ebx; \
  162. /* Our stack and our code are using segments \
  163. * Set in the TSS and IDT \
  164. * Yet if we were to touch data we'd use \
  165. * Whatever data segment the Guest had. \
  166. * Load the lguest ds segment for now. */ \
  167. movl $(LGUEST_DS), %eax; \
  168. movl %eax, %ds; \
  169. /* So where are we? Which CPU, which struct? \
  170. * The stack is our clue: our TSS starts \
  171. * It at the end of "struct lguest_pages". \
  172. * Or we may have stumbled while restoring \
  173. * Our Guest segment regs while in switch_to_guest, \
  174. * The fault pushed atop that part-unwound stack. \
  175. * If we round the stack down to the page start \
  176. * We're at the start of "struct lguest_pages". */ \
  177. movl %esp, %eax; \
  178. andl $(~(1 << PAGE_SHIFT - 1)), %eax; \
  179. /* Save our trap number: the switch will obscure it \
  180. * (The Guest regs are not mapped here in the Host) \
  181. * %ebx holds it safe for deliver_to_host */ \
  182. movl LGUEST_PAGES_regs_trapnum(%eax), %ebx; \
  183. /* The Host GDT, IDT and stack! \
  184. * All these lie safely hidden from the Guest: \
  185. * We must return to the Host page tables \
  186. * (Hence that was saved in struct lguest_pages) */ \
  187. movl LGUEST_PAGES_host_cr3(%eax), %edx; \
  188. movl %edx, %cr3; \
  189. /* As before, when we looked back at the Host \
  190. * As we left and marked TSS unused \
  191. * So must we now for the Guest left behind. */ \
  192. andb $0xFD, (LGUEST_PAGES_guest_gdt+GDT_ENTRY_TSS*8+5)(%eax); \
  193. /* Switch to Host's GDT, IDT. */ \
  194. lgdt LGUEST_PAGES_host_gdt_desc(%eax); \
  195. lidt LGUEST_PAGES_host_idt_desc(%eax); \
  196. /* Restore the Host's stack where it's saved regs lie */ \
  197. movl LGUEST_PAGES_host_sp(%eax), %esp; \
  198. /* Last the TSS: our Host is complete */ \
  199. movl $(GDT_ENTRY_TSS*8), %edx; \
  200. ltr %dx; \
  201. /* Restore now the regs saved right at the first. */ \
  202. popl %ebp; \
  203. popl %fs; \
  204. popl %gs; \
  205. popl %ds; \
  206. popl %es
  207. // Here's where we come when the Guest has just trapped:
  208. // (Which trap we'll see has been pushed on the stack).
  209. // We need only switch back, and the Host will decode
  210. // Why we came home, and what needs to be done.
  211. return_to_host:
  212. SWITCH_TO_HOST
  213. iret
  214. // An interrupt, with some cause external
  215. // Has ajerked us rudely from the Guest's code
  216. // Again we must return home to the Host
  217. deliver_to_host:
  218. SWITCH_TO_HOST
  219. // But now we must go home via that place
  220. // Where that interrupt was supposed to go
  221. // Had we not been ensconced, running the Guest.
  222. // Here we see the cleverness of our stack:
  223. // The Host stack is formed like an interrupt
  224. // With EIP, CS and EFLAGS layered.
  225. // Interrupt handlers end with "iret"
  226. // And that will take us home at long long last.
  227. // But first we must find the handler to call!
  228. // The IDT descriptor for the Host
  229. // Has two bytes for size, and four for address:
  230. // %edx will hold it for us for now.
  231. movl (LGUEST_PAGES_host_idt_desc+2)(%eax), %edx
  232. // We now know the table address we need,
  233. // And saved the trap's number inside %ebx.
  234. // Yet the pointer to the handler is smeared
  235. // Across the bits of the table entry.
  236. // What oracle can tell us how to extract
  237. // From such a convoluted encoding?
  238. // I consulted gcc, and it gave
  239. // These instructions, which I gladly credit:
  240. leal (%edx,%ebx,8), %eax
  241. movzwl (%eax),%edx
  242. movl 4(%eax), %eax
  243. xorw %ax, %ax
  244. orl %eax, %edx
  245. // Now the address of the handler's in %edx
  246. // We call it now: its "iret" takes us home.
  247. jmp *%edx
  248. // Every interrupt can come to us here
  249. // But we must truly tell each apart.
  250. // They number two hundred and fifty six
  251. // And each must land in a different spot,
  252. // Push its number on stack, and join the stream.
  253. // And worse, a mere six of the traps stand apart
  254. // And push on their stack an addition:
  255. // An error number, thirty two bits long
  256. // So we punish the other two fifty
  257. // And make them push a zero so they match.
  258. // Yet two fifty six entries is long
  259. // And all will look most the same as the last
  260. // So we create a macro which can make
  261. // As many entries as we need to fill.
  262. // Note the change to .data then .text:
  263. // We plant the address of each entry
  264. // Into a (data) table for the Host
  265. // To know where each Guest interrupt should go.
  266. .macro IRQ_STUB N TARGET
  267. .data; .long 1f; .text; 1:
  268. // Trap eight, ten through fourteen and seventeen
  269. // Supply an error number. Else zero.
  270. .if (\N <> 8) && (\N < 10 || \N > 14) && (\N <> 17)
  271. pushl $0
  272. .endif
  273. pushl $\N
  274. jmp \TARGET
  275. ALIGN
  276. .endm
  277. // This macro creates numerous entries
  278. // Using GAS macros which out-power C's.
  279. .macro IRQ_STUBS FIRST LAST TARGET
  280. irq=\FIRST
  281. .rept \LAST-\FIRST+1
  282. IRQ_STUB irq \TARGET
  283. irq=irq+1
  284. .endr
  285. .endm
  286. // Here's the marker for our pointer table
  287. // Laid in the data section just before
  288. // Each macro places the address of code
  289. // Forming an array: each one points to text
  290. // Which handles interrupt in its turn.
  291. .data
  292. .global default_idt_entries
  293. default_idt_entries:
  294. .text
  295. // The first two traps go straight back to the Host
  296. IRQ_STUBS 0 1 return_to_host
  297. // We'll say nothing, yet, about NMI
  298. IRQ_STUB 2 handle_nmi
  299. // Other traps also return to the Host
  300. IRQ_STUBS 3 31 return_to_host
  301. // All interrupts go via their handlers
  302. IRQ_STUBS 32 127 deliver_to_host
  303. // 'Cept system calls coming from userspace
  304. // Are to go to the Guest, never the Host.
  305. IRQ_STUB 128 return_to_host
  306. IRQ_STUBS 129 255 deliver_to_host
  307. // The NMI, what a fabulous beast
  308. // Which swoops in and stops us no matter that
  309. // We're suspended between heaven and hell,
  310. // (Or more likely between the Host and Guest)
  311. // When in it comes! We are dazed and confused
  312. // So we do the simplest thing which one can.
  313. // Though we've pushed the trap number and zero
  314. // We discard them, return, and hope we live.
  315. handle_nmi:
  316. addl $8, %esp
  317. iret
  318. // We are done; all that's left is Mastery
  319. // And "make Mastery" is a journey long
  320. // Designed to make your fingers itch to code.
  321. // Here ends the text, the file and poem.
  322. ENTRY(end_switcher_text)