1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2012-2014 Andy Lutomirski <luto@amacapital.net>
4 *
5 * Based on the original implementation which is:
6 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
7 * Copyright 2003 Andi Kleen, SuSE Labs.
8 *
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:
14 *
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.
20 *
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.
24 *
25 * The code in this file emulates vsyscalls when notified of a page
26 * fault to a vsyscall address.
27 */
28
29 #include <linux/kernel.h>
30 #include <linux/timer.h>
31 #include <linux/sched/signal.h>
32 #include <linux/mm_types.h>
33 #include <linux/syscalls.h>
34 #include <linux/ratelimit.h>
35 #include <linux/page_size_compat.h>
36
37 #include <asm/vsyscall.h>
38 #include <asm/unistd.h>
39 #include <asm/fixmap.h>
40 #include <asm/traps.h>
41 #include <asm/paravirt.h>
42
43 #define CREATE_TRACE_POINTS
44 #include "vsyscall_trace.h"
45
46 static enum { EMULATE, XONLY, NONE } vsyscall_mode __ro_after_init =
47 #ifdef CONFIG_LEGACY_VSYSCALL_NONE
48 NONE;
49 #elif defined(CONFIG_LEGACY_VSYSCALL_XONLY)
50 XONLY;
51 #else
52 #error VSYSCALL config is broken
53 #endif
54
vsyscall_setup(char * str)55 static int __init vsyscall_setup(char *str)
56 {
57 if (str) {
58 if (!strcmp("emulate", str))
59 vsyscall_mode = EMULATE;
60 else if (!strcmp("xonly", str))
61 vsyscall_mode = XONLY;
62 else if (!strcmp("none", str))
63 vsyscall_mode = NONE;
64 else
65 return -EINVAL;
66
67 return 0;
68 }
69
70 return -EINVAL;
71 }
72 early_param("vsyscall", vsyscall_setup);
73
warn_bad_vsyscall(const char * level,struct pt_regs * regs,const char * message)74 static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
75 const char *message)
76 {
77 if (!show_unhandled_signals)
78 return;
79
80 printk_ratelimited("%s%s[%d] %s ip:%lx cs:%x 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);
84 }
85
addr_to_vsyscall_nr(unsigned long addr)86 static int addr_to_vsyscall_nr(unsigned long addr)
87 {
88 int nr;
89
90 if ((addr & ~0xC00UL) != VSYSCALL_ADDR)
91 return -EINVAL;
92
93 nr = (addr & 0xC00UL) >> 10;
94 if (nr >= 3)
95 return -EINVAL;
96
97 return nr;
98 }
99
write_ok_or_segv(unsigned long ptr,size_t size)100 static bool write_ok_or_segv(unsigned long ptr, size_t size)
101 {
102 if (!access_ok((void __user *)ptr, size)) {
103 struct thread_struct *thread = ¤t->thread;
104
105 thread->error_code = X86_PF_USER | X86_PF_WRITE;
106 thread->cr2 = ptr;
107 thread->trap_nr = X86_TRAP_PF;
108
109 force_sig_fault(SIGSEGV, SEGV_MAPERR, (void __user *)ptr);
110 return false;
111 } else {
112 return true;
113 }
114 }
115
emulate_vsyscall(unsigned long error_code,struct pt_regs * regs,unsigned long address)116 bool emulate_vsyscall(unsigned long error_code,
117 struct pt_regs *regs, unsigned long address)
118 {
119 unsigned long caller;
120 int vsyscall_nr, syscall_nr, tmp;
121 long ret;
122 unsigned long orig_dx;
123
124 /* Write faults or kernel-privilege faults never get fixed up. */
125 if ((error_code & (X86_PF_WRITE | X86_PF_USER)) != X86_PF_USER)
126 return false;
127
128 if (!(error_code & X86_PF_INSTR)) {
129 /* Failed vsyscall read */
130 if (vsyscall_mode == EMULATE)
131 return false;
132
133 /*
134 * User code tried and failed to read the vsyscall page.
135 */
136 warn_bad_vsyscall(KERN_INFO, regs, "vsyscall read attempt denied -- look up the vsyscall kernel parameter if you need a workaround");
137 return false;
138 }
139
140 /*
141 * No point in checking CS -- the only way to get here is a user mode
142 * trap to a high address, which means that we're in 64-bit user code.
143 */
144
145 WARN_ON_ONCE(address != regs->ip);
146
147 if (vsyscall_mode == NONE) {
148 warn_bad_vsyscall(KERN_INFO, regs,
149 "vsyscall attempted with vsyscall=none");
150 return false;
151 }
152
153 vsyscall_nr = addr_to_vsyscall_nr(address);
154
155 trace_emulate_vsyscall(vsyscall_nr);
156
157 if (vsyscall_nr < 0) {
158 warn_bad_vsyscall(KERN_WARNING, regs,
159 "misaligned vsyscall (exploit attempt or buggy program) -- look up the vsyscall kernel parameter if you need a workaround");
160 goto sigsegv;
161 }
162
163 if (get_user(caller, (unsigned long __user *)regs->sp) != 0) {
164 warn_bad_vsyscall(KERN_WARNING, regs,
165 "vsyscall with bad stack (exploit attempt?)");
166 goto sigsegv;
167 }
168
169 /*
170 * Check for access_ok violations and find the syscall nr.
171 *
172 * NULL is a valid user pointer (in the access_ok sense) on 32-bit and
173 * 64-bit, so we don't need to special-case it here. For all the
174 * vsyscalls, NULL means "don't write anything" not "write it at
175 * address 0".
176 */
177 switch (vsyscall_nr) {
178 case 0:
179 if (!write_ok_or_segv(regs->di, sizeof(struct __kernel_old_timeval)) ||
180 !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
181 ret = -EFAULT;
182 goto check_fault;
183 }
184
185 syscall_nr = __NR_gettimeofday;
186 break;
187
188 case 1:
189 if (!write_ok_or_segv(regs->di, sizeof(__kernel_old_time_t))) {
190 ret = -EFAULT;
191 goto check_fault;
192 }
193
194 syscall_nr = __NR_time;
195 break;
196
197 case 2:
198 if (!write_ok_or_segv(regs->di, sizeof(unsigned)) ||
199 !write_ok_or_segv(regs->si, sizeof(unsigned))) {
200 ret = -EFAULT;
201 goto check_fault;
202 }
203
204 syscall_nr = __NR_getcpu;
205 break;
206 }
207
208 /*
209 * Handle seccomp. regs->ip must be the original value.
210 * See seccomp_send_sigsys and Documentation/userspace-api/seccomp_filter.rst.
211 *
212 * We could optimize the seccomp disabled case, but performance
213 * here doesn't matter.
214 */
215 regs->orig_ax = syscall_nr;
216 regs->ax = -ENOSYS;
217 tmp = secure_computing();
218 if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) {
219 warn_bad_vsyscall(KERN_DEBUG, regs,
220 "seccomp tried to change syscall nr or ip");
221 force_exit_sig(SIGSYS);
222 return true;
223 }
224 regs->orig_ax = -1;
225 if (tmp)
226 goto do_ret; /* skip requested */
227
228 /*
229 * With a real vsyscall, page faults cause SIGSEGV.
230 */
231 ret = -EFAULT;
232 switch (vsyscall_nr) {
233 case 0:
234 /* this decodes regs->di and regs->si on its own */
235 ret = __x64_sys_gettimeofday(regs);
236 break;
237
238 case 1:
239 /* this decodes regs->di on its own */
240 ret = __x64_sys_time(regs);
241 break;
242
243 case 2:
244 /* while we could clobber regs->dx, we didn't in the past... */
245 orig_dx = regs->dx;
246 regs->dx = 0;
247 /* this decodes regs->di, regs->si and regs->dx on its own */
248 ret = __x64_sys_getcpu(regs);
249 regs->dx = orig_dx;
250 break;
251 }
252
253 check_fault:
254 if (ret == -EFAULT) {
255 /* Bad news -- userspace fed a bad pointer to a vsyscall. */
256 warn_bad_vsyscall(KERN_INFO, regs,
257 "vsyscall fault (exploit attempt?)");
258 goto sigsegv;
259 }
260
261 regs->ax = ret;
262
263 do_ret:
264 /* Emulate a ret instruction. */
265 regs->ip = caller;
266 regs->sp += 8;
267 return true;
268
269 sigsegv:
270 force_sig(SIGSEGV);
271 return true;
272 }
273
274 /*
275 * A pseudo VMA to allow ptrace access for the vsyscall page. This only
276 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
277 * not need special handling anymore:
278 */
gate_vma_name(struct vm_area_struct * vma)279 static const char *gate_vma_name(struct vm_area_struct *vma)
280 {
281 return "[vsyscall]";
282 }
283 static const struct vm_operations_struct gate_vma_ops = {
284 .name = gate_vma_name,
285 };
286 static struct vm_area_struct gate_vma __ro_after_init = {
287 .vm_start = VSYSCALL_ADDR,
288 .vm_end = VSYSCALL_ADDR + __MAX_PAGE_SIZE,
289 .vm_page_prot = PAGE_READONLY_EXEC,
290 .vm_flags = VM_READ | VM_EXEC,
291 .vm_ops = &gate_vma_ops,
292 };
293
get_gate_vma(struct mm_struct * mm)294 struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
295 {
296 #ifdef CONFIG_COMPAT
297 if (!mm || !test_bit(MM_CONTEXT_HAS_VSYSCALL, &mm->context.flags))
298 return NULL;
299 #endif
300 if (vsyscall_mode == NONE)
301 return NULL;
302 return &gate_vma;
303 }
304
in_gate_area(struct mm_struct * mm,unsigned long addr)305 int in_gate_area(struct mm_struct *mm, unsigned long addr)
306 {
307 struct vm_area_struct *vma = get_gate_vma(mm);
308
309 if (!vma)
310 return 0;
311
312 return (addr >= vma->vm_start) && (addr < vma->vm_end);
313 }
314
315 /*
316 * Use this when you have no reliable mm, typically from interrupt
317 * context. It is less reliable than using a task's mm and may give
318 * false positives.
319 */
in_gate_area_no_mm(unsigned long addr)320 int in_gate_area_no_mm(unsigned long addr)
321 {
322 return vsyscall_mode != NONE && (addr & PAGE_MASK) == VSYSCALL_ADDR;
323 }
324
325 /*
326 * The VSYSCALL page is the only user-accessible page in the kernel address
327 * range. Normally, the kernel page tables can have _PAGE_USER clear, but
328 * the tables covering VSYSCALL_ADDR need _PAGE_USER set if vsyscalls
329 * are enabled.
330 *
331 * Some day we may create a "minimal" vsyscall mode in which we emulate
332 * vsyscalls but leave the page not present. If so, we skip calling
333 * this.
334 */
set_vsyscall_pgtable_user_bits(pgd_t * root)335 void __init set_vsyscall_pgtable_user_bits(pgd_t *root)
336 {
337 pgd_t *pgd;
338 p4d_t *p4d;
339 pud_t *pud;
340 pmd_t *pmd;
341
342 pgd = pgd_offset_pgd(root, VSYSCALL_ADDR);
343 set_pgd(pgd, __pgd(pgd_val(*pgd) | _PAGE_USER));
344 p4d = p4d_offset(pgd, VSYSCALL_ADDR);
345 #if CONFIG_PGTABLE_LEVELS >= 5
346 set_p4d(p4d, __p4d(p4d_val(*p4d) | _PAGE_USER));
347 #endif
348 pud = pud_offset(p4d, VSYSCALL_ADDR);
349 set_pud(pud, __pud(pud_val(*pud) | _PAGE_USER));
350 pmd = pmd_offset(pud, VSYSCALL_ADDR);
351 set_pmd(pmd, __pmd(pmd_val(*pmd) | _PAGE_USER));
352 }
353
map_vsyscall(void)354 void __init map_vsyscall(void)
355 {
356 extern char __vsyscall_page;
357 unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page);
358
359 /*
360 * For full emulation, the page needs to exist for real. In
361 * execute-only mode, there is no PTE at all backing the vsyscall
362 * page.
363 */
364 if (vsyscall_mode == EMULATE) {
365 __set_fixmap(VSYSCALL_PAGE, physaddr_vsyscall,
366 PAGE_KERNEL_VVAR);
367 set_vsyscall_pgtable_user_bits(swapper_pg_dir);
368 }
369
370 if (vsyscall_mode == XONLY)
371 vm_flags_init(&gate_vma, VM_EXEC);
372
373 BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_PAGE) !=
374 (unsigned long)VSYSCALL_ADDR);
375 }
376