/*
- * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2009 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
#ifndef _I386_MP_DESC_H_
#define _I386_MP_DESC_H_
-#include <mach_kdb.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
/*
* The descriptor tables are together in a structure
* allocated one per processor (except for the boot processor).
- * Note that dbtss could be conditionalized on MACH_KDB, but
- * doing so increases misconfiguration risk.
*/
-struct mp_desc_table {
- struct fake_descriptor idt[IDTSZ]; /* IDT */
- struct fake_descriptor gdt[GDTSZ]; /* GDT */
- struct fake_descriptor ldt[LDTSZ]; /* LDT */
- struct i386_tss ktss;
- struct i386_tss dbtss;
-};
-
-#define current_gdt() (current_cpu_datap()->cpu_desc_index.cdi_gdt)
-#define current_idt() (current_cpu_datap()->cpu_desc_index.cdi_idt)
+typedef struct cpu_desc_table {
+ struct fake_descriptor idt[IDTSZ] __attribute__ ((aligned (16)));
+ struct fake_descriptor gdt[GDTSZ] __attribute__ ((aligned (16)));
+ struct i386_tss ktss __attribute__ ((aligned (16)));
+ struct sysenter_stack sstk;
+} cpu_desc_table_t;
+
+typedef struct cpu_desc_table64 {
+#if !__x86_64__
+ struct fake_descriptor64 idt[IDTSZ] __attribute__ ((aligned (16)));
+#endif
+ struct fake_descriptor gdt[GDTSZ] __attribute__ ((aligned (16)));
+ struct x86_64_tss ktss __attribute__ ((aligned (16)));
+ struct sysenter_stack sstk __attribute__ ((aligned (16)));
+ uint8_t dfstk[PAGE_SIZE] __attribute__ ((aligned (16)));
+} cpu_desc_table64_t;
+
+#define current_gdt() (current_cpu_datap()->cpu_desc_index.cdi_gdt.ptr)
+#define current_idt() (current_cpu_datap()->cpu_desc_index.cdi_idt.ptr)
#define current_ldt() (current_cpu_datap()->cpu_desc_index.cdi_ldt)
#define current_ktss() (current_cpu_datap()->cpu_desc_index.cdi_ktss)
-#define current_dbtss() (current_cpu_datap()->cpu_desc_index.cdi_dbtss)
+#define current_sstk() (current_cpu_datap()->cpu_desc_index.cdi_sstk)
+
+#define current_ktss64() ((struct x86_64_tss *) current_ktss())
+#define current_sstk64() ((addr64_t *) current_sstk())
#define gdt_desc_p(sel) \
- ((struct real_descriptor *)¤t_gdt()[sel_idx(sel)])
+ (&((struct real_descriptor *)current_gdt())[sel_idx(sel)])
#define ldt_desc_p(sel) \
- ((struct real_descriptor *)¤t_ldt()[sel_idx(sel)])
-
-extern void mp_desc_init(cpu_data_t *cdp, boolean_t is_boot_cpu);
-
-static inline boolean_t
-valid_user_data_selector(uint16_t selector)
-{
- sel_t sel = selector_to_sel(selector);
-
- if (selector == 0)
- return (TRUE);
-
- if (sel.ti == SEL_LDT)
- return (TRUE);
- else if (sel.index < GDTSZ) {
- if ((gdt_desc_p(selector)->access & ACC_PL_U) == ACC_PL_U)
- return (TRUE);
- }
-
- return (FALSE);
-}
-
-static inline boolean_t
-valid_user_code_selector(uint16_t selector)
-{
- sel_t sel = selector_to_sel(selector);
-
- if (selector == 0)
- return (FALSE);
-
- if (sel.ti == SEL_LDT) {
- if (sel.rpl == USER_PRIV)
- return (TRUE);
- }
- else if (sel.index < GDTSZ && sel.rpl == USER_PRIV) {
- if ((gdt_desc_p(selector)->access & ACC_PL_U) == ACC_PL_U)
- return (TRUE);
- }
-
- return (FALSE);
-}
-
-static inline boolean_t
-valid_user_stack_selector(uint16_t selector)
-{
- sel_t sel = selector_to_sel(selector);
-
- if (selector == 0)
- return (FALSE);
-
- if (sel.ti == SEL_LDT) {
- if (sel.rpl == USER_PRIV)
- return (TRUE);
- }
- else if (sel.index < GDTSZ && sel.rpl == USER_PRIV) {
- if ((gdt_desc_p(selector)->access & ACC_PL_U) == ACC_PL_U)
- return (TRUE);
- }
-
- return (FALSE);
-}
+ (&((struct real_descriptor *)current_ldt())[sel_idx(sel)])
+
+extern void cpu_mode_init(cpu_data_t *cdp);
+
+extern void cpu_desc_init(cpu_data_t *cdp);
+extern void cpu_desc_init64(cpu_data_t *cdp);
+extern void cpu_desc_load(cpu_data_t *cdp);
+extern void cpu_desc_load64(cpu_data_t *cdp);
+
+extern boolean_t
+valid_user_data_selector(uint16_t selector);
+
+extern boolean_t
+valid_user_code_selector(uint16_t selector);
+
+extern boolean_t
+valid_user_stack_selector(uint16_t selector);
extern boolean_t
valid_user_segment_selectors(uint16_t cs,
__END_DECLS
-#endif /* _I386_MP_DESC_H_ */
+#endif /* _X86_64_MP_DESC_H_ */