Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 1 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 2 | * Asm versions of Xen pv-ops, suitable for either direct use or |
| 3 | * inlining. The inline versions are the same as the direct-use |
| 4 | * versions, with the pre- and post-amble chopped off. |
| 5 | * |
| 6 | * This code is encoded for size rather than absolute efficiency, with |
| 7 | * a view to being able to inline as much as possible. |
| 8 | * |
| 9 | * We only bother with direct forms (ie, vcpu in pda) of the |
| 10 | * operations here; the indirect forms are better handled in C, since |
| 11 | * they're generally too large to inline anyway. |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 14 | #include <asm/thread_info.h> |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 15 | #include <asm/processor-flags.h> |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 16 | #include <asm/segment.h> |
H. Peter Anvin | 8f6380b | 2012-04-20 12:19:52 -0700 | [diff] [blame] | 17 | #include <asm/asm.h> |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 18 | |
| 19 | #include <xen/interface/xen.h> |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 20 | |
Jeremy Fitzhardinge | 5393744 | 2009-02-02 13:55:42 -0800 | [diff] [blame] | 21 | #include "xen-asm.h" |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 22 | |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 23 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 24 | * Force an event check by making a hypercall, but preserve regs |
| 25 | * before making the call. |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 26 | */ |
Jeremy Fitzhardinge | 5393744 | 2009-02-02 13:55:42 -0800 | [diff] [blame] | 27 | check_events: |
| 28 | push %eax |
| 29 | push %ecx |
| 30 | push %edx |
| 31 | call xen_force_evtchn_callback |
| 32 | pop %edx |
| 33 | pop %ecx |
| 34 | pop %eax |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 35 | ret |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 36 | |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 37 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 38 | * We can't use sysexit directly, because we're not running in ring0. |
| 39 | * But we can easily fake it up using iret. Assuming xen_sysexit is |
| 40 | * jumped to with a standard stack frame, we can just strip it back to |
| 41 | * a standard iret frame and use iret. |
Jeremy Fitzhardinge | b77797f | 2008-04-02 10:54:11 -0700 | [diff] [blame] | 42 | */ |
| 43 | ENTRY(xen_sysexit) |
| 44 | movl PT_EAX(%esp), %eax /* Shouldn't be necessary? */ |
| 45 | orl $X86_EFLAGS_IF, PT_EFLAGS(%esp) |
| 46 | lea PT_EIP(%esp), %esp |
| 47 | |
| 48 | jmp xen_iret |
| 49 | ENDPROC(xen_sysexit) |
| 50 | |
| 51 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 52 | * This is run where a normal iret would be run, with the same stack setup: |
| 53 | * 8: eflags |
| 54 | * 4: cs |
| 55 | * esp-> 0: eip |
| 56 | * |
| 57 | * This attempts to make sure that any pending events are dealt with |
| 58 | * on return to usermode, but there is a small window in which an |
| 59 | * event can happen just before entering usermode. If the nested |
| 60 | * interrupt ends up setting one of the TIF_WORK_MASK pending work |
| 61 | * flags, they will not be tested again before returning to |
| 62 | * usermode. This means that a process can end up with pending work, |
| 63 | * which will be unprocessed until the process enters and leaves the |
| 64 | * kernel again, which could be an unbounded amount of time. This |
| 65 | * means that a pending signal or reschedule event could be |
| 66 | * indefinitely delayed. |
| 67 | * |
| 68 | * The fix is to notice a nested interrupt in the critical window, and |
| 69 | * if one occurs, then fold the nested interrupt into the current |
| 70 | * interrupt stack frame, and re-process it iteratively rather than |
| 71 | * recursively. This means that it will exit via the normal path, and |
| 72 | * all pending work will be dealt with appropriately. |
| 73 | * |
| 74 | * Because the nested interrupt handler needs to deal with the current |
| 75 | * stack state in whatever form its in, we keep things simple by only |
| 76 | * using a single register which is pushed/popped on the stack. |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 77 | */ |
Boris Ostrovsky | 4461bbc | 2014-04-10 12:17:09 -0400 | [diff] [blame] | 78 | |
| 79 | .macro POP_FS |
| 80 | 1: |
| 81 | popw %fs |
| 82 | .pushsection .fixup, "ax" |
| 83 | 2: movw $0, (%esp) |
| 84 | jmp 1b |
| 85 | .popsection |
| 86 | _ASM_EXTABLE(1b,2b) |
| 87 | .endm |
| 88 | |
Jeremy Fitzhardinge | 81e103f | 2008-04-17 17:40:51 +0200 | [diff] [blame] | 89 | ENTRY(xen_iret) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 90 | /* test eflags for special cases */ |
| 91 | testl $(X86_EFLAGS_VM | XEN_EFLAGS_NMI), 8(%esp) |
| 92 | jnz hyper_iret |
| 93 | |
| 94 | push %eax |
| 95 | ESP_OFFSET=4 # bytes pushed onto stack |
| 96 | |
Boris Ostrovsky | 4461bbc | 2014-04-10 12:17:09 -0400 | [diff] [blame] | 97 | /* Store vcpu_info pointer for easy access */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 98 | #ifdef CONFIG_SMP |
Boris Ostrovsky | 4461bbc | 2014-04-10 12:17:09 -0400 | [diff] [blame] | 99 | pushw %fs |
| 100 | movl $(__KERNEL_PERCPU), %eax |
| 101 | movl %eax, %fs |
| 102 | movl %fs:xen_vcpu, %eax |
| 103 | POP_FS |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 104 | #else |
Jan Beulich | 13d2b4d | 2013-01-24 13:11:10 +0000 | [diff] [blame] | 105 | movl %ss:xen_vcpu, %eax |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 106 | #endif |
| 107 | |
| 108 | /* check IF state we're restoring */ |
| 109 | testb $X86_EFLAGS_IF>>8, 8+1+ESP_OFFSET(%esp) |
| 110 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 111 | /* |
| 112 | * Maybe enable events. Once this happens we could get a |
| 113 | * recursive event, so the critical region starts immediately |
| 114 | * afterwards. However, if that happens we don't end up |
| 115 | * resuming the code, so we don't have to be worried about |
| 116 | * being preempted to another CPU. |
| 117 | */ |
Jan Beulich | 13d2b4d | 2013-01-24 13:11:10 +0000 | [diff] [blame] | 118 | setz %ss:XEN_vcpu_info_mask(%eax) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 119 | xen_iret_start_crit: |
| 120 | |
| 121 | /* check for unmasked and pending */ |
Jan Beulich | 13d2b4d | 2013-01-24 13:11:10 +0000 | [diff] [blame] | 122 | cmpw $0x0001, %ss:XEN_vcpu_info_pending(%eax) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 123 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 124 | /* |
| 125 | * If there's something pending, mask events again so we can |
Igor Mammedov | d198d49 | 2011-09-01 13:46:55 +0200 | [diff] [blame] | 126 | * jump back into xen_hypervisor_callback. Otherwise do not |
| 127 | * touch XEN_vcpu_info_mask. |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 128 | */ |
Igor Mammedov | d198d49 | 2011-09-01 13:46:55 +0200 | [diff] [blame] | 129 | jne 1f |
Jan Beulich | 13d2b4d | 2013-01-24 13:11:10 +0000 | [diff] [blame] | 130 | movb $1, %ss:XEN_vcpu_info_mask(%eax) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 131 | |
Igor Mammedov | d198d49 | 2011-09-01 13:46:55 +0200 | [diff] [blame] | 132 | 1: popl %eax |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 133 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 134 | /* |
| 135 | * From this point on the registers are restored and the stack |
| 136 | * updated, so we don't need to worry about it if we're |
| 137 | * preempted |
| 138 | */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 139 | iret_restore_end: |
| 140 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 141 | /* |
| 142 | * Jump to hypervisor_callback after fixing up the stack. |
| 143 | * Events are masked, so jumping out of the critical region is |
| 144 | * OK. |
| 145 | */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 146 | je xen_hypervisor_callback |
| 147 | |
Jeremy Fitzhardinge | 90e9f53 | 2008-03-17 16:37:12 -0700 | [diff] [blame] | 148 | 1: iret |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 149 | xen_iret_end_crit: |
H. Peter Anvin | 8f6380b | 2012-04-20 12:19:52 -0700 | [diff] [blame] | 150 | _ASM_EXTABLE(1b, iret_exc) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 151 | |
| 152 | hyper_iret: |
| 153 | /* put this out of line since its very rarely used */ |
| 154 | jmp hypercall_page + __HYPERVISOR_iret * 32 |
| 155 | |
| 156 | .globl xen_iret_start_crit, xen_iret_end_crit |
| 157 | |
| 158 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 159 | * This is called by xen_hypervisor_callback in entry.S when it sees |
| 160 | * that the EIP at the time of interrupt was between |
| 161 | * xen_iret_start_crit and xen_iret_end_crit. We're passed the EIP in |
| 162 | * %eax so we can do a more refined determination of what to do. |
| 163 | * |
| 164 | * The stack format at this point is: |
| 165 | * ---------------- |
| 166 | * ss : (ss/esp may be present if we came from usermode) |
| 167 | * esp : |
| 168 | * eflags } outer exception info |
| 169 | * cs } |
| 170 | * eip } |
| 171 | * ---------------- <- edi (copy dest) |
| 172 | * eax : outer eax if it hasn't been restored |
| 173 | * ---------------- |
| 174 | * eflags } nested exception info |
| 175 | * cs } (no ss/esp because we're nested |
| 176 | * eip } from the same ring) |
| 177 | * orig_eax }<- esi (copy src) |
| 178 | * - - - - - - - - |
| 179 | * fs } |
| 180 | * es } |
| 181 | * ds } SAVE_ALL state |
| 182 | * eax } |
| 183 | * : : |
| 184 | * ebx }<- esp |
| 185 | * ---------------- |
| 186 | * |
| 187 | * In order to deliver the nested exception properly, we need to shift |
| 188 | * everything from the return addr up to the error code so it sits |
| 189 | * just under the outer exception info. This means that when we |
| 190 | * handle the exception, we do it in the context of the outer |
| 191 | * exception rather than starting a new one. |
| 192 | * |
| 193 | * The only caveat is that if the outer eax hasn't been restored yet |
| 194 | * (ie, it's still on stack), we need to insert its value into the |
| 195 | * SAVE_ALL state before going on, since it's usermode state which we |
| 196 | * eventually need to restore. |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 197 | */ |
| 198 | ENTRY(xen_iret_crit_fixup) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 199 | /* |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 200 | * Paranoia: Make sure we're really coming from kernel space. |
| 201 | * One could imagine a case where userspace jumps into the |
| 202 | * critical range address, but just before the CPU delivers a |
| 203 | * GP, it decides to deliver an interrupt instead. Unlikely? |
| 204 | * Definitely. Easy to avoid? Yes. The Intel documents |
| 205 | * explicitly say that the reported EIP for a bad jump is the |
| 206 | * jump instruction itself, not the destination, but some |
| 207 | * virtual environments get this wrong. |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 208 | */ |
Jeremy Fitzhardinge | 0f2c876 | 2008-03-17 16:37:22 -0700 | [diff] [blame] | 209 | movl PT_CS(%esp), %ecx |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 210 | andl $SEGMENT_RPL_MASK, %ecx |
| 211 | cmpl $USER_RPL, %ecx |
| 212 | je 2f |
| 213 | |
Jeremy Fitzhardinge | 0f2c876 | 2008-03-17 16:37:22 -0700 | [diff] [blame] | 214 | lea PT_ORIG_EAX(%esp), %esi |
| 215 | lea PT_EFLAGS(%esp), %edi |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 216 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 217 | /* |
| 218 | * If eip is before iret_restore_end then stack |
| 219 | * hasn't been restored yet. |
| 220 | */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 221 | cmp $iret_restore_end, %eax |
| 222 | jae 1f |
| 223 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 224 | movl 0+4(%edi), %eax /* copy EAX (just above top of frame) */ |
Jeremy Fitzhardinge | 0f2c876 | 2008-03-17 16:37:22 -0700 | [diff] [blame] | 225 | movl %eax, PT_EAX(%esp) |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 226 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 227 | lea ESP_OFFSET(%edi), %edi /* move dest up over saved regs */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 228 | |
| 229 | /* set up the copy */ |
| 230 | 1: std |
Jeremy Fitzhardinge | 0f2c876 | 2008-03-17 16:37:22 -0700 | [diff] [blame] | 231 | mov $PT_EIP / 4, %ecx /* saved regs up to orig_eax */ |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 232 | rep movsl |
| 233 | cld |
| 234 | |
Tejun Heo | 130ace1 | 2009-02-06 00:57:48 +0900 | [diff] [blame] | 235 | lea 4(%edi), %esp /* point esp to new frame */ |
Jeremy Fitzhardinge | 0f2c876 | 2008-03-17 16:37:22 -0700 | [diff] [blame] | 236 | 2: jmp xen_do_upcall |
Jeremy Fitzhardinge | 6487673 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 237 | |