blob: 05ec0df370892560be8e19e7dc6ab845d8a0a3fd [file] [log] [blame]
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001#ifndef _LINUX_MARKER_H
2#define _LINUX_MARKER_H
3
4/*
5 * Code markup for dynamic and static tracing.
6 *
7 * See Documentation/marker.txt.
8 *
9 * (C) Copyright 2006 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
10 *
11 * This file is released under the GPLv2.
12 * See the file COPYING for more details.
13 */
14
Arnaldo Carvalho de Meloe3f8c4b2008-11-14 17:47:36 -050015#include <stdarg.h>
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070016#include <linux/types.h>
17
18struct module;
19struct marker;
20
21/**
22 * marker_probe_func - Type of a marker probe function
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080023 * @probe_private: probe private data
24 * @call_private: call site private data
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070025 * @fmt: format string
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080026 * @args: variable argument list pointer. Use a pointer to overcome C's
27 * inability to pass this around as a pointer in a portable manner in
28 * the callee otherwise.
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070029 *
30 * Type of marker probe functions. They receive the mdata and need to parse the
31 * format string to recover the variable argument list.
32 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080033typedef void marker_probe_func(void *probe_private, void *call_private,
34 const char *fmt, va_list *args);
35
36struct marker_probe_closure {
37 marker_probe_func *func; /* Callback */
38 void *probe_private; /* Private probe data */
39};
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070040
41struct marker {
42 const char *name; /* Marker name */
43 const char *format; /* Marker format string, describing the
44 * variable argument list.
45 */
46 char state; /* Marker state. */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080047 char ptype; /* probe type : 0 : single, 1 : multi */
Mathieu Desnoyersdc102a82008-05-12 21:21:09 +020048 /* Probe wrapper */
49 void (*call)(const struct marker *mdata, void *call_private, ...);
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080050 struct marker_probe_closure single;
51 struct marker_probe_closure *multi;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070052} __attribute__((aligned(8)));
53
54#ifdef CONFIG_MARKERS
55
56/*
57 * Note : the empty asm volatile with read constraint is used here instead of a
58 * "used" attribute to fix a gcc 4.1.x bug.
59 * Make sure the alignment of the structure in the __markers section will
60 * not add unwanted padding between the beginning of the section and the
61 * structure. Force alignment to the same alignment as the section start.
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +020062 *
63 * The "generic" argument controls which marker enabling mechanism must be used.
64 * If generic is true, a variable read is used.
65 * If generic is false, immediate values are used.
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070066 */
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +020067#define __trace_mark(generic, name, call_private, format, args...) \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070068 do { \
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -080069 static const char __mstrtab_##name[] \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070070 __attribute__((section("__markers_strings"))) \
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -080071 = #name "\0" format; \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070072 static struct marker __mark_##name \
73 __attribute__((section("__markers"), aligned(8))) = \
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -080074 { __mstrtab_##name, &__mstrtab_##name[sizeof(#name)], \
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080075 0, 0, marker_probe_cb, \
76 { __mark_empty_function, NULL}, NULL }; \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070077 __mark_check_format(format, ## args); \
78 if (unlikely(__mark_##name.state)) { \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070079 (*__mark_##name.call) \
Mathieu Desnoyersdc102a82008-05-12 21:21:09 +020080 (&__mark_##name, call_private, ## args);\
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070081 } \
82 } while (0)
83
84extern void marker_update_probe_range(struct marker *begin,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080085 struct marker *end);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070086#else /* !CONFIG_MARKERS */
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +020087#define __trace_mark(generic, name, call_private, format, args...) \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070088 __mark_check_format(format, ## args)
89static inline void marker_update_probe_range(struct marker *begin,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080090 struct marker *end)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070091{ }
92#endif /* CONFIG_MARKERS */
93
94/**
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +020095 * trace_mark - Marker using code patching
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070096 * @name: marker name, not quoted.
97 * @format: format string
98 * @args...: variable argument list
99 *
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +0200100 * Places a marker using optimized code patching technique (imv_read())
101 * to be enabled when immediate values are present.
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700102 */
103#define trace_mark(name, format, args...) \
Mathieu Desnoyers0aa977f2008-05-12 21:21:10 +0200104 __trace_mark(0, name, NULL, format, ## args)
105
106/**
107 * _trace_mark - Marker using variable read
108 * @name: marker name, not quoted.
109 * @format: format string
110 * @args...: variable argument list
111 *
112 * Places a marker using a standard memory read (_imv_read()) to be
113 * enabled. Should be used for markers in code paths where instruction
114 * modification based enabling is not welcome. (__init and __exit functions,
115 * lockdep, some traps, printk).
116 */
117#define _trace_mark(name, format, args...) \
118 __trace_mark(1, name, NULL, format, ## args)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700119
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700120/**
121 * MARK_NOARGS - Format string for a marker with no argument.
122 */
123#define MARK_NOARGS " "
124
125/* To be used for string format validity checking with gcc */
Mathieu Desnoyersacc49882008-03-04 14:29:00 -0800126static inline void __printf(1, 2) ___mark_check_format(const char *fmt, ...)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700127{
128}
129
Mathieu Desnoyersacc49882008-03-04 14:29:00 -0800130#define __mark_check_format(format, args...) \
131 do { \
132 if (0) \
133 ___mark_check_format(format, ## args); \
134 } while (0)
135
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700136extern marker_probe_func __mark_empty_function;
137
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800138extern void marker_probe_cb(const struct marker *mdata,
Mathieu Desnoyersdc102a82008-05-12 21:21:09 +0200139 void *call_private, ...);
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800140
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700141/*
142 * Connect a probe to a marker.
143 * private data pointer must be a valid allocated memory address, or NULL.
144 */
145extern int marker_probe_register(const char *name, const char *format,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800146 marker_probe_func *probe, void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700147
148/*
149 * Returns the private data given to marker_probe_register.
150 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800151extern int marker_probe_unregister(const char *name,
152 marker_probe_func *probe, void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700153/*
154 * Unregister a marker by providing the registered private data.
155 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800156extern int marker_probe_unregister_private_data(marker_probe_func *probe,
157 void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700158
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800159extern void *marker_get_private_data(const char *name, marker_probe_func *probe,
160 int num);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700161
Mathieu Desnoyerse98d0ea2008-09-29 11:05:13 -0400162/*
163 * marker_synchronize_unregister must be called between the last marker probe
164 * unregistration and the end of module exit to make sure there is no caller
165 * executing a probe when it is freed.
166 */
Mathieu Desnoyersbfadadf2008-10-10 03:48:25 -0400167#define marker_synchronize_unregister() synchronize_sched()
Mathieu Desnoyerse98d0ea2008-09-29 11:05:13 -0400168
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700169#endif