blob: daad57c76e4263d1a244414392de1bf8a4e4016f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Andy Lutomirski95c46b52014-10-29 14:33:46 -07003 * Copyright (c) 2012-2014 Andy Lutomirski <luto@amacapital.net>
4 *
5 * Based on the original implementation which is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
7 * Copyright 2003 Andi Kleen, SuSE Labs.
8 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -07009 * Parts of the original code have been moved to arch/x86/vdso/vma.c
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040010 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070011 * This file implements vsyscall emulation. vsyscalls are a legacy ABI:
12 * Userspace can request certain kernel services by calling fixed
13 * addresses. This concept is problematic:
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070015 * - It interferes with ASLR.
16 * - It's awkward to write code that lives in kernel addresses but is
17 * callable by userspace at fixed addresses.
18 * - The whole concept is impossible for 32-bit compat userspace.
19 * - UML cannot easily virtualize a vsyscall.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
Andy Lutomirski95c46b52014-10-29 14:33:46 -070021 * As of mid-2014, I believe that there is no new userspace code that
22 * will use a vsyscall if the vDSO is present. I hope that there will
23 * soon be no new userspace code that will ever use a vsyscall.
24 *
25 * The code in this file emulates vsyscalls when notified of a page
26 * fault to a vsyscall address.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
30#include <linux/timer.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010031#include <linux/sched/signal.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010032#include <linux/mm_types.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040033#include <linux/syscalls.h>
34#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/vsyscall.h>
john stultz7460ed22007-02-16 01:28:21 -080037#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/fixmap.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040039#include <asm/traps.h>
Andy Lutomirski49275fe2017-12-10 22:47:19 -080040#include <asm/paravirt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Andy Lutomirskic149a662011-08-03 09:31:54 -040042#define CREATE_TRACE_POINTS
43#include "vsyscall_trace.h"
44
Kees Cook3dc33bd2015-08-12 17:55:19 -070045static enum { EMULATE, NATIVE, NONE } vsyscall_mode =
Borislav Petkov93f13a92015-09-21 09:48:29 +020046#if defined(CONFIG_LEGACY_VSYSCALL_NATIVE)
Kees Cook3dc33bd2015-08-12 17:55:19 -070047 NATIVE;
Borislav Petkov93f13a92015-09-21 09:48:29 +020048#elif defined(CONFIG_LEGACY_VSYSCALL_NONE)
Kees Cook3dc33bd2015-08-12 17:55:19 -070049 NONE;
50#else
51 EMULATE;
52#endif
Andy Lutomirski3ae36652011-08-10 11:15:32 -040053
54static int __init vsyscall_setup(char *str)
55{
56 if (str) {
57 if (!strcmp("emulate", str))
58 vsyscall_mode = EMULATE;
59 else if (!strcmp("native", str))
60 vsyscall_mode = NATIVE;
61 else if (!strcmp("none", str))
62 vsyscall_mode = NONE;
63 else
64 return -EINVAL;
65
66 return 0;
67 }
68
69 return -EINVAL;
70}
71early_param("vsyscall", vsyscall_setup);
72
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040073static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
74 const char *message)
75{
Joe Perchesc767a542012-05-21 19:50:07 -070076 if (!show_unhandled_signals)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040077 return;
78
Andy Lutomirski53b884a2014-07-25 16:30:27 -070079 printk_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n",
80 level, current->comm, task_pid_nr(current),
81 message, regs->ip, regs->cs,
82 regs->sp, regs->ax, regs->si, regs->di);
Andy Lutomirskic9712942011-07-13 09:24:09 -040083}
84
85static int addr_to_vsyscall_nr(unsigned long addr)
86{
87 int nr;
88
Andy Lutomirskif40c3302014-05-05 12:19:36 -070089 if ((addr & ~0xC00UL) != VSYSCALL_ADDR)
Andy Lutomirskic9712942011-07-13 09:24:09 -040090 return -EINVAL;
91
92 nr = (addr & 0xC00UL) >> 10;
93 if (nr >= 3)
94 return -EINVAL;
95
96 return nr;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040097}
98
Andy Lutomirski4fc34902011-11-07 16:33:40 -080099static bool write_ok_or_segv(unsigned long ptr, size_t size)
100{
101 /*
102 * XXX: if access_ok, get_user, and put_user handled
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200103 * sig_on_uaccess_err, this could go away.
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800104 */
105
106 if (!access_ok(VERIFY_WRITE, (void __user *)ptr, size)) {
107 siginfo_t info;
108 struct thread_struct *thread = &current->thread;
109
110 thread->error_code = 6; /* user fault, no page, write */
111 thread->cr2 = ptr;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530112 thread->trap_nr = X86_TRAP_PF;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800113
114 memset(&info, 0, sizeof(info));
115 info.si_signo = SIGSEGV;
116 info.si_errno = 0;
117 info.si_code = SEGV_MAPERR;
118 info.si_addr = (void __user *)ptr;
119
120 force_sig_info(SIGSEGV, &info, current);
121 return false;
122 } else {
123 return true;
124 }
125}
126
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400127bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400128{
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400129 struct task_struct *tsk;
130 unsigned long caller;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700131 int vsyscall_nr, syscall_nr, tmp;
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200132 int prev_sig_on_uaccess_err;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400133 long ret;
134
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400135 /*
136 * No point in checking CS -- the only way to get here is a user mode
137 * trap to a high address, which means that we're in 64-bit user code.
138 */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400139
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400140 WARN_ON_ONCE(address != regs->ip);
Andy Lutomirskic9712942011-07-13 09:24:09 -0400141
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400142 if (vsyscall_mode == NONE) {
143 warn_bad_vsyscall(KERN_INFO, regs,
144 "vsyscall attempted with vsyscall=none");
145 return false;
Andy Lutomirskic9712942011-07-13 09:24:09 -0400146 }
147
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400148 vsyscall_nr = addr_to_vsyscall_nr(address);
Andy Lutomirskic149a662011-08-03 09:31:54 -0400149
150 trace_emulate_vsyscall(vsyscall_nr);
151
Andy Lutomirskic9712942011-07-13 09:24:09 -0400152 if (vsyscall_nr < 0) {
153 warn_bad_vsyscall(KERN_WARNING, regs,
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400154 "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 -0400155 goto sigsegv;
156 }
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400157
158 if (get_user(caller, (unsigned long __user *)regs->sp) != 0) {
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400159 warn_bad_vsyscall(KERN_WARNING, regs,
160 "vsyscall with bad stack (exploit attempt?)");
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400161 goto sigsegv;
162 }
163
164 tsk = current;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700165
166 /*
167 * Check for access_ok violations and find the syscall nr.
168 *
169 * NULL is a valid user pointer (in the access_ok sense) on 32-bit and
170 * 64-bit, so we don't need to special-case it here. For all the
171 * vsyscalls, NULL means "don't write anything" not "write it at
172 * address 0".
173 */
174 switch (vsyscall_nr) {
175 case 0:
176 if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) ||
177 !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
178 ret = -EFAULT;
179 goto check_fault;
180 }
181
182 syscall_nr = __NR_gettimeofday;
183 break;
184
185 case 1:
186 if (!write_ok_or_segv(regs->di, sizeof(time_t))) {
187 ret = -EFAULT;
188 goto check_fault;
189 }
190
191 syscall_nr = __NR_time;
192 break;
193
194 case 2:
195 if (!write_ok_or_segv(regs->di, sizeof(unsigned)) ||
196 !write_ok_or_segv(regs->si, sizeof(unsigned))) {
197 ret = -EFAULT;
198 goto check_fault;
199 }
200
201 syscall_nr = __NR_getcpu;
202 break;
203 }
204
205 /*
206 * Handle seccomp. regs->ip must be the original value.
207 * See seccomp_send_sigsys and Documentation/prctl/seccomp_filter.txt.
208 *
209 * We could optimize the seccomp disabled case, but performance
210 * here doesn't matter.
211 */
212 regs->orig_ax = syscall_nr;
213 regs->ax = -ENOSYS;
Andy Lutomirski2f275de2016-05-27 12:57:02 -0700214 tmp = secure_computing(NULL);
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700215 if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) {
216 warn_bad_vsyscall(KERN_DEBUG, regs,
217 "seccomp tried to change syscall nr or ip");
218 do_exit(SIGSYS);
219 }
Andy Lutomirski26893102014-11-04 15:36:50 -0800220 regs->orig_ax = -1;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700221 if (tmp)
222 goto do_ret; /* skip requested */
223
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800224 /*
225 * With a real vsyscall, page faults cause SIGSEGV. We want to
226 * preserve that behavior to make writing exploits harder.
227 */
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200228 prev_sig_on_uaccess_err = current->thread.sig_on_uaccess_err;
229 current->thread.sig_on_uaccess_err = 1;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800230
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800231 ret = -EFAULT;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400232 switch (vsyscall_nr) {
233 case 0:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400234 ret = sys_gettimeofday(
235 (struct timeval __user *)regs->di,
236 (struct timezone __user *)regs->si);
237 break;
238
239 case 1:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400240 ret = sys_time((time_t __user *)regs->di);
241 break;
242
243 case 2:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400244 ret = sys_getcpu((unsigned __user *)regs->di,
245 (unsigned __user *)regs->si,
Emil Goode46ed99d2012-04-01 20:48:04 +0200246 NULL);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400247 break;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400248 }
249
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200250 current->thread.sig_on_uaccess_err = prev_sig_on_uaccess_err;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800251
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700252check_fault:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400253 if (ret == -EFAULT) {
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800254 /* Bad news -- userspace fed a bad pointer to a vsyscall. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400255 warn_bad_vsyscall(KERN_INFO, regs,
256 "vsyscall fault (exploit attempt?)");
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800257
258 /*
259 * If we failed to generate a signal for any reason,
260 * generate one here. (This should be impossible.)
261 */
262 if (WARN_ON_ONCE(!sigismember(&tsk->pending.signal, SIGBUS) &&
263 !sigismember(&tsk->pending.signal, SIGSEGV)))
264 goto sigsegv;
265
266 return true; /* Don't emulate the ret. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400267 }
268
269 regs->ax = ret;
270
Will Drewry56517212012-07-13 12:06:35 -0500271do_ret:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400272 /* Emulate a ret instruction. */
273 regs->ip = caller;
274 regs->sp += 8;
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400275 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400276
277sigsegv:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400278 force_sig(SIGSEGV, current);
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400279 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400280}
281
282/*
Andy Lutomirskib9359092014-09-23 10:50:51 -0700283 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
284 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
285 * not need special handling anymore:
286 */
287static const char *gate_vma_name(struct vm_area_struct *vma)
288{
289 return "[vsyscall]";
290}
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -0700291static const struct vm_operations_struct gate_vma_ops = {
Andy Lutomirskib9359092014-09-23 10:50:51 -0700292 .name = gate_vma_name,
293};
294static struct vm_area_struct gate_vma = {
295 .vm_start = VSYSCALL_ADDR,
296 .vm_end = VSYSCALL_ADDR + PAGE_SIZE,
297 .vm_page_prot = PAGE_READONLY_EXEC,
298 .vm_flags = VM_READ | VM_EXEC,
299 .vm_ops = &gate_vma_ops,
300};
301
302struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
303{
Brian Gerstc3388672015-06-22 07:55:16 -0400304#ifdef CONFIG_COMPAT
Andy Lutomirskib9359092014-09-23 10:50:51 -0700305 if (!mm || mm->context.ia32_compat)
306 return NULL;
307#endif
Andy Lutomirski87983c62014-10-29 14:33:45 -0700308 if (vsyscall_mode == NONE)
309 return NULL;
Andy Lutomirskib9359092014-09-23 10:50:51 -0700310 return &gate_vma;
311}
312
313int in_gate_area(struct mm_struct *mm, unsigned long addr)
314{
315 struct vm_area_struct *vma = get_gate_vma(mm);
316
317 if (!vma)
318 return 0;
319
320 return (addr >= vma->vm_start) && (addr < vma->vm_end);
321}
322
323/*
324 * Use this when you have no reliable mm, typically from interrupt
325 * context. It is less reliable than using a task's mm and may give
326 * false positives.
327 */
328int in_gate_area_no_mm(unsigned long addr)
329{
Andy Lutomirski87983c62014-10-29 14:33:45 -0700330 return vsyscall_mode != NONE && (addr & PAGE_MASK) == VSYSCALL_ADDR;
Andy Lutomirskib9359092014-09-23 10:50:51 -0700331}
332
Andy Lutomirski49275fe2017-12-10 22:47:19 -0800333/*
334 * The VSYSCALL page is the only user-accessible page in the kernel address
335 * range. Normally, the kernel page tables can have _PAGE_USER clear, but
336 * the tables covering VSYSCALL_ADDR need _PAGE_USER set if vsyscalls
337 * are enabled.
338 *
339 * Some day we may create a "minimal" vsyscall mode in which we emulate
340 * vsyscalls but leave the page not present. If so, we skip calling
341 * this.
342 */
343static void __init set_vsyscall_pgtable_user_bits(void)
344{
345 pgd_t *pgd;
346 p4d_t *p4d;
347 pud_t *pud;
348 pmd_t *pmd;
349
350 pgd = pgd_offset_k(VSYSCALL_ADDR);
351 set_pgd(pgd, __pgd(pgd_val(*pgd) | _PAGE_USER));
352 p4d = p4d_offset(pgd, VSYSCALL_ADDR);
353#if CONFIG_PGTABLE_LEVELS >= 5
354 p4d->p4d |= _PAGE_USER;
355#endif
356 pud = pud_offset(p4d, VSYSCALL_ADDR);
357 set_pud(pud, __pud(pud_val(*pud) | _PAGE_USER));
358 pmd = pmd_offset(pud, VSYSCALL_ADDR);
359 set_pmd(pmd, __pmd(pmd_val(*pmd) | _PAGE_USER));
360}
361
Ingo Molnare4026442008-01-30 13:32:39 +0100362void __init map_vsyscall(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400364 extern char __vsyscall_page;
365 unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Andy Lutomirski49275fe2017-12-10 22:47:19 -0800367 if (vsyscall_mode != NONE) {
Andy Lutomirski87983c62014-10-29 14:33:45 -0700368 __set_fixmap(VSYSCALL_PAGE, physaddr_vsyscall,
369 vsyscall_mode == NATIVE
370 ? PAGE_KERNEL_VSYSCALL
371 : PAGE_KERNEL_VVAR);
Andy Lutomirski49275fe2017-12-10 22:47:19 -0800372 set_vsyscall_pgtable_user_bits();
373 }
Andy Lutomirski87983c62014-10-29 14:33:45 -0700374
Andy Lutomirskif40c3302014-05-05 12:19:36 -0700375 BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_PAGE) !=
376 (unsigned long)VSYSCALL_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}