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