Cygwin: Pass file paths instead of file descriptors over UNIX sockets
[lttng-ust.git] / libringbuffer / frontend.h
CommitLineData
e92f3e28
MD
1#ifndef _LTTNG_RING_BUFFER_FRONTEND_H
2#define _LTTNG_RING_BUFFER_FRONTEND_H
852c2936
MD
3
4/*
e92f3e28 5 * libringbuffer/frontend.h
852c2936
MD
6 *
7 * Ring Buffer Library Synchronization Header (API).
8 *
e92f3e28
MD
9 * Copyright (C) 2005-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
24 *
25 *
852c2936
MD
26 * Author:
27 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
28 *
29 * See ring_buffer_frontend.c for more information on wait-free algorithms.
852c2936
MD
30 */
31
14641deb
MD
32#include <urcu/compiler.h>
33#include <urcu/uatomic.h>
34
a6352fd4 35#include "smp.h"
852c2936 36/* Internal helpers */
4931a13e 37#include "frontend_internal.h"
852c2936
MD
38
39/* Buffer creation/removal and setup operations */
40
41/*
42 * switch_timer_interval is the time interval (in us) to fill sub-buffers with
43 * padding to let readers get those sub-buffers. Used for live streaming.
44 *
45 * read_timer_interval is the time interval (in us) to wake up pending readers.
46 *
47 * buf_addr is a pointer the the beginning of the preallocated buffer contiguous
48 * address mapping. It is used only by RING_BUFFER_STATIC configuration. It can
49 * be set to NULL for other backends.
a3f61e7f
MD
50 *
51 * priv_data (output) is set to a pointer into a "priv_data_len"-sized
52 * memory area for client-specific data. This memory is managed by lib
53 * ring buffer. priv_data_align is the alignment required for the
54 * private data area.
852c2936
MD
55 */
56
57extern
4cfec15c 58struct lttng_ust_shm_handle *channel_create(const struct lttng_ust_lib_ring_buffer_config *config,
a3f61e7f
MD
59 const char *name,
60 void **priv_data,
61 size_t priv_data_align,
62 size_t priv_data_size,
d028eddb 63 void *priv_data_init,
431d5cf0
MD
64 void *buf_addr,
65 size_t subbuf_size, size_t num_subbuf,
66 unsigned int switch_timer_interval,
193183fb 67 unsigned int read_timer_interval,
bf5ff35e
CB
68 int **shm_fd, char **shm_path,
69 int **wait_fd, char **wait_pipe_path,
ef9ff354 70 uint64_t **memory_map_size);
193183fb
MD
71
72/* channel_handle_create - for consumer. */
73extern
38fae1d3 74struct lttng_ust_shm_handle *channel_handle_create(int shm_fd, int wait_fd,
193183fb
MD
75 uint64_t memory_map_size);
76
77/* channel_handle_add_stream - for consumer. */
78extern
38fae1d3 79int channel_handle_add_stream(struct lttng_ust_shm_handle *handle,
193183fb 80 int shm_fd, int wait_fd, uint64_t memory_map_size);
852c2936
MD
81
82/*
a3f61e7f
MD
83 * channel_destroy finalizes all channel's buffers, waits for readers to
84 * release all references, and destroys the channel.
852c2936
MD
85 */
86extern
a3f61e7f 87void channel_destroy(struct channel *chan, struct lttng_ust_shm_handle *handle,
824f40b8 88 int shadow);
852c2936
MD
89
90
91/* Buffer read operations */
92
93/*
94 * Iteration on channel cpumask needs to issue a read barrier to match the write
95 * barrier in cpu hotplug. It orders the cpumask read before read of per-cpu
96 * buffer data. The per-cpu buffer is never removed by cpu hotplug; teardown is
97 * only performed at channel destruction.
98 */
99#define for_each_channel_cpu(cpu, chan) \
a6352fd4 100 for_each_possible_cpu(cpu)
852c2936 101
4cfec15c
MD
102extern struct lttng_ust_lib_ring_buffer *channel_get_ring_buffer(
103 const struct lttng_ust_lib_ring_buffer_config *config,
1d498196 104 struct channel *chan, int cpu,
38fae1d3 105 struct lttng_ust_shm_handle *handle,
bf5ff35e
CB
106 int **shm_fd, char **shm_path,
107 int **wait_fd, char **wait_pipe_path,
ef9ff354 108 uint64_t **memory_map_size);
4cfec15c 109extern int lib_ring_buffer_open_read(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 110 struct lttng_ust_shm_handle *handle,
824f40b8 111 int shadow);
4cfec15c 112extern void lib_ring_buffer_release_read(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 113 struct lttng_ust_shm_handle *handle,
824f40b8 114 int shadow);
852c2936
MD
115
116/*
117 * Read sequence: snapshot, many get_subbuf/put_subbuf, move_consumer.
118 */
4cfec15c 119extern int lib_ring_buffer_snapshot(struct lttng_ust_lib_ring_buffer *buf,
852c2936 120 unsigned long *consumed,
1d498196 121 unsigned long *produced,
38fae1d3 122 struct lttng_ust_shm_handle *handle);
4cfec15c 123extern void lib_ring_buffer_move_consumer(struct lttng_ust_lib_ring_buffer *buf,
1d498196 124 unsigned long consumed_new,
38fae1d3 125 struct lttng_ust_shm_handle *handle);
852c2936 126
4cfec15c 127extern int lib_ring_buffer_get_subbuf(struct lttng_ust_lib_ring_buffer *buf,
1d498196 128 unsigned long consumed,
38fae1d3 129 struct lttng_ust_shm_handle *handle);
4cfec15c 130extern void lib_ring_buffer_put_subbuf(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 131 struct lttng_ust_shm_handle *handle);
852c2936
MD
132
133/*
134 * lib_ring_buffer_get_next_subbuf/lib_ring_buffer_put_next_subbuf are helpers
135 * to read sub-buffers sequentially.
136 */
4cfec15c 137static inline int lib_ring_buffer_get_next_subbuf(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 138 struct lttng_ust_shm_handle *handle)
852c2936
MD
139{
140 int ret;
141
142 ret = lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
1d498196 143 &buf->prod_snapshot, handle);
852c2936
MD
144 if (ret)
145 return ret;
1d498196 146 ret = lib_ring_buffer_get_subbuf(buf, buf->cons_snapshot, handle);
852c2936
MD
147 return ret;
148}
149
1d498196 150static inline
4cfec15c 151void lib_ring_buffer_put_next_subbuf(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 152 struct lttng_ust_shm_handle *handle)
852c2936 153{
1d498196 154 lib_ring_buffer_put_subbuf(buf, handle);
852c2936 155 lib_ring_buffer_move_consumer(buf, subbuf_align(buf->cons_snapshot,
1d498196 156 shmp(handle, buf->backend.chan)), handle);
852c2936
MD
157}
158
159extern void channel_reset(struct channel *chan);
4cfec15c 160extern void lib_ring_buffer_reset(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 161 struct lttng_ust_shm_handle *handle);
852c2936
MD
162
163static inline
4cfec15c
MD
164unsigned long lib_ring_buffer_get_offset(const struct lttng_ust_lib_ring_buffer_config *config,
165 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
166{
167 return v_read(config, &buf->offset);
168}
169
170static inline
4cfec15c
MD
171unsigned long lib_ring_buffer_get_consumed(const struct lttng_ust_lib_ring_buffer_config *config,
172 struct lttng_ust_lib_ring_buffer *buf)
852c2936 173{
14641deb 174 return uatomic_read(&buf->consumed);
852c2936
MD
175}
176
177/*
178 * Must call lib_ring_buffer_is_finalized before reading counters (memory
179 * ordering enforced with respect to trace teardown).
180 */
181static inline
4cfec15c
MD
182int lib_ring_buffer_is_finalized(const struct lttng_ust_lib_ring_buffer_config *config,
183 struct lttng_ust_lib_ring_buffer *buf)
852c2936 184{
14641deb 185 int finalized = CMM_ACCESS_ONCE(buf->finalized);
852c2936
MD
186 /*
187 * Read finalized before counters.
188 */
14641deb 189 cmm_smp_rmb();
852c2936
MD
190 return finalized;
191}
192
193static inline
194int lib_ring_buffer_channel_is_finalized(const struct channel *chan)
195{
196 return chan->finalized;
197}
198
199static inline
200int lib_ring_buffer_channel_is_disabled(const struct channel *chan)
201{
14641deb 202 return uatomic_read(&chan->record_disabled);
852c2936
MD
203}
204
205static inline
206unsigned long lib_ring_buffer_get_read_data_size(
4cfec15c
MD
207 const struct lttng_ust_lib_ring_buffer_config *config,
208 struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 209 struct lttng_ust_shm_handle *handle)
852c2936 210{
1d498196 211 return subbuffer_get_read_data_size(config, &buf->backend, handle);
852c2936
MD
212}
213
214static inline
215unsigned long lib_ring_buffer_get_records_count(
4cfec15c
MD
216 const struct lttng_ust_lib_ring_buffer_config *config,
217 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
218{
219 return v_read(config, &buf->records_count);
220}
221
222static inline
223unsigned long lib_ring_buffer_get_records_overrun(
4cfec15c
MD
224 const struct lttng_ust_lib_ring_buffer_config *config,
225 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
226{
227 return v_read(config, &buf->records_overrun);
228}
229
230static inline
231unsigned long lib_ring_buffer_get_records_lost_full(
4cfec15c
MD
232 const struct lttng_ust_lib_ring_buffer_config *config,
233 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
234{
235 return v_read(config, &buf->records_lost_full);
236}
237
238static inline
239unsigned long lib_ring_buffer_get_records_lost_wrap(
4cfec15c
MD
240 const struct lttng_ust_lib_ring_buffer_config *config,
241 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
242{
243 return v_read(config, &buf->records_lost_wrap);
244}
245
246static inline
247unsigned long lib_ring_buffer_get_records_lost_big(
4cfec15c
MD
248 const struct lttng_ust_lib_ring_buffer_config *config,
249 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
250{
251 return v_read(config, &buf->records_lost_big);
252}
253
254static inline
255unsigned long lib_ring_buffer_get_records_read(
4cfec15c
MD
256 const struct lttng_ust_lib_ring_buffer_config *config,
257 struct lttng_ust_lib_ring_buffer *buf)
852c2936
MD
258{
259 return v_read(config, &buf->backend.records_read);
260}
261
e92f3e28 262#endif /* _LTTNG_RING_BUFFER_FRONTEND_H */
This page took 0.035839 seconds and 4 git commands to generate.