9 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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
29 * Major/minor version of ABI exposed to lttng tools. Major number
30 * should be increased when an incompatible ABI change is done.
32 #define LTTNG_MODULES_ABI_MAJOR_VERSION 2
33 #define LTTNG_MODULES_ABI_MINOR_VERSION 3
35 #define LTTNG_KERNEL_SYM_NAME_LEN 256
37 enum lttng_kernel_instrumentation
{
38 LTTNG_KERNEL_TRACEPOINT
= 0,
39 LTTNG_KERNEL_KPROBE
= 1,
40 LTTNG_KERNEL_FUNCTION
= 2,
41 LTTNG_KERNEL_KRETPROBE
= 3,
42 LTTNG_KERNEL_NOOP
= 4, /* not hooked */
43 LTTNG_KERNEL_SYSCALL
= 5,
49 enum lttng_kernel_output
{
50 LTTNG_KERNEL_SPLICE
= 0,
51 LTTNG_KERNEL_MMAP
= 1,
55 * LTTng DebugFS ABI structures.
57 #define LTTNG_KERNEL_CHANNEL_PADDING LTTNG_KERNEL_SYM_NAME_LEN + 32
58 struct lttng_kernel_channel
{
59 uint64_t subbuf_size
; /* in bytes */
61 unsigned int switch_timer_interval
; /* usecs */
62 unsigned int read_timer_interval
; /* usecs */
63 enum lttng_kernel_output output
; /* splice, mmap */
64 int overwrite
; /* 1: overwrite, 0: discard */
65 char padding
[LTTNG_KERNEL_CHANNEL_PADDING
];
66 } __attribute__((packed
));
68 struct lttng_kernel_kretprobe
{
72 char symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
];
73 } __attribute__((packed
));
76 * Either addr is used, or symbol_name and offset.
78 struct lttng_kernel_kprobe
{
82 char symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
];
83 } __attribute__((packed
));
85 struct lttng_kernel_function_tracer
{
86 char symbol_name
[LTTNG_KERNEL_SYM_NAME_LEN
];
87 } __attribute__((packed
));
90 * For syscall tracing, name = "*" means "enable all".
92 #define LTTNG_KERNEL_EVENT_PADDING1 16
93 #define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
94 struct lttng_kernel_event
{
95 char name
[LTTNG_KERNEL_SYM_NAME_LEN
]; /* event name */
96 enum lttng_kernel_instrumentation instrumentation
;
97 char padding
[LTTNG_KERNEL_EVENT_PADDING1
];
99 /* Per instrumentation type configuration */
101 struct lttng_kernel_kretprobe kretprobe
;
102 struct lttng_kernel_kprobe kprobe
;
103 struct lttng_kernel_function_tracer ftrace
;
104 char padding
[LTTNG_KERNEL_EVENT_PADDING2
];
106 } __attribute__((packed
));
108 struct lttng_kernel_tracer_version
{
112 } __attribute__((packed
));
114 struct lttng_kernel_tracer_abi_version
{
117 } __attribute__((packed
));
119 enum lttng_kernel_calibrate_type
{
120 LTTNG_KERNEL_CALIBRATE_KRETPROBE
,
123 struct lttng_kernel_calibrate
{
124 enum lttng_kernel_calibrate_type type
; /* type (input) */
125 } __attribute__((packed
));
127 struct lttng_kernel_syscall_mask
{
128 uint32_t len
; /* in bits */
130 } __attribute__((packed
));
132 enum lttng_kernel_context_type
{
133 LTTNG_KERNEL_CONTEXT_PID
= 0,
134 LTTNG_KERNEL_CONTEXT_PERF_COUNTER
= 1,
135 LTTNG_KERNEL_CONTEXT_PROCNAME
= 2,
136 LTTNG_KERNEL_CONTEXT_PRIO
= 3,
137 LTTNG_KERNEL_CONTEXT_NICE
= 4,
138 LTTNG_KERNEL_CONTEXT_VPID
= 5,
139 LTTNG_KERNEL_CONTEXT_TID
= 6,
140 LTTNG_KERNEL_CONTEXT_VTID
= 7,
141 LTTNG_KERNEL_CONTEXT_PPID
= 8,
142 LTTNG_KERNEL_CONTEXT_VPPID
= 9,
143 LTTNG_KERNEL_CONTEXT_HOSTNAME
= 10,
144 LTTNG_KERNEL_CONTEXT_CPU_ID
= 11,
145 LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE
= 12,
146 LTTNG_KERNEL_CONTEXT_PREEMPTIBLE
= 13,
147 LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE
= 14,
148 LTTNG_KERNEL_CONTEXT_MIGRATABLE
= 15,
151 struct lttng_kernel_perf_counter_ctx
{
154 char name
[LTTNG_KERNEL_SYM_NAME_LEN
];
155 } __attribute__((packed
));
157 #define LTTNG_KERNEL_CONTEXT_PADDING1 16
158 #define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
159 struct lttng_kernel_context
{
160 enum lttng_kernel_context_type ctx
;
161 char padding
[LTTNG_KERNEL_CONTEXT_PADDING1
];
164 struct lttng_kernel_perf_counter_ctx perf_counter
;
165 char padding
[LTTNG_KERNEL_CONTEXT_PADDING2
];
167 } __attribute__((packed
));
169 #define LTTNG_KERNEL_FILTER_BYTECODE_MAX_LEN 65536
170 struct lttng_kernel_filter_bytecode
{
172 uint32_t reloc_offset
;
175 } __attribute__((packed
));
177 /* LTTng file descriptor ioctl */
178 #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45)
179 #define LTTNG_KERNEL_TRACER_VERSION \
180 _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version)
181 #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47)
182 #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48)
183 #define LTTNG_KERNEL_CALIBRATE \
184 _IOWR(0xF6, 0x49, struct lttng_kernel_calibrate)
185 #define LTTNG_KERNEL_SYSCALL_LIST _IO(0xF6, 0x4A)
186 #define LTTNG_KERNEL_TRACER_ABI_VERSION \
187 _IOR(0xF6, 0x4B, struct lttng_kernel_tracer_abi_version)
189 /* Session FD ioctl */
190 #define LTTNG_KERNEL_METADATA \
191 _IOW(0xF6, 0x54, struct lttng_kernel_channel)
192 #define LTTNG_KERNEL_CHANNEL \
193 _IOW(0xF6, 0x55, struct lttng_kernel_channel)
194 #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56)
195 #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57)
196 #define LTTNG_KERNEL_SESSION_TRACK_PID \
197 _IOR(0xF6, 0x58, int32_t)
198 #define LTTNG_KERNEL_SESSION_UNTRACK_PID \
199 _IOR(0xF6, 0x59, int32_t)
201 * ioctl 0x58 and 0x59 are duplicated here. It works, since _IOR vs _IO
202 * are generating two different ioctl numbers, but this was not done on
203 * purpose. We should generally try to avoid those duplications.
205 #define LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS _IO(0xF6, 0x58)
206 #define LTTNG_KERNEL_SESSION_METADATA_REGEN _IO(0xF6, 0x59)
207 /* 0x5A and 0x5B are reserved for a future ABI-breaking cleanup. */
208 #define LTTNG_KERNEL_SESSION_STATEDUMP _IO(0xF6, 0x5C)
210 /* Channel FD ioctl */
211 #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62)
212 #define LTTNG_KERNEL_EVENT \
213 _IOW(0xF6, 0x63, struct lttng_kernel_event)
214 #define LTTNG_KERNEL_SYSCALL_MASK \
215 _IOWR(0xF6, 0x64, struct lttng_kernel_syscall_mask)
217 /* Event and Channel FD ioctl */
218 #define LTTNG_KERNEL_CONTEXT \
219 _IOW(0xF6, 0x71, struct lttng_kernel_context)
221 /* Event, Channel and Session ioctl */
222 #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82)
223 #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83)
226 #define LTTNG_KERNEL_FILTER _IO(0xF6, 0x90)
228 /* LTTng-specific ioctls for the lib ringbuffer */
229 /* returns the timestamp begin of the current sub-buffer */
230 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t)
231 /* returns the timestamp end of the current sub-buffer */
232 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t)
233 /* returns the number of events discarded */
234 #define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t)
235 /* returns the packet payload size */
236 #define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t)
237 /* returns the actual packet size */
238 #define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t)
239 /* returns the stream id */
240 #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t)
241 /* returns the current timestamp */
242 #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t)
243 /* returns the packet sequence number */
244 #define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t)
245 /* returns the stream instance id */
246 #define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t)
249 /* returns the timestamp begin of the current sub-buffer */
250 #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_BEGIN \
251 LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN
252 /* returns the timestamp end of the current sub-buffer */
253 #define LTTNG_RING_BUFFER_COMPAT_GET_TIMESTAMP_END \
254 LTTNG_RING_BUFFER_GET_TIMESTAMP_END
255 /* returns the number of events discarded */
256 #define LTTNG_RING_BUFFER_COMPAT_GET_EVENTS_DISCARDED \
257 LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED
258 /* returns the packet payload size */
259 #define LTTNG_RING_BUFFER_COMPAT_GET_CONTENT_SIZE \
260 LTTNG_RING_BUFFER_GET_CONTENT_SIZE
261 /* returns the actual packet size */
262 #define LTTNG_RING_BUFFER_COMPAT_GET_PACKET_SIZE \
263 LTTNG_RING_BUFFER_GET_PACKET_SIZE
264 /* returns the stream id */
265 #define LTTNG_RING_BUFFER_COMPAT_GET_STREAM_ID \
266 LTTNG_RING_BUFFER_GET_STREAM_ID
267 /* returns the current timestamp */
268 #define LTTNG_RING_BUFFER_COMPAT_GET_CURRENT_TIMESTAMP \
269 LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP
270 /* returns the packet sequence number */
271 #define LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM \
272 LTTNG_RING_BUFFER_GET_SEQ_NUM
273 /* returns the stream instance id */
274 #define LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID \
275 LTTNG_RING_BUFFER_INSTANCE_ID
276 #endif /* CONFIG_COMPAT */
278 #endif /* _LTTNG_ABI_H */