tracepoint.h 17.4 KB
Newer Older
M
Mathieu Desnoyers 已提交
1 2 3 4 5 6
#ifndef _LINUX_TRACEPOINT_H
#define _LINUX_TRACEPOINT_H

/*
 * Kernel Tracepoint API.
 *
7
 * See Documentation/trace/tracepoints.rst.
M
Mathieu Desnoyers 已提交
8
 *
9
 * Copyright (C) 2008-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
M
Mathieu Desnoyers 已提交
10 11 12 13 14 15 16
 *
 * Heavily inspired from the Linux Kernel Markers.
 *
 * This file is released under the GPLv2.
 * See the file COPYING for more details.
 */

17
#include <linux/smp.h>
18
#include <linux/srcu.h>
19
#include <linux/errno.h>
M
Mathieu Desnoyers 已提交
20
#include <linux/types.h>
21
#include <linux/cpumask.h>
M
Mathieu Desnoyers 已提交
22
#include <linux/rcupdate.h>
23
#include <linux/tracepoint-defs.h>
M
Mathieu Desnoyers 已提交
24 25 26

struct module;
struct tracepoint;
27
struct notifier_block;
M
Mathieu Desnoyers 已提交
28

29
struct trace_eval_map {
30
	const char		*system;
31 32
	const char		*eval_string;
	unsigned long		eval_value;
33 34
};

35 36
#define TRACEPOINT_DEFAULT_PRIO	10

37 38
extern struct srcu_struct tracepoint_srcu;

39
extern int
40 41
tracepoint_probe_register(struct tracepoint *tp, void *probe, void *data);
extern int
42 43 44
tracepoint_probe_register_prio(struct tracepoint *tp, void *probe, void *data,
			       int prio);
extern int
45 46 47 48
tracepoint_probe_unregister(struct tracepoint *tp, void *probe, void *data);
extern void
for_each_kernel_tracepoint(void (*fct)(struct tracepoint *tp, void *priv),
		void *priv);
49

50 51 52
#ifdef CONFIG_MODULES
struct tp_module {
	struct list_head list;
53
	struct module *mod;
54
};
55

56
bool trace_module_has_bad_taint(struct module *mod);
57 58
extern int register_tracepoint_module_notifier(struct notifier_block *nb);
extern int unregister_tracepoint_module_notifier(struct notifier_block *nb);
59 60 61 62 63
#else
static inline bool trace_module_has_bad_taint(struct module *mod)
{
	return false;
}
64 65 66 67 68 69 70 71 72 73
static inline
int register_tracepoint_module_notifier(struct notifier_block *nb)
{
	return 0;
}
static inline
int unregister_tracepoint_module_notifier(struct notifier_block *nb)
{
	return 0;
}
74 75
#endif /* CONFIG_MODULES */

76 77 78 79 80
/*
 * tracepoint_synchronize_unregister must be called between the last tracepoint
 * probe unregistration and the end of module exit to make sure there is no
 * caller executing a probe when it is freed.
 */
81
#ifdef CONFIG_TRACEPOINTS
82 83
static inline void tracepoint_synchronize_unregister(void)
{
84
	synchronize_srcu(&tracepoint_srcu);
85 86
	synchronize_sched();
}
87 88 89 90
#else
static inline void tracepoint_synchronize_unregister(void)
{ }
#endif
91

92
#ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
93
extern int syscall_regfunc(void);
94 95 96
extern void syscall_unregfunc(void);
#endif /* CONFIG_HAVE_SYSCALL_TRACEPOINTS */

97 98
#define PARAMS(args...) args

99
#define TRACE_DEFINE_ENUM(x)
100
#define TRACE_DEFINE_SIZEOF(x)
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
static inline struct tracepoint *tracepoint_ptr_deref(tracepoint_ptr_t *p)
{
	return offset_to_ptr(p);
}

