Fix: refcount issue in lttng-ust-abi.c
[lttng-ust.git] / libringbuffer / frontend.h
... / ...
CommitLineData
1#ifndef _LTTNG_RING_BUFFER_FRONTEND_H
2#define _LTTNG_RING_BUFFER_FRONTEND_H
3
4/*
5 * libringbuffer/frontend.h
6 *
7 * Ring Buffer Library Synchronization Header (API).
8 *
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 *
26 * Author:
27 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
28 *
29 * See ring_buffer_frontend.c for more information on wait-free algorithms.
30 */
31
32#include <urcu/compiler.h>
33#include <urcu/uatomic.h>
34
35#include "smp.h"
36/* Internal helpers */
37#include "frontend_internal.h"
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.
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.
55 */
56
57extern
58struct lttng_ust_shm_handle *channel_create(const struct lttng_ust_lib_ring_buffer_config *config,
59 const char *name,
60 void **priv_data,
61 size_t priv_data_align,
62 size_t priv_data_size,
63 void *priv_data_init,
64 void *buf_addr,
65 size_t subbuf_size, size_t num_subbuf,
66 unsigned int switch_timer_interval,
67 unsigned int read_timer_interval);
68
69/*
70 * channel_destroy finalizes all channel's buffers, waits for readers to
71 * release all references, and destroys the channel.
72 */
73extern
74void channel_destroy(struct channel *chan, struct lttng_ust_shm_handle *handle,
75 int consumer);
76
77
78/* Buffer read operations */
79
80/*
81 * Iteration on channel cpumask needs to issue a read barrier to match the write
82 * barrier in cpu hotplug. It orders the cpumask read before read of per-cpu
83 * buffer data. The per-cpu buffer is never removed by cpu hotplug; teardown is
84 * only performed at channel destruction.
85 */
86#define for_each_channel_cpu(cpu, chan) \
87 for_each_possible_cpu(cpu)
88
89extern struct lttng_ust_lib_ring_buffer *channel_get_ring_buffer(
90 const struct lttng_ust_lib_ring_buffer_config *config,
91 struct channel *chan, int cpu,
92 struct lttng_ust_shm_handle *handle,
93 int *shm_fd, int *wait_fd,
94 int *wakeup_fd,
95 uint64_t *memory_map_size);
96extern
97int ring_buffer_close_wait_fd(const struct lttng_ust_lib_ring_buffer_config *config,
98 struct channel *chan,
99 struct lttng_ust_shm_handle *handle,
100 int cpu);
101extern
102int ring_buffer_close_wakeup_fd(const struct lttng_ust_lib_ring_buffer_config *config,
103 struct channel *chan,
104 struct lttng_ust_shm_handle *handle,
105 int cpu);
106
107extern int lib_ring_buffer_open_read(struct lttng_ust_lib_ring_buffer *buf,
108 struct lttng_ust_shm_handle *handle);
109extern void lib_ring_buffer_release_read(struct lttng_ust_lib_ring_buffer *buf,
110 struct lttng_ust_shm_handle *handle);
111
112/*
113 * Initialize signals for ring buffer. Should be called early e.g. by
114 * main() in the program to affect all threads.
115 */
116void lib_ringbuffer_signal_init(void);
117
118/*
119 * Read sequence: snapshot, many get_subbuf/put_subbuf, move_consumer.
120 */
121extern int lib_ring_buffer_snapshot(struct lttng_ust_lib_ring_buffer *buf,
122 unsigned long *consumed,
123 unsigned long *produced,
124 struct lttng_ust_shm_handle *handle);
125extern void lib_ring_buffer_move_consumer(struct lttng_ust_lib_ring_buffer *buf,
126 unsigned long consumed_new,
127 struct lttng_ust_shm_handle *handle);
128
129extern int lib_ring_buffer_get_subbuf(struct lttng_ust_lib_ring_buffer *buf,
130 unsigned long consumed,
131 struct lttng_ust_shm_handle *handle);
132extern void lib_ring_buffer_put_subbuf(struct lttng_ust_lib_ring_buffer *buf,
133 struct lttng_ust_shm_handle *handle);
134
135/*
136 * lib_ring_buffer_get_next_subbuf/lib_ring_buffer_put_next_subbuf are helpers
137 * to read sub-buffers sequentially.
138 */
139static inline int lib_ring_buffer_get_next_subbuf(struct lttng_ust_lib_ring_buffer *buf,
140 struct lttng_ust_shm_handle *handle)
141{
142 int ret;
143
144 ret = lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
145 &buf->prod_snapshot, handle);
146 if (ret)
147 return ret;
148 ret = lib_ring_buffer_get_subbuf(buf, buf->cons_snapshot, handle);
149 return ret;
150}
151
152static inline
153void lib_ring_buffer_put_next_subbuf(struct lttng_ust_lib_ring_buffer *buf,
154 struct lttng_ust_shm_handle *handle)
155{
156 lib_ring_buffer_put_subbuf(buf, handle);
157 lib_ring_buffer_move_consumer(buf, subbuf_align(buf->cons_snapshot,
158 shmp(handle, buf->backend.chan)), handle);
159}
160
161extern void channel_reset(struct channel *chan);
162extern void lib_ring_buffer_reset(struct lttng_ust_lib_ring_buffer *buf,
163 struct lttng_ust_shm_handle *handle);
164
165static inline
166unsigned long lib_ring_buffer_get_offset(const struct lttng_ust_lib_ring_buffer_config *config,
167 struct lttng_ust_lib_ring_buffer *buf)
168{
169 return v_read(config, &buf->offset);
170}
171
172static inline
173unsigned long lib_ring_buffer_get_consumed(const struct lttng_ust_lib_ring_buffer_config *config,
174 struct lttng_ust_lib_ring_buffer *buf)
175{
176 return uatomic_read(&buf->consumed);
177}
178
179/*
180 * Must call lib_ring_buffer_is_finalized before reading counters (memory
181 * ordering enforced with respect to trace teardown).
182 */
183static inline
184int lib_ring_buffer_is_finalized(const struct lttng_ust_lib_ring_buffer_config *config,
185 struct lttng_ust_lib_ring_buffer *buf)
186{
187 int finalized = CMM_ACCESS_ONCE(buf->finalized);
188 /*
189 * Read finalized before counters.
190 */
191 cmm_smp_rmb();
192 return finalized;
193}
194
195static inline
196int lib_ring_buffer_channel_is_finalized(const struct channel *chan)
197{
198 return chan->finalized;
199}
200
201static inline
202int lib_ring_buffer_channel_is_disabled(const struct channel *chan)
203{
204 return uatomic_read(&chan->record_disabled);
205}
206
207static inline
208unsigned long lib_ring_buffer_get_read_data_size(
209 const struct lttng_ust_lib_ring_buffer_config *config,
210 struct lttng_ust_lib_ring_buffer *buf,
211 struct lttng_ust_shm_handle *handle)
212{
213 return subbuffer_get_read_data_size(config, &buf->backend, handle);
214}
215
216static inline
217unsigned long lib_ring_buffer_get_records_count(
218 const struct lttng_ust_lib_ring_buffer_config *config,
219 struct lttng_ust_lib_ring_buffer *buf)
220{
221 return v_read(config, &buf->records_count);
222}
223
224static inline
225unsigned long lib_ring_buffer_get_records_overrun(
226 const struct lttng_ust_lib_ring_buffer_config *config,
227 struct lttng_ust_lib_ring_buffer *buf)
228{
229 return v_read(config, &buf->records_overrun);
230}
231
232static inline
233unsigned long lib_ring_buffer_get_records_lost_full(
234 const struct lttng_ust_lib_ring_buffer_config *config,
235 struct lttng_ust_lib_ring_buffer *buf)
236{
237 return v_read(config, &buf->records_lost_full);
238}
239
240static inline
241unsigned long lib_ring_buffer_get_records_lost_wrap(
242 const struct lttng_ust_lib_ring_buffer_config *config,
243 struct lttng_ust_lib_ring_buffer *buf)
244{
245 return v_read(config, &buf->records_lost_wrap);
246}
247
248static inline
249unsigned long lib_ring_buffer_get_records_lost_big(
250 const struct lttng_ust_lib_ring_buffer_config *config,
251 struct lttng_ust_lib_ring_buffer *buf)
252{
253 return v_read(config, &buf->records_lost_big);
254}
255
256static inline
257unsigned long lib_ring_buffer_get_records_read(
258 const struct lttng_ust_lib_ring_buffer_config *config,
259 struct lttng_ust_lib_ring_buffer *buf)
260{
261 return v_read(config, &buf->backend.records_read);
262}
263
264#endif /* _LTTNG_RING_BUFFER_FRONTEND_H */
This page took 0.025366 seconds and 4 git commands to generate.