blob: 6bb7e92c6d5058dc17e4137fa5861dd0b2e0d2da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andy Lutomirski95c46b52014-10-29 14:33:46 -07002 * Copyright (c) 2012-2014 Andy Lutomirski <luto@amacapital.net>
3 *
4 * Based on the original implementation which is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
6 * Copyright 2003 Andi Kleen, SuSE Labs.
7 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -07008 * Parts of the original code have been moved to arch/x86/vdso/vma.c
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04009 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070010 * This file implements vsyscall emulation. vsyscalls are a legacy ABI:
11 * Userspace can request certain kernel services by calling fixed
12 * addresses. This concept is problematic:
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070014 * - It interferes with ASLR.
15 * - It's awkward to write code that lives in kernel addresses but is
16 * callable by userspace at fixed addresses.
17 * - The whole concept is impossible for 32-bit compat userspace.
18 * - UML cannot easily virtualize a vsyscall.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070020 * As of mid-2014, I believe that there is no new userspace code that
21 * will use a vsyscall if the vDSO is present. I hope that there will
22 * soon be no new userspace code that will ever use a vsyscall.
23 *
24 * The code in this file emulates vsyscalls when notified of a page
25 * fault to a vsyscall address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/timer.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040030#include <linux/syscalls.h>
31#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/vsyscall.h>
john stultz7460ed22007-02-16 01:28:21 -080034#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/fixmap.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040036#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Andy Lutomirskic149a662011-08-03 09:31:54 -040038#define CREATE_TRACE_POINTS
39#include "vsyscall_trace.h"
40
Kees Cook3dc33bd2015-08-12 17:55:19 -070041static enum { EMULATE, NATIVE, NONE } vsyscall_mode =
Borislav Petkov93f13a92015-09-21 09:48:29 +020042#if defined(CONFIG_LEGACY_VSYSCALL_NATIVE)
Kees Cook3dc33bd2015-08-12 17:55:19 -070043 NATIVE;
Borislav Petkov93f13a92015-09-21 09:48:29 +020044#elif defined(CONFIG_LEGACY_VSYSCALL_NONE)
Kees Cook3dc33bd2015-08-12 17:55:19 -070045 NONE;
46#else
47 EMULATE;
48#endif
Andy Lutomirski3ae36652011-08-10 11:15:32 -040049
50static int __init vsyscall_setup(char *str)
51{
52 if (str) {
53 if (!strcmp("emulate", str))
54 vsyscall_mode = EMULATE;
55 else if (!strcmp("native", str))
56 vsyscall_mode = NATIVE;
57 else if (!strcmp("none", str))
58 vsyscall_mode = NONE;
59 else
60 return -EINVAL;
61
62 return 0;
63 }
64
65 return -EINVAL;
66}
67early_param("vsyscall", vsyscall_setup);
68
Borislav Petkovbeca4e22018-01-04 17:42:45 +010069bool vsyscall_enabled(void)
70{
71 return vsyscall_mode != NONE;
72}
73
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040074static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
75 const char *message)
76{
Joe Perchesc767a542012-05-21 19:50:07 -070077 if (!show_unhandled_signals)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040078 return;
79
Andy Lutomirski53b884a2014-07-25 16:30:27 -070080 printk_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n",
81 level, current->comm, task_pid_nr(current),
82 message, regs->ip, regs->cs,
83 regs->sp, regs->ax, regs->si, regs->di);
Andy Lutomirskic9712942011-07-13 09:24:09 -040084}
85
86static int addr_to_vsyscall_nr(unsigned long addr)
87{
88 int nr;
89
Andy Lutomirskif40c3302014-05-05 12:19:36 -070090 if ((addr & ~0xC00UL) != VSYSCALL_ADDR)
Andy Lutomirskic9712942011-07-13 09:24:09 -040091 return -EINVAL;
92
93 nr = (addr & 0xC00UL) >> 10;
94 if (nr >= 3)
95 return -EINVAL;
96
97 return nr;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040098}
99
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800100static bool write_ok_or_segv(unsigned long ptr, size_t size)
101{
102 /*
103 * XXX: if access_ok, get_user, and put_user handled
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200104 * sig_on_uaccess_err, this could go away.
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800105 */
106
107 if (!access_ok(VERIFY_WRITE, (void __user *)ptr, size)) {
108 siginfo_t info;
109 struct thread_struct *thread = &current->thread;
110
111 thread->error_code = 6; /* user fault, no page, write */
112 thread->cr2 = ptr;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530113 thread->trap_nr = X86_TRAP_PF;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800114
115 memset(&info, 0, sizeof(info));
116 info.si_signo = SIGSEGV;
117 info.si_errno = 0;
118 info.si_code = SEGV_MAPERR;
119 info.si_addr = (void __user *)ptr;
120
121 force_sig_info(SIGSEGV, &info, current);
122 return false;
123 } else {
124 return true;
125 }
126}
127
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400128bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400129{
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400130 struct task_struct *tsk;
131 unsigned long caller;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700132 int vsyscall_nr, syscall_nr, tmp;
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200133 int prev_sig_on_uaccess_err;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400134 long ret;
135
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400136 /*
137 * No point in checking CS -- the only way to get here is a user mode
138 * trap to a high address, which means that we're in 64-bit user code.
139 */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400140
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400141 WARN_ON_ONCE(address != regs->ip);
Andy Lutomirskic9712942011-07-13 09:24:09 -0400142
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400143 if (vsyscall_mode == NONE) {
144 warn_bad_vsyscall(KERN_INFO, regs,
145 "vsyscall attempted with vsyscall=none");
146 return false;
Andy Lutomirskic9712942011-07-13 09:24:09 -0400147 }
148
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400149 vsyscall_nr = addr_to_vsyscall_nr(address);
Andy Lutomirskic149a662011-08-03 09:31:54 -0400150
151 trace_emulate_vsyscall(vsyscall_nr);
152
Andy Lutomirskic9712942011-07-13 09:24:09 -0400153 if (vsyscall_nr < 0) {
154 warn_bad_vsyscall(KERN_WARNING, regs,
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400155 "misaligned vsyscall (exploit attempt or buggy program) -- look up the vsyscall kernel parameter if you need a workaround");
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400156 goto sigsegv;
157 }
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400158
159 if (get_user(caller, (unsigned long __user *)regs->sp) != 0) {
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400160 warn_bad_vsyscall(KERN_WARNING, regs,
161 "vsyscall with bad stack (exploit attempt?)");
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400162 goto sigsegv;
163 }
164
165 tsk = current;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700166
167 /*
168 * Check for access_ok violations and find the syscall nr.
169 *
170 * NULL is a valid user pointer (in the access_ok sense) on 32-bit and
171 * 64-bit, so we don't need to special-case it here. For all the
172 * vsyscalls, NULL means "don't write anything" not "write it at
173 * address 0".
174 */
175 switch (vsyscall_nr) {
176 case 0:
177 if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) ||
178 !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
179 ret = -EFAULT;
180 goto check_fault;
181 }
182
183 syscall_nr = __NR_gettimeofday;
184 break;
185
186 case 1:
187 if (!write_ok_or_segv(regs->di, sizeof(time_t))) {
188 ret = -EFAULT;
189 goto check_fault;
190 }
191
192 syscall_nr = __NR_time;
193 break;
194
195 case 2:
196 if (!write_ok_or_segv(regs->di, sizeof(unsigned)) ||
197 !write_ok_or_segv(regs->si, sizeof(unsigned))) {
198 ret = -EFAULT;
199 goto check_fault;
200 }
201
202 syscall_nr = __NR_getcpu;
203 break;
204 }
205
206 /*
207 * Handle seccomp. regs->ip must be the original value.
208 * See seccomp_send_sigsys and Documentation/prctl/seccomp_filter.txt.
209 *
210 * We could optimize the seccomp disabled case, but performance
211 * here doesn't matter.
212 */
213 regs->orig_ax = syscall_nr;
214 regs->ax = -ENOSYS;
Andy Lutomirski2f275de2016-05-27 12:57:02 -0700215 tmp = secure_computing(NULL);
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700216 if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) {
217 warn_bad_vsyscall(KERN_DEBUG, regs,
218 "seccomp tried to change syscall nr or ip");
219 do_exit(SIGSYS);
220 }
Andy Lutomirski26893102014-11-04 15:36:50 -0800221 regs->orig_ax = -1;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700222 if (tmp)
223 goto do_ret; /* skip requested */
224
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800225 /*
226 * With a real vsyscall, page faults cause SIGSEGV. We want to
227 * preserve that behavior to make writing exploits harder.
228 */
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200229 prev_sig_on_uaccess_err = current->thread.sig_on_uaccess_err;
230 current->thread.sig_on_uaccess_err = 1;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800231
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800232 ret = -EFAULT;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400233 switch (vsyscall_nr) {
234 case 0:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400235 ret = sys_gettimeofday(
236 (struct timeval __user *)regs->di,
237 (struct timezone __user *)regs->si);
238 break;
239
240 case 1:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400241 ret = sys_time((time_t __user *)regs->di);
242 break;
243
244 case 2:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400245 ret = sys_getcpu((unsigned __user *)regs->di,
246 (unsigned __user *)regs->si,
Emil Goode46ed99d2012-04-01 20:48:04 +0200247 NULL);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400248 break;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400249 }
250
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200251 current->thread.sig_on_uaccess_err = prev_sig_on_uaccess_err;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800252
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700253check_fault:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400254 if (ret == -EFAULT) {
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800255 /* Bad news -- userspace fed a bad pointer to a vsyscall. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400256 warn_bad_vsyscall(KERN_INFO, regs,
257 "vsyscall fault (exploit attempt?)");
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800258
259 /*
260 * If we failed to generate a signal for any reason,
261 * generate one here. (This should be impossible.)
262 */
263 if (WARN_ON_ONCE(!sigismember(&tsk->pending.signal, SIGBUS) &&
264 !sigismember(&tsk->pending.signal, SIGSEGV)))
265 goto sigsegv;
266
267 return true; /* Don't emulate the ret. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400268 }
269
270 regs->ax = ret;
271
Will Drewry56517212012-07-13 12:06:35 -0500272do_ret:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400273 /* Emulate a ret instruction. */
274 regs->ip = caller;
275 regs->sp += 8;
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400276 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400277
278sigsegv:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400279 force_sig(SIGSEGV, current);
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400280 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400281}
282
283/*
Andy Lutomirskib9359092014-09-23 10:50:51 -0700284 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
285 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
286 * not need special handling anymore:
287 */
288static const char *gate_vma_name(struct vm_area_struct *vma)
289{
290 return "[vsyscall]";
291}
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -0700292static const struct vm_operations_struct gate_vma_ops = {
Andy Lutomirskib9359092014-09-23 10:50:51 -0700293 .name = gate_vma_name,
294};
295static struct vm_area_struct gate_vma = {
296 .vm_start = VSYSCALL_ADDR,
297 .vm_end = VSYSCALL_ADDR + PAGE_SIZE,
298 .vm_page_prot = PAGE_READONLY_EXEC,
299 .vm_flags = VM_READ | VM_EXEC,
300 .vm_ops = &gate_vma_ops,
301};
302
303struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
304{
Brian Gerstc3388672015-06-22 07:55:16 -0400305#ifdef CONFIG_COMPAT
Andy Lutomirskib9359092014-09-23 10:50:51 -0700306 if (!mm || mm->context.ia32_compat)
307 return NULL;
308#endif
Andy Lutomirski87983c62014-10-29 14:33:45 -0700309 if (vsyscall_mode == NONE)
310 return NULL;
Andy Lutomirskib9359092014-09-23 10:50:51 -0700311 return &gate_vma;
312}
313
314int in_gate_area(struct mm_struct *mm, unsigned long addr)
315{
316 struct vm_area_struct *vma = get_gate_vma(mm);
317
318 if (!vma)
319 return 0;
320
321 return (addr >= vma->vm_start) && (addr < vma->vm_end);
322}
323
324/*
325 * Use this when you have no reliable mm, typically from interrupt
326 * context. It is less reliable than using a task's mm and may give
327 * false positives.
328 */
329int in_gate_area_no_mm(unsigned long addr)
330{
Andy Lutomirski87983c62014-10-29 14:33:45 -0700331 return vsyscall_mode != NONE && (addr & PAGE_MASK) == VSYSCALL_ADDR;
Andy Lutomirskib9359092014-09-23 10:50:51 -0700332}
333
Ingo Molnare4026442008-01-30 13:32:39 +0100334void __init map_vsyscall(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400336 extern char __vsyscall_page;
337 unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Andy Lutomirski87983c62014-10-29 14:33:45 -0700339 if (vsyscall_mode != NONE)
340 __set_fixmap(VSYSCALL_PAGE, physaddr_vsyscall,
341 vsyscall_mode == NATIVE
342 ? PAGE_KERNEL_VSYSCALL
343 : PAGE_KERNEL_VVAR);
344
Andy Lutomirskif40c3302014-05-05 12:19:36 -0700345 BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_PAGE) !=
346 (unsigned long)VSYSCALL_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}