blob: b5f95637f28946b9c26511f07ecae102e39b75df [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
15#include <linux/types.h>
16
17struct module;
18struct marker;
19
20/**
21 * marker_probe_func - Type of a marker probe function
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080022 * @probe_private: probe private data
23 * @call_private: call site private data
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070024 * @fmt: format string
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080025 * @args: variable argument list pointer. Use a pointer to overcome C's
26 * inability to pass this around as a pointer in a portable manner in
27 * the callee otherwise.
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070028 *
29 * Type of marker probe functions. They receive the mdata and need to parse the
30 * format string to recover the variable argument list.
31 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080032typedef void marker_probe_func(void *probe_private, void *call_private,
33 const char *fmt, va_list *args);
34
35struct marker_probe_closure {
36 marker_probe_func *func; /* Callback */
37 void *probe_private; /* Private probe data */
38};
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070039
40struct marker {
41 const char *name; /* Marker name */
42 const char *format; /* Marker format string, describing the
43 * variable argument list.
44 */
45 char state; /* Marker state. */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080046 char ptype; /* probe type : 0 : single, 1 : multi */
47 void (*call)(const struct marker *mdata, /* Probe wrapper */
48 void *call_private, const char *fmt, ...);
49 struct marker_probe_closure single;
50 struct marker_probe_closure *multi;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070051} __attribute__((aligned(8)));
52
53#ifdef CONFIG_MARKERS
54
55/*
56 * Note : the empty asm volatile with read constraint is used here instead of a
57 * "used" attribute to fix a gcc 4.1.x bug.
58 * Make sure the alignment of the structure in the __markers section will
59 * not add unwanted padding between the beginning of the section and the
60 * structure. Force alignment to the same alignment as the section start.
61 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080062#define __trace_mark(name, call_private, format, args...) \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070063 do { \
64 static const char __mstrtab_name_##name[] \
65 __attribute__((section("__markers_strings"))) \
66 = #name; \
67 static const char __mstrtab_format_##name[] \
68 __attribute__((section("__markers_strings"))) \
69 = format; \
70 static struct marker __mark_##name \
71 __attribute__((section("__markers"), aligned(8))) = \
72 { __mstrtab_name_##name, __mstrtab_format_##name, \
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080073 0, 0, marker_probe_cb, \
74 { __mark_empty_function, NULL}, NULL }; \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070075 __mark_check_format(format, ## args); \
76 if (unlikely(__mark_##name.state)) { \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070077 (*__mark_##name.call) \
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080078 (&__mark_##name, call_private, \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070079 format, ## args); \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070080 } \
81 } while (0)
82
83extern void marker_update_probe_range(struct marker *begin,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080084 struct marker *end);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070085#else /* !CONFIG_MARKERS */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080086#define __trace_mark(name, call_private, format, args...) \
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070087 __mark_check_format(format, ## args)
88static inline void marker_update_probe_range(struct marker *begin,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -080089 struct marker *end)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -070090{ }
91#endif /* CONFIG_MARKERS */
92
93/**
94 * trace_mark - Marker
95 * @name: marker name, not quoted.
96 * @format: format string
97 * @args...: variable argument list
98 *
99 * Places a marker.
100 */
101#define trace_mark(name, format, args...) \
102 __trace_mark(name, NULL, format, ## args)
103
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700104/**
105 * MARK_NOARGS - Format string for a marker with no argument.
106 */
107#define MARK_NOARGS " "
108
109/* To be used for string format validity checking with gcc */
110static inline void __printf(1, 2) __mark_check_format(const char *fmt, ...)
111{
112}
113
114extern marker_probe_func __mark_empty_function;
115
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800116extern void marker_probe_cb(const struct marker *mdata,
117 void *call_private, const char *fmt, ...);
118extern void marker_probe_cb_noarg(const struct marker *mdata,
119 void *call_private, const char *fmt, ...);
120
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700121/*
122 * Connect a probe to a marker.
123 * private data pointer must be a valid allocated memory address, or NULL.
124 */
125extern int marker_probe_register(const char *name, const char *format,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800126 marker_probe_func *probe, void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700127
128/*
129 * Returns the private data given to marker_probe_register.
130 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800131extern int marker_probe_unregister(const char *name,
132 marker_probe_func *probe, void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700133/*
134 * Unregister a marker by providing the registered private data.
135 */
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800136extern int marker_probe_unregister_private_data(marker_probe_func *probe,
137 void *probe_private);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700138
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800139extern void *marker_get_private_data(const char *name, marker_probe_func *probe,
140 int num);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700141
142#endif