Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Andy Lutomirski | 95c46b5 | 2014-10-29 14:33:46 -0700 | [diff] [blame] | 2 | * Copyright (c) 2012-2014 Andy Lutomirski <luto@amacapital.net> |
| 3 | * |
| 4 | * Based on the original implementation which is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE |
| 6 | * Copyright 2003 Andi Kleen, SuSE Labs. |
| 7 | * |
Andy Lutomirski | 95c46b5 | 2014-10-29 14:33:46 -0700 | [diff] [blame] | 8 | * Parts of the original code have been moved to arch/x86/vdso/vma.c |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 9 | * |
Andy Lutomirski | 95c46b5 | 2014-10-29 14:33:46 -0700 | [diff] [blame] | 10 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Andy Lutomirski | 95c46b5 | 2014-10-29 14:33:46 -0700 | [diff] [blame] | 14 | * - 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * |
Andy Lutomirski | 95c46b5 | 2014-10-29 14:33:46 -0700 | [diff] [blame] | 20 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | */ |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/kernel.h> |
| 29 | #include <linux/timer.h> |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 30 | #include <linux/syscalls.h> |
| 31 | #include <linux/ratelimit.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | #include <asm/vsyscall.h> |
john stultz | 7460ed2 | 2007-02-16 01:28:21 -0800 | [diff] [blame] | 34 | #include <asm/unistd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/fixmap.h> |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 36 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Andy Lutomirski | c149a66 | 2011-08-03 09:31:54 -0400 | [diff] [blame] | 38 | #define CREATE_TRACE_POINTS |
| 39 | #include "vsyscall_trace.h" |
| 40 | |
Andy Lutomirski | 2e57ae0 | 2011-11-07 16:33:41 -0800 | [diff] [blame] | 41 | static enum { EMULATE, NATIVE, NONE } vsyscall_mode = EMULATE; |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 42 | |
| 43 | static int __init vsyscall_setup(char *str) |
| 44 | { |
| 45 | if (str) { |
| 46 | if (!strcmp("emulate", str)) |
| 47 | vsyscall_mode = EMULATE; |
| 48 | else if (!strcmp("native", str)) |
| 49 | vsyscall_mode = NATIVE; |
| 50 | else if (!strcmp("none", str)) |
| 51 | vsyscall_mode = NONE; |
| 52 | else |
| 53 | return -EINVAL; |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | return -EINVAL; |
| 59 | } |
| 60 | early_param("vsyscall", vsyscall_setup); |
| 61 | |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 62 | static void warn_bad_vsyscall(const char *level, struct pt_regs *regs, |
| 63 | const char *message) |
| 64 | { |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 65 | if (!show_unhandled_signals) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 66 | return; |
| 67 | |
Andy Lutomirski | 53b884a | 2014-07-25 16:30:27 -0700 | [diff] [blame] | 68 | printk_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n", |
| 69 | level, current->comm, task_pid_nr(current), |
| 70 | message, regs->ip, regs->cs, |
| 71 | regs->sp, regs->ax, regs->si, regs->di); |
Andy Lutomirski | c971294 | 2011-07-13 09:24:09 -0400 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static int addr_to_vsyscall_nr(unsigned long addr) |
| 75 | { |
| 76 | int nr; |
| 77 | |
Andy Lutomirski | f40c330 | 2014-05-05 12:19:36 -0700 | [diff] [blame] | 78 | if ((addr & ~0xC00UL) != VSYSCALL_ADDR) |
Andy Lutomirski | c971294 | 2011-07-13 09:24:09 -0400 | [diff] [blame] | 79 | return -EINVAL; |
| 80 | |
| 81 | nr = (addr & 0xC00UL) >> 10; |
| 82 | if (nr >= 3) |
| 83 | return -EINVAL; |
| 84 | |
| 85 | return nr; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 86 | } |
| 87 | |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 88 | static bool write_ok_or_segv(unsigned long ptr, size_t size) |
| 89 | { |
| 90 | /* |
| 91 | * XXX: if access_ok, get_user, and put_user handled |
| 92 | * sig_on_uaccess_error, this could go away. |
| 93 | */ |
| 94 | |
| 95 | if (!access_ok(VERIFY_WRITE, (void __user *)ptr, size)) { |
| 96 | siginfo_t info; |
| 97 | struct thread_struct *thread = ¤t->thread; |
| 98 | |
| 99 | thread->error_code = 6; /* user fault, no page, write */ |
| 100 | thread->cr2 = ptr; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 101 | thread->trap_nr = X86_TRAP_PF; |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 102 | |
| 103 | memset(&info, 0, sizeof(info)); |
| 104 | info.si_signo = SIGSEGV; |
| 105 | info.si_errno = 0; |
| 106 | info.si_code = SEGV_MAPERR; |
| 107 | info.si_addr = (void __user *)ptr; |
| 108 | |
| 109 | force_sig_info(SIGSEGV, &info, current); |
| 110 | return false; |
| 111 | } else { |
| 112 | return true; |
| 113 | } |
| 114 | } |
| 115 | |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 116 | bool emulate_vsyscall(struct pt_regs *regs, unsigned long address) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 117 | { |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 118 | struct task_struct *tsk; |
| 119 | unsigned long caller; |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 120 | int vsyscall_nr, syscall_nr, tmp; |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 121 | int prev_sig_on_uaccess_error; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 122 | long ret; |
| 123 | |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 124 | /* |
| 125 | * No point in checking CS -- the only way to get here is a user mode |
| 126 | * trap to a high address, which means that we're in 64-bit user code. |
| 127 | */ |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 128 | |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 129 | WARN_ON_ONCE(address != regs->ip); |
Andy Lutomirski | c971294 | 2011-07-13 09:24:09 -0400 | [diff] [blame] | 130 | |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 131 | if (vsyscall_mode == NONE) { |
| 132 | warn_bad_vsyscall(KERN_INFO, regs, |
| 133 | "vsyscall attempted with vsyscall=none"); |
| 134 | return false; |
Andy Lutomirski | c971294 | 2011-07-13 09:24:09 -0400 | [diff] [blame] | 135 | } |
| 136 | |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 137 | vsyscall_nr = addr_to_vsyscall_nr(address); |
Andy Lutomirski | c149a66 | 2011-08-03 09:31:54 -0400 | [diff] [blame] | 138 | |
| 139 | trace_emulate_vsyscall(vsyscall_nr); |
| 140 | |
Andy Lutomirski | c971294 | 2011-07-13 09:24:09 -0400 | [diff] [blame] | 141 | if (vsyscall_nr < 0) { |
| 142 | warn_bad_vsyscall(KERN_WARNING, regs, |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 143 | "misaligned vsyscall (exploit attempt or buggy program) -- look up the vsyscall kernel parameter if you need a workaround"); |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 144 | goto sigsegv; |
| 145 | } |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 146 | |
| 147 | if (get_user(caller, (unsigned long __user *)regs->sp) != 0) { |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 148 | warn_bad_vsyscall(KERN_WARNING, regs, |
| 149 | "vsyscall with bad stack (exploit attempt?)"); |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 150 | goto sigsegv; |
| 151 | } |
| 152 | |
| 153 | tsk = current; |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * Check for access_ok violations and find the syscall nr. |
| 157 | * |
| 158 | * NULL is a valid user pointer (in the access_ok sense) on 32-bit and |
| 159 | * 64-bit, so we don't need to special-case it here. For all the |
| 160 | * vsyscalls, NULL means "don't write anything" not "write it at |
| 161 | * address 0". |
| 162 | */ |
| 163 | switch (vsyscall_nr) { |
| 164 | case 0: |
| 165 | if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) || |
| 166 | !write_ok_or_segv(regs->si, sizeof(struct timezone))) { |
| 167 | ret = -EFAULT; |
| 168 | goto check_fault; |
| 169 | } |
| 170 | |
| 171 | syscall_nr = __NR_gettimeofday; |
| 172 | break; |
| 173 | |
| 174 | case 1: |
| 175 | if (!write_ok_or_segv(regs->di, sizeof(time_t))) { |
| 176 | ret = -EFAULT; |
| 177 | goto check_fault; |
| 178 | } |
| 179 | |
| 180 | syscall_nr = __NR_time; |
| 181 | break; |
| 182 | |
| 183 | case 2: |
| 184 | if (!write_ok_or_segv(regs->di, sizeof(unsigned)) || |
| 185 | !write_ok_or_segv(regs->si, sizeof(unsigned))) { |
| 186 | ret = -EFAULT; |
| 187 | goto check_fault; |
| 188 | } |
| 189 | |
| 190 | syscall_nr = __NR_getcpu; |
| 191 | break; |
| 192 | } |
| 193 | |
| 194 | /* |
| 195 | * Handle seccomp. regs->ip must be the original value. |
| 196 | * See seccomp_send_sigsys and Documentation/prctl/seccomp_filter.txt. |
| 197 | * |
| 198 | * We could optimize the seccomp disabled case, but performance |
| 199 | * here doesn't matter. |
| 200 | */ |
| 201 | regs->orig_ax = syscall_nr; |
| 202 | regs->ax = -ENOSYS; |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 203 | tmp = secure_computing(); |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 204 | if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) { |
| 205 | warn_bad_vsyscall(KERN_DEBUG, regs, |
| 206 | "seccomp tried to change syscall nr or ip"); |
| 207 | do_exit(SIGSYS); |
| 208 | } |
Andy Lutomirski | 2689310 | 2014-11-04 15:36:50 -0800 | [diff] [blame] | 209 | regs->orig_ax = -1; |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 210 | if (tmp) |
| 211 | goto do_ret; /* skip requested */ |
| 212 | |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 213 | /* |
| 214 | * With a real vsyscall, page faults cause SIGSEGV. We want to |
| 215 | * preserve that behavior to make writing exploits harder. |
| 216 | */ |
| 217 | prev_sig_on_uaccess_error = current_thread_info()->sig_on_uaccess_error; |
| 218 | current_thread_info()->sig_on_uaccess_error = 1; |
| 219 | |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 220 | ret = -EFAULT; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 221 | switch (vsyscall_nr) { |
| 222 | case 0: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 223 | ret = sys_gettimeofday( |
| 224 | (struct timeval __user *)regs->di, |
| 225 | (struct timezone __user *)regs->si); |
| 226 | break; |
| 227 | |
| 228 | case 1: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 229 | ret = sys_time((time_t __user *)regs->di); |
| 230 | break; |
| 231 | |
| 232 | case 2: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 233 | ret = sys_getcpu((unsigned __user *)regs->di, |
| 234 | (unsigned __user *)regs->si, |
Emil Goode | 46ed99d | 2012-04-01 20:48:04 +0200 | [diff] [blame] | 235 | NULL); |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 236 | break; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 237 | } |
| 238 | |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 239 | current_thread_info()->sig_on_uaccess_error = prev_sig_on_uaccess_error; |
| 240 | |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 241 | check_fault: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 242 | if (ret == -EFAULT) { |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 243 | /* Bad news -- userspace fed a bad pointer to a vsyscall. */ |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 244 | warn_bad_vsyscall(KERN_INFO, regs, |
| 245 | "vsyscall fault (exploit attempt?)"); |
Andy Lutomirski | 4fc3490 | 2011-11-07 16:33:40 -0800 | [diff] [blame] | 246 | |
| 247 | /* |
| 248 | * If we failed to generate a signal for any reason, |
| 249 | * generate one here. (This should be impossible.) |
| 250 | */ |
| 251 | if (WARN_ON_ONCE(!sigismember(&tsk->pending.signal, SIGBUS) && |
| 252 | !sigismember(&tsk->pending.signal, SIGSEGV))) |
| 253 | goto sigsegv; |
| 254 | |
| 255 | return true; /* Don't emulate the ret. */ |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | regs->ax = ret; |
| 259 | |
Will Drewry | 5651721 | 2012-07-13 12:06:35 -0500 | [diff] [blame] | 260 | do_ret: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 261 | /* Emulate a ret instruction. */ |
| 262 | regs->ip = caller; |
| 263 | regs->sp += 8; |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 264 | return true; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 265 | |
| 266 | sigsegv: |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 267 | force_sig(SIGSEGV, current); |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 268 | return true; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /* |
Andy Lutomirski | b935909 | 2014-09-23 10:50:51 -0700 | [diff] [blame] | 272 | * A pseudo VMA to allow ptrace access for the vsyscall page. This only |
| 273 | * covers the 64bit vsyscall page now. 32bit has a real VMA now and does |
| 274 | * not need special handling anymore: |
| 275 | */ |
| 276 | static const char *gate_vma_name(struct vm_area_struct *vma) |
| 277 | { |
| 278 | return "[vsyscall]"; |
| 279 | } |
| 280 | static struct vm_operations_struct gate_vma_ops = { |
| 281 | .name = gate_vma_name, |
| 282 | }; |
| 283 | static struct vm_area_struct gate_vma = { |
| 284 | .vm_start = VSYSCALL_ADDR, |
| 285 | .vm_end = VSYSCALL_ADDR + PAGE_SIZE, |
| 286 | .vm_page_prot = PAGE_READONLY_EXEC, |
| 287 | .vm_flags = VM_READ | VM_EXEC, |
| 288 | .vm_ops = &gate_vma_ops, |
| 289 | }; |
| 290 | |
| 291 | struct vm_area_struct *get_gate_vma(struct mm_struct *mm) |
| 292 | { |
| 293 | #ifdef CONFIG_IA32_EMULATION |
| 294 | if (!mm || mm->context.ia32_compat) |
| 295 | return NULL; |
| 296 | #endif |
Andy Lutomirski | 87983c6 | 2014-10-29 14:33:45 -0700 | [diff] [blame] | 297 | if (vsyscall_mode == NONE) |
| 298 | return NULL; |
Andy Lutomirski | b935909 | 2014-09-23 10:50:51 -0700 | [diff] [blame] | 299 | return &gate_vma; |
| 300 | } |
| 301 | |
| 302 | int in_gate_area(struct mm_struct *mm, unsigned long addr) |
| 303 | { |
| 304 | struct vm_area_struct *vma = get_gate_vma(mm); |
| 305 | |
| 306 | if (!vma) |
| 307 | return 0; |
| 308 | |
| 309 | return (addr >= vma->vm_start) && (addr < vma->vm_end); |
| 310 | } |
| 311 | |
| 312 | /* |
| 313 | * Use this when you have no reliable mm, typically from interrupt |
| 314 | * context. It is less reliable than using a task's mm and may give |
| 315 | * false positives. |
| 316 | */ |
| 317 | int in_gate_area_no_mm(unsigned long addr) |
| 318 | { |
Andy Lutomirski | 87983c6 | 2014-10-29 14:33:45 -0700 | [diff] [blame] | 319 | return vsyscall_mode != NONE && (addr & PAGE_MASK) == VSYSCALL_ADDR; |
Andy Lutomirski | b935909 | 2014-09-23 10:50:51 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Ingo Molnar | e402644 | 2008-01-30 13:32:39 +0100 | [diff] [blame] | 322 | void __init map_vsyscall(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | { |
Andy Lutomirski | 3ae3665 | 2011-08-10 11:15:32 -0400 | [diff] [blame] | 324 | extern char __vsyscall_page; |
| 325 | unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Andy Lutomirski | 87983c6 | 2014-10-29 14:33:45 -0700 | [diff] [blame] | 327 | if (vsyscall_mode != NONE) |
| 328 | __set_fixmap(VSYSCALL_PAGE, physaddr_vsyscall, |
| 329 | vsyscall_mode == NATIVE |
| 330 | ? PAGE_KERNEL_VSYSCALL |
| 331 | : PAGE_KERNEL_VVAR); |
| 332 | |
Andy Lutomirski | f40c330 | 2014-05-05 12:19:36 -0700 | [diff] [blame] | 333 | BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_PAGE) != |
| 334 | (unsigned long)VSYSCALL_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |