blob: 02223cb4bcfd8155f041aac6ccd11a448ec5ebbe [file] [log] [blame]
Andi Kleen2aae9502007-07-21 17:10:01 +02001/*
2 * Copyright 2006 Andi Kleen, SUSE Labs.
3 * Subject to the GNU Public License, v.2
4 *
Andy Lutomirskif144a6b2011-05-23 09:31:30 -04005 * Fast user context implementation of clock_gettime, gettimeofday, and time.
Andi Kleen2aae9502007-07-21 17:10:01 +02006 *
Stefani Seibold7a59ed42014-03-17 23:22:09 +01007 * 32 Bit compat layer by Stefani Seibold <stefani@seibold.net>
8 * sponsored by Rohde & Schwarz GmbH & Co. KG Munich/Germany
9 *
Andi Kleen2aae9502007-07-21 17:10:01 +020010 * The code should have no internal unresolved relocations.
11 * Check with readelf after changing.
Andi Kleen2aae9502007-07-21 17:10:01 +020012 */
13
Stefani Seibold7a59ed42014-03-17 23:22:09 +010014#include <uapi/linux/time.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020015#include <asm/vgtod.h>
Stefani Seibold7c031562014-03-17 23:22:10 +010016#include <asm/vvar.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020017#include <asm/unistd.h>
Stefani Seibold7c031562014-03-17 23:22:10 +010018#include <asm/msr.h>
Andy Lutomirski76480a62015-12-10 19:20:22 -080019#include <asm/pvclock.h>
Stefani Seibold7c031562014-03-17 23:22:10 +010020#include <linux/math64.h>
21#include <linux/time.h>
Andy Lutomirski76480a62015-12-10 19:20:22 -080022#include <linux/kernel.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020023
Andy Lutomirski8c49d9a2011-05-23 09:31:24 -040024#define gtod (&VVAR(vsyscall_gtod_data))
Andi Kleen2aae9502007-07-21 17:10:01 +020025
Stefani Seibold7a59ed42014-03-17 23:22:09 +010026extern int __vdso_clock_gettime(clockid_t clock, struct timespec *ts);
27extern int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz);
28extern time_t __vdso_time(time_t *t);
29
Andy Lutomirskidac16fb2015-12-10 19:20:20 -080030#ifdef CONFIG_PARAVIRT_CLOCK
31extern u8 pvclock_page
32 __attribute__((visibility("hidden")));
33#endif
34
Stefani Seibold7a59ed42014-03-17 23:22:09 +010035#ifndef BUILD_VDSO32
36
Stefani Seibold411f7902014-03-17 23:22:03 +010037notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
38{
39 long ret;
40 asm("syscall" : "=a" (ret) :
41 "0" (__NR_clock_gettime), "D" (clock), "S" (ts) : "memory");
42 return ret;
43}
44
45notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz)
46{
47 long ret;
48
49 asm("syscall" : "=a" (ret) :
50 "0" (__NR_gettimeofday), "D" (tv), "S" (tz) : "memory");
51 return ret;
52}
53
Marcelo Tosatti51c19b42012-11-27 23:28:57 -020054
Andy Lutomirski76480a62015-12-10 19:20:22 -080055#else
56
57notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
58{
59 long ret;
60
61 asm(
62 "mov %%ebx, %%edx \n"
63 "mov %2, %%ebx \n"
64 "call __kernel_vsyscall \n"
65 "mov %%edx, %%ebx \n"
66 : "=a" (ret)
67 : "0" (__NR_clock_gettime), "g" (clock), "c" (ts)
68 : "memory", "edx");
69 return ret;
70}
71
72notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz)
73{
74 long ret;
75
76 asm(
77 "mov %%ebx, %%edx \n"
78 "mov %2, %%ebx \n"
79 "call __kernel_vsyscall \n"
80 "mov %%edx, %%ebx \n"
81 : "=a" (ret)
82 : "0" (__NR_gettimeofday), "g" (tv), "c" (tz)
83 : "memory", "edx");
84 return ret;
85}
86
87#endif
88
89#ifdef CONFIG_PARAVIRT_CLOCK
Andy Lutomirskidac16fb2015-12-10 19:20:20 -080090static notrace const struct pvclock_vsyscall_time_info *get_pvti0(void)
Marcelo Tosatti51c19b42012-11-27 23:28:57 -020091{
Andy Lutomirskidac16fb2015-12-10 19:20:20 -080092 return (const struct pvclock_vsyscall_time_info *)&pvclock_page;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -020093}
94
95static notrace cycle_t vread_pvclock(int *mode)
96{
Andy Lutomirskidac16fb2015-12-10 19:20:20 -080097 const struct pvclock_vcpu_time_info *pvti = &get_pvti0()->pvti;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -020098 cycle_t ret;
Paolo Bonziniabe9efa2016-06-09 20:12:34 +020099 u64 last;
100 u32 version;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200101
102 /*
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800103 * Note: The kernel and hypervisor must guarantee that cpu ID
104 * number maps 1:1 to per-CPU pvclock time info.
Paolo Bonzini73459e22015-04-23 13:20:18 +0200105 *
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800106 * Because the hypervisor is entirely unaware of guest userspace
107 * preemption, it cannot guarantee that per-CPU pvclock time
108 * info is updated if the underlying CPU changes or that that
109 * version is increased whenever underlying CPU changes.
110 *
111 * On KVM, we are guaranteed that pvti updates for any vCPU are
112 * atomic as seen by *all* vCPUs. This is an even stronger
113 * guarantee than we get with a normal seqlock.
114 *
115 * On Xen, we don't appear to have that guarantee, but Xen still
116 * supplies a valid seqlock using the version field.
Andy Lutomirski78fd8c72016-01-04 15:14:28 -0800117 *
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800118 * We only do pvclock vdso timing at all if
119 * PVCLOCK_TSC_STABLE_BIT is set, and we interpret that bit to
120 * mean that all vCPUs have matching pvti and that the TSC is
121 * synced, so we can just look at vCPU 0's pvti.
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200122 */
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200123
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800124 do {
Paolo Bonzini3aed64f2016-06-09 13:06:08 +0200125 version = pvclock_read_begin(pvti);
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800126
Andy Lutomirski78fd8c72016-01-04 15:14:28 -0800127 if (unlikely(!(pvti->flags & PVCLOCK_TSC_STABLE_BIT))) {
128 *mode = VCLOCK_NONE;
129 return 0;
130 }
131
Paolo Bonzini108b2492016-09-01 14:21:03 +0200132 ret = __pvclock_read_cycles(pvti, rdtsc_ordered());
Paolo Bonzini3aed64f2016-06-09 13:06:08 +0200133 } while (pvclock_read_retry(pvti, version));
Andy Lutomirski6b078f52015-12-10 19:20:19 -0800134
Andy Lutomirski76480a62015-12-10 19:20:22 -0800135 /* refer to vread_tsc() comment for rationale */
Stefani Seibold7c031562014-03-17 23:22:10 +0100136 last = gtod->cycle_last;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200137
138 if (likely(ret >= last))
139 return ret;
140
141 return last;
142}
143#endif
144
Stefani Seibold411f7902014-03-17 23:22:03 +0100145notrace static cycle_t vread_tsc(void)
Andi Kleen2aae9502007-07-21 17:10:01 +0200146{
Andy Lutomirski03b97302015-06-25 18:44:08 +0200147 cycle_t ret = (cycle_t)rdtsc_ordered();
148 u64 last = gtod->cycle_last;
Stefani Seibold411f7902014-03-17 23:22:03 +0100149
150 if (likely(ret >= last))
151 return ret;
152
153 /*
154 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800155 * predictable (it's just a function of time and the likely is
Stefani Seibold411f7902014-03-17 23:22:03 +0100156 * very likely) and there's a data dependence, so force GCC
157 * to generate a branch instead. I don't barrier() because
158 * we don't actually need a barrier, and if this function
159 * ever gets inlined it will generate worse code.
160 */
161 asm volatile ("");
162 return last;
Andi Kleen2aae9502007-07-21 17:10:01 +0200163}
164
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200165notrace static inline u64 vgetsns(int *mode)
Andi Kleen2aae9502007-07-21 17:10:01 +0200166{
Stefani Seibold7a59ed42014-03-17 23:22:09 +0100167 u64 v;
Andy Lutomirski98d0ac32011-07-14 06:47:22 -0400168 cycles_t cycles;
Stefani Seibold7c031562014-03-17 23:22:10 +0100169
170 if (gtod->vclock_mode == VCLOCK_TSC)
Andy Lutomirski98d0ac32011-07-14 06:47:22 -0400171 cycles = vread_tsc();
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200172#ifdef CONFIG_PARAVIRT_CLOCK
Stefani Seibold7c031562014-03-17 23:22:10 +0100173 else if (gtod->vclock_mode == VCLOCK_PVCLOCK)
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200174 cycles = vread_pvclock(mode);
175#endif
John Stultza939e812012-03-01 22:11:09 -0800176 else
177 return 0;
Stefani Seibold7c031562014-03-17 23:22:10 +0100178 v = (cycles - gtod->cycle_last) & gtod->mask;
179 return v * gtod->mult;
Andi Kleen2aae9502007-07-21 17:10:01 +0200180}
181
Andy Lutomirski5f293472012-03-22 21:15:52 -0700182/* Code size doesn't matter (vdso is 4k anyway) and this is faster. */
183notrace static int __always_inline do_realtime(struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +0200184{
John Stultz650ea022012-09-04 16:14:46 -0400185 unsigned long seq;
186 u64 ns;
John Stultza939e812012-03-01 22:11:09 -0800187 int mode;
188
Andi Kleen2aae9502007-07-21 17:10:01 +0200189 do {
Stefani Seibold7c031562014-03-17 23:22:10 +0100190 seq = gtod_read_begin(gtod);
191 mode = gtod->vclock_mode;
Andi Kleen2aae9502007-07-21 17:10:01 +0200192 ts->tv_sec = gtod->wall_time_sec;
John Stultz650ea022012-09-04 16:14:46 -0400193 ns = gtod->wall_time_snsec;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200194 ns += vgetsns(&mode);
Stefani Seibold7c031562014-03-17 23:22:10 +0100195 ns >>= gtod->shift;
196 } while (unlikely(gtod_read_retry(gtod, seq)));
John Stultza939e812012-03-01 22:11:09 -0800197
Stefani Seibold7c031562014-03-17 23:22:10 +0100198 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
199 ts->tv_nsec = ns;
200
John Stultza939e812012-03-01 22:11:09 -0800201 return mode;
Andi Kleen2aae9502007-07-21 17:10:01 +0200202}
203
Stefani Seibold7a59ed42014-03-17 23:22:09 +0100204notrace static int __always_inline do_monotonic(struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +0200205{
John Stultz650ea022012-09-04 16:14:46 -0400206 unsigned long seq;
207 u64 ns;
John Stultza939e812012-03-01 22:11:09 -0800208 int mode;
209
Andi Kleen2aae9502007-07-21 17:10:01 +0200210 do {
Stefani Seibold7c031562014-03-17 23:22:10 +0100211 seq = gtod_read_begin(gtod);
212 mode = gtod->vclock_mode;
Andy Lutomirski91ec87d2012-03-22 21:15:51 -0700213 ts->tv_sec = gtod->monotonic_time_sec;
John Stultz650ea022012-09-04 16:14:46 -0400214 ns = gtod->monotonic_time_snsec;
Marcelo Tosatti51c19b42012-11-27 23:28:57 -0200215 ns += vgetsns(&mode);
Stefani Seibold7c031562014-03-17 23:22:10 +0100216 ns >>= gtod->shift;
217 } while (unlikely(gtod_read_retry(gtod, seq)));
218
219 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
220 ts->tv_nsec = ns;
Andy Lutomirski0f51f282011-05-23 09:31:27 -0400221
John Stultza939e812012-03-01 22:11:09 -0800222 return mode;
Andi Kleen2aae9502007-07-21 17:10:01 +0200223}
224
Stefani Seiboldce39c642014-03-17 23:22:04 +0100225notrace static void do_realtime_coarse(struct timespec *ts)
john stultzda15cfd2009-08-19 19:13:34 -0700226{
227 unsigned long seq;
228 do {
Stefani Seibold7c031562014-03-17 23:22:10 +0100229 seq = gtod_read_begin(gtod);
230 ts->tv_sec = gtod->wall_time_coarse_sec;
231 ts->tv_nsec = gtod->wall_time_coarse_nsec;
232 } while (unlikely(gtod_read_retry(gtod, seq)));
john stultzda15cfd2009-08-19 19:13:34 -0700233}
234
Stefani Seiboldce39c642014-03-17 23:22:04 +0100235notrace static void do_monotonic_coarse(struct timespec *ts)
john stultzda15cfd2009-08-19 19:13:34 -0700236{
Andy Lutomirski91ec87d2012-03-22 21:15:51 -0700237 unsigned long seq;
john stultzda15cfd2009-08-19 19:13:34 -0700238 do {
Stefani Seibold7c031562014-03-17 23:22:10 +0100239 seq = gtod_read_begin(gtod);
240 ts->tv_sec = gtod->monotonic_time_coarse_sec;
241 ts->tv_nsec = gtod->monotonic_time_coarse_nsec;
242 } while (unlikely(gtod_read_retry(gtod, seq)));
john stultzda15cfd2009-08-19 19:13:34 -0700243}
244
Steven Rostedt23adec52008-05-12 21:20:41 +0200245notrace int __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +0200246{
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400247 switch (clock) {
248 case CLOCK_REALTIME:
Stefani Seiboldce39c642014-03-17 23:22:04 +0100249 if (do_realtime(ts) == VCLOCK_NONE)
250 goto fallback;
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400251 break;
252 case CLOCK_MONOTONIC:
Stefani Seiboldce39c642014-03-17 23:22:04 +0100253 if (do_monotonic(ts) == VCLOCK_NONE)
254 goto fallback;
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400255 break;
256 case CLOCK_REALTIME_COARSE:
Stefani Seiboldce39c642014-03-17 23:22:04 +0100257 do_realtime_coarse(ts);
258 break;
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400259 case CLOCK_MONOTONIC_COARSE:
Stefani Seiboldce39c642014-03-17 23:22:04 +0100260 do_monotonic_coarse(ts);
261 break;
262 default:
263 goto fallback;
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400264 }
265
John Stultza939e812012-03-01 22:11:09 -0800266 return 0;
Stefani Seiboldce39c642014-03-17 23:22:04 +0100267fallback:
268 return vdso_fallback_gettime(clock, ts);
Andi Kleen2aae9502007-07-21 17:10:01 +0200269}
270int clock_gettime(clockid_t, struct timespec *)
271 __attribute__((weak, alias("__vdso_clock_gettime")));
272
Steven Rostedt23adec52008-05-12 21:20:41 +0200273notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
Andi Kleen2aae9502007-07-21 17:10:01 +0200274{
John Stultza939e812012-03-01 22:11:09 -0800275 if (likely(tv != NULL)) {
Stefani Seibold0df1ea22014-03-17 23:22:06 +0100276 if (unlikely(do_realtime((struct timespec *)tv) == VCLOCK_NONE))
277 return vdso_fallback_gtod(tv, tz);
John Stultza939e812012-03-01 22:11:09 -0800278 tv->tv_usec /= 1000;
Andi Kleen2aae9502007-07-21 17:10:01 +0200279 }
John Stultza939e812012-03-01 22:11:09 -0800280 if (unlikely(tz != NULL)) {
Stefani Seibold7c031562014-03-17 23:22:10 +0100281 tz->tz_minuteswest = gtod->tz_minuteswest;
282 tz->tz_dsttime = gtod->tz_dsttime;
John Stultza939e812012-03-01 22:11:09 -0800283 }
284
John Stultza939e812012-03-01 22:11:09 -0800285 return 0;
Andi Kleen2aae9502007-07-21 17:10:01 +0200286}
287int gettimeofday(struct timeval *, struct timezone *)
288 __attribute__((weak, alias("__vdso_gettimeofday")));
Andy Lutomirskif144a6b2011-05-23 09:31:30 -0400289
Andy Lutomirski0d7b8542011-06-05 13:50:20 -0400290/*
291 * This will break when the xtime seconds get inaccurate, but that is
292 * unlikely
293 */
Andy Lutomirskif144a6b2011-05-23 09:31:30 -0400294notrace time_t __vdso_time(time_t *t)
295{
Stefani Seibold7a59ed42014-03-17 23:22:09 +0100296 /* This is atomic on x86 so we don't need any locks. */
Stefani Seiboldaf8c93d2014-03-17 23:22:05 +0100297 time_t result = ACCESS_ONCE(gtod->wall_time_sec);
Andy Lutomirskif144a6b2011-05-23 09:31:30 -0400298
299 if (t)
300 *t = result;
301 return result;
302}
303int time(time_t *t)
304 __attribute__((weak, alias("__vdso_time")));