#define __TRACEPOINT_ENTRY(name)					\
	asm("	.section \"__tracepoints_ptrs\", \"a\"		\n"	\
	    "	.balign 4					\n"	\
	    "	.long 	__tracepoint_" #name " - .		\n"	\
	    "	.previous					\n")
#else
static inline struct tracepoint *tracepoint_ptr_deref(tracepoint_ptr_t *p)
{
	return *p;
}

#define __TRACEPOINT_ENTRY(name)					 \
	static tracepoint_ptr_t __tracepoint_ptr_##name __used		 \
	__attribute__((section("__tracepoints_ptrs"))) =		 \
		&__tracepoint_##name
#endif

125 126 127 128 129 130 131 132 133 134
#endif /* _LINUX_TRACEPOINT_H */

/*
 * Note: we keep the TRACE_EVENT and DECLARE_TRACE outside the include
 *  file ifdef protection.
 *  This is due to the way trace events work. If a file includes two
 *  trace event headers under one "CREATE_TRACE_POINTS" the first include
 *  will override the TRACE_EVENT and break the second include.
 */

135 136
#ifndef DECLARE_TRACE

137
#define TP_PROTO(args...)	args
138
#define TP_ARGS(args...)	args
139
#define TP_CONDITION(args...)	args
M
Mathieu Desnoyers 已提交
140

141 142 143 144 145 146 147 148 149 150 151 152
/*
 * Individual subsystem my have a separate configuration to
 * enable their tracepoints. By default, this file will create
 * the tracepoints if CONFIG_TRACEPOINT is defined. If a subsystem
 * wants to be able to disable its tracepoints from being created
 * it can define NOTRACE before including the tracepoint headers.
 */
#if defined(CONFIG_TRACEPOINTS) && !defined(NOTRACE)
#define TRACEPOINTS_ENABLED
#endif

#ifdef TRACEPOINTS_ENABLED
M
Mathieu Desnoyers 已提交
153 154 155 156

/*
 * it_func[0] is never NULL because there is at least one element in the array
 * when the array itself is non NULL.
157 158 159 160 161 162
 *
 * Note, the proto and args passed in includes "__data" as the first parameter.
 * The reason for this is to handle the "void" prototype. If a tracepoint
 * has a "void" prototype, then it is invalid to declare a function
 * as "(void *, void)". The DECLARE_TRACE_NOARGS() will pass in just
 * "void *data", where as the DECLARE_TRACE() will pass in "void *data, proto".
M
Mathieu Desnoyers 已提交
163
 */
164
#define __DO_TRACE(tp, proto, args, cond, rcuidle)			\
M
Mathieu Desnoyers 已提交
165
	do {								\
166 167 168
		struct tracepoint_func *it_func_ptr;			\
		void *it_func;						\
		void *__data;						\
169
		int __maybe_unused __idx = 0;				\
M
Mathieu Desnoyers 已提交
170
									\
171 172
		if (!(cond))						\
			return;						\
173 174 175 176 177 178 179 180 181 182 183
									\
		/* srcu can't be used from NMI */			\
		WARN_ON_ONCE(rcuidle && in_nmi());			\
									\
		/* keep srcu and sched-rcu usage consistent */		\
		preempt_disable_notrace();				\
									\
		/*							\
		 * For rcuidle callers, use srcu since sched-rcu	\
		 * doesn't work from the idle path.			\
		 */							\
184
		if (rcuidle) {						\
185
			__idx = srcu_read_lock_notrace(&tracepoint_srcu);\
186 187
			rcu_irq_enter_irqson();				\
		}							\
188 189 190
									\
		it_func_ptr = rcu_dereference_raw((tp)->funcs);		\
									\
191
		if (it_func_ptr) {					\
M
Mathieu Desnoyers 已提交
192
			do {						\
193 194 195 196
				it_func = (it_func_ptr)->func;		\
				__data = (it_func_ptr)->data;		\
				((void(*)(proto))(it_func))(args);	\
			} while ((++it_func_ptr)->func);		\
M
Mathieu Desnoyers 已提交
197
		}							\
198
									\
199 200
		if (rcuidle) {						\
			rcu_irq_exit_irqson();				\
201
			srcu_read_unlock_notrace(&tracepoint_srcu, __idx);\
202
		}							\
203 204
									\
		preempt_enable_notrace();				\
M
Mathieu Desnoyers 已提交
205 206
	} while (0)

