Cleanup: statedump process state event pid namespace fields
[deliverable/lttng-modules.git] / lttng-abi.h
1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
3 * lttng-abi.h
4 *
5 * LTTng ABI header
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 */
9
10 #ifndef _LTTNG_ABI_H
11 #define _LTTNG_ABI_H
12
13 #include <linux/fs.h>
14
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 */
19 #define LTTNG_MODULES_ABI_MAJOR_VERSION 2
20 #define LTTNG_MODULES_ABI_MINOR_VERSION 3
21
22 #define LTTNG_KERNEL_SYM_NAME_LEN 256
23
24 enum lttng_kernel_instrumentation {
25 LTTNG_KERNEL_TRACEPOINT = 0,
26 LTTNG_KERNEL_KPROBE = 1,
27 LTTNG_KERNEL_FUNCTION = 2,
28 LTTNG_KERNEL_KRETPROBE = 3,
29 LTTNG_KERNEL_NOOP = 4, /* not hooked */
30 LTTNG_KERNEL_SYSCALL = 5,
31 LTTNG_KERNEL_UPROBE = 6,
32 };
33
34 /*
35 * LTTng consumer mode
36 */
37 enum lttng_kernel_output {
38 LTTNG_KERNEL_SPLICE = 0,
39 LTTNG_KERNEL_MMAP = 1,
40 };
41
42 /*
43 * LTTng DebugFS ABI structures.
44 */
45 #define LTTNG_KERNEL_CHANNEL_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32
46 struct lttng_kernel_channel {
47 uint64_t subbuf_size; /* in bytes */
48 uint64_t num_subbuf;
49 unsigned int switch_timer_interval; /* usecs */
50 unsigned int read_timer_interval; /* usecs */
51 enum lttng_kernel_output output; /* splice, mmap */
52 int overwrite; /* 1: overwrite, 0: discard */
53 char padding[LTTNG_KERNEL_CHANNEL_PADDING];
54 } __attribute__((packed));
55
56 struct lttng_kernel_kretprobe {
57 uint64_t addr;
58
59 uint64_t offset;
60 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
61 } __attribute__((packed));
62
63 /*
64 * Either addr is used, or symbol_name and offset.
65 */
66 struct lttng_kernel_kprobe {
67 uint64_t addr;
68
69 uint64_t offset;
70 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
71 } __attribute__((packed));
72
73 struct lttng_kernel_function_tracer {
74 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
75 } __attribute__((packed));
76
77 struct lttng_kernel_uprobe {
78 int fd;
79 } __attribute__((packed));
80
81 struct lttng_kernel_event_callsite_uprobe {
82 uint64_t offset;
83 } __attribute__((packed));
84
85 struct lttng_kernel_event_callsite {
86 union {
87 struct lttng_kernel_event_callsite_uprobe uprobe;
88 } u;
89 } __attribute__((packed));
90
91 /*
92 * For syscall tracing, name = "*" means "enable all".
93 */
94 #define LTTNG_KERNEL_EVENT_PADDING1 16
95 #define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
96 struct lttng_kernel_event {
97 char name[LTTNG_KERNEL_SYM_NAME_LEN]; /* event name */
98 enum lttng_kernel_instrumentation instrumentation;
99 char padding[LTTNG_KERNEL_EVENT_PADDING1];
100
101 /* Per instrumentation type configuration */
102 union {
103 struct lttng_kernel_kretprobe kretprobe;
104 struct lttng_kernel_kprobe kprobe;
105 struct lttng_kernel_function_tracer ftrace;
106 struct lttng_kernel_uprobe uprobe;
107 char padding[LTTNG_KERNEL_EVENT_PADDING2];
108 } u;
109 } __attribute__((packed));
110
111 struct lttng_kernel_tracer_version {
112 uint32_t major;
113 uint32_t minor;
114 uint32_t patchlevel;
115 } __attribute__((packed));
116
117 struct lttng_kernel_tracer_abi_version {
118 uint32_t major;
119 uint32_t minor;
120 } __attribute__((packed));
121
122 enum lttng_kernel_calibrate_type {
123 LTTNG_KERNEL_CALIBRATE_KRETPROBE,
124 };
125
126 struct lttng_kernel_calibrate {
127 enum lttng_kernel_calibrate_type type; /* type (input) */
128 } __attribute__((packed));
129
130 struct lttng_kernel_syscall_mask {
131 uint32_t len; /* in bits */
132 char mask[];
133 } __attribute__((packed));
134
135 enum lttng_kernel_context_type {
136 LTTNG_KERNEL_CONTEXT_PID = 0,
137 LTTNG_KERNEL_CONTEXT_PERF_COUNTER = 1,
138 LTTNG_KERNEL_CONTEXT_PROCNAME = 2,
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,
146 LTTNG_KERNEL_CONTEXT_HOSTNAME = 10,
147 LTTNG_KERNEL_CONTEXT_CPU_ID = 11,
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,
152 LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL = 16,
153 LTTNG_KERNEL_CONTEXT_CALLSTACK_USER = 17,
154 LTTNG_KERNEL_CONTEXT_CGROUP_NS = 18,
155 LTTNG_KERNEL_CONTEXT_IPC_NS = 19,
156 LTTNG_KERNEL_CONTEXT_MNT_NS = 20,
157 LTTNG_KERNEL_CONTEXT_NET_NS = 21,
158 LTTNG_KERNEL_CONTEXT_PID_NS = 22,
159 LTTNG_KERNEL_CONTEXT_USER_NS = 23,
160 LTTNG_KERNEL_CONTEXT_UTS_NS = 24,
161 LTTNG_KERNEL_CONTEXT_UID = 25,
162 LTTNG_KERNEL_CONTEXT_EUID = 26,
163 LTTNG_KERNEL_CONTEXT_SUID = 27,
164 LTTNG_KERNEL_CONTEXT_GID = 28,
165 LTTNG_KERNEL_CONTEXT_EGID = 29,
166 LTTNG_KERNEL_CONTEXT_SGID = 30,
167 LTTNG_KERNEL_CONTEXT_VUID = 31,
168 LTTNG_KERNEL_CONTEXT_VEUID = 32,
169 LTTNG_KERNEL_CONTEXT_VSUID = 33,
170 LTTNG_KERNEL_CONTEXT_VGID = 34,
171 LTTNG_KERNEL_CONTEXT_VEGID = 35,
172 LTTNG_KERNEL_CONTEXT_VSGID = 36,
173 };
174
175 struct lttng_kernel_perf_counter_ctx {
176 uint32_t type;
177 uint64_t config;
178 char name[LTTNG_KERNEL_SYM_NAME_LEN];
179 } __attribute__((packed));
180
181 #define LTTNG_KERNEL_CONTEXT_PADDING1 16
182 #define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
183 struct lttng_kernel_context {
184 enum lttng_kernel_context_type ctx;
185 char padding[LTTNG_KERNEL_CONTEXT_PADDING1];
186
187 union {
188 struct lttng_kernel_perf_counter_ctx perf_counter;
189 char padding[LTTNG_KERNEL_CONTEXT_PADDING2];
190 } u;
191 } __attribute__((packed));
192
193 #define LTTNG_KERNEL_FILTER_BYTECODE_MAX_LEN 65536
194 struct lttng_kernel_filter_bytecode {
195 uint32_t len;
196 uint32_t reloc_offset;
197 uint64_t seqnum;
198 char data[0];
199 } __attribute__((packed));
200
201 /* LTTng file descriptor ioctl */
202 #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45)
203 #define LTTNG_KERNEL_TRACER_VERSION \
204 _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version)
205 #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47)
206 #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48)
207 #define LTTNG_KERNEL_CALIBRATE \
208 _IOWR(0xF6, 0x49, struct lttng_kernel_calibrate)
209 #define LTTNG_KERNEL_SYSCALL_LIST _IO(0xF6, 0x4A)
210 #define LTTNG_KERNEL_TRACER_ABI_VERSION \
211 _IOR(0xF6, 0x4B, struct lttng_kernel_tracer_abi_version)
212
213 /* Session FD ioctl */
214 #define LTTNG_KERNEL_METADATA \
215 _IOW(0xF6, 0x54, struct lttng_kernel_channel)
216 #define LTTNG_KERNEL_CHANNEL \
217 _IOW(0xF6, 0x55, struct lttng_kernel_channel)
218 #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56)
219 #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57)
220 #define LTTNG_KERNEL_SESSION_TRACK_PID \
221 _IOR(0xF6, 0x58, int32_t)
222 #define LTTNG_KERNEL_SESSION_UNTRACK_PID \
223 _IOR(0xF6, 0x59, int32_t)
224 /*
225 * ioctl 0x58 and 0x59 are duplicated here. It works, since _IOR vs _IO
226 * are generating two different ioctl numbers, but this was not done on
227 * purpose. We should generally try to avoid those duplications.
228 */
229 #define LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS _IO(0xF6, 0x58)
230 #define LTTNG_KERNEL_SESSION_METADATA_REGEN _IO(0xF6, 0x59)
231 /* 0x5A and 0x5B are reserved for a future ABI-breaking cleanup. */
232 #define LTTNG_KERNEL_SESSION_STATEDUMP _IO(0xF6, 0x5C)
233
234 /* Channel FD ioctl */
235 #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62)
236 #define LTTNG_KERNEL_EVENT \
237 _IOW(0xF6, 0x63, struct lttng_kernel_event)
238 #define LTTNG_KERNEL_SYSCALL_MASK \
239 _IOWR(0xF6, 0x64, struct lttng_kernel_syscall_mask)
240
241 /* Event and Channel FD ioctl */
242 #define LTTNG_KERNEL_CONTEXT \
243 _IOW(0xF6, 0x71, struct lttng_kernel_context)
244
245 /* Event, Channel and Session ioctl */
246 #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82)
247 #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83)
248
249 /* Event FD ioctl */
250 #define LTTNG_KERNEL_FILTER _IO(0xF6, 0x90)
251 #define LTTNG_KERNEL_ADD_CALLSITE _IO(0xF6, 0x91)
252
253 /*
254 * LTTng-specific ioctls for the lib ringbuffer.
255 *
256 * Operations applying to the current sub-buffer need to occur between
257 * a get/put or get_next/put_next ioctl pair.
258 */
259
260 /* returns the timestamp begin of the current sub-buffer */
261 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t)
262 /* returns the timestamp end of the current sub-buffer */
263 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t)
264 /* returns the number of events discarded of the current sub-buffer */
265 #define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t)
266 /* returns the packet payload size of the current sub-buffer */
267 #define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t)
268 /* returns the packet size of the current sub-buffer*/
269 #define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t)
270 /* returns the stream id (invariant for the stream) */
271 #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t)
272 /* returns the current timestamp as perceived from the tracer */
273 #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t)
274 /* returns the packet sequence number of the current sub-buffer */
275 #define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t)
276 /* returns the stream instance id (invariant for the stream) */
277 #define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t)
278
279 #ifdef CONFIG_COMPAT
280 /* returns the timestamp begin of the current sub-buffer */
281 #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN \
282 LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN
283 /* returns the timestamp end of the current sub-buffer */
284 #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END \
285 LTTNG_RING_BUFFER_GET_TIMESTAMP_END
286 /* returns the number of events discarded of the current sub-buffer */
287 #define LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED \
288 LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED
289 /* returns the packet payload size of the current sub-buffer */
290 #define LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE \
291 LTTNG_RING_BUFFER_GET_CONTENT_SIZE
292 /* returns the packet size of the current sub-buffer */
293 #define LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE \
294 LTTNG_RING_BUFFER_GET_PACKET_SIZE
295 /* returns the stream id (invariant for the stream) */
296 #define LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID \
297 LTTNG_RING_BUFFER_GET_STREAM_ID
298 /* returns the current timestamp as perceived from the tracer */
299 #define LTTNG_RING_BUFFER_COMPAT_GET_CURRENT_TIMESTAMP \
300 LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
301 /* returns the packet sequence number of the current sub-buffer */
302 #define LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM \
303 LTTNG_RING_BUFFER_GET_SEQ_NUM
304 /* returns the stream instance id (invariant for the stream) */
305 #define LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID \
306 LTTNG_RING_BUFFER_INSTANCE_ID
307 #endif /* CONFIG_COMPAT */
308
309 #endif /* _LTTNG_ABI_H */
This page took 0.036746 seconds and 5 git commands to generate.