lguest.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #ifndef _ASM_X86_LGUEST_H
  2. #define _ASM_X86_LGUEST_H
  3. #define GDT_ENTRY_LGUEST_CS 10
  4. #define GDT_ENTRY_LGUEST_DS 11
  5. #define LGUEST_CS (GDT_ENTRY_LGUEST_CS * 8)
  6. #define LGUEST_DS (GDT_ENTRY_LGUEST_DS * 8)
  7. #ifndef __ASSEMBLY__
  8. #include <asm/desc.h>
  9. #define GUEST_PL 1
  10. /* Page for Switcher text itself, then two pages per cpu */
  11. #define SWITCHER_TEXT_PAGES (1)
  12. #define SWITCHER_STACK_PAGES (2 * nr_cpu_ids)
  13. #define TOTAL_SWITCHER_PAGES (SWITCHER_TEXT_PAGES + SWITCHER_STACK_PAGES)
  14. /* Where we map the Switcher, in both Host and Guest. */
  15. extern unsigned long switcher_addr;
  16. /* Found in switcher.S */
  17. extern unsigned long default_idt_entries[];
  18. /* Declarations for definitions in arch/x86/lguest/head_32.S */
  19. extern char lguest_noirq_iret[];
  20. extern const char lgstart_cli[], lgend_cli[];
  21. extern const char lgstart_pushf[], lgend_pushf[];
  22. extern void lguest_iret(void);
  23. extern void lguest_init(void);
  24. struct lguest_regs {
  25. /* Manually saved part. */
  26. unsigned long eax, ebx, ecx, edx;
  27. unsigned long esi, edi, ebp;
  28. unsigned long gs;
  29. unsigned long fs, ds, es;
  30. unsigned long trapnum, errcode;
  31. /* Trap pushed part */
  32. unsigned long eip;
  33. unsigned long cs;
  34. unsigned long eflags;
  35. unsigned long esp;
  36. unsigned long ss;
  37. };
  38. /* This is a guest-specific page (mapped ro) into the guest. */
  39. struct lguest_ro_state {
  40. /* Host information we need to restore when we switch back. */
  41. u32 host_cr3;
  42. struct desc_ptr host_idt_desc;
  43. struct desc_ptr host_gdt_desc;
  44. u32 host_sp;
  45. /* Fields which are used when guest is running. */
  46. struct desc_ptr guest_idt_desc;
  47. struct desc_ptr guest_gdt_desc;
  48. struct x86_hw_tss guest_tss;
  49. struct desc_struct guest_idt[IDT_ENTRIES];
  50. struct desc_struct guest_gdt[GDT_ENTRIES];
  51. };
  52. struct lg_cpu_arch {
  53. /* The GDT entries copied into lguest_ro_state when running. */
  54. struct desc_struct gdt[GDT_ENTRIES];
  55. /* The IDT entries: some copied into lguest_ro_state when running. */
  56. struct desc_struct idt[IDT_ENTRIES];
  57. /* The address of the last guest-visible pagefault (ie. cr2). */
  58. unsigned long last_pagefault;
  59. };
  60. static inline void lguest_set_ts(void)
  61. {
  62. u32 cr0;
  63. cr0 = read_cr0();
  64. if (!(cr0 & 8))
  65. write_cr0(cr0 | 8);
  66. }
  67. /* Full 4G segment descriptors, suitable for CS and DS. */
  68. #define FULL_EXEC_SEGMENT \
  69. ((struct desc_struct)GDT_ENTRY_INIT(0xc09b, 0, 0xfffff))
  70. #define FULL_SEGMENT ((struct desc_struct)GDT_ENTRY_INIT(0xc093, 0, 0xfffff))
  71. #endif /* __ASSEMBLY__ */
  72. #endif /* _ASM_X86_LGUEST_H */