Commit | Line | Data |
---|---|---|
9f36eaed MJ |
1 | /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) |
2 | * | |
e8951e63 | 3 | * lttng-abi.h |
57a13317 | 4 | * |
80996790 | 5 | * LTTng ABI header |
17baffe2 | 6 | * |
886d51a3 | 7 | * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
57a13317 MD |
8 | */ |
9 | ||
9f36eaed MJ |
10 | #ifndef _LTTNG_ABI_H |
11 | #define _LTTNG_ABI_H | |
12 | ||
57a13317 MD |
13 | #include <linux/fs.h> |
14 | ||
42cabb80 MD |
15 | /* |
16 | * Major/minor version of ABI exposed to lttng tools. Major number | |
17 | * should be increased when an incompatible ABI change is done. | |
18 | */ | |
3c997079 | 19 | #define LTTNG_MODULES_ABI_MAJOR_VERSION 2 |
4993071a | 20 | #define LTTNG_MODULES_ABI_MINOR_VERSION 3 |
42cabb80 | 21 | |
f8695253 | 22 | #define LTTNG_KERNEL_SYM_NAME_LEN 256 |
d6d808f3 | 23 | |
38d024ae | 24 | enum lttng_kernel_instrumentation { |
4c183524 MD |
25 | LTTNG_KERNEL_TRACEPOINT = 0, |
26 | LTTNG_KERNEL_KPROBE = 1, | |
27 | LTTNG_KERNEL_FUNCTION = 2, | |
7371f44c | 28 | LTTNG_KERNEL_KRETPROBE = 3, |
1ec65de1 | 29 | LTTNG_KERNEL_NOOP = 4, /* not hooked */ |
43880ee8 | 30 | LTTNG_KERNEL_SYSCALL = 5, |
149b9a9d | 31 | LTTNG_KERNEL_UPROBE = 6, |
57a13317 MD |
32 | }; |
33 | ||
96ba7208 JD |
34 | /* |
35 | * LTTng consumer mode | |
36 | */ | |
37 | enum lttng_kernel_output { | |
38 | LTTNG_KERNEL_SPLICE = 0, | |
39 | LTTNG_KERNEL_MMAP = 1, | |
40 | }; | |
41 | ||
57a13317 MD |
42 | /* |
43 | * LTTng DebugFS ABI structures. | |
44 | */ | |
8e099bae | 45 | #define LTTNG_KERNEL_CHANNEL_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32 |
38d024ae | 46 | struct lttng_kernel_channel { |
9e245ead | 47 | uint64_t subbuf_size; /* in bytes */ |
80c16bcf | 48 | uint64_t num_subbuf; |
9e245ead MD |
49 | unsigned int switch_timer_interval; /* usecs */ |
50 | unsigned int read_timer_interval; /* usecs */ | |
96ba7208 | 51 | enum lttng_kernel_output output; /* splice, mmap */ |
6dccd6c1 | 52 | int overwrite; /* 1: overwrite, 0: discard */ |
8e099bae | 53 | char padding[LTTNG_KERNEL_CHANNEL_PADDING]; |
1a598612 | 54 | } __attribute__((packed)); |
57a13317 | 55 | |
7371f44c MD |
56 | struct lttng_kernel_kretprobe { |
57 | uint64_t addr; | |
58 | ||
59 | uint64_t offset; | |
f8695253 | 60 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
1a598612 | 61 | } __attribute__((packed)); |
7371f44c | 62 | |
38d024ae MD |
63 | /* |
64 | * Either addr is used, or symbol_name and offset. | |
65 | */ | |
66 | struct lttng_kernel_kprobe { | |
80c16bcf | 67 | uint64_t addr; |
38d024ae | 68 | |
80c16bcf | 69 | uint64_t offset; |
f8695253 | 70 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
1a598612 | 71 | } __attribute__((packed)); |
d6d808f3 | 72 | |
f17701fb | 73 | struct lttng_kernel_function_tracer { |
f8695253 | 74 | char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; |
1a598612 | 75 | } __attribute__((packed)); |
f17701fb | 76 | |
149b9a9d | 77 | struct lttng_kernel_uprobe { |
56377c91 | 78 | int fd; |
3aed4dca FD |
79 | } __attribute__((packed)); |
80 | ||
81 | struct lttng_kernel_event_callsite_uprobe { | |
149b9a9d YB |
82 | uint64_t offset; |
83 | } __attribute__((packed)); | |
84 | ||
3aed4dca FD |
85 | struct lttng_kernel_event_callsite { |
86 | union { | |
87 | struct lttng_kernel_event_callsite_uprobe uprobe; | |
88 | } u; | |
89 | } __attribute__((packed)); | |
90 | ||
43880ee8 | 91 | /* |
3c997079 | 92 | * For syscall tracing, name = "*" means "enable all". |
43880ee8 | 93 | */ |
8e099bae MD |
94 | #define LTTNG_KERNEL_EVENT_PADDING1 16 |
95 | #define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32 | |
d6d808f3 | 96 | struct lttng_kernel_event { |
f8695253 | 97 | char name[LTTNG_KERNEL_SYM_NAME_LEN]; /* event name */ |
d6d808f3 | 98 | enum lttng_kernel_instrumentation instrumentation; |
8e099bae MD |
99 | char padding[LTTNG_KERNEL_EVENT_PADDING1]; |
100 | ||
d6d808f3 MD |
101 | /* Per instrumentation type configuration */ |
102 | union { | |
7371f44c | 103 | struct lttng_kernel_kretprobe kretprobe; |
d6d808f3 | 104 | struct lttng_kernel_kprobe kprobe; |
f17701fb | 105 | struct lttng_kernel_function_tracer ftrace; |
149b9a9d | 106 | struct lttng_kernel_uprobe uprobe; |
8e099bae | 107 | char padding[LTTNG_KERNEL_EVENT_PADDING2]; |
d6d808f3 | 108 | } u; |
1a598612 | 109 | } __attribute__((packed)); |
c099397a | 110 | |
80c16bcf | 111 | struct lttng_kernel_tracer_version { |
c6c9e10f MD |
112 | uint32_t major; |
113 | uint32_t minor; | |
80c16bcf | 114 | uint32_t patchlevel; |
1a598612 | 115 | } __attribute__((packed)); |
80c16bcf | 116 | |
42cabb80 MD |
117 | struct lttng_kernel_tracer_abi_version { |
118 | uint32_t major; | |
119 | uint32_t minor; | |
120 | } __attribute__((packed)); | |
121 | ||
3db41b2c MD |
122 | enum lttng_kernel_calibrate_type { |
123 | LTTNG_KERNEL_CALIBRATE_KRETPROBE, | |
57105fc2 MD |
124 | }; |
125 | ||
3db41b2c MD |
126 | struct lttng_kernel_calibrate { |
127 | enum lttng_kernel_calibrate_type type; /* type (input) */ | |
1a598612 | 128 | } __attribute__((packed)); |
57105fc2 | 129 | |
12e579db MD |
130 | struct lttng_kernel_syscall_mask { |
131 | uint32_t len; /* in bits */ | |
132 | char mask[]; | |
133 | } __attribute__((packed)); | |
134 | ||
12a313a5 | 135 | enum lttng_kernel_context_type { |
4c183524 MD |
136 | LTTNG_KERNEL_CONTEXT_PID = 0, |
137 | LTTNG_KERNEL_CONTEXT_PERF_COUNTER = 1, | |
a2563e83 | 138 | LTTNG_KERNEL_CONTEXT_PROCNAME = 2, |
4c183524 MD |
139 | LTTNG_KERNEL_CONTEXT_PRIO = 3, |
140 | LTTNG_KERNEL_CONTEXT_NICE = 4, | |
141 | LTTNG_KERNEL_CONTEXT_VPID = 5, | |
142 | LTTNG_KERNEL_CONTEXT_TID = 6, | |
143 | LTTNG_KERNEL_CONTEXT_VTID = 7, | |
144 | LTTNG_KERNEL_CONTEXT_PPID = 8, | |
145 | LTTNG_KERNEL_CONTEXT_VPPID = 9, | |
975da2c0 | 146 | LTTNG_KERNEL_CONTEXT_HOSTNAME = 10, |
b3699d90 | 147 | LTTNG_KERNEL_CONTEXT_CPU_ID = 11, |
79150a49 JD |
148 | LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE = 12, |
149 | LTTNG_KERNEL_CONTEXT_PREEMPTIBLE = 13, | |
150 | LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE = 14, | |
151 | LTTNG_KERNEL_CONTEXT_MIGRATABLE = 15, | |
2fa2d39a FG |
152 | LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL = 16, |
153 | LTTNG_KERNEL_CONTEXT_CALLSTACK_USER = 17, | |
8070f5c0 MD |
154 | }; |
155 | ||
156 | struct lttng_kernel_perf_counter_ctx { | |
157 | uint32_t type; | |
158 | uint64_t config; | |
f8695253 | 159 | char name[LTTNG_KERNEL_SYM_NAME_LEN]; |
1a598612 | 160 | } __attribute__((packed)); |
8070f5c0 | 161 | |
8e099bae MD |
162 | #define LTTNG_KERNEL_CONTEXT_PADDING1 16 |
163 | #define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32 | |
8070f5c0 | 164 | struct lttng_kernel_context { |
12a313a5 | 165 | enum lttng_kernel_context_type ctx; |
8e099bae MD |
166 | char padding[LTTNG_KERNEL_CONTEXT_PADDING1]; |
167 | ||
8070f5c0 | 168 | union { |
8070f5c0 | 169 | struct lttng_kernel_perf_counter_ctx perf_counter; |
8e099bae | 170 | char padding[LTTNG_KERNEL_CONTEXT_PADDING2]; |
8070f5c0 | 171 | } u; |
1a598612 | 172 | } __attribute__((packed)); |
8070f5c0 | 173 | |
f127e61e | 174 | #define LTTNG_KERNEL_FILTER_BYTECODE_MAX_LEN 65536 |
07dfc1d0 MD |
175 | struct lttng_kernel_filter_bytecode { |
176 | uint32_t len; | |
177 | uint32_t reloc_offset; | |
178 | uint64_t seqnum; | |
179 | char data[0]; | |
180 | } __attribute__((packed)); | |
181 | ||
33749530 | 182 | /* LTTng file descriptor ioctl */ |
6dccd6c1 | 183 | #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45) |
33749530 | 184 | #define LTTNG_KERNEL_TRACER_VERSION \ |
6dccd6c1 JD |
185 | _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version) |
186 | #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47) | |
187 | #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48) | |
57105fc2 | 188 | #define LTTNG_KERNEL_CALIBRATE \ |
6dccd6c1 | 189 | _IOWR(0xF6, 0x49, struct lttng_kernel_calibrate) |
29c956bb | 190 | #define LTTNG_KERNEL_SYSCALL_LIST _IO(0xF6, 0x4A) |
42cabb80 MD |
191 | #define LTTNG_KERNEL_TRACER_ABI_VERSION \ |
192 | _IOR(0xF6, 0x4B, struct lttng_kernel_tracer_abi_version) | |
33749530 MD |
193 | |
194 | /* Session FD ioctl */ | |
195 | #define LTTNG_KERNEL_METADATA \ | |
6dccd6c1 | 196 | _IOW(0xF6, 0x54, struct lttng_kernel_channel) |
ab2277d6 | 197 | #define LTTNG_KERNEL_CHANNEL \ |
6dccd6c1 JD |
198 | _IOW(0xF6, 0x55, struct lttng_kernel_channel) |
199 | #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56) | |
200 | #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57) | |
e0130fab MD |
201 | #define LTTNG_KERNEL_SESSION_TRACK_PID \ |
202 | _IOR(0xF6, 0x58, int32_t) | |
203 | #define LTTNG_KERNEL_SESSION_UNTRACK_PID \ | |
204 | _IOR(0xF6, 0x59, int32_t) | |
fe40f016 MD |
205 | /* |
206 | * ioctl 0x58 and 0x59 are duplicated here. It works, since _IOR vs _IO | |
207 | * are generating two different ioctl numbers, but this was not done on | |
208 | * purpose. We should generally try to avoid those duplications. | |
209 | */ | |
7e6f9ef6 | 210 | #define LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS _IO(0xF6, 0x58) |
9616f0bf | 211 | #define LTTNG_KERNEL_SESSION_METADATA_REGEN _IO(0xF6, 0x59) |
601252cf MD |
212 | /* 0x5A and 0x5B are reserved for a future ABI-breaking cleanup. */ |
213 | #define LTTNG_KERNEL_SESSION_STATEDUMP _IO(0xF6, 0x5C) | |
33749530 MD |
214 | |
215 | /* Channel FD ioctl */ | |
6dccd6c1 | 216 | #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62) |
ab2277d6 | 217 | #define LTTNG_KERNEL_EVENT \ |
6dccd6c1 | 218 | _IOW(0xF6, 0x63, struct lttng_kernel_event) |
12e579db MD |
219 | #define LTTNG_KERNEL_SYSCALL_MASK \ |
220 | _IOWR(0xF6, 0x64, struct lttng_kernel_syscall_mask) | |
57a13317 | 221 | |
8070f5c0 MD |
222 | /* Event and Channel FD ioctl */ |
223 | #define LTTNG_KERNEL_CONTEXT \ | |
6dccd6c1 | 224 | _IOW(0xF6, 0x71, struct lttng_kernel_context) |
8070f5c0 | 225 | |
e64957da | 226 | /* Event, Channel and Session ioctl */ |
6dccd6c1 JD |
227 | #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82) |
228 | #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83) | |
e64957da | 229 | |
07dfc1d0 MD |
230 | /* Event FD ioctl */ |
231 | #define LTTNG_KERNEL_FILTER _IO(0xF6, 0x90) | |
3aed4dca | 232 | #define LTTNG_KERNEL_ADD_CALLSITE _IO(0xF6, 0x91) |
07dfc1d0 | 233 | |
72a20ef7 MD |
234 | /* |
235 | * LTTng-specific ioctls for the lib ringbuffer. | |
236 | * | |
237 | * Operations applying to the current sub-buffer need to occur between | |
238 | * a get/put or get_next/put_next ioctl pair. | |
239 | */ | |
240 | ||
3b731ab1 JD |
241 | /* returns the timestamp begin of the current sub-buffer */ |
242 | #define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t) | |
243 | /* returns the timestamp end of the current sub-buffer */ | |
244 | #define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t) | |
72a20ef7 | 245 | /* returns the number of events discarded of the current sub-buffer */ |
3b731ab1 | 246 | #define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t) |
72a20ef7 | 247 | /* returns the packet payload size of the current sub-buffer */ |
3b731ab1 | 248 | #define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t) |
72a20ef7 | 249 | /* returns the packet size of the current sub-buffer*/ |
3b731ab1 | 250 | #define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t) |
72a20ef7 | 251 | /* returns the stream id (invariant for the stream) */ |
3b731ab1 | 252 | #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t) |
72a20ef7 | 253 | /* returns the current timestamp as perceived from the tracer */ |
2348ca17 | 254 | #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t) |
72a20ef7 | 255 | /* returns the packet sequence number of the current sub-buffer */ |
5b3cf4f9 | 256 | #define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t) |
72a20ef7 | 257 | /* returns the stream instance id (invariant for the stream) */ |
5594698f | 258 | #define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t) |
3b731ab1 JD |
259 | |
260 | #ifdef CONFIG_COMPAT | |
261 | /* returns the timestamp begin of the current sub-buffer */ | |
262 | #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN \ | |
263 | LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN | |
264 | /* returns the timestamp end of the current sub-buffer */ | |
265 | #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END \ | |
266 | LTTNG_RING_BUFFER_GET_TIMESTAMP_END | |
72a20ef7 | 267 | /* returns the number of events discarded of the current sub-buffer */ |
3b731ab1 JD |
268 | #define LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED \ |
269 | LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED | |
72a20ef7 | 270 | /* returns the packet payload size of the current sub-buffer */ |
3b731ab1 JD |
271 | #define LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE \ |
272 | LTTNG_RING_BUFFER_GET_CONTENT_SIZE | |
72a20ef7 | 273 | /* returns the packet size of the current sub-buffer */ |
3b731ab1 JD |
274 | #define LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE \ |
275 | LTTNG_RING_BUFFER_GET_PACKET_SIZE | |
72a20ef7 | 276 | /* returns the stream id (invariant for the stream) */ |
3b731ab1 JD |
277 | #define LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID \ |
278 | LTTNG_RING_BUFFER_GET_STREAM_ID | |
72a20ef7 | 279 | /* returns the current timestamp as perceived from the tracer */ |
2348ca17 JD |
280 | #define LTTNG_RING_BUFFER_COMPAT_GET_CURRENT_TIMESTAMP \ |
281 | LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP | |
72a20ef7 | 282 | /* returns the packet sequence number of the current sub-buffer */ |
5b3cf4f9 JD |
283 | #define LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM \ |
284 | LTTNG_RING_BUFFER_GET_SEQ_NUM | |
72a20ef7 | 285 | /* returns the stream instance id (invariant for the stream) */ |
5594698f JD |
286 | #define LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID \ |
287 | LTTNG_RING_BUFFER_INSTANCE_ID | |
3b731ab1 JD |
288 | #endif /* CONFIG_COMPAT */ |
289 | ||
e8951e63 | 290 | #endif /* _LTTNG_ABI_H */ |