Rusty Russell | f938d2c | 2007-07-26 10:41:02 -0700 | [diff] [blame] | 1 | /*P:800 Interrupts (traps) are complicated enough to earn their own file. |
| 2 | * There are three classes of interrupts: |
| 3 | * |
| 4 | * 1) Real hardware interrupts which occur while we're running the Guest, |
| 5 | * 2) Interrupts for virtual devices attached to the Guest, and |
| 6 | * 3) Traps and faults from the Guest. |
| 7 | * |
| 8 | * Real hardware interrupts must be delivered to the Host, not the Guest. |
| 9 | * Virtual interrupts must be delivered to the Guest, but we make them look |
| 10 | * just like real hardware would deliver them. Traps from the Guest can be set |
| 11 | * up to go directly back into the Guest, but sometimes the Host wants to see |
| 12 | * them first, so we also have a way of "reflecting" them into the Guest as if |
| 13 | * they had been delivered to it directly. :*/ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 14 | #include <linux/uaccess.h> |
| 15 | #include "lg.h" |
| 16 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 17 | /* The address of the interrupt handler is split into two bits: */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 18 | static unsigned long idt_address(u32 lo, u32 hi) |
| 19 | { |
| 20 | return (lo & 0x0000FFFF) | (hi & 0xFFFF0000); |
| 21 | } |
| 22 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 23 | /* The "type" of the interrupt handler is a 4 bit field: we only support a |
| 24 | * couple of types. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 25 | static int idt_type(u32 lo, u32 hi) |
| 26 | { |
| 27 | return (hi >> 8) & 0xF; |
| 28 | } |
| 29 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 30 | /* An IDT entry can't be used unless the "present" bit is set. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 31 | static int idt_present(u32 lo, u32 hi) |
| 32 | { |
| 33 | return (hi & 0x8000); |
| 34 | } |
| 35 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 36 | /* We need a helper to "push" a value onto the Guest's stack, since that's a |
| 37 | * big part of what delivering an interrupt does. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 38 | static void push_guest_stack(struct lguest *lg, unsigned long *gstack, u32 val) |
| 39 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 40 | /* Stack grows upwards: move stack then write value. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 41 | *gstack -= 4; |
| 42 | lgwrite_u32(lg, *gstack, val); |
| 43 | } |
| 44 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 45 | /*H:210 The set_guest_interrupt() routine actually delivers the interrupt or |
| 46 | * trap. The mechanics of delivering traps and interrupts to the Guest are the |
| 47 | * same, except some traps have an "error code" which gets pushed onto the |
| 48 | * stack as well: the caller tells us if this is one. |
| 49 | * |
| 50 | * "lo" and "hi" are the two parts of the Interrupt Descriptor Table for this |
| 51 | * interrupt or trap. It's split into two parts for traditional reasons: gcc |
| 52 | * on i386 used to be frightened by 64 bit numbers. |
| 53 | * |
| 54 | * We set up the stack just like the CPU does for a real interrupt, so it's |
| 55 | * identical for the Guest (and the standard "iret" instruction will undo |
| 56 | * it). */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 57 | static void set_guest_interrupt(struct lguest *lg, u32 lo, u32 hi, int has_err) |
| 58 | { |
| 59 | unsigned long gstack; |
| 60 | u32 eflags, ss, irq_enable; |
| 61 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 62 | /* There are two cases for interrupts: one where the Guest is already |
| 63 | * in the kernel, and a more complex one where the Guest is in |
| 64 | * userspace. We check the privilege level to find out. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 65 | if ((lg->regs->ss&0x3) != GUEST_PL) { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 66 | /* The Guest told us their kernel stack with the SET_STACK |
| 67 | * hypercall: both the virtual address and the segment */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 68 | gstack = guest_pa(lg, lg->esp1); |
| 69 | ss = lg->ss1; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 70 | /* We push the old stack segment and pointer onto the new |
| 71 | * stack: when the Guest does an "iret" back from the interrupt |
| 72 | * handler the CPU will notice they're dropping privilege |
| 73 | * levels and expect these here. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 74 | push_guest_stack(lg, &gstack, lg->regs->ss); |
| 75 | push_guest_stack(lg, &gstack, lg->regs->esp); |
| 76 | } else { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 77 | /* We're staying on the same Guest (kernel) stack. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 78 | gstack = guest_pa(lg, lg->regs->esp); |
| 79 | ss = lg->regs->ss; |
| 80 | } |
| 81 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 82 | /* Remember that we never let the Guest actually disable interrupts, so |
| 83 | * the "Interrupt Flag" bit is always set. We copy that bit from the |
| 84 | * Guest's "irq_enabled" field into the eflags word: the Guest copies |
| 85 | * it back in "lguest_iret". */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 86 | eflags = lg->regs->eflags; |
Rusty Russell | e5faff4 | 2007-07-20 22:11:13 +1000 | [diff] [blame] | 87 | if (get_user(irq_enable, &lg->lguest_data->irq_enabled) == 0 |
| 88 | && !(irq_enable & X86_EFLAGS_IF)) |
| 89 | eflags &= ~X86_EFLAGS_IF; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 90 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 91 | /* An interrupt is expected to push three things on the stack: the old |
| 92 | * "eflags" word, the old code segment, and the old instruction |
| 93 | * pointer. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 94 | push_guest_stack(lg, &gstack, eflags); |
| 95 | push_guest_stack(lg, &gstack, lg->regs->cs); |
| 96 | push_guest_stack(lg, &gstack, lg->regs->eip); |
| 97 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 98 | /* For the six traps which supply an error code, we push that, too. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 99 | if (has_err) |
| 100 | push_guest_stack(lg, &gstack, lg->regs->errcode); |
| 101 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 102 | /* Now we've pushed all the old state, we change the stack, the code |
| 103 | * segment and the address to execute. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 104 | lg->regs->ss = ss; |
| 105 | lg->regs->esp = gstack + lg->page_offset; |
| 106 | lg->regs->cs = (__KERNEL_CS|GUEST_PL); |
| 107 | lg->regs->eip = idt_address(lo, hi); |
| 108 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 109 | /* There are two kinds of interrupt handlers: 0xE is an "interrupt |
| 110 | * gate" which expects interrupts to be disabled on entry. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 111 | if (idt_type(lo, hi) == 0xE) |
| 112 | if (put_user(0, &lg->lguest_data->irq_enabled)) |
| 113 | kill_guest(lg, "Disabling interrupts"); |
| 114 | } |
| 115 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 116 | /*H:200 |
| 117 | * Virtual Interrupts. |
| 118 | * |
| 119 | * maybe_do_interrupt() gets called before every entry to the Guest, to see if |
| 120 | * we should divert the Guest to running an interrupt handler. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 121 | void maybe_do_interrupt(struct lguest *lg) |
| 122 | { |
| 123 | unsigned int irq; |
| 124 | DECLARE_BITMAP(blk, LGUEST_IRQS); |
| 125 | struct desc_struct *idt; |
| 126 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 127 | /* If the Guest hasn't even initialized yet, we can do nothing. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 128 | if (!lg->lguest_data) |
| 129 | return; |
| 130 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 131 | /* Take our "irqs_pending" array and remove any interrupts the Guest |
| 132 | * wants blocked: the result ends up in "blk". */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 133 | if (copy_from_user(&blk, lg->lguest_data->blocked_interrupts, |
| 134 | sizeof(blk))) |
| 135 | return; |
| 136 | |
| 137 | bitmap_andnot(blk, lg->irqs_pending, blk, LGUEST_IRQS); |
| 138 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 139 | /* Find the first interrupt. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 140 | irq = find_first_bit(blk, LGUEST_IRQS); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 141 | /* None? Nothing to do */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 142 | if (irq >= LGUEST_IRQS) |
| 143 | return; |
| 144 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 145 | /* They may be in the middle of an iret, where they asked us never to |
| 146 | * deliver interrupts. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 147 | if (lg->regs->eip >= lg->noirq_start && lg->regs->eip < lg->noirq_end) |
| 148 | return; |
| 149 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 150 | /* If they're halted, interrupts restart them. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 151 | if (lg->halted) { |
| 152 | /* Re-enable interrupts. */ |
| 153 | if (put_user(X86_EFLAGS_IF, &lg->lguest_data->irq_enabled)) |
| 154 | kill_guest(lg, "Re-enabling interrupts"); |
| 155 | lg->halted = 0; |
| 156 | } else { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 157 | /* Otherwise we check if they have interrupts disabled. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 158 | u32 irq_enabled; |
| 159 | if (get_user(irq_enabled, &lg->lguest_data->irq_enabled)) |
| 160 | irq_enabled = 0; |
| 161 | if (!irq_enabled) |
| 162 | return; |
| 163 | } |
| 164 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 165 | /* Look at the IDT entry the Guest gave us for this interrupt. The |
| 166 | * first 32 (FIRST_EXTERNAL_VECTOR) entries are for traps, so we skip |
| 167 | * over them. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 168 | idt = &lg->arch.idt[FIRST_EXTERNAL_VECTOR+irq]; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 169 | /* If they don't have a handler (yet?), we just ignore it */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 170 | if (idt_present(idt->a, idt->b)) { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 171 | /* OK, mark it no longer pending and deliver it. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 172 | clear_bit(irq, lg->irqs_pending); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 173 | /* set_guest_interrupt() takes the interrupt descriptor and a |
| 174 | * flag to say whether this interrupt pushes an error code onto |
| 175 | * the stack as well: virtual interrupts never do. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 176 | set_guest_interrupt(lg, idt->a, idt->b, 0); |
| 177 | } |
Rusty Russell | 6c8dca5 | 2007-07-27 13:42:52 +1000 | [diff] [blame] | 178 | |
| 179 | /* Every time we deliver an interrupt, we update the timestamp in the |
| 180 | * Guest's lguest_data struct. It would be better for the Guest if we |
| 181 | * did this more often, but it can actually be quite slow: doing it |
| 182 | * here is a compromise which means at least it gets updated every |
| 183 | * timer interrupt. */ |
| 184 | write_timestamp(lg); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 187 | /*H:220 Now we've got the routines to deliver interrupts, delivering traps |
| 188 | * like page fault is easy. The only trick is that Intel decided that some |
| 189 | * traps should have error codes: */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 190 | static int has_err(unsigned int trap) |
| 191 | { |
| 192 | return (trap == 8 || (trap >= 10 && trap <= 14) || trap == 17); |
| 193 | } |
| 194 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 195 | /* deliver_trap() returns true if it could deliver the trap. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 196 | int deliver_trap(struct lguest *lg, unsigned int num) |
| 197 | { |
Rusty Russell | 0d027c0 | 2007-08-09 20:57:13 +1000 | [diff] [blame] | 198 | /* Trap numbers are always 8 bit, but we set an impossible trap number |
| 199 | * for traps inside the Switcher, so check that here. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 200 | if (num >= ARRAY_SIZE(lg->arch.idt)) |
Rusty Russell | 0d027c0 | 2007-08-09 20:57:13 +1000 | [diff] [blame] | 201 | return 0; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 202 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 203 | /* Early on the Guest hasn't set the IDT entries (or maybe it put a |
| 204 | * bogus one in): if we fail here, the Guest will be killed. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 205 | if (!idt_present(lg->arch.idt[num].a, lg->arch.idt[num].b)) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 206 | return 0; |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 207 | set_guest_interrupt(lg, lg->arch.idt[num].a, lg->arch.idt[num].b, has_err(num)); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 208 | return 1; |
| 209 | } |
| 210 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 211 | /*H:250 Here's the hard part: returning to the Host every time a trap happens |
| 212 | * and then calling deliver_trap() and re-entering the Guest is slow. |
| 213 | * Particularly because Guest userspace system calls are traps (trap 128). |
| 214 | * |
| 215 | * So we'd like to set up the IDT to tell the CPU to deliver traps directly |
| 216 | * into the Guest. This is possible, but the complexities cause the size of |
| 217 | * this file to double! However, 150 lines of code is worth writing for taking |
| 218 | * system calls down from 1750ns to 270ns. Plus, if lguest didn't do it, all |
| 219 | * the other hypervisors would tease it. |
| 220 | * |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 221 | * This routine indicates if a particular trap number could be delivered |
| 222 | * directly. */ |
| 223 | static int direct_trap(unsigned int num) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 224 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 225 | /* Hardware interrupts don't go to the Guest at all (except system |
| 226 | * call). */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 227 | if (num >= FIRST_EXTERNAL_VECTOR && num != SYSCALL_VECTOR) |
| 228 | return 0; |
| 229 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 230 | /* The Host needs to see page faults (for shadow paging and to save the |
| 231 | * fault address), general protection faults (in/out emulation) and |
| 232 | * device not available (TS handling), and of course, the hypercall |
| 233 | * trap. */ |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 234 | return num != 14 && num != 13 && num != 7 && num != LGUEST_TRAP_ENTRY; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 235 | } |
Rusty Russell | f56a384 | 2007-07-26 10:41:05 -0700 | [diff] [blame] | 236 | /*:*/ |
| 237 | |
| 238 | /*M:005 The Guest has the ability to turn its interrupt gates into trap gates, |
| 239 | * if it is careful. The Host will let trap gates can go directly to the |
| 240 | * Guest, but the Guest needs the interrupts atomically disabled for an |
| 241 | * interrupt gate. It can do this by pointing the trap gate at instructions |
| 242 | * within noirq_start and noirq_end, where it can safely disable interrupts. */ |
| 243 | |
| 244 | /*M:006 The Guests do not use the sysenter (fast system call) instruction, |
| 245 | * because it's hardcoded to enter privilege level 0 and so can't go direct. |
| 246 | * It's about twice as fast as the older "int 0x80" system call, so it might |
| 247 | * still be worthwhile to handle it in the Switcher and lcall down to the |
| 248 | * Guest. The sysenter semantics are hairy tho: search for that keyword in |
| 249 | * entry.S :*/ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 250 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 251 | /*H:260 When we make traps go directly into the Guest, we need to make sure |
| 252 | * the kernel stack is valid (ie. mapped in the page tables). Otherwise, the |
| 253 | * CPU trying to deliver the trap will fault while trying to push the interrupt |
| 254 | * words on the stack: this is called a double fault, and it forces us to kill |
| 255 | * the Guest. |
| 256 | * |
| 257 | * Which is deeply unfair, because (literally!) it wasn't the Guests' fault. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 258 | void pin_stack_pages(struct lguest *lg) |
| 259 | { |
| 260 | unsigned int i; |
| 261 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 262 | /* Depending on the CONFIG_4KSTACKS option, the Guest can have one or |
| 263 | * two pages of stack space. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 264 | for (i = 0; i < lg->stack_pages; i++) |
Rusty Russell | 8057d76 | 2007-08-30 06:35:08 +1000 | [diff] [blame] | 265 | /* The stack grows *upwards*, so the address we're given is the |
| 266 | * start of the page after the kernel stack. Subtract one to |
| 267 | * get back onto the first stack page, and keep subtracting to |
| 268 | * get to the rest of the stack pages. */ |
| 269 | pin_page(lg, lg->esp1 - 1 - i * PAGE_SIZE); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 272 | /* Direct traps also mean that we need to know whenever the Guest wants to use |
| 273 | * a different kernel stack, so we can change the IDT entries to use that |
| 274 | * stack. The IDT entries expect a virtual address, so unlike most addresses |
| 275 | * the Guest gives us, the "esp" (stack pointer) value here is virtual, not |
| 276 | * physical. |
| 277 | * |
| 278 | * In Linux each process has its own kernel stack, so this happens a lot: we |
| 279 | * change stacks on each context switch. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 280 | void guest_set_stack(struct lguest *lg, u32 seg, u32 esp, unsigned int pages) |
| 281 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 282 | /* You are not allowd have a stack segment with privilege level 0: bad |
| 283 | * Guest! */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 284 | if ((seg & 0x3) != GUEST_PL) |
| 285 | kill_guest(lg, "bad stack segment %i", seg); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 286 | /* We only expect one or two stack pages. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 287 | if (pages > 2) |
| 288 | kill_guest(lg, "bad stack pages %u", pages); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 289 | /* Save where the stack is, and how many pages */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 290 | lg->ss1 = seg; |
| 291 | lg->esp1 = esp; |
| 292 | lg->stack_pages = pages; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 293 | /* Make sure the new stack pages are mapped */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 294 | pin_stack_pages(lg); |
| 295 | } |
| 296 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 297 | /* All this reference to mapping stacks leads us neatly into the other complex |
| 298 | * part of the Host: page table handling. */ |
| 299 | |
| 300 | /*H:235 This is the routine which actually checks the Guest's IDT entry and |
| 301 | * transfers it into our entry in "struct lguest": */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 302 | static void set_trap(struct lguest *lg, struct desc_struct *trap, |
| 303 | unsigned int num, u32 lo, u32 hi) |
| 304 | { |
| 305 | u8 type = idt_type(lo, hi); |
| 306 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 307 | /* We zero-out a not-present entry */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 308 | if (!idt_present(lo, hi)) { |
| 309 | trap->a = trap->b = 0; |
| 310 | return; |
| 311 | } |
| 312 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 313 | /* We only support interrupt and trap gates. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 314 | if (type != 0xE && type != 0xF) |
| 315 | kill_guest(lg, "bad IDT type %i", type); |
| 316 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 317 | /* We only copy the handler address, present bit, privilege level and |
| 318 | * type. The privilege level controls where the trap can be triggered |
| 319 | * manually with an "int" instruction. This is usually GUEST_PL, |
| 320 | * except for system calls which userspace can use. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 321 | trap->a = ((__KERNEL_CS|GUEST_PL)<<16) | (lo&0x0000FFFF); |
| 322 | trap->b = (hi&0xFFFFEF00); |
| 323 | } |
| 324 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 325 | /*H:230 While we're here, dealing with delivering traps and interrupts to the |
| 326 | * Guest, we might as well complete the picture: how the Guest tells us where |
| 327 | * it wants them to go. This would be simple, except making traps fast |
| 328 | * requires some tricks. |
| 329 | * |
| 330 | * We saw the Guest setting Interrupt Descriptor Table (IDT) entries with the |
| 331 | * LHCALL_LOAD_IDT_ENTRY hypercall before: that comes here. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 332 | void load_guest_idt_entry(struct lguest *lg, unsigned int num, u32 lo, u32 hi) |
| 333 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 334 | /* Guest never handles: NMI, doublefault, spurious interrupt or |
| 335 | * hypercall. We ignore when it tries to set them. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 336 | if (num == 2 || num == 8 || num == 15 || num == LGUEST_TRAP_ENTRY) |
| 337 | return; |
| 338 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 339 | /* Mark the IDT as changed: next time the Guest runs we'll know we have |
| 340 | * to copy this again. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 341 | lg->changed |= CHANGED_IDT; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 342 | |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 343 | /* Check that the Guest doesn't try to step outside the bounds. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 344 | if (num >= ARRAY_SIZE(lg->arch.idt)) |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 345 | kill_guest(lg, "Setting idt entry %u", num); |
| 346 | else |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 347 | set_trap(lg, &lg->arch.idt[num], num, lo, hi); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 350 | /* The default entry for each interrupt points into the Switcher routines which |
| 351 | * simply return to the Host. The run_guest() loop will then call |
| 352 | * deliver_trap() to bounce it back into the Guest. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 353 | static void default_idt_entry(struct desc_struct *idt, |
| 354 | int trap, |
| 355 | const unsigned long handler) |
| 356 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 357 | /* A present interrupt gate. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 358 | u32 flags = 0x8e00; |
| 359 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 360 | /* Set the privilege level on the entry for the hypercall: this allows |
| 361 | * the Guest to use the "int" instruction to trigger it. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 362 | if (trap == LGUEST_TRAP_ENTRY) |
| 363 | flags |= (GUEST_PL << 13); |
| 364 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 365 | /* Now pack it into the IDT entry in its weird format. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 366 | idt->a = (LGUEST_CS<<16) | (handler&0x0000FFFF); |
| 367 | idt->b = (handler&0xFFFF0000) | flags; |
| 368 | } |
| 369 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 370 | /* When the Guest first starts, we put default entries into the IDT. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 371 | void setup_default_idt_entries(struct lguest_ro_state *state, |
| 372 | const unsigned long *def) |
| 373 | { |
| 374 | unsigned int i; |
| 375 | |
| 376 | for (i = 0; i < ARRAY_SIZE(state->guest_idt); i++) |
| 377 | default_idt_entry(&state->guest_idt[i], i, def[i]); |
| 378 | } |
| 379 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 380 | /*H:240 We don't use the IDT entries in the "struct lguest" directly, instead |
| 381 | * we copy them into the IDT which we've set up for Guests on this CPU, just |
| 382 | * before we run the Guest. This routine does that copy. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 383 | void copy_traps(const struct lguest *lg, struct desc_struct *idt, |
| 384 | const unsigned long *def) |
| 385 | { |
| 386 | unsigned int i; |
| 387 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 388 | /* We can simply copy the direct traps, otherwise we use the default |
| 389 | * ones in the Switcher: they will return to the Host. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 390 | for (i = 0; i < ARRAY_SIZE(lg->arch.idt); i++) { |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 391 | /* If no Guest can ever override this trap, leave it alone. */ |
| 392 | if (!direct_trap(i)) |
| 393 | continue; |
| 394 | |
| 395 | /* Only trap gates (type 15) can go direct to the Guest. |
| 396 | * Interrupt gates (type 14) disable interrupts as they are |
| 397 | * entered, which we never let the Guest do. Not present |
| 398 | * entries (type 0x0) also can't go direct, of course. */ |
Jes Sorensen | 625efab | 2007-10-22 11:03:28 +1000 | [diff] [blame^] | 399 | if (idt_type(lg->arch.idt[i].a, lg->arch.idt[i].b) == 0xF) |
| 400 | idt[i] = lg->arch.idt[i]; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 401 | else |
Rusty Russell | 56adbe9 | 2007-10-22 11:03:28 +1000 | [diff] [blame] | 402 | /* Reset it to the default. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 403 | default_idt_entry(&idt[i], i, def[i]); |
| 404 | } |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | void guest_set_clockevent(struct lguest *lg, unsigned long delta) |
| 408 | { |
| 409 | ktime_t expires; |
| 410 | |
| 411 | if (unlikely(delta == 0)) { |
| 412 | /* Clock event device is shutting down. */ |
| 413 | hrtimer_cancel(&lg->hrt); |
| 414 | return; |
| 415 | } |
| 416 | |
| 417 | expires = ktime_add_ns(ktime_get_real(), delta); |
| 418 | hrtimer_start(&lg->hrt, expires, HRTIMER_MODE_ABS); |
| 419 | } |
| 420 | |
| 421 | static enum hrtimer_restart clockdev_fn(struct hrtimer *timer) |
| 422 | { |
| 423 | struct lguest *lg = container_of(timer, struct lguest, hrt); |
| 424 | |
| 425 | set_bit(0, lg->irqs_pending); |
| 426 | if (lg->halted) |
| 427 | wake_up_process(lg->tsk); |
| 428 | return HRTIMER_NORESTART; |
| 429 | } |
| 430 | |
| 431 | void init_clockdev(struct lguest *lg) |
| 432 | { |
| 433 | hrtimer_init(&lg->hrt, CLOCK_REALTIME, HRTIMER_MODE_ABS); |
| 434 | lg->hrt.function = clockdev_fn; |
| 435 | } |