Commit | Line | Data |
---|---|---|
e8951e63 MD |
1 | #ifndef _LTTNG_ABI_H |
2 | #define _LTTNG_ABI_H | |
57a13317 MD |
3 | |
4 | /* | |
e8951e63 | 5 | * lttng-abi.h |
57a13317 | 6 | * |
80996790 | 7 | * LTTng ABI header |
17baffe2 | 8 | * |
886d51a3 MD |
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 | |
57a13317 MD |
24 | */ |
25 | ||
26 | #include <linux/fs.h> | |
27 | ||
f8695253 | 28 | #define LTTNG_KERNEL_SYM_NAME_LEN 256 |
d6d808f3 | 29 | |
38d024ae | 30 | enum lttng_kernel_instrumentation { |
4c183524 MD |
31 | LTTNG_KERNEL_TRACEPOINT = 0, |
32 | LTTNG_KERNEL_KPROBE = 1, | |
33 | LTTNG_KERNEL_FUNCTION = 2, | |
7371f44c | 34 | LTTNG_KERNEL_KRETPROBE = 3, |
1ec65de1 | 35 | LTTNG_KERNEL_NOOP = 4, /* not hooked */ |
43880ee8 | 36 | LTTNG_KERNEL_SYSCALL = 5, |
57a13317 MD |
37 | }; |
38 | ||
96ba7208 JD |
39 | /* |
40 | * LTTng consumer mode | |
41 | */ | |
42 | enum lttng_kernel_output { | |
43 | LTTNG_KERNEL_SPLICE = 0, | |
44 | LTTNG_KERNEL_MMAP = 1, | |
45 | }; | |
46 | ||
57a13317 MD |
47 | /* |
48 | * LTTng DebugFS ABI structures. | |
49 | */ | |
8e099bae | 50 | #define LTTNG_KERNEL_CHANNEL_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32 |
38d024ae | 51 | struct lttng_kernel_channel { |
9e245ead | 52 | uint64_t subbuf_size; /* in bytes */ |
80c16bcf | 53 | uint64_t num_subbuf; |
9e245ead MD |
54 | unsigned int switch_timer_interval; /* usecs */ |
55 | unsigned int read_timer_interval; /* usecs */ | |
96ba7208 | 56 | enum lttng_kernel_output output; /* splice, mmap */ |
6dccd6c1 | 57 | int overwrite; /* 1: overwrite, 0: discard */ |
8e099bae | 58 | char padding[LTTNG_KERNEL_CHANNEL_PADDING]; |
6dccd6c1 | 59 | }__attribute__((packed)); |
57a13317 | 60 | |
7371f44c MD |
61 | struct lttng_kernel_kretprobe { |
62 | uint64_t addr; | |
63 | ||
64 | uint64_t offset; | |
f8695253 | 65 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
6dccd6c1 | 66 | }__attribute__((packed)); |
7371f44c | 67 | |
38d024ae MD |
68 | /* |
69 | * Either addr is used, or symbol_name and offset. | |
70 | */ | |
71 | struct lttng_kernel_kprobe { | |
80c16bcf | 72 | uint64_t addr; |
38d024ae | 73 | |
80c16bcf | 74 | uint64_t offset; |
f8695253 | 75 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
6dccd6c1 | 76 | }__attribute__((packed)); |
d6d808f3 | 77 | |
f17701fb | 78 | struct lttng_kernel_function_tracer { |
f8695253 | 79 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
6dccd6c1 | 80 | }__attribute__((packed)); |
f17701fb | 81 | |
43880ee8 MD |
82 | /* |
83 | * For syscall tracing, name = '\0' means "enable all". | |
84 | */ | |
8e099bae MD |
85 | #define LTTNG_KERNEL_EVENT_PADDING1 16 |
86 | #define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32 | |
d6d808f3 | 87 | struct lttng_kernel_event { |
f8695253 | 88 | char name[LTTNG_KERNEL_SYM_NAME_LEN]; /* event name */ |
d6d808f3 | 89 | enum lttng_kernel_instrumentation instrumentation; |
8e099bae MD |
90 | char padding[LTTNG_KERNEL_EVENT_PADDING1]; |
91 | ||
d6d808f3 MD |
92 | /* Per instrumentation type configuration */ |
93 | union { | |
7371f44c | 94 | struct lttng_kernel_kretprobe kretprobe; |
d6d808f3 | 95 | struct lttng_kernel_kprobe kprobe; |
f17701fb | 96 | struct lttng_kernel_function_tracer ftrace; |
8e099bae | 97 | char padding[LTTNG_KERNEL_EVENT_PADDING2]; |
d6d808f3 | 98 | } u; |
6dccd6c1 | 99 | }__attribute__((packed)); |
c099397a | 100 | |
80c16bcf | 101 | struct lttng_kernel_tracer_version { |
c6c9e10f MD |
102 | uint32_t major; |
103 | uint32_t minor; | |
80c16bcf | 104 | uint32_t patchlevel; |
6dccd6c1 | 105 | }__attribute__((packed)); |
80c16bcf | 106 | |
3db41b2c MD |
107 | enum lttng_kernel_calibrate_type { |
108 | LTTNG_KERNEL_CALIBRATE_KRETPROBE, | |
57105fc2 MD |
109 | }; |
110 | ||
3db41b2c MD |
111 | struct lttng_kernel_calibrate { |
112 | enum lttng_kernel_calibrate_type type; /* type (input) */ | |
6dccd6c1 | 113 | }__attribute__((packed)); |
57105fc2 | 114 | |
12a313a5 | 115 | enum lttng_kernel_context_type { |
4c183524 MD |
116 | LTTNG_KERNEL_CONTEXT_PID = 0, |
117 | LTTNG_KERNEL_CONTEXT_PERF_COUNTER = 1, | |
a2563e83 | 118 | LTTNG_KERNEL_CONTEXT_PROCNAME = 2, |
4c183524 MD |
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, | |
975da2c0 | 126 | LTTNG_KERNEL_CONTEXT_HOSTNAME = 10, |
8070f5c0 MD |
127 | }; |
128 | ||
129 | struct lttng_kernel_perf_counter_ctx { | |
130 | uint32_t type; | |
131 | uint64_t config; | |
f8695253 | 132 | char name[LTTNG_KERNEL_SYM_NAME_LEN]; |
6dccd6c1 | 133 | }__attribute__((packed)); |
8070f5c0 | 134 | |
8e099bae MD |
135 | #define LTTNG_KERNEL_CONTEXT_PADDING1 16 |
136 | #define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32 | |
8070f5c0 | 137 | struct lttng_kernel_context { |
12a313a5 | 138 | enum lttng_kernel_context_type ctx; |
8e099bae MD |
139 | char padding[LTTNG_KERNEL_CONTEXT_PADDING1]; |
140 | ||
8070f5c0 | 141 | union { |
8070f5c0 | 142 | struct lttng_kernel_perf_counter_ctx perf_counter; |
8e099bae | 143 | char padding[LTTNG_KERNEL_CONTEXT_PADDING2]; |
8070f5c0 | 144 | } u; |
6dccd6c1 | 145 | }__attribute__((packed)); |
8070f5c0 | 146 | |
33749530 | 147 | /* LTTng file descriptor ioctl */ |
6dccd6c1 | 148 | #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45) |
33749530 | 149 | #define LTTNG_KERNEL_TRACER_VERSION \ |
6dccd6c1 JD |
150 | _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version) |
151 | #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47) | |
152 | #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48) | |
57105fc2 | 153 | #define LTTNG_KERNEL_CALIBRATE \ |
6dccd6c1 | 154 | _IOWR(0xF6, 0x49, struct lttng_kernel_calibrate) |
33749530 MD |
155 | |
156 | /* Session FD ioctl */ | |
157 | #define LTTNG_KERNEL_METADATA \ | |
6dccd6c1 | 158 | _IOW(0xF6, 0x54, struct lttng_kernel_channel) |
ab2277d6 | 159 | #define LTTNG_KERNEL_CHANNEL \ |
6dccd6c1 JD |
160 | _IOW(0xF6, 0x55, struct lttng_kernel_channel) |
161 | #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56) | |
162 | #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57) | |
33749530 MD |
163 | |
164 | /* Channel FD ioctl */ | |
6dccd6c1 | 165 | #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62) |
ab2277d6 | 166 | #define LTTNG_KERNEL_EVENT \ |
6dccd6c1 | 167 | _IOW(0xF6, 0x63, struct lttng_kernel_event) |
57a13317 | 168 | |
8070f5c0 MD |
169 | /* Event and Channel FD ioctl */ |
170 | #define LTTNG_KERNEL_CONTEXT \ | |
6dccd6c1 | 171 | _IOW(0xF6, 0x71, struct lttng_kernel_context) |
8070f5c0 | 172 | |
e64957da | 173 | /* Event, Channel and Session ioctl */ |
6dccd6c1 JD |
174 | #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82) |
175 | #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83) | |
e64957da | 176 | |
3b731ab1 JD |
177 | /* LTTng-specific ioctls for the lib ringbuffer */ |
178 | /* returns the timestamp begin of the current sub-buffer */ | |
179 | #define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t) | |
180 | /* returns the timestamp end of the current sub-buffer */ | |
181 | #define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t) | |
182 | /* returns the number of events discarded */ | |
183 | #define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t) | |
184 | /* returns the packet payload size */ | |
185 | #define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t) | |
186 | /* returns the actual packet size */ | |
187 | #define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t) | |
188 | /* returns the stream id */ | |
189 | #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t) | |
2348ca17 JD |
190 | /* returns the current timestamp */ |
191 | #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t) | |
3b731ab1 JD |
192 | |
193 | #ifdef CONFIG_COMPAT | |
194 | /* returns the timestamp begin of the current sub-buffer */ | |
195 | #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN \ | |
196 | LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN | |
197 | /* returns the timestamp end of the current sub-buffer */ | |
198 | #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END \ | |
199 | LTTNG_RING_BUFFER_GET_TIMESTAMP_END | |
200 | /* returns the number of events discarded */ | |
201 | #define LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED \ | |
202 | LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED | |
203 | /* returns the packet payload size */ | |
204 | #define LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE \ | |
205 | LTTNG_RING_BUFFER_GET_CONTENT_SIZE | |
206 | /* returns the actual packet size */ | |
207 | #define LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE \ | |
208 | LTTNG_RING_BUFFER_GET_PACKET_SIZE | |
209 | /* returns the stream id */ | |
210 | #define LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID \ | |
211 | LTTNG_RING_BUFFER_GET_STREAM_ID | |
2348ca17 JD |
212 | /* returns the current timestamp */ |
213 | #define LTTNG_RING_BUFFER_COMPAT_GET_CURRENT_TIMESTAMP \ | |
214 | LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP | |
3b731ab1 JD |
215 | #endif /* CONFIG_COMPAT */ |
216 | ||
e8951e63 | 217 | #endif /* _LTTNG_ABI_H */ |