segment.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. #ifndef _ASM_X86_SEGMENT_H
  2. #define _ASM_X86_SEGMENT_H
  3. #include <linux/const.h>
  4. #include <asm/alternative.h>
  5. /*
  6. * Constructor for a conventional segment GDT (or LDT) entry.
  7. * This is a macro so it can be used in initializers.
  8. */
  9. #define GDT_ENTRY(flags, base, limit) \
  10. ((((base) & _AC(0xff000000,ULL)) << (56-24)) | \
  11. (((flags) & _AC(0x0000f0ff,ULL)) << 40) | \
  12. (((limit) & _AC(0x000f0000,ULL)) << (48-16)) | \
  13. (((base) & _AC(0x00ffffff,ULL)) << 16) | \
  14. (((limit) & _AC(0x0000ffff,ULL))))
  15. /* Simple and small GDT entries for booting only: */
  16. #define GDT_ENTRY_BOOT_CS 2
  17. #define GDT_ENTRY_BOOT_DS 3
  18. #define GDT_ENTRY_BOOT_TSS 4
  19. #define __BOOT_CS (GDT_ENTRY_BOOT_CS*8)
  20. #define __BOOT_DS (GDT_ENTRY_BOOT_DS*8)
  21. #define __BOOT_TSS (GDT_ENTRY_BOOT_TSS*8)
  22. /*
  23. * Bottom two bits of selector give the ring
  24. * privilege level
  25. */
  26. #define SEGMENT_RPL_MASK 0x3
  27. /* User mode is privilege level 3: */
  28. #define USER_RPL 0x3
  29. /* Bit 2 is Table Indicator (TI): selects between LDT or GDT */
  30. #define SEGMENT_TI_MASK 0x4
  31. /* LDT segment has TI set ... */
  32. #define SEGMENT_LDT 0x4
  33. /* ... GDT has it cleared */
  34. #define SEGMENT_GDT 0x0
  35. #define GDT_ENTRY_INVALID_SEG 0
  36. #ifdef CONFIG_X86_32
  37. /*
  38. * The layout of the per-CPU GDT under Linux:
  39. *
  40. * 0 - null <=== cacheline #1
  41. * 1 - reserved
  42. * 2 - reserved
  43. * 3 - reserved
  44. *
  45. * 4 - unused <=== cacheline #2
  46. * 5 - unused
  47. *
  48. * ------- start of TLS (Thread-Local Storage) segments:
  49. *
  50. * 6 - TLS segment #1 [ glibc's TLS segment ]
  51. * 7 - TLS segment #2 [ Wine's %fs Win32 segment ]
  52. * 8 - TLS segment #3 <=== cacheline #3
  53. * 9 - reserved
  54. * 10 - reserved
  55. * 11 - reserved
  56. *
  57. * ------- start of kernel segments:
  58. *
  59. * 12 - kernel code segment <=== cacheline #4
  60. * 13 - kernel data segment
  61. * 14 - default user CS
  62. * 15 - default user DS
  63. * 16 - TSS <=== cacheline #5
  64. * 17 - LDT
  65. * 18 - PNPBIOS support (16->32 gate)
  66. * 19 - PNPBIOS support
  67. * 20 - PNPBIOS support <=== cacheline #6
  68. * 21 - PNPBIOS support
  69. * 22 - PNPBIOS support
  70. * 23 - APM BIOS support
  71. * 24 - APM BIOS support <=== cacheline #7
  72. * 25 - APM BIOS support
  73. *
  74. * 26 - ESPFIX small SS
  75. * 27 - per-cpu [ offset to per-cpu data area ]
  76. * 28 - stack_canary-20 [ for stack protector ] <=== cacheline #8
  77. * 29 - unused
  78. * 30 - unused
  79. * 31 - TSS for double fault handler
  80. */
  81. #define GDT_ENTRY_TLS_MIN 6
  82. #define GDT_ENTRY_TLS_MAX (GDT_ENTRY_TLS_MIN + GDT_ENTRY_TLS_ENTRIES - 1)
  83. #define GDT_ENTRY_KERNEL_CS 12
  84. #define GDT_ENTRY_KERNEL_DS 13
  85. #define GDT_ENTRY_DEFAULT_USER_CS 14
  86. #define GDT_ENTRY_DEFAULT_USER_DS 15
  87. #define GDT_ENTRY_TSS 16
  88. #define GDT_ENTRY_LDT 17
  89. #define GDT_ENTRY_PNPBIOS_CS32 18
  90. #define GDT_ENTRY_PNPBIOS_CS16 19
  91. #define GDT_ENTRY_PNPBIOS_DS 20
  92. #define GDT_ENTRY_PNPBIOS_TS1 21
  93. #define GDT_ENTRY_PNPBIOS_TS2 22
  94. #define GDT_ENTRY_APMBIOS_BASE 23
  95. #define GDT_ENTRY_ESPFIX_SS 26
  96. #define GDT_ENTRY_PERCPU 27
  97. #define GDT_ENTRY_STACK_CANARY 28
  98. #define GDT_ENTRY_DOUBLEFAULT_TSS 31
  99. /*
  100. * Number of entries in the GDT table:
  101. */
  102. #define GDT_ENTRIES 32
  103. /*
  104. * Segment selector values corresponding to the above entries:
  105. */
  106. #define __KERNEL_CS (GDT_ENTRY_KERNEL_CS*8)
  107. #define __KERNEL_DS (GDT_ENTRY_KERNEL_DS*8)
  108. #define __USER_DS (GDT_ENTRY_DEFAULT_USER_DS*8 + 3)
  109. #define __USER_CS (GDT_ENTRY_DEFAULT_USER_CS*8 + 3)
  110. #define __ESPFIX_SS (GDT_ENTRY_ESPFIX_SS*8)
  111. /* segment for calling fn: */
  112. #define PNP_CS32 (GDT_ENTRY_PNPBIOS_CS32*8)
  113. /* code segment for BIOS: */
  114. #define PNP_CS16 (GDT_ENTRY_PNPBIOS_CS16*8)
  115. /* "Is this PNP code selector (PNP_CS32 or PNP_CS16)?" */
  116. #define SEGMENT_IS_PNP_CODE(x) (((x) & 0xf4) == PNP_CS32)
  117. /* data segment for BIOS: */
  118. #define PNP_DS (GDT_ENTRY_PNPBIOS_DS*8)
  119. /* transfer data segment: */
  120. #define PNP_TS1 (GDT_ENTRY_PNPBIOS_TS1*8)
  121. /* another data segment: */
  122. #define PNP_TS2 (GDT_ENTRY_PNPBIOS_TS2*8)
  123. #ifdef CONFIG_SMP
  124. # define __KERNEL_PERCPU (GDT_ENTRY_PERCPU*8)
  125. #else
  126. # define __KERNEL_PERCPU 0
  127. #endif
  128. #ifdef CONFIG_CC_STACKPROTECTOR
  129. # define __KERNEL_STACK_CANARY (GDT_ENTRY_STACK_CANARY*8)
  130. #else
  131. # define __KERNEL_STACK_CANARY 0
  132. #endif
  133. #else /* 64-bit: */
  134. #include <asm/cache.h>
  135. #define GDT_ENTRY_KERNEL32_CS 1
  136. #define GDT_ENTRY_KERNEL_CS 2
  137. #define GDT_ENTRY_KERNEL_DS 3
  138. /*
  139. * We cannot use the same code segment descriptor for user and kernel mode,
  140. * not even in long flat mode, because of different DPL.
  141. *
  142. * GDT layout to get 64-bit SYSCALL/SYSRET support right. SYSRET hardcodes
  143. * selectors:
  144. *
  145. * if returning to 32-bit userspace: cs = STAR.SYSRET_CS,
  146. * if returning to 64-bit userspace: cs = STAR.SYSRET_CS+16,
  147. *
  148. * ss = STAR.SYSRET_CS+8 (in either case)
  149. *
  150. * thus USER_DS should be between 32-bit and 64-bit code selectors:
  151. */
  152. #define GDT_ENTRY_DEFAULT_USER32_CS 4
  153. #define GDT_ENTRY_DEFAULT_USER_DS 5
  154. #define GDT_ENTRY_DEFAULT_USER_CS 6
  155. /* Needs two entries */
  156. #define GDT_ENTRY_TSS 8
  157. /* Needs two entries */
  158. #define GDT_ENTRY_LDT 10
  159. #define GDT_ENTRY_TLS_MIN 12
  160. #define GDT_ENTRY_TLS_MAX 14
  161. /* Abused to load per CPU data from limit */
  162. #define GDT_ENTRY_PER_CPU 15
  163. /*
  164. * Number of entries in the GDT table:
  165. */
  166. #define GDT_ENTRIES 16
  167. /*
  168. * Segment selector values corresponding to the above entries:
  169. *
  170. * Note, selectors also need to have a correct RPL,
  171. * expressed with the +3 value for user-space selectors:
  172. */
  173. #define __KERNEL32_CS (GDT_ENTRY_KERNEL32_CS*8)
  174. #define __KERNEL_CS (GDT_ENTRY_KERNEL_CS*8)
  175. #define __KERNEL_DS (GDT_ENTRY_KERNEL_DS*8)
  176. #define __USER32_CS (GDT_ENTRY_DEFAULT_USER32_CS*8 + 3)
  177. #define __USER_DS (GDT_ENTRY_DEFAULT_USER_DS*8 + 3)
  178. #define __USER32_DS __USER_DS
  179. #define __USER_CS (GDT_ENTRY_DEFAULT_USER_CS*8 + 3)
  180. #define __PER_CPU_SEG (GDT_ENTRY_PER_CPU*8 + 3)
  181. #endif
  182. #ifndef CONFIG_PARAVIRT
  183. # define get_kernel_rpl() 0
  184. #endif
  185. #define IDT_ENTRIES 256
  186. #define NUM_EXCEPTION_VECTORS 32
  187. /* Bitmask of exception vectors which push an error code on the stack: */
  188. #define EXCEPTION_ERRCODE_MASK 0x00027d00
  189. #define GDT_SIZE (GDT_ENTRIES*8)
  190. #define GDT_ENTRY_TLS_ENTRIES 3
  191. #define TLS_SIZE (GDT_ENTRY_TLS_ENTRIES* 8)
  192. #ifdef __KERNEL__
  193. /*
  194. * early_idt_handler_array is an array of entry points referenced in the
  195. * early IDT. For simplicity, it's a real array with one entry point
  196. * every nine bytes. That leaves room for an optional 'push $0' if the
  197. * vector has no error code (two bytes), a 'push $vector_number' (two
  198. * bytes), and a jump to the common entry code (up to five bytes).
  199. */
  200. #define EARLY_IDT_HANDLER_SIZE 9
  201. #ifndef __ASSEMBLY__
  202. extern const char early_idt_handler_array[NUM_EXCEPTION_VECTORS][EARLY_IDT_HANDLER_SIZE];
  203. #ifdef CONFIG_TRACING
  204. # define trace_early_idt_handler_array early_idt_handler_array
  205. #endif
  206. /*
  207. * Load a segment. Fall back on loading the zero segment if something goes
  208. * wrong. This variant assumes that loading zero fully clears the segment.
  209. * This is always the case on Intel CPUs and, even on 64-bit AMD CPUs, any
  210. * failure to fully clear the cached descriptor is only observable for
  211. * FS and GS.
  212. */
  213. #define __loadsegment_simple(seg, value) \
  214. do { \
  215. unsigned short __val = (value); \
  216. \
  217. asm volatile(" \n" \
  218. "1: movl %k0,%%" #seg " \n" \
  219. \
  220. ".section .fixup,\"ax\" \n" \
  221. "2: xorl %k0,%k0 \n" \
  222. " jmp 1b \n" \
  223. ".previous \n" \
  224. \
  225. _ASM_EXTABLE(1b, 2b) \
  226. \
  227. : "+r" (__val) : : "memory"); \
  228. } while (0)
  229. #define __loadsegment_ss(value) __loadsegment_simple(ss, (value))
  230. #define __loadsegment_ds(value) __loadsegment_simple(ds, (value))
  231. #define __loadsegment_es(value) __loadsegment_simple(es, (value))
  232. #ifdef CONFIG_X86_32
  233. /*
  234. * On 32-bit systems, the hidden parts of FS and GS are unobservable if
  235. * the selector is NULL, so there's no funny business here.
  236. */
  237. #define __loadsegment_fs(value) __loadsegment_simple(fs, (value))
  238. #define __loadsegment_gs(value) __loadsegment_simple(gs, (value))
  239. #else
  240. static inline void __loadsegment_fs(unsigned short value)
  241. {
  242. asm volatile(" \n"
  243. "1: movw %0, %%fs \n"
  244. "2: \n"
  245. _ASM_EXTABLE_HANDLE(1b, 2b, ex_handler_clear_fs)
  246. : : "rm" (value) : "memory");
  247. }
  248. /* __loadsegment_gs is intentionally undefined. Use load_gs_index instead. */
  249. #endif
  250. #define loadsegment(seg, value) __loadsegment_ ## seg (value)
  251. /*
  252. * Save a segment register away:
  253. */
  254. #define savesegment(seg, value) \
  255. asm("mov %%" #seg ",%0":"=r" (value) : : "memory")
  256. /*
  257. * x86-32 user GS accessors:
  258. */
  259. #ifdef CONFIG_X86_32
  260. # ifdef CONFIG_X86_32_LAZY_GS
  261. # define get_user_gs(regs) (u16)({ unsigned long v; savesegment(gs, v); v; })
  262. # define set_user_gs(regs, v) loadsegment(gs, (unsigned long)(v))
  263. # define task_user_gs(tsk) ((tsk)->thread.gs)
  264. # define lazy_save_gs(v) savesegment(gs, (v))
  265. # define lazy_load_gs(v) loadsegment(gs, (v))
  266. # else /* X86_32_LAZY_GS */
  267. # define get_user_gs(regs) (u16)((regs)->gs)
  268. # define set_user_gs(regs, v) do { (regs)->gs = (v); } while (0)
  269. # define task_user_gs(tsk) (task_pt_regs(tsk)->gs)
  270. # define lazy_save_gs(v) do { } while (0)
  271. # define lazy_load_gs(v) do { } while (0)
  272. # endif /* X86_32_LAZY_GS */
  273. #endif /* X86_32 */
  274. #endif /* !__ASSEMBLY__ */
  275. #endif /* __KERNEL__ */
  276. #endif /* _ASM_X86_SEGMENT_H */