1 #ifndef _ASM_X86_DESC_H
2 #define _ASM_X86_DESC_H
4 #include <asm/desc_defs.h>
7 #include <asm/fixmap.h>
8 #include <asm/irq_vectors.h>
10 #include <linux/smp.h>
11 #include <linux/percpu.h>
13 static inline void fill_ldt(struct desc_struct *desc, const struct user_desc *info)
15 desc->limit0 = info->limit & 0x0ffff;
17 desc->base0 = (info->base_addr & 0x0000ffff);
18 desc->base1 = (info->base_addr & 0x00ff0000) >> 16;
20 desc->type = (info->read_exec_only ^ 1) << 1;
21 desc->type |= info->contents << 2;
25 desc->p = info->seg_not_present ^ 1;
26 desc->limit1 = (info->limit & 0xf0000) >> 16;
27 desc->avl = info->useable;
28 desc->d = info->seg_32bit;
29 desc->g = info->limit_in_pages;
31 desc->base2 = (info->base_addr & 0xff000000) >> 24;
33 * Don't allow setting of the lm bit. It would confuse
34 * user_64bit_mode and would get overridden by sysret anyway.
39 extern struct desc_ptr idt_descr;
40 extern gate_desc idt_table[];
41 extern const struct desc_ptr debug_idt_descr;
42 extern gate_desc debug_idt_table[];
45 struct desc_struct gdt[GDT_ENTRIES];
46 } __attribute__((aligned(PAGE_SIZE)));
48 DECLARE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page);
50 /* Provide the original GDT */
51 static inline struct desc_struct *get_cpu_gdt_rw(unsigned int cpu)
53 return per_cpu(gdt_page, cpu).gdt;
56 /* Provide the current original GDT */
57 static inline struct desc_struct *get_current_gdt_rw(void)
59 return this_cpu_ptr(&gdt_page)->gdt;
62 /* Get the fixmap index for a specific processor */
63 static inline unsigned int get_cpu_gdt_ro_index(int cpu)
65 return FIX_GDT_REMAP_BEGIN + cpu;
68 /* Provide the fixmap address of the remapped GDT */
69 static inline struct desc_struct *get_cpu_gdt_ro(int cpu)
71 unsigned int idx = get_cpu_gdt_ro_index(cpu);
72 return (struct desc_struct *)__fix_to_virt(idx);
75 /* Provide the current read-only GDT */
76 static inline struct desc_struct *get_current_gdt_ro(void)
78 return get_cpu_gdt_ro(smp_processor_id());
81 /* Provide the physical address of the GDT page. */
82 static inline phys_addr_t get_cpu_gdt_paddr(unsigned int cpu)
84 return per_cpu_ptr_to_phys(get_cpu_gdt_rw(cpu));
87 static inline void pack_gate(gate_desc *gate, unsigned type, unsigned long func,
88 unsigned dpl, unsigned ist, unsigned seg)
90 gate->offset_low = (u16) func;
94 gate->bits.type = type;
95 gate->offset_middle = (u16) (func >> 16);
97 gate->segment = __KERNEL_CS;
100 gate->offset_high = (u32) (func >> 32);
107 static inline int desc_empty(const void *ptr)
109 const u32 *desc = ptr;
111 return !(desc[0] | desc[1]);
114 #ifdef CONFIG_PARAVIRT
115 #include <asm/paravirt.h>
117 #define load_TR_desc() native_load_tr_desc()
118 #define load_gdt(dtr) native_load_gdt(dtr)
119 #define load_idt(dtr) native_load_idt(dtr)
120 #define load_tr(tr) asm volatile("ltr %0"::"m" (tr))
121 #define load_ldt(ldt) asm volatile("lldt %0"::"m" (ldt))
123 #define store_gdt(dtr) native_store_gdt(dtr)
124 #define store_tr(tr) (tr = native_store_tr())
126 #define load_TLS(t, cpu) native_load_tls(t, cpu)
127 #define set_ldt native_set_ldt
129 #define write_ldt_entry(dt, entry, desc) native_write_ldt_entry(dt, entry, desc)
130 #define write_gdt_entry(dt, entry, desc, type) native_write_gdt_entry(dt, entry, desc, type)
131 #define write_idt_entry(dt, entry, g) native_write_idt_entry(dt, entry, g)
133 static inline void paravirt_alloc_ldt(struct desc_struct *ldt, unsigned entries)
137 static inline void paravirt_free_ldt(struct desc_struct *ldt, unsigned entries)
140 #endif /* CONFIG_PARAVIRT */
142 #define store_ldt(ldt) asm("sldt %0" : "=m"(ldt))
144 static inline void native_write_idt_entry(gate_desc *idt, int entry, const gate_desc *gate)
146 memcpy(&idt[entry], gate, sizeof(*gate));
149 static inline void native_write_ldt_entry(struct desc_struct *ldt, int entry, const void *desc)
151 memcpy(&ldt[entry], desc, 8);
155 native_write_gdt_entry(struct desc_struct *gdt, int entry, const void *desc, int type)
160 case DESC_TSS: size = sizeof(tss_desc); break;
161 case DESC_LDT: size = sizeof(ldt_desc); break;
162 default: size = sizeof(*gdt); break;
165 memcpy(&gdt[entry], desc, size);
168 static inline void set_tssldt_descriptor(void *d, unsigned long addr,
169 unsigned type, unsigned size)
171 struct ldttss_desc *desc = d;
173 memset(desc, 0, sizeof(*desc));
175 desc->limit0 = (u16) size;
176 desc->base0 = (u16) addr;
177 desc->base1 = (addr >> 16) & 0xFF;
180 desc->limit1 = (size >> 16) & 0xF;
181 desc->base2 = (addr >> 24) & 0xFF;
183 desc->base3 = (u32) (addr >> 32);
187 static inline void __set_tss_desc(unsigned cpu, unsigned int entry, void *addr)
189 struct desc_struct *d = get_cpu_gdt_rw(cpu);
192 set_tssldt_descriptor(&tss, (unsigned long)addr, DESC_TSS,
194 write_gdt_entry(d, entry, &tss, DESC_TSS);
197 #define set_tss_desc(cpu, addr) __set_tss_desc(cpu, GDT_ENTRY_TSS, addr)
199 static inline void native_set_ldt(const void *addr, unsigned int entries)
201 if (likely(entries == 0))
202 asm volatile("lldt %w0"::"q" (0));
204 unsigned cpu = smp_processor_id();
207 set_tssldt_descriptor(&ldt, (unsigned long)addr, DESC_LDT,
208 entries * LDT_ENTRY_SIZE - 1);
209 write_gdt_entry(get_cpu_gdt_rw(cpu), GDT_ENTRY_LDT,
211 asm volatile("lldt %w0"::"q" (GDT_ENTRY_LDT*8));
215 static inline void native_load_gdt(const struct desc_ptr *dtr)
217 asm volatile("lgdt %0"::"m" (*dtr));
220 static inline void native_load_idt(const struct desc_ptr *dtr)
222 asm volatile("lidt %0"::"m" (*dtr));
225 static inline void native_store_gdt(struct desc_ptr *dtr)
227 asm volatile("sgdt %0":"=m" (*dtr));
230 static inline void store_idt(struct desc_ptr *dtr)
232 asm volatile("sidt %0":"=m" (*dtr));
236 * The LTR instruction marks the TSS GDT entry as busy. On 64-bit, the GDT is
237 * a read-only remapping. To prevent a page fault, the GDT is switched to the
238 * original writeable version when needed.
241 static inline void native_load_tr_desc(void)
244 int cpu = raw_smp_processor_id();
246 struct desc_struct *fixmap_gdt;
248 native_store_gdt(&gdt);
249 fixmap_gdt = get_cpu_gdt_ro(cpu);
252 * If the current GDT is the read-only fixmap, swap to the original
253 * writeable version. Swap back at the end.
255 if (gdt.address == (unsigned long)fixmap_gdt) {
256 load_direct_gdt(cpu);
259 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
261 load_fixmap_gdt(cpu);
264 static inline void native_load_tr_desc(void)
266 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
270 static inline unsigned long native_store_tr(void)
274 asm volatile("str %0":"=r" (tr));
279 static inline void native_load_tls(struct thread_struct *t, unsigned int cpu)
281 struct desc_struct *gdt = get_cpu_gdt_rw(cpu);
284 for (i = 0; i < GDT_ENTRY_TLS_ENTRIES; i++)
285 gdt[GDT_ENTRY_TLS_MIN + i] = t->tls_array[i];
288 DECLARE_PER_CPU(bool, __tss_limit_invalid);
290 static inline void force_reload_TR(void)
292 struct desc_struct *d = get_current_gdt_rw();
295 memcpy(&tss, &d[GDT_ENTRY_TSS], sizeof(tss_desc));
298 * LTR requires an available TSS, and the TSS is currently
299 * busy. Make it be available so that LTR will work.
302 write_gdt_entry(d, GDT_ENTRY_TSS, &tss, DESC_TSS);
305 this_cpu_write(__tss_limit_invalid, false);
309 * Call this if you need the TSS limit to be correct, which should be the case
310 * if and only if you have TIF_IO_BITMAP set or you're switching to a task
311 * with TIF_IO_BITMAP set.
313 static inline void refresh_tss_limit(void)
315 DEBUG_LOCKS_WARN_ON(preemptible());
317 if (unlikely(this_cpu_read(__tss_limit_invalid)))
322 * If you do something evil that corrupts the cached TSS limit (I'm looking
323 * at you, VMX exits), call this function.
325 * The optimization here is that the TSS limit only matters for Linux if the
326 * IO bitmap is in use. If the TSS limit gets forced to its minimum value,
327 * everything works except that IO bitmap will be ignored and all CPL 3 IO
328 * instructions will #GP, which is exactly what we want for normal tasks.
330 static inline void invalidate_tss_limit(void)
332 DEBUG_LOCKS_WARN_ON(preemptible());
334 if (unlikely(test_thread_flag(TIF_IO_BITMAP)))
337 this_cpu_write(__tss_limit_invalid, true);
340 /* This intentionally ignores lm, since 32-bit apps don't have that field. */
341 #define LDT_empty(info) \
342 ((info)->base_addr == 0 && \
343 (info)->limit == 0 && \
344 (info)->contents == 0 && \
345 (info)->read_exec_only == 1 && \
346 (info)->seg_32bit == 0 && \
347 (info)->limit_in_pages == 0 && \
348 (info)->seg_not_present == 1 && \
349 (info)->useable == 0)
351 /* Lots of programs expect an all-zero user_desc to mean "no segment at all". */
352 static inline bool LDT_zero(const struct user_desc *info)
354 return (info->base_addr == 0 &&
356 info->contents == 0 &&
357 info->read_exec_only == 0 &&
358 info->seg_32bit == 0 &&
359 info->limit_in_pages == 0 &&
360 info->seg_not_present == 0 &&
364 static inline void clear_LDT(void)
369 static inline unsigned long get_desc_base(const struct desc_struct *desc)
371 return (unsigned)(desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24));
374 static inline void set_desc_base(struct desc_struct *desc, unsigned long base)
376 desc->base0 = base & 0xffff;
377 desc->base1 = (base >> 16) & 0xff;
378 desc->base2 = (base >> 24) & 0xff;
381 static inline unsigned long get_desc_limit(const struct desc_struct *desc)
383 return desc->limit0 | (desc->limit1 << 16);
386 static inline void set_desc_limit(struct desc_struct *desc, unsigned long limit)
388 desc->limit0 = limit & 0xffff;
389 desc->limit1 = (limit >> 16) & 0xf;
392 void update_intr_gate(unsigned int n, const void *addr);
393 void alloc_intr_gate(unsigned int n, const void *addr);
395 extern unsigned long system_vectors[];
398 DECLARE_PER_CPU(u32, debug_idt_ctr);
399 static inline bool is_debug_idt_enabled(void)
401 if (this_cpu_read(debug_idt_ctr))
407 static inline void load_debug_idt(void)
409 load_idt((const struct desc_ptr *)&debug_idt_descr);
412 static inline bool is_debug_idt_enabled(void)
417 static inline void load_debug_idt(void)
423 * The load_current_idt() must be called with interrupts disabled
424 * to avoid races. That way the IDT will always be set back to the expected
425 * descriptor. It's also called when a CPU is being initialized, and
426 * that doesn't need to disable interrupts, as nothing should be
427 * bothering the CPU then.
429 static inline void load_current_idt(void)
431 if (is_debug_idt_enabled())
434 load_idt((const struct desc_ptr *)&idt_descr);
437 extern void idt_setup_early_handler(void);
438 extern void idt_setup_early_traps(void);
439 extern void idt_setup_traps(void);
440 extern void idt_setup_apic_and_irq_gates(void);
443 extern void idt_setup_early_pf(void);
444 extern void idt_setup_ist_traps(void);
445 extern void idt_setup_debugidt_traps(void);
447 static inline void idt_setup_early_pf(void) { }
448 static inline void idt_setup_ist_traps(void) { }
449 static inline void idt_setup_debugidt_traps(void) { }
452 extern void idt_invalidate(void *addr);
454 #endif /* _ASM_X86_DESC_H */