entry_64.txt 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. This file documents some of the kernel entries in
  2. arch/x86/kernel/entry_64.S. A lot of this explanation is adapted from
  3. an email from Ingo Molnar:
  4. http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu>
  5. The x86 architecture has quite a few different ways to jump into
  6. kernel code. Most of these entry points are registered in
  7. arch/x86/kernel/traps.c and implemented in arch/x86/kernel/entry_64.S
  8. and arch/x86/ia32/ia32entry.S.
  9. The IDT vector assignments are listed in arch/x86/include/irq_vectors.h.
  10. Some of these entries are:
  11. - system_call: syscall instruction from 64-bit code.
  12. - ia32_syscall: int 0x80 from 32-bit or 64-bit code; compat syscall
  13. either way.
  14. - ia32_syscall, ia32_sysenter: syscall and sysenter from 32-bit
  15. code
  16. - interrupt: An array of entries. Every IDT vector that doesn't
  17. explicitly point somewhere else gets set to the corresponding
  18. value in interrupts. These point to a whole array of
  19. magically-generated functions that make their way to do_IRQ with
  20. the interrupt number as a parameter.
  21. - APIC interrupts: Various special-purpose interrupts for things
  22. like TLB shootdown.
  23. - Architecturally-defined exceptions like divide_error.
  24. There are a few complexities here. The different x86-64 entries
  25. have different calling conventions. The syscall and sysenter
  26. instructions have their own peculiar calling conventions. Some of
  27. the IDT entries push an error code onto the stack; others don't.
  28. IDT entries using the IST alternative stack mechanism need their own
  29. magic to get the stack frames right. (You can find some
  30. documentation in the AMD APM, Volume 2, Chapter 8 and the Intel SDM,
  31. Volume 3, Chapter 6.)
  32. Dealing with the swapgs instruction is especially tricky. Swapgs
  33. toggles whether gs is the kernel gs or the user gs. The swapgs
  34. instruction is rather fragile: it must nest perfectly and only in
  35. single depth, it should only be used if entering from user mode to
  36. kernel mode and then when returning to user-space, and precisely
  37. so. If we mess that up even slightly, we crash.
  38. So when we have a secondary entry, already in kernel mode, we *must
  39. not* use SWAPGS blindly - nor must we forget doing a SWAPGS when it's
  40. not switched/swapped yet.
  41. Now, there's a secondary complication: there's a cheap way to test
  42. which mode the CPU is in and an expensive way.
  43. The cheap way is to pick this info off the entry frame on the kernel
  44. stack, from the CS of the ptregs area of the kernel stack:
  45. xorl %ebx,%ebx
  46. testl $3,CS+8(%rsp)
  47. je error_kernelspace
  48. SWAPGS
  49. The expensive (paranoid) way is to read back the MSR_GS_BASE value
  50. (which is what SWAPGS modifies):
  51. movl $1,%ebx
  52. movl $MSR_GS_BASE,%ecx
  53. rdmsr
  54. testl %edx,%edx
  55. js 1f /* negative -> in kernel */
  56. SWAPGS
  57. xorl %ebx,%ebx
  58. 1: ret
  59. and the whole paranoid non-paranoid macro complexity is about whether
  60. to suffer that RDMSR cost.
  61. If we are at an interrupt or user-trap/gate-alike boundary then we can
  62. use the faster check: the stack will be a reliable indicator of
  63. whether SWAPGS was already done: if we see that we are a secondary
  64. entry interrupting kernel mode execution, then we know that the GS
  65. base has already been switched. If it says that we interrupted
  66. user-space execution then we must do the SWAPGS.
  67. But if we are in an NMI/MCE/DEBUG/whatever super-atomic entry context,
  68. which might have triggered right after a normal entry wrote CS to the
  69. stack but before we executed SWAPGS, then the only safe way to check
  70. for GS is the slower method: the RDMSR.
  71. So we try only to mark those entry methods 'paranoid' that absolutely
  72. need the more expensive check for the GS base - and we generate all
  73. 'normal' entry points with the regular (faster) entry macros.