Add ustctl_flush_buffer to the consumer API
[lttng-tools.git] / src / common / kernel-ctl / kernel-ioctl.h
... / ...
CommitLineData
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/* returns the timestamp begin of the current sub-buffer */
64#define LTTNG_RING_BUFFER_GET_TIMESTAMP_BEGIN _IOR(0xF6, 0x20, uint64_t)
65/* returns the timestamp end of the current sub-buffer */
66#define LTTNG_RING_BUFFER_GET_TIMESTAMP_END _IOR(0xF6, 0x21, uint64_t)
67/* returns the number of events discarded */
68#define LTTNG_RING_BUFFER_GET_EVENTS_DISCARDED _IOR(0xF6, 0x22, uint64_t)
69/* returns the packet payload size */
70#define LTTNG_RING_BUFFER_GET_CONTENT_SIZE _IOR(0xF6, 0x23, uint64_t)
71/* returns the actual packet size */
72#define LTTNG_RING_BUFFER_GET_PACKET_SIZE _IOR(0xF6, 0x24, uint64_t)
73/* returns the stream id */
74#define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t)
75/* returns the current timestamp */
76#define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t)
77/* returns the packet sequence number */
78#define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t)
79/* returns the stream instance id */
80#define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t)
81
82/* Old ABI (without support for 32/64 bits compat) */
83/* LTTng file descriptor ioctl */
84#define LTTNG_KERNEL_OLD_SESSION _IO(0xF6, 0x40)
85#define LTTNG_KERNEL_OLD_TRACER_VERSION \
86 _IOR(0xF6, 0x41, struct lttng_kernel_old_tracer_version)
87#define LTTNG_KERNEL_OLD_TRACEPOINT_LIST _IO(0xF6, 0x42)
88#define LTTNG_KERNEL_OLD_WAIT_QUIESCENT _IO(0xF6, 0x43)
89
90/* Session FD ioctl */
91#define LTTNG_KERNEL_OLD_METADATA \
92 _IOW(0xF6, 0x50, struct lttng_kernel_old_channel)
93#define LTTNG_KERNEL_OLD_CHANNEL \
94 _IOW(0xF6, 0x51, struct lttng_kernel_old_channel)
95#define LTTNG_KERNEL_OLD_SESSION_START _IO(0xF6, 0x52)
96#define LTTNG_KERNEL_OLD_SESSION_STOP _IO(0xF6, 0x53)
97
98/* Channel FD ioctl */
99#define LTTNG_KERNEL_OLD_STREAM _IO(0xF6, 0x60)
100#define LTTNG_KERNEL_OLD_EVENT \
101 _IOW(0xF6, 0x61, struct lttng_kernel_old_event)
102
103/* Event and Channel FD ioctl */
104#define LTTNG_KERNEL_OLD_CONTEXT \
105 _IOW(0xF6, 0x70, struct lttng_kernel_old_context)
106
107/* Event, Channel and Session ioctl */
108#define LTTNG_KERNEL_OLD_ENABLE _IO(0xF6, 0x80)
109#define LTTNG_KERNEL_OLD_DISABLE _IO(0xF6, 0x81)
110
111
112/* Current ABI (with suport for 32/64 bits compat) */
113/* LTTng file descriptor ioctl */
114#define LTTNG_KERNEL_SESSION _IO(0xF6, 0x45)
115#define LTTNG_KERNEL_TRACER_VERSION \
116 _IOR(0xF6, 0x46, struct lttng_kernel_tracer_version)
117#define LTTNG_KERNEL_TRACEPOINT_LIST _IO(0xF6, 0x47)
118#define LTTNG_KERNEL_WAIT_QUIESCENT _IO(0xF6, 0x48)
119#define LTTNG_KERNEL_SYSCALL_LIST _IO(0xF6, 0x4A)
120#define LTTNG_KERNEL_TRACER_ABI_VERSION \
121 _IOR(0xF6, 0x4B, struct lttng_kernel_tracer_abi_version)
122
123/* Session FD ioctl */
124#define LTTNG_KERNEL_METADATA \
125 _IOW(0xF6, 0x54, struct lttng_kernel_channel)
126#define LTTNG_KERNEL_CHANNEL \
127 _IOW(0xF6, 0x55, struct lttng_kernel_channel)
128#define LTTNG_KERNEL_SESSION_START _IO(0xF6, 0x56)
129#define LTTNG_KERNEL_SESSION_STOP _IO(0xF6, 0x57)
130#define LTTNG_KERNEL_SESSION_TRACK_PID \
131 _IOR(0xF6, 0x58, int32_t)
132#define LTTNG_KERNEL_SESSION_UNTRACK_PID \
133 _IOR(0xF6, 0x59, int32_t)
134/*
135 * ioctl 0x58 and 0x59 are duplicated here. It works, since _IOR vs _IO
136 * are generating two different ioctl numbers, but this was not done on
137 * purpose. We should generally try to avoid those duplications.
138 */
139#define LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS _IO(0xF6, 0x58)
140#define LTTNG_KERNEL_SESSION_METADATA_REGEN _IO(0xF6, 0x59)
141/* 0x5A and 0x5B are reserved for a future ABI-breaking cleanup. */
142#define LTTNG_KERNEL_SESSION_STATEDUMP _IO(0xF6, 0x5C)
143
144/* Channel FD ioctl */
145#define LTTNG_KERNEL_STREAM _IO(0xF6, 0x62)
146#define LTTNG_KERNEL_EVENT \
147 _IOW(0xF6, 0x63, struct lttng_kernel_event)
148#define LTTNG_KERNEL_SYSCALL_MASK \
149 _IOWR(0xF6, 0x64, struct lttng_kernel_syscall_mask)
150
151/* Event and Channel FD ioctl */
152#define LTTNG_KERNEL_CONTEXT \
153 _IOW(0xF6, 0x71, struct lttng_kernel_context)
154
155/* Event, Channel and Session ioctl */
156#define LTTNG_KERNEL_ENABLE _IO(0xF6, 0x82)
157#define LTTNG_KERNEL_DISABLE _IO(0xF6, 0x83)
158
159/* Event FD ioctl */
160#define LTTNG_KERNEL_FILTER _IO(0xF6, 0x90)
161
162#endif /* _LTT_KERNEL_IOCTL_H */
This page took 0.022738 seconds and 4 git commands to generate.