blob: 9a907a67be8f48abc0399017865a4697968ae2c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
3 * Copyright 2003 Andi Kleen, SuSE Labs.
4 *
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04005 * [ NOTE: this mechanism is now deprecated in favor of the vDSO. ]
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Thanks to hpa@transmeta.com for some useful hint.
8 * Special thanks to Ingo Molnar for his early experience with
9 * a different vsyscall implementation for Linux/IA32 and for the name.
10 *
11 * vsyscall 1 is located at -10Mbyte, vsyscall 2 is located
12 * at virtual address -10Mbyte+1024bytes etc... There are at max 4
13 * vsyscalls. One vsyscall can reserve more than 1 slot to avoid
14 * jumping out of line if necessary. We cannot add more with this
15 * mechanism because older kernels won't return -ENOSYS.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040017 * Note: the concept clashes with user mode linux. UML users should
18 * use the vDSO.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Joe Perchesc767a542012-05-21 19:50:07 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/time.h>
24#include <linux/init.h>
25#include <linux/kernel.h>
26#include <linux/timer.h>
27#include <linux/seqlock.h>
28#include <linux/jiffies.h>
29#include <linux/sysctl.h>
Paul Gortmaker29574022011-05-26 12:33:18 -040030#include <linux/topology.h>
John Stultz189374a2012-09-04 15:27:48 -040031#include <linux/timekeeper_internal.h>
Vojtech Pavlikc08c8202006-09-26 10:52:28 +020032#include <linux/getcpu.h>
Andi Kleen8c131af2006-11-14 16:57:46 +010033#include <linux/cpu.h>
34#include <linux/smp.h>
35#include <linux/notifier.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040036#include <linux/syscalls.h>
37#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/vsyscall.h>
40#include <asm/pgtable.h>
Andy Lutomirskic9712942011-07-13 09:24:09 -040041#include <asm/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/page.h>
john stultz7460ed22007-02-16 01:28:21 -080043#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/fixmap.h>
45#include <asm/errno.h>
46#include <asm/io.h>
Vojtech Pavlikc08c8202006-09-26 10:52:28 +020047#include <asm/segment.h>
48#include <asm/desc.h>
49#include <asm/topology.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020050#include <asm/vgtod.h>
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040051#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Andy Lutomirskic149a662011-08-03 09:31:54 -040053#define CREATE_TRACE_POINTS
54#include "vsyscall_trace.h"
55
Andy Lutomirski8c49d9a2011-05-23 09:31:24 -040056DEFINE_VVAR(int, vgetcpu_mode);
Thomas Gleixner2ab51652012-02-28 19:46:04 +000057DEFINE_VVAR(struct vsyscall_gtod_data, vsyscall_gtod_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Andy Lutomirski2e57ae02011-11-07 16:33:41 -080059static enum { EMULATE, NATIVE, NONE } vsyscall_mode = EMULATE;
Andy Lutomirski3ae36652011-08-10 11:15:32 -040060
61static int __init vsyscall_setup(char *str)
62{
63 if (str) {
64 if (!strcmp("emulate", str))
65 vsyscall_mode = EMULATE;
66 else if (!strcmp("native", str))
67 vsyscall_mode = NATIVE;
68 else if (!strcmp("none", str))
69 vsyscall_mode = NONE;
70 else
71 return -EINVAL;
72
73 return 0;
74 }
75
76 return -EINVAL;
77}
78early_param("vsyscall", vsyscall_setup);
79
Tony Breeds2c622142007-10-18 03:04:57 -070080void update_vsyscall_tz(void)
81{
Tony Breeds2c622142007-10-18 03:04:57 -070082 vsyscall_gtod_data.sys_tz = sys_tz;
Tony Breeds2c622142007-10-18 03:04:57 -070083}
84
John Stultz650ea022012-09-04 16:14:46 -040085void update_vsyscall(struct timekeeper *tk)
john stultz7460ed22007-02-16 01:28:21 -080086{
John Stultz650ea022012-09-04 16:14:46 -040087 struct vsyscall_gtod_data *vdata = &vsyscall_gtod_data;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -040088
John Stultz650ea022012-09-04 16:14:46 -040089 write_seqcount_begin(&vdata->seq);
Thomas Gleixner68fe7b22012-03-24 09:29:22 +010090
john stultz7460ed22007-02-16 01:28:21 -080091 /* copy vsyscall data */
John Stultz650ea022012-09-04 16:14:46 -040092 vdata->clock.vclock_mode = tk->clock->archdata.vclock_mode;
93 vdata->clock.cycle_last = tk->clock->cycle_last;
94 vdata->clock.mask = tk->clock->mask;
95 vdata->clock.mult = tk->mult;
96 vdata->clock.shift = tk->shift;
Andy Lutomirski91ec87d2012-03-22 21:15:51 -070097
John Stultz650ea022012-09-04 16:14:46 -040098 vdata->wall_time_sec = tk->xtime_sec;
99 vdata->wall_time_snsec = tk->xtime_nsec;
Andy Lutomirski91ec87d2012-03-22 21:15:51 -0700100
John Stultz650ea022012-09-04 16:14:46 -0400101 vdata->monotonic_time_sec = tk->xtime_sec
102 + tk->wall_to_monotonic.tv_sec;
103 vdata->monotonic_time_snsec = tk->xtime_nsec
104 + (tk->wall_to_monotonic.tv_nsec
105 << tk->shift);
106 while (vdata->monotonic_time_snsec >=
107 (((u64)NSEC_PER_SEC) << tk->shift)) {
108 vdata->monotonic_time_snsec -=
109 ((u64)NSEC_PER_SEC) << tk->shift;
110 vdata->monotonic_time_sec++;
111 }
Andy Lutomirski91ec87d2012-03-22 21:15:51 -0700112
John Stultz650ea022012-09-04 16:14:46 -0400113 vdata->wall_time_coarse.tv_sec = tk->xtime_sec;
114 vdata->wall_time_coarse.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400115
John Stultz650ea022012-09-04 16:14:46 -0400116 vdata->monotonic_time_coarse = timespec_add(vdata->wall_time_coarse,
117 tk->wall_to_monotonic);
118
119 write_seqcount_end(&vdata->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400122static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
123 const char *message)
124{
Joe Perchesc767a542012-05-21 19:50:07 -0700125 if (!show_unhandled_signals)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400126 return;
127
Joe Perchesc767a542012-05-21 19:50:07 -0700128 pr_notice_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n",
129 level, current->comm, task_pid_nr(current),
130 message, regs->ip, regs->cs,
131 regs->sp, regs->ax, regs->si, regs->di);
Andy Lutomirskic9712942011-07-13 09:24:09 -0400132}
133
134static int addr_to_vsyscall_nr(unsigned long addr)
135{
136 int nr;
137
138 if ((addr & ~0xC00UL) != VSYSCALL_START)
139 return -EINVAL;
140
141 nr = (addr & 0xC00UL) >> 10;
142 if (nr >= 3)
143 return -EINVAL;
144
145 return nr;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400146}
147
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800148static bool write_ok_or_segv(unsigned long ptr, size_t size)
149{
150 /*
151 * XXX: if access_ok, get_user, and put_user handled
152 * sig_on_uaccess_error, this could go away.
153 */
154
155 if (!access_ok(VERIFY_WRITE, (void __user *)ptr, size)) {
156 siginfo_t info;
157 struct thread_struct *thread = &current->thread;
158
159 thread->error_code = 6; /* user fault, no page, write */
160 thread->cr2 = ptr;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530161 thread->trap_nr = X86_TRAP_PF;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800162
163 memset(&info, 0, sizeof(info));
164 info.si_signo = SIGSEGV;
165 info.si_errno = 0;
166 info.si_code = SEGV_MAPERR;
167 info.si_addr = (void __user *)ptr;
168
169 force_sig_info(SIGSEGV, &info, current);
170 return false;
171 } else {
172 return true;
173 }
174}
175
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400176bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400177{
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400178 struct task_struct *tsk;
179 unsigned long caller;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700180 int vsyscall_nr, syscall_nr, tmp;
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800181 int prev_sig_on_uaccess_error;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400182 long ret;
183
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400184 /*
185 * No point in checking CS -- the only way to get here is a user mode
186 * trap to a high address, which means that we're in 64-bit user code.
187 */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400188
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400189 WARN_ON_ONCE(address != regs->ip);
Andy Lutomirskic9712942011-07-13 09:24:09 -0400190
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400191 if (vsyscall_mode == NONE) {
192 warn_bad_vsyscall(KERN_INFO, regs,
193 "vsyscall attempted with vsyscall=none");
194 return false;
Andy Lutomirskic9712942011-07-13 09:24:09 -0400195 }
196
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400197 vsyscall_nr = addr_to_vsyscall_nr(address);
Andy Lutomirskic149a662011-08-03 09:31:54 -0400198
199 trace_emulate_vsyscall(vsyscall_nr);
200
Andy Lutomirskic9712942011-07-13 09:24:09 -0400201 if (vsyscall_nr < 0) {
202 warn_bad_vsyscall(KERN_WARNING, regs,
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400203 "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 -0400204 goto sigsegv;
205 }
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400206
207 if (get_user(caller, (unsigned long __user *)regs->sp) != 0) {
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400208 warn_bad_vsyscall(KERN_WARNING, regs,
209 "vsyscall with bad stack (exploit attempt?)");
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400210 goto sigsegv;
211 }
212
213 tsk = current;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700214
215 /*
216 * Check for access_ok violations and find the syscall nr.
217 *
218 * NULL is a valid user pointer (in the access_ok sense) on 32-bit and
219 * 64-bit, so we don't need to special-case it here. For all the
220 * vsyscalls, NULL means "don't write anything" not "write it at
221 * address 0".
222 */
223 switch (vsyscall_nr) {
224 case 0:
225 if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) ||
226 !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
227 ret = -EFAULT;
228 goto check_fault;
229 }
230
231 syscall_nr = __NR_gettimeofday;
232 break;
233
234 case 1:
235 if (!write_ok_or_segv(regs->di, sizeof(time_t))) {
236 ret = -EFAULT;
237 goto check_fault;
238 }
239
240 syscall_nr = __NR_time;
241 break;
242
243 case 2:
244 if (!write_ok_or_segv(regs->di, sizeof(unsigned)) ||
245 !write_ok_or_segv(regs->si, sizeof(unsigned))) {
246 ret = -EFAULT;
247 goto check_fault;
248 }
249
250 syscall_nr = __NR_getcpu;
251 break;
252 }
253
254 /*
255 * Handle seccomp. regs->ip must be the original value.
256 * See seccomp_send_sigsys and Documentation/prctl/seccomp_filter.txt.
257 *
258 * We could optimize the seccomp disabled case, but performance
259 * here doesn't matter.
260 */
261 regs->orig_ax = syscall_nr;
262 regs->ax = -ENOSYS;
263 tmp = secure_computing(syscall_nr);
264 if ((!tmp && regs->orig_ax != syscall_nr) || regs->ip != address) {
265 warn_bad_vsyscall(KERN_DEBUG, regs,
266 "seccomp tried to change syscall nr or ip");
267 do_exit(SIGSYS);
268 }
269 if (tmp)
270 goto do_ret; /* skip requested */
271
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800272 /*
273 * With a real vsyscall, page faults cause SIGSEGV. We want to
274 * preserve that behavior to make writing exploits harder.
275 */
276 prev_sig_on_uaccess_error = current_thread_info()->sig_on_uaccess_error;
277 current_thread_info()->sig_on_uaccess_error = 1;
278
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800279 ret = -EFAULT;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400280 switch (vsyscall_nr) {
281 case 0:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400282 ret = sys_gettimeofday(
283 (struct timeval __user *)regs->di,
284 (struct timezone __user *)regs->si);
285 break;
286
287 case 1:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400288 ret = sys_time((time_t __user *)regs->di);
289 break;
290
291 case 2:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400292 ret = sys_getcpu((unsigned __user *)regs->di,
293 (unsigned __user *)regs->si,
Emil Goode46ed99d2012-04-01 20:48:04 +0200294 NULL);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400295 break;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400296 }
297
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800298 current_thread_info()->sig_on_uaccess_error = prev_sig_on_uaccess_error;
299
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700300check_fault:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400301 if (ret == -EFAULT) {
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800302 /* Bad news -- userspace fed a bad pointer to a vsyscall. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400303 warn_bad_vsyscall(KERN_INFO, regs,
304 "vsyscall fault (exploit attempt?)");
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800305
306 /*
307 * If we failed to generate a signal for any reason,
308 * generate one here. (This should be impossible.)
309 */
310 if (WARN_ON_ONCE(!sigismember(&tsk->pending.signal, SIGBUS) &&
311 !sigismember(&tsk->pending.signal, SIGSEGV)))
312 goto sigsegv;
313
314 return true; /* Don't emulate the ret. */
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400315 }
316
317 regs->ax = ret;
318
Will Drewry56517212012-07-13 12:06:35 -0500319do_ret:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400320 /* Emulate a ret instruction. */
321 regs->ip = caller;
322 regs->sp += 8;
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400323 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400324
325sigsegv:
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400326 force_sig(SIGSEGV, current);
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400327 return true;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400328}
329
330/*
331 * Assume __initcall executes before all user space. Hopefully kmod
332 * doesn't violate that. We'll find out if it does.
john stultz7460ed22007-02-16 01:28:21 -0800333 */
Andi Kleen8c131af2006-11-14 16:57:46 +0100334static void __cpuinit vsyscall_set_cpu(int cpu)
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200335{
Jeremy Fitzhardingefc8b8a62008-06-25 00:19:01 -0400336 unsigned long d;
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200337 unsigned long node = 0;
338#ifdef CONFIG_NUMA
Mike Travis98c9e272007-10-17 18:04:39 +0200339 node = cpu_to_node(cpu);
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200340#endif
Mike Travis92cb7612007-10-19 20:35:04 +0200341 if (cpu_has(&cpu_data(cpu), X86_FEATURE_RDTSCP))
Andi Kleen8c131af2006-11-14 16:57:46 +0100342 write_rdtscp_aux((node << 12) | cpu);
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200343
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400344 /*
345 * Store cpu number in limit so that it can be loaded quickly
346 * in user space in vgetcpu. (12 bits for the CPU and 8 bits for the node)
347 */
Jeremy Fitzhardingefc8b8a62008-06-25 00:19:01 -0400348 d = 0x0f40000000000ULL;
349 d |= cpu;
350 d |= (node & 0xf) << 12;
351 d |= (node >> 4) << 48;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400352
Jeremy Fitzhardingefc8b8a62008-06-25 00:19:01 -0400353 write_gdt_entry(get_cpu_gdt_table(cpu), GDT_ENTRY_PER_CPU, &d, DESCTYPE_S);
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200354}
355
Andi Kleen8c131af2006-11-14 16:57:46 +0100356static void __cpuinit cpu_vsyscall_init(void *arg)
357{
358 /* preemption should be already off */
359 vsyscall_set_cpu(raw_smp_processor_id());
360}
361
362static int __cpuinit
363cpu_vsyscall_notifier(struct notifier_block *n, unsigned long action, void *arg)
364{
365 long cpu = (long)arg;
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400366
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700367 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
Jens Axboe8691e5a2008-06-06 11:18:06 +0200368 smp_call_function_single(cpu, cpu_vsyscall_init, NULL, 1);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400369
Andi Kleen8c131af2006-11-14 16:57:46 +0100370 return NOTIFY_DONE;
371}
372
Ingo Molnare4026442008-01-30 13:32:39 +0100373void __init map_vsyscall(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400375 extern char __vsyscall_page;
376 unsigned long physaddr_vsyscall = __pa_symbol(&__vsyscall_page);
Andy Lutomirski9fd67b42011-06-05 13:50:19 -0400377 extern char __vvar_page;
378 unsigned long physaddr_vvar_page = __pa_symbol(&__vvar_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400380 __set_fixmap(VSYSCALL_FIRST_PAGE, physaddr_vsyscall,
381 vsyscall_mode == NATIVE
382 ? PAGE_KERNEL_VSYSCALL
383 : PAGE_KERNEL_VVAR);
384 BUILD_BUG_ON((unsigned long)__fix_to_virt(VSYSCALL_FIRST_PAGE) !=
385 (unsigned long)VSYSCALL_START);
386
Andy Lutomirski9fd67b42011-06-05 13:50:19 -0400387 __set_fixmap(VVAR_PAGE, physaddr_vvar_page, PAGE_KERNEL_VVAR);
Andy Lutomirski3ae36652011-08-10 11:15:32 -0400388 BUILD_BUG_ON((unsigned long)__fix_to_virt(VVAR_PAGE) !=
389 (unsigned long)VVAR_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392static int __init vsyscall_init(void)
393{
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400394 BUG_ON(VSYSCALL_ADDR(0) != __fix_to_virt(VSYSCALL_FIRST_PAGE));
395
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200396 on_each_cpu(cpu_vsyscall_init, NULL, 1);
Sheng Yangbe43f832009-12-18 16:48:45 +0800397 /* notifier priority > KVM */
398 hotcpu_notifier(cpu_vsyscall_notifier, 30);
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return 0;
401}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402__initcall(vsyscall_init);