Drop support for kernels < 4.4 from 'wrapper/trace-clock.h'
[lttng-modules.git] / include / wrapper / trace-clock.h
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
886d51a3 3 * wrapper/trace-clock.h
f6c19f6e
MD
4 *
5 * Contains LTTng trace clock mapping to LTTng trace clock or mainline monotonic
6 * clock. This wrapper depends on CONFIG_HIGH_RES_TIMERS=y.
7 *
886d51a3 8 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
f6c19f6e
MD
9 */
10
9f36eaed
MJ
11#ifndef _LTTNG_TRACE_CLOCK_H
12#define _LTTNG_TRACE_CLOCK_H
13
f6c19f6e
MD
14#ifdef CONFIG_HAVE_TRACE_CLOCK
15#include <linux/trace-clock.h>
16#else /* CONFIG_HAVE_TRACE_CLOCK */
17
18#include <linux/hardirq.h>
19#include <linux/ktime.h>
20#include <linux/time.h>
21#include <linux/hrtimer.h>
b0725207 22#include <linux/percpu.h>
fe5e935d
MJ
23#include <linux/percpu-defs.h>
24
5f4c791e 25#include <lttng/kernel-version.h>
b0725207 26#include <asm/local.h>
2df37e95
MD
27#include <lttng/kernel-version.h>
28#include <lttng/clock.h>
a8f2d0c7 29#include <wrapper/compiler.h>
5a2f5e92 30#include <wrapper/random.h>
fc8216ae 31
2754583e
MD
32extern struct lttng_trace_clock *lttng_trace_clock;
33
a9df1445
MD
34/*
35 * Upstream Linux commit 27727df240c7 ("Avoid taking lock in NMI path with
36 * CONFIG_DEBUG_TIMEKEEPING") introduces a buggy ktime_get_mono_fast_ns().
37 * This is fixed by patch "timekeeping: Fix __ktime_get_fast_ns() regression".
38 */
7d99572f
MD
39#if (LTTNG_KERNEL_RANGE(4,8,0, 4,8,2) \
40 || LTTNG_KERNEL_RANGE(4,7,4, 4,7,8) \
260baa9b 41 || LTTNG_KERNEL_RANGE(4,4,20, 4,4,25))
254adeb0
MD
42#define LTTNG_CLOCK_NMI_SAFE_BROKEN
43#endif
44
60e1cd07
MD
45/*
46 * We need clock values to be monotonically increasing per-cpu, which is
47 * not strictly guaranteed by ktime_get_mono_fast_ns(). It is
48 * straightforward to do on architectures with a 64-bit cmpxchg(), but
49 * not so on architectures without 64-bit cmpxchg. For now, only enable
50 * this feature on 64-bit architectures.
51 */
52
260baa9b 53#if (BITS_PER_LONG == 64 && !defined(LTTNG_CLOCK_NMI_SAFE_BROKEN))
60e1cd07
MD
54#define LTTNG_USE_NMI_SAFE_CLOCK
55#endif
b0725207 56
60e1cd07 57#ifdef LTTNG_USE_NMI_SAFE_CLOCK
b0725207 58
60e1cd07 59DECLARE_PER_CPU(u64, lttng_last_tsc);
b0725207
MD
60
61/*
0aaa7220 62 * Sometimes called with preemption enabled. Can be interrupted.
b0725207
MD
63 */
64static inline u64 trace_clock_monotonic_wrapper(void)
65{
60e1cd07
MD
66 u64 now, last, result;
67 u64 *last_tsc_ptr;
b0725207
MD
68
69 /* Use fast nmi-safe monotonic clock provided by the Linux kernel. */
0aaa7220 70 preempt_disable();
fe5e935d 71 last_tsc_ptr = this_cpu_ptr(&lttng_last_tsc);
60e1cd07 72 last = *last_tsc_ptr;
b0725207
MD
73 /*
74 * Read "last" before "now". It is not strictly required, but it ensures
75 * that an interrupt coming in won't artificially trigger a case where
76 * "now" < "last". This kind of situation should only happen if the
77 * mono_fast time source goes slightly backwards.
78 */
79 barrier();
80 now = ktime_get_mono_fast_ns();
60e1cd07
MD
81 if (U64_MAX / 2 < now - last)
82 now = last;
83 result = cmpxchg64_local(last_tsc_ptr, last, now);
0aaa7220 84 preempt_enable();
b0725207
MD
85 if (result == last) {
86 /* Update done. */
87 return now;
88 } else {
89 /*
90 * Update not done, due to concurrent update. We can use
91 * "result", since it has been sampled concurrently with our
92 * time read, so it should not be far from "now".
93 */
60e1cd07 94 return result;
b0725207
MD
95 }
96}
97
60e1cd07 98#else /* #ifdef LTTNG_USE_NMI_SAFE_CLOCK */
f6c19f6e
MD
99static inline u64 trace_clock_monotonic_wrapper(void)
100{
101 ktime_t ktime;
102
103 /*
104 * Refuse to trace from NMIs with this wrapper, because an NMI could
105 * nest over the xtime write seqlock and deadlock.
106 */
107 if (in_nmi())
97ca2c54 108 return (u64) -EIO;
f6c19f6e
MD
109
110 ktime = ktime_get();
cfaf9f3d 111 return ktime_to_ns(ktime);
f6c19f6e 112}
60e1cd07 113#endif /* #else #ifdef LTTNG_USE_NMI_SAFE_CLOCK */
f6c19f6e 114
2754583e 115static inline u64 trace_clock_read64_monotonic(void)
f6c19f6e
MD
116{
117 return (u64) trace_clock_monotonic_wrapper();
118}
119
2754583e 120static inline u64 trace_clock_freq_monotonic(void)
f6c19f6e 121{
a3ccff4f 122 return (u64) NSEC_PER_SEC;
f6c19f6e
MD
123}
124
2754583e 125static inline int trace_clock_uuid_monotonic(char *uuid)
f6c19f6e 126{
a82c63f1 127 return wrapper_get_bootid(uuid);
f6c19f6e
MD
128}
129
2754583e
MD
130static inline const char *trace_clock_name_monotonic(void)
131{
132 return "monotonic";
133}
134
135static inline const char *trace_clock_description_monotonic(void)
136{
137 return "Monotonic Clock";
138}
139
60e1cd07 140#ifdef LTTNG_USE_NMI_SAFE_CLOCK
f6c19f6e
MD
141static inline int get_trace_clock(void)
142{
e36de50d 143 printk_once(KERN_WARNING "LTTng: Using mainline kernel monotonic fast clock, which is NMI-safe.\n");
b0725207
MD
144 return 0;
145}
60e1cd07 146#else /* #ifdef LTTNG_USE_NMI_SAFE_CLOCK */
b0725207
MD
147static inline int get_trace_clock(void)
148{
e36de50d 149 printk_once(KERN_WARNING "LTTng: Using mainline kernel monotonic clock. NMIs will not be traced.\n");
f6c19f6e
MD
150 return 0;
151}
60e1cd07 152#endif /* #else #ifdef LTTNG_USE_NMI_SAFE_CLOCK */
f6c19f6e
MD
153
154static inline void put_trace_clock(void)
155{
156}
157
2754583e
MD
158static inline u64 trace_clock_read64(void)
159{
585e5dcc 160 struct lttng_trace_clock *ltc = LTTNG_READ_ONCE(lttng_trace_clock);
2754583e
MD
161
162 if (likely(!ltc)) {
163 return trace_clock_read64_monotonic();
164 } else {
2754583e
MD
165 return ltc->read64();
166 }
167}
168
169static inline u64 trace_clock_freq(void)
170{
585e5dcc 171 struct lttng_trace_clock *ltc = LTTNG_READ_ONCE(lttng_trace_clock);
2754583e
MD
172
173 if (!ltc) {
174 return trace_clock_freq_monotonic();
175 } else {
2754583e
MD
176 return ltc->freq();
177 }
178}
179
180static inline int trace_clock_uuid(char *uuid)
181{
585e5dcc 182 struct lttng_trace_clock *ltc = LTTNG_READ_ONCE(lttng_trace_clock);
2754583e 183
2754583e
MD
184 /* Use default UUID cb when NULL */
185 if (!ltc || !ltc->uuid) {
186 return trace_clock_uuid_monotonic(uuid);
187 } else {
188 return ltc->uuid(uuid);
189 }
190}
191
192static inline const char *trace_clock_name(void)
193{
585e5dcc 194 struct lttng_trace_clock *ltc = LTTNG_READ_ONCE(lttng_trace_clock);
2754583e
MD
195
196 if (!ltc) {
197 return trace_clock_name_monotonic();
198 } else {
2754583e
MD
199 return ltc->name();
200 }
201}
202
203static inline const char *trace_clock_description(void)
204{
585e5dcc 205 struct lttng_trace_clock *ltc = LTTNG_READ_ONCE(lttng_trace_clock);
2754583e
MD
206
207 if (!ltc) {
208 return trace_clock_description_monotonic();
209 } else {
2754583e
MD
210 return ltc->description();
211 }
212}
213
f6c19f6e
MD
214#endif /* CONFIG_HAVE_TRACE_CLOCK */
215
a90917c3 216#endif /* _LTTNG_TRACE_CLOCK_H */
This page took 0.063172 seconds and 4 git commands to generate.