207
#ifndef MODULE
208
#define __DECLARE_TRACE_RCU(name, proto, args, cond, data_proto, data_args) \
209 210 211 212 213 214
	static inline void trace_##name##_rcuidle(proto)		\
	{								\
		if (static_key_false(&__tracepoint_##name.key))		\
			__DO_TRACE(&__tracepoint_##name,		\
				TP_PROTO(data_proto),			\
				TP_ARGS(data_args),			\
215
				TP_CONDITION(cond), 1);			\
216 217 218 219 220
	}
#else
#define __DECLARE_TRACE_RCU(name, proto, args, cond, data_proto, data_args)
#endif

M
Mathieu Desnoyers 已提交
221 222 223 224
/*
 * Make sure the alignment of the structure in the __tracepoints section will
 * not add unwanted padding between the beginning of the section and the
 * structure. Force alignment to the same alignment as the section start.
225 226
 *
 * When lockdep is enabled, we make sure to always do the RCU portions of
227 228 229 230 231
 * the tracepoint code, regardless of whether tracing is on. However,
 * don't check if the condition is false, due to interaction with idle
 * instrumentation. This lets us find RCU issues triggered with tracepoints
 * even when this tracepoint is off. This code has no purpose other than
 * poking RCU a bit.
M
Mathieu Desnoyers 已提交
232
 */
233
#define __DECLARE_TRACE(name, proto, args, cond, data_proto, data_args) \
234
	extern struct tracepoint __tracepoint_##name;			\
M
Mathieu Desnoyers 已提交
235 236
	static inline void trace_##name(proto)				\
	{								\
237
		if (static_key_false(&__tracepoint_##name.key))		\
M
Mathieu Desnoyers 已提交
238
			__DO_TRACE(&__tracepoint_##name,		\
239
				TP_PROTO(data_proto),			\
240
				TP_ARGS(data_args),			\
241
				TP_CONDITION(cond), 0);			\
242
		if (IS_ENABLED(CONFIG_LOCKDEP) && (cond)) {		\
243 244 245 246
			rcu_read_lock_sched_notrace();			\
			rcu_dereference_sched(__tracepoint_##name.funcs);\
			rcu_read_unlock_sched_notrace();		\
		}							\
247
	}								\
248 249
	__DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args),		\
		PARAMS(cond), PARAMS(data_proto), PARAMS(data_args))	\
250 251
	static inline int						\
	register_trace_##name(void (*probe)(data_proto), void *data)	\
M
Mathieu Desnoyers 已提交
252
	{								\
253 254
		return tracepoint_probe_register(&__tracepoint_##name,	\
						(void *)probe, data);	\
M
Mathieu Desnoyers 已提交
255
	}								\
256
	static inline int						\
257 258 259 260 261 262 263
	register_trace_prio_##name(void (*probe)(data_proto), void *data,\
				   int prio)				\
	{								\
		return tracepoint_probe_register_prio(&__tracepoint_##name, \
					      (void *)probe, data, prio); \
	}								\
	static inline int						\
264
	unregister_trace_##name(void (*probe)(data_proto), void *data)	\
M
Mathieu Desnoyers 已提交
265
	{								\
266 267
		return tracepoint_probe_unregister(&__tracepoint_##name,\
						(void *)probe, data);	\
268
	}								\
269 270
	static inline void						\
	check_trace_callback_type_##name(void (*cb)(data_proto))	\
271
	{								\
272 273 274 275 276
	}								\
	static inline bool						\
	trace_##name##_enabled(void)					\
	{								\
		return static_key_false(&__tracepoint_##name.key);	\
M
Mathieu Desnoyers 已提交
277 278
	}

279 280 281 282 283
/*
 * We have no guarantee that gcc and the linker won't up-align the tracepoint
 * structures, so we create an array of pointers that will be used for iteration
 * on the tracepoints.
 */
284 285 286 287
#define DEFINE_TRACE_FN(name, reg, unreg)				 \
	static const char __tpstrtab_##name[]				 \
	__attribute__((section("__tracepoints_strings"))) = #name;	 \
	struct tracepoint __tracepoint_##name				 \
288
	__attribute__((section("__tracepoints"), used)) =		 \
289
		{ __tpstrtab_##name, STATIC_KEY_INIT_FALSE, reg, unreg, NULL };\
290
	__TRACEPOINT_ENTRY(name);
291 292 293

#define DEFINE_TRACE(name)						\
	DEFINE_TRACE_FN(name, NULL, NULL);
294 295 296 297 298 299

#define EXPORT_TRACEPOINT_SYMBOL_GPL(name)				\
	EXPORT_SYMBOL_GPL(__tracepoint_##name)
#define EXPORT_TRACEPOINT_SYMBOL(name)					\
	EXPORT_SYMBOL(__tracepoint_##name)

300
#else /* !TRACEPOINTS_ENABLED */
301
#define __DECLARE_TRACE(name, proto, args, cond, data_proto, data_args) \
M
Mathieu Desnoyers 已提交
302 303
	static inline void trace_##name(proto)				\
	{ }								\
304 305
	static inline void trace_##name##_rcuidle(proto)		\
	{ }								\
306 307 308
	static inline int						\
	register_trace_##name(void (*probe)(data_proto),		\
			      void *data)				\
M
Mathieu Desnoyers 已提交
309 310 311
	{								\
		return -ENOSYS;						\
	}								\
312 313 314
	static inline int						\
	unregister_trace_##name(void (*probe)(data_proto),		\
				void *data)				\
315 316
	{								\
		return -ENOSYS;						\
317
	}								\
318
	static inline void check_trace_callback_type_##name(void (*cb)(data_proto)) \
319
	{								\
320 321 322 323 324
	}								\
	static inline bool						\
	trace_##name##_enabled(void)					\
	{								\
		return false;						\
325
	}
M
Mathieu Desnoyers 已提交
326

327
#define DEFINE_TRACE_FN(name, reg, unreg)
328 329 330 331
#define DEFINE_TRACE(name)
#define EXPORT_TRACEPOINT_SYMBOL_GPL(name)
#define EXPORT_TRACEPOINT_SYMBOL(name)

332
#endif /* TRACEPOINTS_ENABLED */
333

334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
#ifdef CONFIG_TRACING
/**
 * tracepoint_string - register constant persistent string to trace system
 * @str - a constant persistent string that will be referenced in tracepoints
 *
 * If constant strings are being used in tracepoints, it is faster and
 * more efficient to just save the pointer to the string and reference
 * that with a printf "%s" instead of saving the string in the ring buffer
 * and wasting space and time.
 *
 * The problem with the above approach is that userspace tools that read
 * the binary output of the trace buffers do not have access to the string.
 * Instead they just show the address of the string which is not very
 * useful to users.
 *
 * With tracepoint_string(), the string will be registered to the tracing
 * system and exported to userspace via the debugfs/tracing/printk_formats
 * file that maps the string address to the string text. This way userspace
 * tools that read the binary buffers have a way to map the pointers to
 * the ASCII strings they represent.
 *
 * The @str used must be a constant string and persistent as it would not
 * make sense to show a string that no longer exists. But it is still fine
 * to be used with modules, because when modules are unloaded, if they
 * had tracepoints, the ring buffers are cleared too. As long as the string
 * does not change during the life of the module, it is fine to use
 * tracepoint_string() within a module.
 */
#define tracepoint_string(str)						\
	({								\
		static const char *___tp_str __tracepoint_string = str; \
		___tp_str;						\
	})
#define __tracepoint_string	__attribute__((section("__tracepoint_str")))
#else
/*
 * tracepoint_string() is used to save the string address for userspace
 * tracing tools. When tracing isn't configured, there's no need to save
 * anything.
 */
# define tracepoint_string(str) str
# define __tracepoint_string
#endif

378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
/*
 * The need for the DECLARE_TRACE_NOARGS() is to handle the prototype
 * (void). "void" is a special value in a function prototype and can
 * not be combined with other arguments. Since the DECLARE_TRACE()
 * macro adds a data element at the beginning of the prototype,
 * we need a way to differentiate "(void *data, proto)" from
 * "(void *data, void)". The second prototype is invalid.
 *
 * DECLARE_TRACE_NOARGS() passes "void" as the tracepoint prototype
 * and "void *__data" as the callback prototype.
 *
 * DECLARE_TRACE() passes "proto" as the tracepoint protoype and
 * "void *__data, proto" as the callback prototype.
 */
#define DECLARE_TRACE_NOARGS(name)					\
393 394 395
	__DECLARE_TRACE(name, void, ,					\
			cpu_online(raw_smp_processor_id()),		\
			void *__data, __data)
396 397

#define DECLARE_TRACE(name, proto, args)				\
398 399 400 401
	__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args),		\
			cpu_online(raw_smp_processor_id()),		\
			PARAMS(void *__data, proto),			\
			PARAMS(__data, args))
402

403
#define DECLARE_TRACE_CONDITION(name, proto, args, cond)		\
404 405
	__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args),		\
			cpu_online(raw_smp_processor_id()) && (PARAMS(cond)), \
406 407 408
			PARAMS(void *__data, proto),			\
			PARAMS(__data, args))

