blob: 8038d89b835d29e3b72896f33d6a4692a1f0acc1 [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
22 * @mdata: pointer of type struct marker
23 * @private_data: caller site private data
24 * @fmt: format string
25 * @...: variable argument list
26 *
27 * Type of marker probe functions. They receive the mdata and need to parse the
28 * format string to recover the variable argument list.
29 */
30typedef void marker_probe_func(const struct marker *mdata,
31 void *private_data, const char *fmt, ...);
32
33struct marker {
34 const char *name; /* Marker name */
35 const char *format; /* Marker format string, describing the
36 * variable argument list.
37 */
38 char state; /* Marker state. */
39 marker_probe_func *call;/* Probe handler function pointer */
40 void *private; /* Private probe data */
41} __attribute__((aligned(8)));
42
43#ifdef CONFIG_MARKERS
44
45/*
46 * Note : the empty asm volatile with read constraint is used here instead of a
47 * "used" attribute to fix a gcc 4.1.x bug.
48 * Make sure the alignment of the structure in the __markers section will
49 * not add unwanted padding between the beginning of the section and the
50 * structure. Force alignment to the same alignment as the section start.
51 */
52#define __trace_mark(name, call_data, format, args...) \
53 do { \
54 static const char __mstrtab_name_##name[] \
55 __attribute__((section("__markers_strings"))) \
56 = #name; \
57 static const char __mstrtab_format_##name[] \
58 __attribute__((section("__markers_strings"))) \
59 = format; \
60 static struct marker __mark_##name \
61 __attribute__((section("__markers"), aligned(8))) = \
62 { __mstrtab_name_##name, __mstrtab_format_##name, \
63 0, __mark_empty_function, NULL }; \
64 asm volatile("" : : "i" (&__mark_##name)); \
65 __mark_check_format(format, ## args); \
66 if (unlikely(__mark_##name.state)) { \
67 preempt_disable(); \
68 (*__mark_##name.call) \
69 (&__mark_##name, call_data, \
70 format, ## args); \
71 preempt_enable(); \
72 } \
73 } while (0)
74
75extern void marker_update_probe_range(struct marker *begin,
76 struct marker *end, struct module *probe_module, int *refcount);
77#else /* !CONFIG_MARKERS */
78#define __trace_mark(name, call_data, format, args...) \
79 __mark_check_format(format, ## args)
80static inline void marker_update_probe_range(struct marker *begin,
81 struct marker *end, struct module *probe_module, int *refcount)
82{ }
83#endif /* CONFIG_MARKERS */
84
85/**
86 * trace_mark - Marker
87 * @name: marker name, not quoted.
88 * @format: format string
89 * @args...: variable argument list
90 *
91 * Places a marker.
92 */
93#define trace_mark(name, format, args...) \
94 __trace_mark(name, NULL, format, ## args)
95
96#define MARK_MAX_FORMAT_LEN 1024
97
98/**
99 * MARK_NOARGS - Format string for a marker with no argument.
100 */
101#define MARK_NOARGS " "
102
103/* To be used for string format validity checking with gcc */
104static inline void __printf(1, 2) __mark_check_format(const char *fmt, ...)
105{
106}
107
108extern marker_probe_func __mark_empty_function;
109
110/*
111 * Connect a probe to a marker.
112 * private data pointer must be a valid allocated memory address, or NULL.
113 */
114extern int marker_probe_register(const char *name, const char *format,
115 marker_probe_func *probe, void *private);
116
117/*
118 * Returns the private data given to marker_probe_register.
119 */
120extern void *marker_probe_unregister(const char *name);
121/*
122 * Unregister a marker by providing the registered private data.
123 */
124extern void *marker_probe_unregister_private_data(void *private);
125
126extern int marker_arm(const char *name);
127extern int marker_disarm(const char *name);
128extern void *marker_get_private_data(const char *name);
129
130#endif