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