Support LTTNG_KERNEL_SESSION_SET_NAME of lttng-modules
[lttng-tools.git] / src / common / kernel-ctl / kernel-ioctl.h
1 /*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 #ifndef _LTT_KERNEL_IOCTL_H
20 #define _LTT_KERNEL_IOCTL_H
21
22 #define LTTNG_MODULES_ABI_MAJOR_VERSION 2
23 #define LTTNG_MODULES_ABI_MINOR_VERSION 3
24
25 /* Get a snapshot of the current ring buffer producer and consumer positions */
26 #define RING_BUFFER_SNAPSHOT _IO(0xF6, 0x00)
27 /* Get the consumer position (iteration start) */
28 #define RING_BUFFER_SNAPSHOT_GET_CONSUMED _IOR(0xF6, 0x01, unsigned long)
29 /* Get the producer position (iteration end) */
30 #define RING_BUFFER_SNAPSHOT_GET_PRODUCED _IOR(0xF6, 0x02, unsigned long)
31 /* Get exclusive read access to the specified sub-buffer position */
32 #define RING_BUFFER_GET_SUBBUF _IOW(0xF6, 0x03, unsigned long)
33 /* Release exclusive sub-buffer access */
34 #define RING_BUFFER_PUT_SUBBUF _IO(0xF6, 0x04)
35
36 /* Get exclusive read access to the next sub-buffer that can be read. */
37 #define RING_BUFFER_GET_NEXT_SUBBUF _IO(0xF6, 0x05)
38 /* Release exclusive sub-buffer access, move consumer forward. */
39 #define RING_BUFFER_PUT_NEXT_SUBBUF _IO(0xF6, 0x06)
40 /* returns the size of the current sub-buffer, without padding (for mmap). */
41 #define RING_BUFFER_GET_SUBBUF_SIZE _IOR(0xF6, 0x07, unsigned long)
42 /* returns the size of the current sub-buffer, with padding (for splice). */
43 #define RING_BUFFER_GET_PADDED_SUBBUF_SIZE _IOR(0xF6, 0x08, unsigned long)
44 /* returns the maximum size for sub-buffers. */
45 #define RING_BUFFER_GET_MAX_SUBBUF_SIZE _IOR(0xF6, 0x09, unsigned long)
46 /* returns the length to mmap. */
47 #define RING_BUFFER_GET_MMAP_LEN _IOR(0xF6, 0x0A, unsigned long)
48 /* returns the offset of the subbuffer belonging to the mmap reader. */
49 #define RING_BUFFER_GET_MMAP_READ_OFFSET _IOR(0xF6, 0x0B, unsigned long)
50 /* Flush the current sub-buffer, if non-empty. */
51 #define RING_BUFFER_FLUSH _IO(0xF6, 0x0C)
52 /* Get the current version of the metadata cache (after a get_next). */
53 #define RING_BUFFER_GET_METADATA_VERSION _IOR(0xF6, 0x0D, uint64_t)
54 /*
55 * Get a snapshot of the current ring buffer producer and consumer positions,
56 * regardless of whether or not the two positions are contained within the same
57 * sub-buffer.
58 */
59 #define RING_BUFFER_SNAPSHOT_SAMPLE_POSITIONS _IO(0xF6, 0x0E)
60 /* Flush the current sub-buffer, even if empty. */
61 #define RING_BUFFER_FLUSH_EMPTY _IO(0xF6, 0x0F)
62 /*
63 * Reset the position of what has been consumed from the metadata cache to 0
64 * so it can be read again.
65 */
66 #define RING_BUFFER_METADATA_CACHE_DUMP _IO(0xF6, 0x10)
67
68 /* returns the timestamp begin of the current sub-buffer */
69 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t)
70 /* returns the timestamp end of the current sub-buffer */
71 #define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t)
72 /* returns the number of events discarded */
73 #define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t)
74 /* returns the packet payload size */
75 #define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t)
76 /* returns the actual packet size */
77 #define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t)
78 /* returns the stream id */
79 #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t)
80 /* returns the current timestamp */
81 #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t)
82 /* returns the packet sequence number */
83 #define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t)
84 /* returns the stream instance id */
85 #define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t)
86
87 /* Old ABI (without support for 32/64 bits compat) */
88 /* LTTng file descriptor ioctl */
89 #define LTTNG_KERNEL_OLD_SESSION _IO(0xF6, 0x40)
90 #define LTTNG_KERNEL_OLD_TRACER_VERSION \
91 _IOR(0xF6, 0x41, struct lttng_kernel_old_tracer_version)
92 #define LTTNG_KERNEL_OLD_TRACEPOINT_LIST _IO(0xF6, 0x42)
93 #define LTTNG_KERNEL_OLD_WAIT_QUIESCENT _IO(0xF6, 0x43)
94
95 /* Session FD ioctl */
96 #define LTTNG_KERNEL_OLD_METADATA \
97 _IOW(0xF6, 0x50, struct lttng_kernel_old_channel)
98 #define LTTNG_KERNEL_OLD_CHANNEL \
99 _IOW(0xF6, 0x51, struct lttng_kernel_old_channel)
100 #define LTTNG_KERNEL_OLD_SESSION_START _IO(0xF6, 0x52)
101 #define LTTNG_KERNEL_OLD_SESSION_STOP _IO(0xF6, 0x53)
102
103 /* Channel FD ioctl */
104 #define LTTNG_KERNEL_OLD_STREAM _IO(0xF6, 0x60)
105 #define LTTNG_KERNEL_OLD_EVENT \
106 _IOW(0xF6, 0x61, struct lttng_kernel_old_event)
107
108 /* Event and Channel FD ioctl */
109 #define LTTNG_KERNEL_OLD_CONTEXT \
110 _IOW(0xF6, 0x70, struct lttng_kernel_old_context)
111
112 /* Event, Channel and Session ioctl */
113 #define LTTNG_KERNEL_OLD_ENABLE _IO(0xF6, 0x80)
114 #define LTTNG_KERNEL_OLD_DISABLE _IO(0xF6, 0x81)
115
116
117 /* Current ABI (with suport for 32/64 bits compat) */
118 /* LTTng file descriptor ioctl */
119 #define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45)
120 #define LTTNG_KERNEL_TRACER_VERSION \
121 _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version)
122 #define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47)
123 #define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48)
124 #define LTTNG_KERNEL_SYSCALL_LIST _IO(0xF6, 0x4A)
125 #define LTTNG_KERNEL_TRACER_ABI_VERSION \
126 _IOR(0xF6, 0x4B, struct lttng_kernel_tracer_abi_version)
127
128 /* Session FD ioctl */
129 #define LTTNG_KERNEL_METADATA \
130 _IOW(0xF6, 0x54, struct lttng_kernel_channel)
131 #define LTTNG_KERNEL_CHANNEL \
132 _IOW(0xF6, 0x55, struct lttng_kernel_channel)
133 #define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56)
134 #define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57)
135 #define LTTNG_KERNEL_SESSION_TRACK_PID \
136 _IOR(0xF6, 0x58, int32_t)
137 #define LTTNG_KERNEL_SESSION_UNTRACK_PID \
138 _IOR(0xF6, 0x59, int32_t)
139 /*
140 * ioctl 0x58 and 0x59 are duplicated here. It works, since _IOR vs _IO
141 * are generating two different ioctl numbers, but this was not done on
142 * purpose. We should generally try to avoid those duplications.
143 */
144 #define LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS _IO(0xF6, 0x58)
145 #define LTTNG_KERNEL_SESSION_METADATA_REGEN _IO(0xF6, 0x59)
146 /* 0x5A and 0x5B are reserved for a future ABI-breaking cleanup. */
147 #define LTTNG_KERNEL_SESSION_STATEDUMP _IO(0xF6, 0x5C)
148 #define LTTNG_KERNEL_SESSION_SET_NAME \
149 _IOR(0xF6, 0x5D, struct lttng_kernel_session_name)
150
151 /* Channel FD ioctl */
152 #define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62)
153 #define LTTNG_KERNEL_EVENT \
154 _IOW(0xF6, 0x63, struct lttng_kernel_event)
155 #define LTTNG_KERNEL_SYSCALL_MASK \
156 _IOWR(0xF6, 0x64, struct lttng_kernel_syscall_mask)
157
158 /* Event and Channel FD ioctl */
159 #define LTTNG_KERNEL_CONTEXT \
160 _IOW(0xF6, 0x71, struct lttng_kernel_context)
161
162 /* Event, Channel and Session ioctl */
163 #define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82)
164 #define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83)
165
166 /* Event FD ioctl */
167 #define LTTNG_KERNEL_FILTER _IO(0xF6, 0x90)
168 #define LTTNG_KERNEL_ADD_CALLSITE _IO(0xF6, 0x91)
169
170 #endif /* _LTT_KERNEL_IOCTL_H */
This page took 0.0322 seconds and 4 git commands to generate.