409 410
#define TRACE_EVENT_FLAGS(event, flag)

411 412
#define TRACE_EVENT_PERF_PERM(event, expr...)

413
#endif /* DECLARE_TRACE */
M
Mathieu Desnoyers 已提交
414

415
#ifndef TRACE_EVENT
416 417 418 419
/*
 * For use with the TRACE_EVENT macro:
 *
 * We define a tracepoint, its arguments, its printk format
420
 * and its 'fast binary record' layout.
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
 *
 * Firstly, name your tracepoint via TRACE_EVENT(name : the
 * 'subsystem_event' notation is fine.
 *
 * Think about this whole construct as the
 * 'trace_sched_switch() function' from now on.
 *
 *
 *  TRACE_EVENT(sched_switch,
 *
 *	*
 *	* A function has a regular function arguments
 *	* prototype, declare it via TP_PROTO():
 *	*
 *
436 437
 *	TP_PROTO(struct rq *rq, struct task_struct *prev,
 *		 struct task_struct *next),
438 439 440 441 442 443 444
 *
 *	*
 *	* Define the call signature of the 'function'.
 *	* (Design sidenote: we use this instead of a
 *	*  TP_PROTO1/TP_PROTO2/TP_PROTO3 ugliness.)
 *	*
 *
445
 *	TP_ARGS(rq, prev, next),
446 447 448 449 450 451 452 453 454
 *
 *	*
 *	* Fast binary tracing: define the trace record via
 *	* TP_STRUCT__entry(). You can think about it like a
 *	* regular C structure local variable definition.
 *	*
 *	* This is how the trace record is structured and will
 *	* be saved into the ring buffer. These are the fields
 *	* that will be exposed to user-space in
455
 *	* /sys/kernel/debug/tracing/events/<*>/format.
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
 *	*
 *	* The declared 'local variable' is called '__entry'
 *	*
 *	* __field(pid_t, prev_prid) is equivalent to a standard declariton:
 *	*
 *	*	pid_t	prev_pid;
 *	*
 *	* __array(char, prev_comm, TASK_COMM_LEN) is equivalent to:
 *	*
 *	*	char	prev_comm[TASK_COMM_LEN];
 *	*
 *
 *	TP_STRUCT__entry(
 *		__array(	char,	prev_comm,	TASK_COMM_LEN	)
 *		__field(	pid_t,	prev_pid			)
 *		__field(	int,	prev_prio			)
 *		__array(	char,	next_comm,	TASK_COMM_LEN	)
 *		__field(	pid_t,	next_pid			)
 *		__field(	int,	next_prio			)
 *	),
 *
 *	*
 *	* Assign the entry into the trace record, by embedding
 *	* a full C statement block into TP_fast_assign(). You
 *	* can refer to the trace record as '__entry' -
 *	* otherwise you can put arbitrary C code in here.
 *	*
 *	* Note: this C code will execute every time a trace event
 *	* happens, on an active tracepoint.
 *	*
 *
487 488 489 490
 *	TP_fast_assign(
 *		memcpy(__entry->next_comm, next->comm, TASK_COMM_LEN);
 *		__entry->prev_pid	= prev->pid;
 *		__entry->prev_prio	= prev->prio;
491 492
 *		memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN);
 *		__entry->next_pid	= next->pid;
493
 *		__entry->next_prio	= next->prio;
494
 *	),
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
 *
 *	*
 *	* Formatted output of a trace record via TP_printk().
 *	* This is how the tracepoint will appear under ftrace
 *	* plugins that make use of this tracepoint.
 *	*
 *	* (raw-binary tracing wont actually perform this step.)
 *	*
 *
 *	TP_printk("task %s:%d [%d] ==> %s:%d [%d]",
 *		__entry->prev_comm, __entry->prev_pid, __entry->prev_prio,
 *		__entry->next_comm, __entry->next_pid, __entry->next_prio),
 *
 * );
 *
 * This macro construct is thus used for the regular printk format
 * tracing setup, it is used to construct a function pointer based
 * tracepoint callback (this is used by programmatic plugins and
 * can also by used by generic instrumentation like SystemTap), and
 * it is also used to expose a structured trace record in
515
 * /sys/kernel/debug/tracing/events/.
516 517 518
 *
 * A set of (un)registration functions can be passed to the variant
 * TRACE_EVENT_FN to perform any (un)registration work.
519 520
 */

