Version 2.0.8
[lttng-modules.git] / lttng-abi.h
1 #ifndef _LTTNG_ABI_H
2 #define _LTTNG_ABI_H
3
4 /*
5 * lttng-abi.h
6 *
7 * LTTng ABI header
8 *
9 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; only
14 * version 2.1 of the License.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
26 #include <linux/fs.h>
27
28 #define LTTNG_KERNEL_SYM_NAME_LEN 256
29
30 enum lttng_kernel_instrumentation {
31 LTTNG_KERNEL_TRACEPOINT = 0,
32 LTTNG_KERNEL_KPROBE = 1,
33 LTTNG_KERNEL_FUNCTION = 2,
34 LTTNG_KERNEL_KRETPROBE = 3,
35 LTTNG_KERNEL_NOOP = 4, /* not hooked */
36 LTTNG_KERNEL_SYSCALL = 5,
37 };
38
39 /*
40 * LTTng consumer mode
41 */
42 enum lttng_kernel_output {
43 LTTNG_KERNEL_SPLICE = 0,
44 LTTNG_KERNEL_MMAP = 1,
45 };
46
47 /*
48 * LTTng DebugFS ABI structures.
49 */
50 #define LTTNG_KERNEL_CHANNEL_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32
51 struct lttng_kernel_channel {
52 int overwrite; /* 1: overwrite, 0: discard */
53 uint64_t subbuf_size; /* in bytes */
54 uint64_t num_subbuf;
55 unsigned int switch_timer_interval; /* usecs */
56 unsigned int read_timer_interval; /* usecs */
57 enum lttng_kernel_output output; /* splice, mmap */
58 char padding[LTTNG_KERNEL_CHANNEL_PADDING];
59 };
60
61 struct lttng_kernel_kretprobe {
62 uint64_t addr;
63
64 uint64_t offset;
65 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
66 };
67
68 /*
69 * Either addr is used, or symbol_name and offset.
70 */
71 struct lttng_kernel_kprobe {
72 uint64_t addr;
73
74 uint64_t offset;
75 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
76 };
77
78 struct lttng_kernel_function_tracer {
79 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
80 };
81
82 /*
83 * For syscall tracing, name = '\0' means "enable all".
84 */
85 #define LTTNG_KERNEL_EVENT_PADDING1 16
86 #define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
87 struct lttng_kernel_event {
88 char name[LTTNG_KERNEL_SYM_NAME_LEN]; /* event name */
89 enum lttng_kernel_instrumentation instrumentation;
90 char padding[LTTNG_KERNEL_EVENT_PADDING1];
91
92 /* Per instrumentation type configuration */
93 union {
94 struct lttng_kernel_kretprobe kretprobe;
95 struct lttng_kernel_kprobe kprobe;
96 struct lttng_kernel_function_tracer ftrace;
97 char padding[LTTNG_KERNEL_EVENT_PADDING2];
98 } u;
99 };
100
101 struct lttng_kernel_tracer_version {
102 uint32_t major;
103 uint32_t minor;
104 uint32_t patchlevel;
105 };
106
107 enum lttng_kernel_calibrate_type {
108 LTTNG_KERNEL_CALIBRATE_KRETPROBE,
109 };
110
111 struct lttng_kernel_calibrate {
112 enum lttng_kernel_calibrate_type type; /* type (input) */
113 };
114
115 enum lttng_kernel_context_type {
116 LTTNG_KERNEL_CONTEXT_PID = 0,
117 LTTNG_KERNEL_CONTEXT_PERF_COUNTER = 1,
118 LTTNG_KERNEL_CONTEXT_PROCNAME = 2,
119 LTTNG_KERNEL_CONTEXT_PRIO = 3,
120 LTTNG_KERNEL_CONTEXT_NICE = 4,
121 LTTNG_KERNEL_CONTEXT_VPID = 5,
122 LTTNG_KERNEL_CONTEXT_TID = 6,
123 LTTNG_KERNEL_CONTEXT_VTID = 7,
124 LTTNG_KERNEL_CONTEXT_PPID = 8,
125 LTTNG_KERNEL_CONTEXT_VPPID = 9,
126 };
127
128 struct lttng_kernel_perf_counter_ctx {
129 uint32_t type;
130 uint64_t config;
131 char name[LTTNG_KERNEL_SYM_NAME_LEN];
132 };
133
134 #define LTTNG_KERNEL_CONTEXT_PADDING1 16
135 #define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
136 struct lttng_kernel_context {
137 enum lttng_kernel_context_type ctx;
138 char padding[LTTNG_KERNEL_CONTEXT_PADDING1];
139
140 union {
141 struct lttng_kernel_perf_counter_ctx perf_counter;
142 char padding[LTTNG_KERNEL_CONTEXT_PADDING2];
143 } u;
144 };
145
146 /* LTTng file descriptor ioctl */
147 #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x40)
148 #define LTTNG_KERNEL_TRACER_VERSION \
149 _IOR(0xF6, 0x41, struct lttng_kernel_tracer_version)
150 #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x42)
151 #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x43)
152 #define LTTNG_KERNEL_CALIBRATE \
153 _IOWR(0xF6, 0x44, struct lttng_kernel_calibrate)
154
155 /* Session FD ioctl */
156 #define LTTNG_KERNEL_METADATA \
157 _IOW(0xF6, 0x50, struct lttng_kernel_channel)
158 #define LTTNG_KERNEL_CHANNEL \
159 _IOW(0xF6, 0x51, struct lttng_kernel_channel)
160 #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x52)
161 #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x53)
162
163 /* Channel FD ioctl */
164 #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x60)
165 #define LTTNG_KERNEL_EVENT \
166 _IOW(0xF6, 0x61, struct lttng_kernel_event)
167
168 /* Event and Channel FD ioctl */
169 #define LTTNG_KERNEL_CONTEXT \
170 _IOW(0xF6, 0x70, struct lttng_kernel_context)
171
172 /* Event, Channel and Session ioctl */
173 #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x80)
174 #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x81)
175
176 #endif /* _LTTNG_ABI_H */
This page took 0.036352 seconds and 4 git commands to generate.