]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/x86/entry/vsyscall/vsyscall_64.c
Merge remote-tracking branch 'asoc/topic/pcm512x' into asoc-next
[mirror_ubuntu-focal-kernel.git] / arch / x86 / entry / vsyscall / vsyscall_64.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
95c46b56
AL
3 * Copyright (c) 2012-2014 Andy Lutomirski <luto@amacapital.net>
4 *
5 * Based on the original implementation which is:
1da177e4
LT
6 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
7 * Copyright 2003 Andi Kleen, SuSE Labs.
8 *
95c46b56
AL
9 * Parts of the original code have been moved to arch/x86/vdso/vma.c
10 *
11 * 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:
5cec93c2 14 *
95c46b56
AL
15 * - 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.
1da177e4 20 *
95c46b56
AL
21 * 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.
1da177e4 24 *
95c46b56
AL
25 * The code in this file emulates vsyscalls when notified of a page
26 * fault to a vsyscall address.
1da177e4
LT
27 */
28
1da177e4
LT
29#include <linux/kernel.h>
30#include <linux/timer.h>
3f07c014 31#include <linux/sched/signal.h>
589ee628 32#include <linux/mm_types.h>
5cec93c2
AL
33#include <linux/syscalls.h>
34#include <linux/ratelimit.h>
1da177e4
LT
35
36#include <asm/vsyscall.h>
7460ed28 37#include <asm/unistd.h>
1da177e4 38#include <asm/fixmap.h>
5cec93c2 39#include <asm/traps.h>
49275fef 40#include <asm/paravirt.h>
1da177e4 41
c149a665
AL
42#define CREATE_TRACE_POINTS
43#include "vsyscall_trace.h"
44
3dc33bd3 45static enum { EMULATE, NATIVE, NONE } vsyscall_mode =
93f13a9f 46#if defined(CONFIG_LEGACY_VSYSCALL_NATIVE)
3dc33bd3 47 NATIVE;
93f13a9f 48#elif defined(CONFIG_LEGACY_VSYSCALL_NONE)
3dc33bd3
KC
49 NONE;
50#else
51 EMULATE;
52#endif
3ae36655
AL
53
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
5cec93c2
AL
73static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
74 const char *message)
1da177e4 75{
c767a54b 76 if (!show_unhandled_signals)
5cec93c2 77 return;
1da177e4 78
53b884ac
AL
79 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);
c9712944
AL
83}
84
85static int addr_to_vsyscall_nr(unsigned long addr)
86{
87 int nr;
88
f40c3300 89 if ((addr & ~0xC00UL) != VSYSCALL_ADDR)
c9712944
AL
90 return -EINVAL;
91
92 nr = (addr & 0xC00UL) >> 10;
93 if (nr >= 3)
94 return -EINVAL;
95
96 return nr;
1da177e4
LT
97}
98
4fc34901
AL
99static bool write_ok_or_segv(unsigned long ptr, size_t size)
100{
101 /*
102 * XXX: if access_ok, get_user, and put_user handled
2a53ccbc 103 * sig_on_uaccess_err, this could go away.
4fc34901
AL
104 */
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;
51e7dc70 112 thread->trap_nr = X86_TRAP_PF;
4fc34901
AL
113
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
3ae36655 127bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
1da177e4 128{
5cec93c2
AL
129 struct task_struct *tsk;
130 unsigned long caller;
87b526d3 131 int vsyscall_nr, syscall_nr, tmp;
2a53ccbc 132 int prev_sig_on_uaccess_err;
5cec93c2
AL
133 long ret;
134
3ae36655
AL
135 /*
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 */
5cec93c2 139
3ae36655 140 WARN_ON_ONCE(address != regs->ip);
c9712944 141
4831b779
AL
142 /* This should be unreachable in NATIVE mode. */
143 if (WARN_ON(vsyscall_mode == NATIVE))
144 return false;
145
3ae36655
AL
146 if (vsyscall_mode == NONE) {
147 warn_bad_vsyscall(KERN_INFO, regs,
148 "vsyscall attempted with vsyscall=none");
149 return false;
c9712944
AL
150 }
151
3ae36655 152 vsyscall_nr = addr_to_vsyscall_nr(address);
c149a665
AL
153
154 trace_emulate_vsyscall(vsyscall_nr);
155
c9712944
AL
156 if (vsyscall_nr < 0) {
157 warn_bad_vsyscall(KERN_WARNING, regs,
3ae36655 158 "misaligned vsyscall (exploit attempt or buggy program) -- look up the vsyscall kernel parameter if you need a workaround");
5cec93c2
AL
159 goto sigsegv;
160 }
d0aff6e6 161
5cec93c2 162 if (get_user(caller, (unsigned long __user *)regs->sp) != 0) {
3ae36655
AL
163 warn_bad_vsyscall(KERN_WARNING, regs,
164 "vsyscall with bad stack (exploit attempt?)");
5cec93c2
AL
165 goto sigsegv;
166 }
8c73626a 167
5cec93c2 168 tsk = current;
4fc34901
AL
169
170 /*
87b526d3
AL
171 * Check for access_ok violations and find the syscall nr.
172 *
46ed99d1 173 * NULL is a valid user pointer (in the access_ok sense) on 32-bit and
4fc34901 174 * 64-bit, so we don't need to special-case it here. For all the
46ed99d1 175 * vsyscalls, NULL means "don't write anything" not "write it at
4fc34901
AL
176 * address 0".
177 */
5cec93c2
AL
178 switch (vsyscall_nr) {
179 case 0:
4fc34901 180 if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) ||
87b526d3
AL
181 !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
182 ret = -EFAULT;
183 goto check_fault;
184 }
4fc34901 185
87b526d3
AL
186 syscall_nr = __NR_gettimeofday;
187 break;
188
189 case 1:
190 if (!write_ok_or_segv(regs->di, sizeof(time_t))) {
191 ret = -EFAULT;
192 goto check_fault;
193 }
194
195 syscall_nr = __NR_time;
196 break;
197
198 case 2:
199 if (!write_ok_or_segv(regs->di, sizeof(unsigned)) ||
200 !write_ok_or_segv(regs->si, sizeof(unsigned))) {
201 ret = -EFAULT;
202 goto check_fault;
203 }
204
205 syscall_nr = __NR_getcpu;
206 break;
207 }
208
209 /*
210 * Handle seccomp. regs->ip must be the original value.
211 * See seccomp_send_sigsys and Documentation/prctl/seccomp_filter.txt.
212 *
213 * We could optimize the seccomp disabled case, but performance
214 * here doesn't matter.
215 */
216 regs->orig_ax = syscall_nr;
217 regs->ax = -ENOSYS;
2f275de5 218 tmp = secure_computing(NULL);
87b526d3
AL
219 if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) {
220 warn_bad_vsyscall(KERN_DEBUG, regs,
221 "seccomp tried to change syscall nr or ip");
222 do_exit(SIGSYS);
223 }
26893107 224 regs->orig_ax = -1;
87b526d3
AL
225 if (tmp)
226 goto do_ret; /* skip requested */
227
228 /*
229 * With a real vsyscall, page faults cause SIGSEGV. We want to
230 * preserve that behavior to make writing exploits harder.
231 */
2a53ccbc
IM
232 prev_sig_on_uaccess_err = current->thread.sig_on_uaccess_err;
233 current->thread.sig_on_uaccess_err = 1;
87b526d3
AL
234
235 ret = -EFAULT;
236 switch (vsyscall_nr) {
237 case 0:
5cec93c2
AL
238 ret = sys_gettimeofday(
239 (struct timeval __user *)regs->di,
240 (struct timezone __user *)regs->si);
241 break;
242
243 case 1:
5cec93c2
AL
244 ret = sys_time((time_t __user *)regs->di);
245 break;
246
247 case 2:
5cec93c2
AL
248 ret = sys_getcpu((unsigned __user *)regs->di,
249 (unsigned __user *)regs->si,
46ed99d1 250 NULL);
5cec93c2 251 break;
5cec93c2 252 }
8c73626a 253
2a53ccbc 254 current->thread.sig_on_uaccess_err = prev_sig_on_uaccess_err;
4fc34901 255
87b526d3 256check_fault:
5cec93c2 257 if (ret == -EFAULT) {
4fc34901 258 /* Bad news -- userspace fed a bad pointer to a vsyscall. */
5cec93c2
AL
259 warn_bad_vsyscall(KERN_INFO, regs,
260 "vsyscall fault (exploit attempt?)");
4fc34901
AL
261
262 /*
263 * If we failed to generate a signal for any reason,
264 * generate one here. (This should be impossible.)
265 */
266 if (WARN_ON_ONCE(!sigismember(&tsk->pending.signal, SIGBUS) &&
267 !sigismember(&tsk->pending.signal, SIGSEGV)))
268 goto sigsegv;
269
270 return true; /* Don't emulate the ret. */
5cec93c2 271 }
8c73626a 272
5cec93c2 273 regs->ax = ret;
1da177e4 274
5651721e 275do_ret:
5cec93c2
AL
276 /* Emulate a ret instruction. */
277 regs->ip = caller;
278 regs->sp += 8;
3ae36655 279 return true;
5cec93c2
AL
280
281sigsegv:
5cec93c2 282 force_sig(SIGSEGV, current);
3ae36655 283 return true;
1da177e4
LT
284}
285
b9359090
AL
286/*
287 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
288 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
289 * not need special handling anymore:
290 */
291static const char *gate_vma_name(struct vm_area_struct *vma)
292{
293 return "[vsyscall]";
294}
7cbea8dc 295static const struct vm_operations_struct gate_vma_ops = {
b9359090
AL
296 .name = gate_vma_name,
297};
298static struct vm_area_struct gate_vma = {
299 .vm_start = VSYSCALL_ADDR,
300 .vm_end = VSYSCALL_ADDR + PAGE_SIZE,
301 .vm_page_prot = PAGE_READONLY_EXEC,
302 .vm_flags = VM_READ | VM_EXEC,
303 .vm_ops = &gate_vma_ops,
304};
305
306struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
307{
c338867d 308#ifdef CONFIG_COMPAT
b9359090
AL
309 if (!mm || mm->context.ia32_compat)
310 return NULL;
311#endif
87983c66
AL
312 if (vsyscall_mode == NONE)
313 return NULL;
b9359090
AL
314 return &gate_vma;
315}
316
317int in_gate_area(struct mm_struct *mm, unsigned long addr)
318{
319 struct vm_area_struct *vma = get_gate_vma(mm);
320
321 if (!vma)
322 return 0;
323
324 return (addr >= vma->vm_start) && (addr < vma->vm_end);
325}
326
327/*
328 * Use this when you have no reliable mm, typically from interrupt
329 * context. It is less reliable than using a task's mm and may give
330 * false positives.
331 */
332int in_gate_area_no_mm(unsigned long addr)
333{
87983c66 334 return vsyscall_mode != NONE && (addr & PAGE_MASK) == VSYSCALL_ADDR;
b9359090
AL
335}
336
49275fef
AL
337/*
338 * The VSYSCALL page is the only user-accessible page in the kernel address
339 * range. Normally, the kernel page tables can have _PAGE_USER clear, but
340 * the tables covering VSYSCALL_ADDR need _PAGE_USER set if vsyscalls
341 * are enabled.
342 *
343 * Some day we may create a "minimal" vsyscall mode in which we emulate
344 * vsyscalls but leave the page not present. If so, we skip calling
345 * this.
346 */
85900ea5 347void __init set_vsyscall_pgtable_user_bits(pgd_t *root)
49275fef
AL
348{
349 pgd_t *pgd;
350 p4d_t *p4d;
351 pud_t *pud;
352 pmd_t *pmd;
353
85900ea5 354 pgd = pgd_offset_pgd(root, VSYSCALL_ADDR);
49275fef
AL
355 set_pgd(pgd, __pgd(pgd_val(*pgd) | _PAGE_USER));
356 p4d = p4d_offset(pgd, VSYSCALL_ADDR);
357#if CONFIG_PGTABLE_LEVELS >= 5
358 p4d->p4d |= _PAGE_USER;
359#endif
360 pud = pud_offset(p4d, VSYSCALL_ADDR);
361 set_pud(pud, __pud(pud_val(*pud) | _PAGE_USER));
362 pmd = pmd_offset(pud, VSYSCALL_ADDR);
363 set_pmd(pmd, __pmd(pmd_val(*pmd) | _PAGE_USER));
364}
365
e4026440 366void __init map_vsyscall(void)
1da177e4 367{
3ae36655
AL
368 extern char __vsyscall_page;
369 unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page);
1da177e4 370
49275fef 371 if (vsyscall_mode != NONE) {
87983c66
AL
372 __set_fixmap(VSYSCALL_PAGE, physaddr_vsyscall,
373 vsyscall_mode == NATIVE
374 ? PAGE_KERNEL_VSYSCALL
375 : PAGE_KERNEL_VVAR);
85900ea5 376 set_vsyscall_pgtable_user_bits(swapper_pg_dir);
49275fef 377 }
87983c66 378
f40c3300
AL
379 BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_PAGE) !=
380 (unsigned long)VSYSCALL_ADDR);
1da177e4 381}