521
#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print)
522 523
#define DEFINE_EVENT(template, name, proto, args)		\
	DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
524 525
#define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg)\
	DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
526 527
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
528 529 530 531
#define DEFINE_EVENT_CONDITION(template, name, proto,		\
			       args, cond)			\
	DECLARE_TRACE_CONDITION(name, PARAMS(proto),		\
				PARAMS(args), PARAMS(cond))
532

533
#define TRACE_EVENT(name, proto, args, struct, assign, print)	\
534
	DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
535 536 537
#define TRACE_EVENT_FN(name, proto, args, struct,		\
		assign, print, reg, unreg)			\
	DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
538 539 540 541
#define TRACE_EVENT_FN_COND(name, proto, args, cond, struct,		\
		assign, print, reg, unreg)			\
	DECLARE_TRACE_CONDITION(name, PARAMS(proto),	\
			PARAMS(args), PARAMS(cond))
542 543 544 545
#define TRACE_EVENT_CONDITION(name, proto, args, cond,		\
			      struct, assign, print)		\
	DECLARE_TRACE_CONDITION(name, PARAMS(proto),		\
				PARAMS(args), PARAMS(cond))
546

547 548
#define TRACE_EVENT_FLAGS(event, flag)

549 550
#define TRACE_EVENT_PERF_PERM(event, expr...)

551
#endif /* ifdef TRACE_EVENT (see note above) */