blob: ed9746340363b628dbad84ede8ca4c099ba904fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Compatibility mode system call entry point for x86-64.
3 *
4 * Copyright 2000-2002 Andi Kleen, SuSE Labs.
5 */
6
7#include <asm/dwarf2.h>
8#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +02009#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/current.h>
11#include <asm/errno.h>
12#include <asm/ia32_unistd.h>
13#include <asm/thread_info.h>
14#include <asm/segment.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070015#include <asm/irqflags.h>
H. Peter Anvin1ce6f862012-04-20 12:19:50 -070016#include <asm/asm.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070017#include <asm/smap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/linkage.h>
Eric Parisd7e75282012-01-03 14:23:06 -050019#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Roland McGrath5cbf1562008-06-24 01:13:31 -070021/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
22#include <linux/elf-em.h>
23#define AUDIT_ARCH_I386 (EM_386|__AUDIT_ARCH_LE)
24#define __AUDIT_ARCH_LE 0x40000000
25
26#ifndef CONFIG_AUDITSYSCALL
Jan Beulich24e35802009-09-30 11:22:11 +010027#define sysexit_audit ia32_ret_from_sys_call
28#define sysretl_audit ia32_ret_from_sys_call
Roland McGrath5cbf1562008-06-24 01:13:31 -070029#endif
30
Jiri Olsaea714542011-03-07 19:10:39 +010031 .section .entry.text, "ax"
32
Denys Vlasenkof2db9382015-02-26 14:40:30 -080033 /* clobbers %rax */
34 .macro CLEAR_RREGS _r9=rax
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 xorl %eax,%eax
Denys Vlasenkof2db9382015-02-26 14:40:30 -080036 movq %rax,R11(%rsp)
37 movq %rax,R10(%rsp)
38 movq %\_r9,R9(%rsp)
39 movq %rax,R8(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 .endm
41
Roland McGrathd4d67152008-07-09 02:38:07 -070042 /*
43 * Reload arg registers from stack in case ptrace changed them.
44 * We don't reload %eax because syscall_trace_enter() returned
Roland McGratheefdca02010-09-14 12:22:58 -070045 * the %rax value we should see. Instead, we just truncate that
46 * value to 32 bits again as we did on entry from user mode.
47 * If it's a new value set by user_regset during entry tracing,
48 * this matches the normal truncation of the user-mode value.
49 * If it's -1 to make us punt the syscall, then (u32)-1 is still
50 * an appropriately invalid value.
Roland McGrathd4d67152008-07-09 02:38:07 -070051 */
Denys Vlasenkof2db9382015-02-26 14:40:30 -080052 .macro LOAD_ARGS32 _r9=0
Jan Beulich295286a2008-08-29 13:21:11 +010053 .if \_r9
Denys Vlasenkof2db9382015-02-26 14:40:30 -080054 movl R9(%rsp),%r9d
Jan Beulich295286a2008-08-29 13:21:11 +010055 .endif
Denys Vlasenkof2db9382015-02-26 14:40:30 -080056 movl RCX(%rsp),%ecx
57 movl RDX(%rsp),%edx
58 movl RSI(%rsp),%esi
59 movl RDI(%rsp),%edi
Roland McGratheefdca02010-09-14 12:22:58 -070060 movl %eax,%eax /* zero extension */
Andi Kleen176df242007-09-21 16:16:18 +020061 .endm
62
Jan Beulich27651302006-01-11 22:41:59 +010063 .macro CFI_STARTPROC32 simple
64 CFI_STARTPROC \simple
65 CFI_UNDEFINED r8
66 CFI_UNDEFINED r9
67 CFI_UNDEFINED r10
68 CFI_UNDEFINED r11
69 CFI_UNDEFINED r12
70 CFI_UNDEFINED r13
71 CFI_UNDEFINED r14
72 CFI_UNDEFINED r15
73 .endm
74
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040075#ifdef CONFIG_PARAVIRT
76ENTRY(native_usergs_sysret32)
77 swapgs
78 sysretl
79ENDPROC(native_usergs_sysret32)
80
81ENTRY(native_irq_enable_sysexit)
82 swapgs
83 sti
84 sysexit
85ENDPROC(native_irq_enable_sysexit)
86#endif
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
89 * 32bit SYSENTER instruction entry.
90 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -080091 * SYSENTER loads ss, rsp, cs, and rip from previously programmed MSRs.
92 * IF and VM in rflags are cleared (IOW: interrupts are off).
93 * SYSENTER does not save anything on the stack,
94 * and does not save old rip (!!!) and rflags.
95 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * Arguments:
Denys Vlasenkob87cf632015-02-26 14:40:32 -080097 * eax system call number
98 * ebx arg1
99 * ecx arg2
100 * edx arg3
101 * esi arg4
102 * edi arg5
103 * ebp user stack
104 * 0(%ebp) arg6
105 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * This is purely a fast path. For anything complicated we use the int 0x80
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800107 * path below. We set up a complete hardware stack frame to share code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * with the int 0x80 path.
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110ENTRY(ia32_sysenter_target)
Jan Beulich27651302006-01-11 22:41:59 +0100111 CFI_STARTPROC32 simple
Jan Beulichadf14232006-09-26 10:52:41 +0200112 CFI_SIGNAL_FRAME
Jan Beulich7effaa82005-09-12 18:49:24 +0200113 CFI_DEF_CFA rsp,0
114 CFI_REGISTER rsp,rbp
Jeremy Fitzhardinge457da702008-06-26 07:28:51 -0700115 SWAPGS_UNSAFE_STACK
Brian Gerst9af45652009-01-19 00:38:58 +0900116 movq PER_CPU_VAR(kernel_stack), %rsp
117 addq $(KERNEL_STACK_OFFSET),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700118 /*
119 * No need to follow this irqs on/off section: the syscall
120 * disabled irqs, here we enable it straight after entry:
121 */
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400122 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800123 /* Construct iret frame (ss,rsp,rflags,cs,rip) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 movl %ebp,%ebp /* zero extension */
Jan Beulich60cf6372011-02-28 15:54:40 +0000125 pushq_cfi $__USER32_DS
Jan Beulich7effaa82005-09-12 18:49:24 +0200126 /*CFI_REL_OFFSET ss,0*/
Jan Beulich60cf6372011-02-28 15:54:40 +0000127 pushq_cfi %rbp
Jan Beulich7effaa82005-09-12 18:49:24 +0200128 CFI_REL_OFFSET rsp,0
Jan Beulich60cf6372011-02-28 15:54:40 +0000129 pushfq_cfi
Jan Beulich7effaa82005-09-12 18:49:24 +0200130 /*CFI_REL_OFFSET rflags,0*/
Jan Beulich46db09d2011-11-29 11:17:45 +0000131 movl TI_sysenter_return+THREAD_INFO(%rsp,3*8-KERNEL_STACK_OFFSET),%r10d
Jan Beulich7effaa82005-09-12 18:49:24 +0200132 CFI_REGISTER rip,r10
Jan Beulich60cf6372011-02-28 15:54:40 +0000133 pushq_cfi $__USER32_CS
Jan Beulich7effaa82005-09-12 18:49:24 +0200134 /*CFI_REL_OFFSET cs,0*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 movl %eax, %eax
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800136 /* Store thread_info->sysenter_return in rip stack slot */
Jan Beulich60cf6372011-02-28 15:54:40 +0000137 pushq_cfi %r10
Jan Beulich7effaa82005-09-12 18:49:24 +0200138 CFI_REL_OFFSET rip,0
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800139 /* Store orig_ax */
Jan Beulich60cf6372011-02-28 15:54:40 +0000140 pushq_cfi %rax
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800141 /* Construct the rest of "struct pt_regs" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800143 ALLOC_PT_GPREGS_ON_STACK
144 SAVE_C_REGS_EXCEPT_R891011
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800145 /*
146 * no need to do an access_ok check here because rbp has been
147 * 32bit zero extended
148 */
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700149 ASM_STAC
Jan Beulich295286a2008-08-29 13:21:11 +01001501: movl (%rbp),%ebp
H. Peter Anvin1ce6f862012-04-20 12:19:50 -0700151 _ASM_EXTABLE(1b,ia32_badarg)
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700152 ASM_CLAC
Andy Lutomirski8c7aa692014-10-01 11:49:04 -0700153
154 /*
155 * Sysenter doesn't filter flags, so we need to clear NT
156 * ourselves. To save a few cycles, we can check whether
157 * NT was set instead of doing an unconditional popfq.
158 */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800159 testl $X86_EFLAGS_NT,EFLAGS(%rsp)
Andy Lutomirski8c7aa692014-10-01 11:49:04 -0700160 jnz sysenter_fix_flags
161sysenter_flags_fixed:
162
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800163 orl $TS_COMPAT,TI_status+THREAD_INFO(%rsp,RIP)
164 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Jan Beulich7effaa82005-09-12 18:49:24 +0200165 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 jnz sysenter_tracesys
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700167 cmpq $(IA32_NR_syscalls-1),%rax
Andi Kleen67d53ea2006-04-07 19:50:31 +0200168 ja ia32_badsys
Roland McGrathd4d67152008-07-09 02:38:07 -0700169sysenter_do_call:
Denys Vlasenko14f6e952015-02-26 14:40:35 -0800170 /* 32bit syscall -> 64bit C ABI argument conversion */
171 movl %edi,%r8d /* arg5 */
172 movl %ebp,%r9d /* arg6 */
173 xchg %ecx,%esi /* rsi:arg2, rcx:arg4 */
174 movl %ebx,%edi /* arg1 */
175 movl %edx,%edx /* arg3 (zero extension) */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700176sysenter_dispatch:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 call *ia32_sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800178 movq %rax,RAX(%rsp)
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400179 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700180 TRACE_IRQS_OFF
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800181 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700182 jnz sysexit_audit
183sysexit_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800184 andl $~TS_COMPAT,TI_status+THREAD_INFO(%rsp,RIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* clear IF, that popfq doesn't enable interrupts early */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800186 andl $~0x200,EFLAGS(%rsp)
187 movl RIP(%rsp),%edx /* User %eip */
Roland McGrath36197c92008-01-30 13:30:43 +0100188 CFI_REGISTER rip,rdx
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800189 RESTORE_RSI_RDI
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800190 /* pop everything except ss,rsp,rflags slots */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800191 REMOVE_PT_GPREGS_FROM_STACK 3*8
Jan Beulich24e35802009-09-30 11:22:11 +0100192 xorq %r8,%r8
193 xorq %r9,%r9
194 xorq %r10,%r10
195 xorq %r11,%r11
Jan Beulich60cf6372011-02-28 15:54:40 +0000196 popfq_cfi
Jan Beulich7effaa82005-09-12 18:49:24 +0200197 /*CFI_RESTORE rflags*/
Jan Beulich60cf6372011-02-28 15:54:40 +0000198 popq_cfi %rcx /* User %esp */
Jan Beulich7effaa82005-09-12 18:49:24 +0200199 CFI_REGISTER rsp,rcx
Ingo Molnar2601e642006-07-03 00:24:45 -0700200 TRACE_IRQS_ON
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800201 /*
202 * 32bit SYSEXIT restores eip from edx, esp from ecx.
203 * cs and ss are loaded from MSRs.
204 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400205 ENABLE_INTERRUPTS_SYSEXIT32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Andy Lutomirski8c7aa692014-10-01 11:49:04 -0700207 CFI_RESTORE_STATE
208
Roland McGrath5cbf1562008-06-24 01:13:31 -0700209#ifdef CONFIG_AUDITSYSCALL
210 .macro auditsys_entry_common
Richard Guy Briggsb4f0d372014-03-04 10:38:06 -0500211 movl %esi,%r8d /* 5th arg: 4th syscall arg */
212 movl %ecx,%r9d /*swap with edx*/
213 movl %edx,%ecx /* 4th arg: 3rd syscall arg */
214 movl %r9d,%edx /* 3rd arg: 2nd syscall arg */
215 movl %ebx,%esi /* 2nd arg: 1st syscall arg */
216 movl %eax,%edi /* 1st arg: syscall number */
Eric Parisb05d8442012-01-03 14:23:06 -0500217 call __audit_syscall_entry
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800218 movl RAX(%rsp),%eax /* reload syscall number */
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700219 cmpq $(IA32_NR_syscalls-1),%rax
Roland McGrath5cbf1562008-06-24 01:13:31 -0700220 ja ia32_badsys
221 movl %ebx,%edi /* reload 1st syscall arg */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800222 movl RCX(%rsp),%esi /* reload 2nd syscall arg */
223 movl RDX(%rsp),%edx /* reload 3rd syscall arg */
224 movl RSI(%rsp),%ecx /* reload 4th syscall arg */
225 movl RDI(%rsp),%r8d /* reload 5th syscall arg */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700226 .endm
227
Jan Beulich81766742009-10-26 15:20:29 +0000228 .macro auditsys_exit exit
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800229 testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP)
Jan Beulich24e35802009-09-30 11:22:11 +0100230 jnz ia32_ret_from_sys_call
Roland McGrath5cbf1562008-06-24 01:13:31 -0700231 TRACE_IRQS_ON
Jan Beulich40a1ef92013-01-30 07:55:53 +0000232 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700233 movl %eax,%esi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500234 cmpl $-MAX_ERRNO,%eax /* is it an error ? */
Eric Parisf031cd22012-01-03 14:23:06 -0500235 jbe 1f
236 movslq %eax, %rsi /* if error sign extend to 64 bits */
2371: setbe %al /* 1 if error, 0 if not */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700238 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500239 call __audit_syscall_exit
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800240 movq RAX(%rsp),%rax /* reload syscall return value */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700241 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
Jan Beulich40a1ef92013-01-30 07:55:53 +0000242 DISABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700243 TRACE_IRQS_OFF
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800244 testl %edi,TI_flags+THREAD_INFO(%rsp,RIP)
Jan Beulich24e35802009-09-30 11:22:11 +0100245 jz \exit
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800246 CLEAR_RREGS
Jan Beulich24e35802009-09-30 11:22:11 +0100247 jmp int_with_check
Roland McGrath5cbf1562008-06-24 01:13:31 -0700248 .endm
249
250sysenter_auditsys:
Roland McGrath5cbf1562008-06-24 01:13:31 -0700251 auditsys_entry_common
252 movl %ebp,%r9d /* reload 6th syscall arg */
253 jmp sysenter_dispatch
254
255sysexit_audit:
256 auditsys_exit sysexit_from_sys_call
257#endif
258
Andy Lutomirski8c7aa692014-10-01 11:49:04 -0700259sysenter_fix_flags:
260 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_FIXED)
261 popfq_cfi
262 jmp sysenter_flags_fixed
263
Roland McGrath5cbf1562008-06-24 01:13:31 -0700264sysenter_tracesys:
Roland McGrath5cbf1562008-06-24 01:13:31 -0700265#ifdef CONFIG_AUDITSYSCALL
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800266 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700267 jz sysenter_auditsys
268#endif
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800269 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 CLEAR_RREGS
Roland McGrath48ee6792008-03-18 18:23:50 -0700271 movq $-ENOSYS,RAX(%rsp)/* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 movq %rsp,%rdi /* &pt_regs -> arg1 */
273 call syscall_trace_enter
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800274 LOAD_ARGS32 /* reload args from stack in case ptrace changed it */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800275 RESTORE_EXTRA_REGS
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700276 cmpq $(IA32_NR_syscalls-1),%rax
Roland McGrath48ee6792008-03-18 18:23:50 -0700277 ja int_ret_from_sys_call /* sysenter_tracesys has set RAX(%rsp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 jmp sysenter_do_call
279 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200280ENDPROC(ia32_sysenter_target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/*
283 * 32bit SYSCALL instruction entry.
284 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800285 * 32bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
286 * then loads new ss, cs, and rip from previously programmed MSRs.
287 * rflags gets masked by a value from another MSR (so CLD and CLAC
288 * are not needed). SYSCALL does not save anything on the stack
289 * and does not change rsp.
290 *
291 * Note: rflags saving+masking-with-MSR happens only in Long mode
292 * (in legacy 32bit mode, IF, RF and VM bits are cleared and that's it).
293 * Don't get confused: rflags saving+masking depends on Long Mode Active bit
294 * (EFER.LMA=1), NOT on bitness of userspace where SYSCALL executes
295 * or target CS descriptor's L bit (SYSCALL does not read segment descriptors).
296 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 * Arguments:
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800298 * eax system call number
299 * ecx return address
300 * ebx arg1
301 * ebp arg2 (note: not saved in the stack frame, should not be touched)
302 * edx arg3
303 * esi arg4
304 * edi arg5
305 * esp user stack
306 * 0(%esp) arg6
307 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * This is purely a fast path. For anything complicated we use the int 0x80
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800309 * path below. We set up a complete hardware stack frame to share code
310 * with the int 0x80 path.
311 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312ENTRY(ia32_cstar_target)
Jan Beulich27651302006-01-11 22:41:59 +0100313 CFI_STARTPROC32 simple
Jan Beulichadf14232006-09-26 10:52:41 +0200314 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900315 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200316 CFI_REGISTER rip,rcx
317 /*CFI_REGISTER rflags,r11*/
Jeremy Fitzhardinge457da702008-06-26 07:28:51 -0700318 SWAPGS_UNSAFE_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 movl %esp,%r8d
Jan Beulich7effaa82005-09-12 18:49:24 +0200320 CFI_REGISTER rsp,r8
Brian Gerst9af45652009-01-19 00:38:58 +0900321 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700322 /*
323 * No need to follow this irqs on/off section: the syscall
324 * disabled irqs and here we enable it straight after entry:
325 */
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400326 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800327 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800328 SAVE_C_REGS_EXCEPT_RCX_R891011
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 movl %eax,%eax /* zero extension */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800330 movq %rax,ORIG_RAX(%rsp)
331 movq %rcx,RIP(%rsp)
332 CFI_REL_OFFSET rip,RIP
333 movq %rbp,RCX(%rsp) /* this lies slightly to ptrace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 movl %ebp,%ecx
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800335 movq $__USER32_CS,CS(%rsp)
336 movq $__USER32_DS,SS(%rsp)
337 movq %r11,EFLAGS(%rsp)
338 /*CFI_REL_OFFSET rflags,EFLAGS*/
339 movq %r8,RSP(%rsp)
340 CFI_REL_OFFSET rsp,RSP
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800341 /* iret stack frame is complete now */
342 /*
343 * no need to do an access_ok check here because r8 has been
344 * 32bit zero extended
345 */
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700346 ASM_STAC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471: movl (%r8),%r9d
H. Peter Anvina3e859f2012-04-20 16:51:50 -0700348 _ASM_EXTABLE(1b,ia32_badarg)
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700349 ASM_CLAC
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800350 orl $TS_COMPAT,TI_status+THREAD_INFO(%rsp,RIP)
351 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Jan Beulich7effaa82005-09-12 18:49:24 +0200352 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 jnz cstar_tracesys
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700354 cmpq $IA32_NR_syscalls-1,%rax
Andi Kleen67d53ea2006-04-07 19:50:31 +0200355 ja ia32_badsys
Jan Beulich295286a2008-08-29 13:21:11 +0100356cstar_do_call:
Denys Vlasenko14f6e952015-02-26 14:40:35 -0800357 /* 32bit syscall -> 64bit C ABI argument conversion */
358 movl %edi,%r8d /* arg5 */
359 /* r9 already loaded */ /* arg6 */
360 xchg %ecx,%esi /* rsi:arg2, rcx:arg4 */
361 movl %ebx,%edi /* arg1 */
362 movl %edx,%edx /* arg3 (zero extension) */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700363cstar_dispatch:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 call *ia32_sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800365 movq %rax,RAX(%rsp)
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400366 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700367 TRACE_IRQS_OFF
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800368 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700369 jnz sysretl_audit
370sysretl_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800371 andl $~TS_COMPAT,TI_status+THREAD_INFO(%rsp,RIP)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800372 RESTORE_RSI_RDI_RDX
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800373 movl RIP(%rsp),%ecx
Jan Beulich7effaa82005-09-12 18:49:24 +0200374 CFI_REGISTER rip,rcx
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800375 movl EFLAGS(%rsp),%r11d
Jan Beulich7effaa82005-09-12 18:49:24 +0200376 /*CFI_REGISTER rflags,r11*/
Jan Beulich24e35802009-09-30 11:22:11 +0100377 xorq %r10,%r10
378 xorq %r9,%r9
379 xorq %r8,%r8
Ingo Molnar2601e642006-07-03 00:24:45 -0700380 TRACE_IRQS_ON
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800381 movl RSP(%rsp),%esp
Jan Beulich7effaa82005-09-12 18:49:24 +0200382 CFI_RESTORE rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800383 /*
384 * 64bit->32bit SYSRET restores eip from ecx,
385 * eflags from r11 (but RF and VM bits are forced to 0),
386 * cs and ss are loaded from MSRs.
387 * (Note: 32bit->32bit SYSRET is different: since r11
388 * does not exist, it merely sets eflags.IF=1).
389 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400390 USERGS_SYSRET32
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800391
Roland McGrath5cbf1562008-06-24 01:13:31 -0700392#ifdef CONFIG_AUDITSYSCALL
393cstar_auditsys:
Jan Beulich7effaa82005-09-12 18:49:24 +0200394 CFI_RESTORE_STATE
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800395 movl %r9d,R9(%rsp) /* register to be clobbered by call */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700396 auditsys_entry_common
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800397 movl R9(%rsp),%r9d /* reload 6th syscall arg */
Roland McGrath5cbf1562008-06-24 01:13:31 -0700398 jmp cstar_dispatch
399
400sysretl_audit:
Jan Beulich81766742009-10-26 15:20:29 +0000401 auditsys_exit sysretl_from_sys_call
Roland McGrath5cbf1562008-06-24 01:13:31 -0700402#endif
403
404cstar_tracesys:
405#ifdef CONFIG_AUDITSYSCALL
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800406 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP)
Roland McGrath5cbf1562008-06-24 01:13:31 -0700407 jz cstar_auditsys
408#endif
Chuck Ebbertecd744e2007-11-07 10:48:39 -0500409 xchgl %r9d,%ebp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800410 SAVE_EXTRA_REGS
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800411 CLEAR_RREGS r9
Roland McGrath48ee6792008-03-18 18:23:50 -0700412 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 movq %rsp,%rdi /* &pt_regs -> arg1 */
414 call syscall_trace_enter
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800415 LOAD_ARGS32 1 /* reload args from stack in case ptrace changed it */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800416 RESTORE_EXTRA_REGS
Chuck Ebbertecd744e2007-11-07 10:48:39 -0500417 xchgl %ebp,%r9d
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700418 cmpq $(IA32_NR_syscalls-1),%rax
Roland McGrath48ee6792008-03-18 18:23:50 -0700419 ja int_ret_from_sys_call /* cstar_tracesys has set RAX(%rsp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 jmp cstar_do_call
Jan Beulich4b787e02006-06-26 13:56:55 +0200421END(ia32_cstar_target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423ia32_badarg:
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700424 ASM_CLAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 movq $-EFAULT,%rax
426 jmp ia32_sysret
427 CFI_ENDPROC
428
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800429/*
430 * Emulated IA32 system calls via int 0x80.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800432 * Arguments:
433 * eax system call number
434 * ebx arg1
435 * ecx arg2
436 * edx arg3
437 * esi arg4
438 * edi arg5
439 * ebp arg6 (note: not saved in the stack frame, should not be touched)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 *
441 * Notes:
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800442 * Uses the same stack frame as the x86-64 version.
443 * All registers except eax must be saved (but ptrace may violate that).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * Arguments are zero extended. For system calls that want sign extension and
445 * take long arguments a wrapper is needed. Most calls can just be called
446 * directly.
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800447 * Assumes it is only called from user space and entered with interrupts off.
448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450ENTRY(ia32_syscall)
Jan Beulichcdc17932007-07-21 17:10:20 +0200451 CFI_STARTPROC32 simple
Jan Beulichadf14232006-09-26 10:52:41 +0200452 CFI_SIGNAL_FRAME
Jan Beulich7effaa82005-09-12 18:49:24 +0200453 CFI_DEF_CFA rsp,SS+8-RIP
454 /*CFI_REL_OFFSET ss,SS-RIP*/
455 CFI_REL_OFFSET rsp,RSP-RIP
456 /*CFI_REL_OFFSET rflags,EFLAGS-RIP*/
457 /*CFI_REL_OFFSET cs,CS-RIP*/
458 CFI_REL_OFFSET rip,RIP-RIP
Jeremy Fitzhardinge360c0442008-07-08 15:06:28 -0700459 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400460 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700461 /*
462 * No need to follow this irqs on/off section: the syscall
463 * disabled irqs and here we enable it straight after entry:
464 */
Jeremy Fitzhardinge66804152008-06-25 00:19:29 -0400465 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 movl %eax,%eax
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800467 pushq_cfi %rax /* store orig_ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 cld
469 /* note the registers are not zero extended to the sf.
470 this could be a problem. */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800471 ALLOC_PT_GPREGS_ON_STACK
472 SAVE_C_REGS_EXCEPT_R891011
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800473 orl $TS_COMPAT,TI_status+THREAD_INFO(%rsp,RIP)
474 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 jnz ia32_tracesys
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700476 cmpq $(IA32_NR_syscalls-1),%rax
Roland McGrathc09249f2009-02-06 18:15:18 -0800477 ja ia32_badsys
478ia32_do_call:
Denys Vlasenko14f6e952015-02-26 14:40:35 -0800479 /* 32bit syscall -> 64bit C ABI argument conversion */
480 movl %edi,%r8d /* arg5 */
481 movl %ebp,%r9d /* arg6 */
482 xchg %ecx,%esi /* rsi:arg2, rcx:arg4 */
483 movl %ebx,%edi /* arg1 */
484 movl %edx,%edx /* arg3 (zero extension) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 call *ia32_sys_call_table(,%rax,8) # xxx: rip relative
486ia32_sysret:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800487 movq %rax,RAX(%rsp)
Jan Beulich24e35802009-09-30 11:22:11 +0100488ia32_ret_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800489 CLEAR_RREGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800490 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800492ia32_tracesys:
493 SAVE_EXTRA_REGS
Jan Beulichcdc17932007-07-21 17:10:20 +0200494 CLEAR_RREGS
Roland McGrath8ab32bb2008-03-16 21:57:41 -0700495 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 movq %rsp,%rdi /* &pt_regs -> arg1 */
497 call syscall_trace_enter
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800498 LOAD_ARGS32 /* reload args from stack in case ptrace changed it */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800499 RESTORE_EXTRA_REGS
H. Peter Anvin36d001c2010-09-14 12:42:41 -0700500 cmpq $(IA32_NR_syscalls-1),%rax
Roland McGrathc09249f2009-02-06 18:15:18 -0800501 ja int_ret_from_sys_call /* ia32_tracesys has set RAX(%rsp) */
502 jmp ia32_do_call
Jan Beulich4b787e02006-06-26 13:56:55 +0200503END(ia32_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505ia32_badsys:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800506 movq $0,ORIG_RAX(%rsp)
Jan Beulich24e35802009-09-30 11:22:11 +0100507 movq $-ENOSYS,%rax
508 jmp ia32_sysret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 CFI_ENDPROC
511
Ramkumar Ramachandrad2475b82013-07-10 23:34:28 +0530512 .macro PTREGSCALL label, func
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000513 ALIGN
514GLOBAL(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 leaq \func(%rip),%rax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 jmp ia32_ptregs_common
517 .endm
518
Jan Beulich27651302006-01-11 22:41:59 +0100519 CFI_STARTPROC32
Jan Beulich7effaa82005-09-12 18:49:24 +0200520
Al Viro3fe26fa2012-11-12 14:32:42 -0500521 PTREGSCALL stub32_rt_sigreturn, sys32_rt_sigreturn
522 PTREGSCALL stub32_sigreturn, sys32_sigreturn
523 PTREGSCALL stub32_execve, compat_sys_execve
David Drysdale27d6ec72014-12-12 16:57:33 -0800524 PTREGSCALL stub32_execveat, compat_sys_execveat
Al Viro3fe26fa2012-11-12 14:32:42 -0500525 PTREGSCALL stub32_fork, sys_fork
526 PTREGSCALL stub32_vfork, sys_vfork
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000528 ALIGN
Al Viro1d4b4b22012-10-22 22:34:11 -0400529GLOBAL(stub32_clone)
530 leaq sys_clone(%rip),%rax
531 mov %r8, %rcx
532 jmp ia32_ptregs_common
533
534 ALIGN
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000535ia32_ptregs_common:
Jan Beulich27651302006-01-11 22:41:59 +0100536 CFI_ENDPROC
537 CFI_STARTPROC32 simple
Jan Beulichadf14232006-09-26 10:52:41 +0200538 CFI_SIGNAL_FRAME
Denys Vlasenkob3ab90b2015-02-26 14:40:37 -0800539 CFI_DEF_CFA rsp,SIZEOF_PTREGS
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800540 CFI_REL_OFFSET rax,RAX
541 CFI_REL_OFFSET rcx,RCX
542 CFI_REL_OFFSET rdx,RDX
543 CFI_REL_OFFSET rsi,RSI
544 CFI_REL_OFFSET rdi,RDI
545 CFI_REL_OFFSET rip,RIP
546/* CFI_REL_OFFSET cs,CS*/
547/* CFI_REL_OFFSET rflags,EFLAGS*/
548 CFI_REL_OFFSET rsp,RSP
549/* CFI_REL_OFFSET ss,SS*/
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800550 SAVE_EXTRA_REGS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 call *%rax
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800552 RESTORE_EXTRA_REGS 8
553 ret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200555END(ia32_ptregs_common)