API cleanup: Remove handle from struct lttng_ust_channel_buffer
[lttng-ust.git] / liblttng-ust / lttng-ring-buffer-metadata-client.h
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng lib ring buffer client template.
7 */
8
9 #include <stddef.h>
10 #include <stdint.h>
11
12 #include <ust-events-internal.h>
13 #include "ust-bitfield.h"
14 #include "ust-compat.h"
15 #include "lttng-tracer.h"
16 #include "../libringbuffer/frontend_types.h"
17
18 struct metadata_packet_header {
19 uint32_t magic; /* 0x75D11D57 */
20 uint8_t uuid[LTTNG_UST_UUID_LEN]; /* Unique Universal Identifier */
21 uint32_t checksum; /* 0 if unused */
22 uint32_t content_size; /* in bits */
23 uint32_t packet_size; /* in bits */
24 uint8_t compression_scheme; /* 0 if unused */
25 uint8_t encryption_scheme; /* 0 if unused */
26 uint8_t checksum_scheme; /* 0 if unused */
27 uint8_t major; /* CTF spec major version number */
28 uint8_t minor; /* CTF spec minor version number */
29 uint8_t header_end[0];
30 };
31
32 struct metadata_record_header {
33 uint8_t header_end[0]; /* End of header */
34 };
35
36 static const struct lttng_ust_lib_ring_buffer_config client_config;
37
38 static inline uint64_t lib_ring_buffer_clock_read(struct lttng_ust_lib_ring_buffer_channel *chan)
39 {
40 return 0;
41 }
42
43 static inline
44 size_t record_header_size(const struct lttng_ust_lib_ring_buffer_config *config,
45 struct lttng_ust_lib_ring_buffer_channel *chan,
46 size_t offset,
47 size_t *pre_header_padding,
48 struct lttng_ust_lib_ring_buffer_ctx *ctx,
49 void *client_ctx)
50 {
51 return 0;
52 }
53
54 #include "../libringbuffer/api.h"
55 #include "lttng-rb-clients.h"
56
57 static uint64_t client_ring_buffer_clock_read(struct lttng_ust_lib_ring_buffer_channel *chan)
58 {
59 return 0;
60 }
61
62 static
63 size_t client_record_header_size(const struct lttng_ust_lib_ring_buffer_config *config,
64 struct lttng_ust_lib_ring_buffer_channel *chan,
65 size_t offset,
66 size_t *pre_header_padding,
67 struct lttng_ust_lib_ring_buffer_ctx *ctx,
68 void *client_ctx)
69 {
70 return 0;
71 }
72
73 /**
74 * client_packet_header_size - called on buffer-switch to a new sub-buffer
75 *
76 * Return header size without padding after the structure. Don't use packed
77 * structure because gcc generates inefficient code on some architectures
78 * (powerpc, mips..)
79 */
80 static size_t client_packet_header_size(void)
81 {
82 return offsetof(struct metadata_packet_header, header_end);
83 }
84
85 static void client_buffer_begin(struct lttng_ust_lib_ring_buffer *buf, uint64_t tsc,
86 unsigned int subbuf_idx,
87 struct lttng_ust_shm_handle *handle)
88 {
89 struct lttng_ust_lib_ring_buffer_channel *chan = shmp(handle, buf->backend.chan);
90 struct metadata_packet_header *header =
91 (struct metadata_packet_header *)
92 lib_ring_buffer_offset_address(&buf->backend,
93 subbuf_idx * chan->backend.subbuf_size,
94 handle);
95 struct lttng_ust_channel_buffer *lttng_chan = channel_get_private(chan);
96
97 assert(header);
98 if (!header)
99 return;
100 header->magic = TSDL_MAGIC_NUMBER;
101 memcpy(header->uuid, lttng_chan->priv->uuid, sizeof(lttng_chan->priv->uuid));
102 header->checksum = 0; /* 0 if unused */
103 header->content_size = 0xFFFFFFFF; /* in bits, for debugging */
104 header->packet_size = 0xFFFFFFFF; /* in bits, for debugging */
105 header->compression_scheme = 0; /* 0 if unused */
106 header->encryption_scheme = 0; /* 0 if unused */
107 header->checksum_scheme = 0; /* 0 if unused */
108 header->major = CTF_SPEC_MAJOR;
109 header->minor = CTF_SPEC_MINOR;
110 }
111
112 /*
113 * offset is assumed to never be 0 here : never deliver a completely empty
114 * subbuffer. data_size is between 1 and subbuf_size.
115 */
116 static void client_buffer_end(struct lttng_ust_lib_ring_buffer *buf, uint64_t tsc,
117 unsigned int subbuf_idx, unsigned long data_size,
118 struct lttng_ust_shm_handle *handle)
119 {
120 struct lttng_ust_lib_ring_buffer_channel *chan = shmp(handle, buf->backend.chan);
121 struct metadata_packet_header *header =
122 (struct metadata_packet_header *)
123 lib_ring_buffer_offset_address(&buf->backend,
124 subbuf_idx * chan->backend.subbuf_size,
125 handle);
126 unsigned long records_lost = 0;
127
128 assert(header);
129 if (!header)
130 return;
131 header->content_size = data_size * CHAR_BIT; /* in bits */
132 header->packet_size = LTTNG_UST_PAGE_ALIGN(data_size) * CHAR_BIT; /* in bits */
133 /*
134 * We do not care about the records lost count, because the metadata
135 * channel waits and retry.
136 */
137 (void) lib_ring_buffer_get_records_lost_full(&client_config, buf);
138 records_lost += lib_ring_buffer_get_records_lost_wrap(&client_config, buf);
139 records_lost += lib_ring_buffer_get_records_lost_big(&client_config, buf);
140 WARN_ON_ONCE(records_lost != 0);
141 }
142
143 static int client_buffer_create(struct lttng_ust_lib_ring_buffer *buf, void *priv,
144 int cpu, const char *name,
145 struct lttng_ust_shm_handle *handle)
146 {
147 return 0;
148 }
149
150 static void client_buffer_finalize(struct lttng_ust_lib_ring_buffer *buf,
151 void *priv, int cpu,
152 struct lttng_ust_shm_handle *handle)
153 {
154 }
155
156 static const
157 struct lttng_ust_client_lib_ring_buffer_client_cb client_cb = {
158 .parent = {
159 .ring_buffer_clock_read = client_ring_buffer_clock_read,
160 .record_header_size = client_record_header_size,
161 .subbuffer_header_size = client_packet_header_size,
162 .buffer_begin = client_buffer_begin,
163 .buffer_end = client_buffer_end,
164 .buffer_create = client_buffer_create,
165 .buffer_finalize = client_buffer_finalize,
166 },
167 };
168
169 static const struct lttng_ust_lib_ring_buffer_config client_config = {
170 .cb.ring_buffer_clock_read = client_ring_buffer_clock_read,
171 .cb.record_header_size = client_record_header_size,
172 .cb.subbuffer_header_size = client_packet_header_size,
173 .cb.buffer_begin = client_buffer_begin,
174 .cb.buffer_end = client_buffer_end,
175 .cb.buffer_create = client_buffer_create,
176 .cb.buffer_finalize = client_buffer_finalize,
177
178 .tsc_bits = 0,
179 .alloc = RING_BUFFER_ALLOC_GLOBAL,
180 .sync = RING_BUFFER_SYNC_GLOBAL,
181 .mode = RING_BUFFER_MODE_TEMPLATE,
182 .backend = RING_BUFFER_PAGE,
183 .output = RING_BUFFER_MMAP,
184 .oops = RING_BUFFER_OOPS_CONSISTENCY,
185 .ipi = RING_BUFFER_NO_IPI_BARRIER,
186 .wakeup = RING_BUFFER_WAKEUP_BY_WRITER,
187 .client_type = LTTNG_CLIENT_TYPE,
188
189 .cb_ptr = &client_cb.parent,
190 };
191
192 static
193 struct lttng_ust_channel_buffer *_channel_create(const char *name,
194 void *buf_addr,
195 size_t subbuf_size, size_t num_subbuf,
196 unsigned int switch_timer_interval,
197 unsigned int read_timer_interval,
198 unsigned char *uuid,
199 uint32_t chan_id,
200 const int *stream_fds, int nr_stream_fds,
201 int64_t blocking_timeout)
202 {
203 struct lttng_ust_abi_channel_config chan_priv_init;
204 struct lttng_ust_shm_handle *handle;
205 struct lttng_ust_channel_buffer *lttng_chan_buf;
206
207 lttng_chan_buf = lttng_ust_alloc_channel_buffer();
208 if (!lttng_chan_buf)
209 return NULL;
210 memcpy(lttng_chan_buf->priv->uuid, uuid, LTTNG_UST_UUID_LEN);
211 lttng_chan_buf->priv->id = chan_id;
212
213 memset(&chan_priv_init, 0, sizeof(chan_priv_init));
214 memcpy(chan_priv_init.uuid, uuid, LTTNG_UST_UUID_LEN);
215 chan_priv_init.id = chan_id;
216
217 handle = channel_create(&client_config, name,
218 __alignof__(struct lttng_ust_channel_buffer),
219 sizeof(struct lttng_ust_channel_buffer),
220 &chan_priv_init,
221 lttng_chan_buf, buf_addr, subbuf_size, num_subbuf,
222 switch_timer_interval, read_timer_interval,
223 stream_fds, nr_stream_fds, blocking_timeout);
224 if (!handle)
225 goto error;
226 lttng_chan_buf->chan = shmp(handle, handle->chan);
227 return lttng_chan_buf;
228
229 error:
230 lttng_ust_free_channel_common(lttng_chan_buf->parent);
231 return NULL;
232 }
233
234 static
235 void lttng_channel_destroy(struct lttng_ust_channel_buffer *lttng_chan_buf)
236 {
237 channel_destroy(lttng_chan_buf->chan, lttng_chan_buf->chan->handle, 1);
238 lttng_ust_free_channel_common(lttng_chan_buf->parent);
239 }
240
241 static
242 int lttng_event_reserve(struct lttng_ust_lib_ring_buffer_ctx *ctx, uint32_t event_id)
243 {
244 int ret;
245
246 ret = lib_ring_buffer_reserve(&client_config, ctx, NULL);
247 if (ret)
248 return ret;
249 if (lib_ring_buffer_backend_get_pages(&client_config, ctx,
250 &ctx->backend_pages))
251 return -EPERM;
252 return 0;
253 }
254
255 static
256 void lttng_event_commit(struct lttng_ust_lib_ring_buffer_ctx *ctx)
257 {
258 lib_ring_buffer_commit(&client_config, ctx);
259 }
260
261 static
262 void lttng_event_write(struct lttng_ust_lib_ring_buffer_ctx *ctx, const void *src,
263 size_t len)
264 {
265 lib_ring_buffer_write(&client_config, ctx, src, len);
266 }
267
268 static
269 size_t lttng_packet_avail_size(struct lttng_ust_lib_ring_buffer_channel *chan,
270 struct lttng_ust_shm_handle *handle)
271 {
272 unsigned long o_begin;
273 struct lttng_ust_lib_ring_buffer *buf;
274
275 buf = shmp(handle, chan->backend.buf[0].shmp); /* Only for global buffer ! */
276 o_begin = v_read(&client_config, &buf->offset);
277 if (subbuf_offset(o_begin, chan) != 0) {
278 return chan->backend.subbuf_size - subbuf_offset(o_begin, chan);
279 } else {
280 return chan->backend.subbuf_size - subbuf_offset(o_begin, chan)
281 - sizeof(struct metadata_packet_header);
282 }
283 }
284
285 #if 0
286 static
287 wait_queue_head_t *lttng_get_reader_wait_queue(struct lttng_ust_lib_ring_buffer_channel *chan)
288 {
289 return &chan->read_wait;
290 }
291
292 static
293 wait_queue_head_t *lttng_get_hp_wait_queue(struct lttng_ust_lib_ring_buffer_channel *chan)
294 {
295 return &chan->hp_wait;
296 }
297 #endif //0
298
299 static
300 int lttng_is_finalized(struct lttng_ust_lib_ring_buffer_channel *chan)
301 {
302 return lib_ring_buffer_channel_is_finalized(chan);
303 }
304
305 static
306 int lttng_is_disabled(struct lttng_ust_lib_ring_buffer_channel *chan)
307 {
308 return lib_ring_buffer_channel_is_disabled(chan);
309 }
310
311 static
312 int lttng_flush_buffer(struct lttng_ust_lib_ring_buffer_channel *chan,
313 struct lttng_ust_shm_handle *handle)
314 {
315 struct lttng_ust_lib_ring_buffer *buf;
316 int shm_fd, wait_fd, wakeup_fd;
317 uint64_t memory_map_size;
318
319 buf = channel_get_ring_buffer(&client_config, chan,
320 0, handle, &shm_fd, &wait_fd, &wakeup_fd,
321 &memory_map_size);
322 lib_ring_buffer_switch(&client_config, buf,
323 SWITCH_ACTIVE, handle);
324 return 0;
325 }
326
327 static struct lttng_transport lttng_relay_transport = {
328 .name = "relay-" RING_BUFFER_MODE_TEMPLATE_STRING "-mmap",
329 .ops = {
330 .struct_size = sizeof(struct lttng_ust_channel_buffer_ops),
331
332 .priv = __LTTNG_COMPOUND_LITERAL(struct lttng_ust_channel_buffer_ops_private, {
333 .pub = &lttng_relay_transport.ops,
334 .channel_create = _channel_create,
335 .channel_destroy = lttng_channel_destroy,
336 .packet_avail_size = lttng_packet_avail_size,
337 .is_finalized = lttng_is_finalized,
338 .is_disabled = lttng_is_disabled,
339 .flush_buffer = lttng_flush_buffer,
340 }),
341 .event_reserve = lttng_event_reserve,
342 .event_commit = lttng_event_commit,
343 .event_write = lttng_event_write,
344 },
345 .client_config = &client_config,
346 };
347
348 void RING_BUFFER_MODE_TEMPLATE_INIT(void)
349 {
350 DBG("LTT : ltt ring buffer client \"%s\" init\n",
351 "relay-" RING_BUFFER_MODE_TEMPLATE_STRING "-mmap");
352 lttng_transport_register(&lttng_relay_transport);
353 }
354
355 void RING_BUFFER_MODE_TEMPLATE_EXIT(void)
356 {
357 DBG("LTT : ltt ring buffer client \"%s\" exit\n",
358 "relay-" RING_BUFFER_MODE_TEMPLATE_STRING "-mmap");
359 lttng_transport_unregister(&lttng_relay_transport);
360 }
This page took 0.037286 seconds and 5 git commands to generate.