callstack context: use delimiter when stack is incomplete
[lttng-modules.git] / lttng-ring-buffer-client.h
CommitLineData
7514523f 1/*
a90917c3 2 * lttng-ring-buffer-client.h
7514523f 3 *
3d084699 4 * LTTng lib ring buffer client template.
7514523f 5 *
886d51a3
MD
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
7514523f
MD
21 */
22
23#include <linux/module.h>
c0e31d2e 24#include <linux/types.h>
bbd023d6
MD
25#include <lib/bitfield.h>
26#include <wrapper/vmalloc.h> /* for wrapper_vmalloc_sync_all() */
27#include <wrapper/trace-clock.h>
28#include <lttng-events.h>
29#include <lttng-tracer.h>
30#include <wrapper/ringbuffer/frontend_types.h>
7514523f 31
a2ef1c03
MD
32#define LTTNG_COMPACT_EVENT_BITS 5
33#define LTTNG_COMPACT_TSC_BITS 27
34
dd5a0db3
MD
35static struct lttng_transport lttng_relay_transport;
36
d793d5e1
MD
37/*
38 * Keep the natural field alignment for _each field_ within this structure if
39 * you ever add/remove a field from this header. Packed attribute is not used
40 * because gcc generates poor code on at least powerpc and mips. Don't ever
41 * let gcc add padding between the structure elements.
fcf74578
MD
42 *
43 * The guarantee we have with timestamps is that all the events in a
44 * packet are included (inclusive) within the begin/end timestamps of
45 * the packet. Another guarantee we have is that the "timestamp begin",
46 * as well as the event timestamps, are monotonically increasing (never
47 * decrease) when moving forward in a stream (physically). But this
48 * guarantee does not apply to "timestamp end", because it is sampled at
49 * commit time, which is not ordered with respect to space reservation.
d793d5e1 50 */
9115fbdc 51
d793d5e1 52struct packet_header {
9115fbdc 53 /* Trace packet header */
d793d5e1
MD
54 uint32_t magic; /*
55 * Trace magic number.
56 * contains endianness information.
57 */
1ec3f75a 58 uint8_t uuid[16];
d793d5e1 59 uint32_t stream_id;
5594698f 60 uint64_t stream_instance_id;
9115fbdc
MD
61
62 struct {
63 /* Stream packet context */
64 uint64_t timestamp_begin; /* Cycle count at subbuffer start */
65 uint64_t timestamp_end; /* Cycle count at subbuffer end */
576ca06a
MD
66 uint64_t content_size; /* Size of data in subbuffer */
67 uint64_t packet_size; /* Subbuffer size (include padding) */
5b3cf4f9 68 uint64_t packet_seq_num; /* Packet sequence number */
a9afe705 69 unsigned long events_discarded; /*
9115fbdc
MD
70 * Events lost in this subbuffer since
71 * the beginning of the trace.
72 * (may overflow)
73 */
9115fbdc
MD
74 uint32_t cpu_id; /* CPU id associated with stream */
75 uint8_t header_end; /* End of header */
76 } ctx;
d793d5e1
MD
77};
78
cc62f29e
MD
79struct lttng_client_ctx {
80 size_t packet_context_len;
81 size_t event_context_len;
82};
d793d5e1 83
881833e3
MD
84static inline notrace u64 lib_ring_buffer_clock_read(struct channel *chan)
85{
86 return trace_clock_read64();
87}
88
f1676205 89static inline
cc62f29e
MD
90size_t ctx_get_aligned_size(size_t offset, struct lttng_ctx *ctx,
91 size_t ctx_len)
f1676205 92{
f1676205
MD
93 size_t orig_offset = offset;
94
95 if (likely(!ctx))
96 return 0;
a9dd15da 97 offset += lib_ring_buffer_align(offset, ctx->largest_align);
cc62f29e
MD
98 offset += ctx_len;
99 return offset - orig_offset;
100}
101
102static inline
1804b615
FD
103void ctx_get_struct_size(struct lttng_ctx *ctx, size_t *ctx_len,
104 struct lttng_channel *chan, struct lib_ring_buffer_ctx *bufctx)
cc62f29e
MD
105{
106 int i;
107 size_t offset = 0;
108
109 if (likely(!ctx)) {
110 *ctx_len = 0;
111 return;
112 }
1804b615
FD
113 for (i = 0; i < ctx->nr_fields; i++) {
114 if (ctx->fields[i].get_size)
115 offset += ctx->fields[i].get_size(offset);
116 if (ctx->fields[i].get_size_arg)
117 offset += ctx->fields[i].get_size_arg(offset,
118 &ctx->fields[i], bufctx, chan);
119 }
cc62f29e 120 *ctx_len = offset;
f1676205
MD
121}
122
123static inline
124void ctx_record(struct lib_ring_buffer_ctx *bufctx,
a90917c3 125 struct lttng_channel *chan,
f1676205
MD
126 struct lttng_ctx *ctx)
127{
128 int i;
129
130 if (likely(!ctx))
131 return;
a9dd15da 132 lib_ring_buffer_align_ctx(bufctx, ctx->largest_align);
f1676205
MD
133 for (i = 0; i < ctx->nr_fields; i++)
134 ctx->fields[i].record(&ctx->fields[i], bufctx, chan);
135}
136
881833e3
MD
137/*
138 * record_header_size - Calculate the header size and padding necessary.
139 * @config: ring buffer instance configuration
140 * @chan: channel
141 * @offset: offset in the write buffer
881833e3 142 * @pre_header_padding: padding to add before the header (output)
881833e3
MD
143 * @ctx: reservation context
144 *
145 * Returns the event header size (including padding).
146 *
881833e3
MD
147 * The payload must itself determine its own alignment from the biggest type it
148 * contains.
149 */
150static __inline__
c1cc82b8 151size_t record_header_size(const struct lib_ring_buffer_config *config,
881833e3 152 struct channel *chan, size_t offset,
64c796d8 153 size_t *pre_header_padding,
cc62f29e
MD
154 struct lib_ring_buffer_ctx *ctx,
155 struct lttng_client_ctx *client_ctx)
881833e3 156{
a90917c3 157 struct lttng_channel *lttng_chan = channel_get_private(chan);
79150a49
JD
158 struct lttng_probe_ctx *lttng_probe_ctx = ctx->priv;
159 struct lttng_event *event = lttng_probe_ctx->event;
881833e3
MD
160 size_t orig_offset = offset;
161 size_t padding;
162
a90917c3 163 switch (lttng_chan->header_type) {
9115fbdc 164 case 1: /* compact */
a90917c3 165 padding = lib_ring_buffer_align(offset, lttng_alignof(uint32_t));
9115fbdc 166 offset += padding;
a90917c3 167 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc
MD
168 offset += sizeof(uint32_t); /* id and timestamp */
169 } else {
a2ef1c03
MD
170 /* Minimum space taken by LTTNG_COMPACT_EVENT_BITS id */
171 offset += (LTTNG_COMPACT_EVENT_BITS + CHAR_BIT - 1) / CHAR_BIT;
9115fbdc 172 /* Align extended struct on largest member */
a90917c3 173 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 174 offset += sizeof(uint32_t); /* id */
a90917c3 175 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc
MD
176 offset += sizeof(uint64_t); /* timestamp */
177 }
178 break;
179 case 2: /* large */
a90917c3 180 padding = lib_ring_buffer_align(offset, lttng_alignof(uint16_t));
9115fbdc
MD
181 offset += padding;
182 offset += sizeof(uint16_t);
a90917c3
MD
183 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
184 offset += lib_ring_buffer_align(offset, lttng_alignof(uint32_t));
9115fbdc
MD
185 offset += sizeof(uint32_t); /* timestamp */
186 } else {
187 /* Align extended struct on largest member */
a90917c3 188 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 189 offset += sizeof(uint32_t); /* id */
a90917c3 190 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 191 offset += sizeof(uint64_t); /* timestamp */
881833e3 192 }
9115fbdc
MD
193 break;
194 default:
1b2e041f 195 padding = 0;
64c796d8 196 WARN_ON_ONCE(1);
881833e3 197 }
cc62f29e
MD
198 offset += ctx_get_aligned_size(offset, lttng_chan->ctx,
199 client_ctx->packet_context_len);
200 offset += ctx_get_aligned_size(offset, event->ctx,
201 client_ctx->event_context_len);
881833e3
MD
202
203 *pre_header_padding = padding;
204 return offset - orig_offset;
205}
206
bbd023d6 207#include <wrapper/ringbuffer/api.h>
881833e3 208
eb9a7857 209static
a90917c3 210void lttng_write_event_header_slow(const struct lib_ring_buffer_config *config,
881833e3 211 struct lib_ring_buffer_ctx *ctx,
64c796d8 212 uint32_t event_id);
881833e3
MD
213
214/*
a90917c3 215 * lttng_write_event_header
881833e3
MD
216 *
217 * Writes the event header to the offset (already aligned on 32-bits).
218 *
219 * @config: ring buffer instance configuration
220 * @ctx: reservation context
4e1f08f4 221 * @event_id: event ID
881833e3
MD
222 */
223static __inline__
a90917c3 224void lttng_write_event_header(const struct lib_ring_buffer_config *config,
881833e3 225 struct lib_ring_buffer_ctx *ctx,
64c796d8 226 uint32_t event_id)
881833e3 227{
a90917c3 228 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
79150a49
JD
229 struct lttng_probe_ctx *lttng_probe_ctx = ctx->priv;
230 struct lttng_event *event = lttng_probe_ctx->event;
881833e3
MD
231
232 if (unlikely(ctx->rflags))
233 goto slow_path;
234
a90917c3 235 switch (lttng_chan->header_type) {
9115fbdc
MD
236 case 1: /* compact */
237 {
238 uint32_t id_time = 0;
239
a2ef1c03
MD
240 bt_bitfield_write(&id_time, uint32_t,
241 0,
242 LTTNG_COMPACT_EVENT_BITS,
243 event_id);
244 bt_bitfield_write(&id_time, uint32_t,
245 LTTNG_COMPACT_EVENT_BITS,
246 LTTNG_COMPACT_TSC_BITS,
247 ctx->tsc);
9115fbdc
MD
248 lib_ring_buffer_write(config, ctx, &id_time, sizeof(id_time));
249 break;
250 }
251 case 2: /* large */
252 {
9115fbdc 253 uint32_t timestamp = (uint32_t) ctx->tsc;
7e855749 254 uint16_t id = event_id;
9115fbdc 255
7e855749 256 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
a90917c3 257 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint32_t));
9115fbdc
MD
258 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
259 break;
260 }
261 default:
64c796d8 262 WARN_ON_ONCE(1);
9115fbdc 263 }
f1676205 264
a90917c3
MD
265 ctx_record(ctx, lttng_chan, lttng_chan->ctx);
266 ctx_record(ctx, lttng_chan, event->ctx);
c595c36f 267 lib_ring_buffer_align_ctx(ctx, ctx->largest_align);
f1676205 268
9115fbdc 269 return;
881833e3
MD
270
271slow_path:
a90917c3 272 lttng_write_event_header_slow(config, ctx, event_id);
881833e3
MD
273}
274
eb9a7857 275static
a90917c3 276void lttng_write_event_header_slow(const struct lib_ring_buffer_config *config,
64c796d8
MD
277 struct lib_ring_buffer_ctx *ctx,
278 uint32_t event_id)
881833e3 279{
a90917c3 280 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
79150a49
JD
281 struct lttng_probe_ctx *lttng_probe_ctx = ctx->priv;
282 struct lttng_event *event = lttng_probe_ctx->event;
9115fbdc 283
a90917c3 284 switch (lttng_chan->header_type) {
9115fbdc 285 case 1: /* compact */
a90917c3 286 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc
MD
287 uint32_t id_time = 0;
288
a2ef1c03
MD
289 bt_bitfield_write(&id_time, uint32_t,
290 0,
291 LTTNG_COMPACT_EVENT_BITS,
292 event_id);
293 bt_bitfield_write(&id_time, uint32_t,
294 LTTNG_COMPACT_EVENT_BITS,
295 LTTNG_COMPACT_TSC_BITS, ctx->tsc);
9115fbdc
MD
296 lib_ring_buffer_write(config, ctx, &id_time, sizeof(id_time));
297 } else {
298 uint8_t id = 0;
9115fbdc
MD
299 uint64_t timestamp = ctx->tsc;
300
a2ef1c03
MD
301 bt_bitfield_write(&id, uint8_t,
302 0,
303 LTTNG_COMPACT_EVENT_BITS,
304 31);
9115fbdc
MD
305 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
306 /* Align extended struct on largest member */
a90917c3 307 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc 308 lib_ring_buffer_write(config, ctx, &event_id, sizeof(event_id));
a90917c3 309 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc
MD
310 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
311 }
881833e3 312 break;
9115fbdc
MD
313 case 2: /* large */
314 {
a90917c3 315 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc 316 uint32_t timestamp = (uint32_t) ctx->tsc;
7e855749 317 uint16_t id = event_id;
9115fbdc 318
7e855749 319 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
a90917c3 320 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint32_t));
9115fbdc
MD
321 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
322 } else {
64c796d8 323 uint16_t id = 65535;
9115fbdc
MD
324 uint64_t timestamp = ctx->tsc;
325
64c796d8 326 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
9115fbdc 327 /* Align extended struct on largest member */
a90917c3 328 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
64c796d8 329 lib_ring_buffer_write(config, ctx, &event_id, sizeof(event_id));
a90917c3 330 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc
MD
331 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
332 }
881833e3 333 break;
881833e3 334 }
9115fbdc 335 default:
64c796d8 336 WARN_ON_ONCE(1);
881833e3 337 }
a90917c3
MD
338 ctx_record(ctx, lttng_chan, lttng_chan->ctx);
339 ctx_record(ctx, lttng_chan, event->ctx);
c595c36f 340 lib_ring_buffer_align_ctx(ctx, ctx->largest_align);
881833e3
MD
341}
342
7514523f
MD
343static const struct lib_ring_buffer_config client_config;
344
345static u64 client_ring_buffer_clock_read(struct channel *chan)
346{
347 return lib_ring_buffer_clock_read(chan);
348}
349
1e2015dc 350static
7514523f
MD
351size_t client_record_header_size(const struct lib_ring_buffer_config *config,
352 struct channel *chan, size_t offset,
7514523f 353 size_t *pre_header_padding,
cc62f29e
MD
354 struct lib_ring_buffer_ctx *ctx,
355 void *client_ctx)
7514523f 356{
64c796d8 357 return record_header_size(config, chan, offset,
cc62f29e 358 pre_header_padding, ctx, client_ctx);
7514523f
MD
359}
360
361/**
1c25284c 362 * client_packet_header_size - called on buffer-switch to a new sub-buffer
7514523f
MD
363 *
364 * Return header size without padding after the structure. Don't use packed
365 * structure because gcc generates inefficient code on some architectures
366 * (powerpc, mips..)
367 */
1c25284c 368static size_t client_packet_header_size(void)
7514523f 369{
9115fbdc 370 return offsetof(struct packet_header, ctx.header_end);
7514523f
MD
371}
372
373static void client_buffer_begin(struct lib_ring_buffer *buf, u64 tsc,
374 unsigned int subbuf_idx)
375{
376 struct channel *chan = buf->backend.chan;
1c25284c
MD
377 struct packet_header *header =
378 (struct packet_header *)
7514523f
MD
379 lib_ring_buffer_offset_address(&buf->backend,
380 subbuf_idx * chan->backend.subbuf_size);
a90917c3
MD
381 struct lttng_channel *lttng_chan = channel_get_private(chan);
382 struct lttng_session *session = lttng_chan->session;
7514523f 383
d793d5e1 384 header->magic = CTF_MAGIC_NUMBER;
1ec3f75a 385 memcpy(header->uuid, session->uuid.b, sizeof(session->uuid));
a90917c3 386 header->stream_id = lttng_chan->id;
5594698f 387 header->stream_instance_id = buf->backend.cpu;
9115fbdc
MD
388 header->ctx.timestamp_begin = tsc;
389 header->ctx.timestamp_end = 0;
576ca06a
MD
390 header->ctx.content_size = ~0ULL; /* for debugging */
391 header->ctx.packet_size = ~0ULL;
5b3cf4f9
JD
392 header->ctx.packet_seq_num = chan->backend.num_subbuf * \
393 buf->backend.buf_cnt[subbuf_idx].seq_cnt + \
394 subbuf_idx;
9115fbdc 395 header->ctx.events_discarded = 0;
9115fbdc 396 header->ctx.cpu_id = buf->backend.cpu;
7514523f
MD
397}
398
399/*
400 * offset is assumed to never be 0 here : never deliver a completely empty
401 * subbuffer. data_size is between 1 and subbuf_size.
402 */
403static void client_buffer_end(struct lib_ring_buffer *buf, u64 tsc,
404 unsigned int subbuf_idx, unsigned long data_size)
405{
406 struct channel *chan = buf->backend.chan;
1c25284c
MD
407 struct packet_header *header =
408 (struct packet_header *)
7514523f
MD
409 lib_ring_buffer_offset_address(&buf->backend,
410 subbuf_idx * chan->backend.subbuf_size);
411 unsigned long records_lost = 0;
412
9115fbdc 413 header->ctx.timestamp_end = tsc;
f9e4e1b9
MD
414 header->ctx.content_size =
415 (uint64_t) data_size * CHAR_BIT; /* in bits */
416 header->ctx.packet_size =
417 (uint64_t) PAGE_ALIGN(data_size) * CHAR_BIT; /* in bits */
7514523f
MD
418 records_lost += lib_ring_buffer_get_records_lost_full(&client_config, buf);
419 records_lost += lib_ring_buffer_get_records_lost_wrap(&client_config, buf);
420 records_lost += lib_ring_buffer_get_records_lost_big(&client_config, buf);
9115fbdc 421 header->ctx.events_discarded = records_lost;
7514523f
MD
422}
423
424static int client_buffer_create(struct lib_ring_buffer *buf, void *priv,
425 int cpu, const char *name)
426{
1c25284c 427 return 0;
7514523f
MD
428}
429
430static void client_buffer_finalize(struct lib_ring_buffer *buf, void *priv, int cpu)
431{
7514523f
MD
432}
433
3b731ab1
JD
434static struct packet_header *client_packet_header(
435 const struct lib_ring_buffer_config *config,
436 struct lib_ring_buffer *buf)
437{
53700162 438 return lib_ring_buffer_read_offset_address(&buf->backend, 0);
3b731ab1
JD
439}
440
441static int client_timestamp_begin(const struct lib_ring_buffer_config *config,
442 struct lib_ring_buffer *buf,
443 uint64_t *timestamp_begin)
444{
445 struct packet_header *header = client_packet_header(config, buf);
446 *timestamp_begin = header->ctx.timestamp_begin;
447
448 return 0;
449}
450
451static int client_timestamp_end(const struct lib_ring_buffer_config *config,
452 struct lib_ring_buffer *buf,
453 uint64_t *timestamp_end)
454{
455 struct packet_header *header = client_packet_header(config, buf);
456 *timestamp_end = header->ctx.timestamp_end;
457
458 return 0;
459}
460
461static int client_events_discarded(const struct lib_ring_buffer_config *config,
462 struct lib_ring_buffer *buf,
463 uint64_t *events_discarded)
464{
465 struct packet_header *header = client_packet_header(config, buf);
466 *events_discarded = header->ctx.events_discarded;
467
468 return 0;
469}
470
471static int client_content_size(const struct lib_ring_buffer_config *config,
472 struct lib_ring_buffer *buf,
473 uint64_t *content_size)
474{
475 struct packet_header *header = client_packet_header(config, buf);
476 *content_size = header->ctx.content_size;
477
478 return 0;
479}
480
481static int client_packet_size(const struct lib_ring_buffer_config *config,
482 struct lib_ring_buffer *buf,
483 uint64_t *packet_size)
484{
485 struct packet_header *header = client_packet_header(config, buf);
486 *packet_size = header->ctx.packet_size;
487
488 return 0;
489}
490
491static int client_stream_id(const struct lib_ring_buffer_config *config,
492 struct lib_ring_buffer *buf,
493 uint64_t *stream_id)
494{
495 struct packet_header *header = client_packet_header(config, buf);
496 *stream_id = header->stream_id;
497
498 return 0;
499}
500
2348ca17
JD
501static int client_current_timestamp(const struct lib_ring_buffer_config *config,
502 struct lib_ring_buffer *bufb,
503 uint64_t *ts)
504{
505 *ts = config->cb.ring_buffer_clock_read(bufb->backend.chan);
506
507 return 0;
508}
509
5b3cf4f9
JD
510static int client_sequence_number(const struct lib_ring_buffer_config *config,
511 struct lib_ring_buffer *buf,
512 uint64_t *seq)
513{
514 struct packet_header *header = client_packet_header(config, buf);
515
516 *seq = header->ctx.packet_seq_num;
517
518 return 0;
519}
520
5594698f
JD
521static
522int client_instance_id(const struct lib_ring_buffer_config *config,
523 struct lib_ring_buffer *buf,
524 uint64_t *id)
525{
526 struct packet_header *header = client_packet_header(config, buf);
527 *id = header->stream_instance_id;
528
529 return 0;
530}
531
7514523f
MD
532static const struct lib_ring_buffer_config client_config = {
533 .cb.ring_buffer_clock_read = client_ring_buffer_clock_read,
534 .cb.record_header_size = client_record_header_size,
1c25284c 535 .cb.subbuffer_header_size = client_packet_header_size,
7514523f
MD
536 .cb.buffer_begin = client_buffer_begin,
537 .cb.buffer_end = client_buffer_end,
538 .cb.buffer_create = client_buffer_create,
539 .cb.buffer_finalize = client_buffer_finalize,
540
a2ef1c03 541 .tsc_bits = LTTNG_COMPACT_TSC_BITS,
7514523f
MD
542 .alloc = RING_BUFFER_ALLOC_PER_CPU,
543 .sync = RING_BUFFER_SYNC_PER_CPU,
3d084699 544 .mode = RING_BUFFER_MODE_TEMPLATE,
7514523f 545 .backend = RING_BUFFER_PAGE,
2db1399a 546 .output = RING_BUFFER_OUTPUT_TEMPLATE,
7514523f
MD
547 .oops = RING_BUFFER_OOPS_CONSISTENCY,
548 .ipi = RING_BUFFER_IPI_BARRIER,
549 .wakeup = RING_BUFFER_WAKEUP_BY_TIMER,
550};
551
dd5a0db3
MD
552static
553void release_priv_ops(void *priv_ops)
554{
555 module_put(THIS_MODULE);
556}
557
558static
559void lttng_channel_destroy(struct channel *chan)
560{
561 channel_destroy(chan);
562}
563
1e2015dc 564static
1c25284c 565struct channel *_channel_create(const char *name,
a90917c3 566 struct lttng_channel *lttng_chan, void *buf_addr,
1c25284c
MD
567 size_t subbuf_size, size_t num_subbuf,
568 unsigned int switch_timer_interval,
569 unsigned int read_timer_interval)
7514523f 570{
dd5a0db3
MD
571 struct channel *chan;
572
573 chan = channel_create(&client_config, name, lttng_chan, buf_addr,
7514523f
MD
574 subbuf_size, num_subbuf, switch_timer_interval,
575 read_timer_interval);
dd5a0db3
MD
576 if (chan) {
577 /*
578 * Ensure this module is not unloaded before we finish
579 * using lttng_relay_transport.ops.
580 */
581 if (!try_module_get(THIS_MODULE)) {
582 printk(KERN_WARNING "LTT : Can't lock transport module.\n");
583 goto error;
584 }
585 chan->backend.priv_ops = &lttng_relay_transport.ops;
586 chan->backend.release_priv_ops = release_priv_ops;
587 }
588 return chan;
7514523f 589
dd5a0db3
MD
590error:
591 lttng_channel_destroy(chan);
592 return NULL;
7514523f
MD
593}
594
ad1c05e1 595static
a90917c3 596struct lib_ring_buffer *lttng_buffer_read_open(struct channel *chan)
ad1c05e1
MD
597{
598 struct lib_ring_buffer *buf;
599 int cpu;
600
1c25284c
MD
601 for_each_channel_cpu(cpu, chan) {
602 buf = channel_get_ring_buffer(&client_config, chan, cpu);
ad1c05e1
MD
603 if (!lib_ring_buffer_open_read(buf))
604 return buf;
605 }
606 return NULL;
607}
608
f71ecafa 609static
a90917c3 610int lttng_buffer_has_read_closed_stream(struct channel *chan)
f71ecafa
MD
611{
612 struct lib_ring_buffer *buf;
613 int cpu;
614
615 for_each_channel_cpu(cpu, chan) {
616 buf = channel_get_ring_buffer(&client_config, chan, cpu);
617 if (!atomic_long_read(&buf->active_readers))
618 return 1;
619 }
620 return 0;
621}
622
ad1c05e1 623static
a90917c3 624void lttng_buffer_read_close(struct lib_ring_buffer *buf)
ad1c05e1
MD
625{
626 lib_ring_buffer_release_read(buf);
1c25284c
MD
627}
628
c099397a 629static
a90917c3 630int lttng_event_reserve(struct lib_ring_buffer_ctx *ctx,
64c796d8 631 uint32_t event_id)
1c25284c 632{
a90917c3 633 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
cc62f29e
MD
634 struct lttng_probe_ctx *lttng_probe_ctx = ctx->priv;
635 struct lttng_event *event = lttng_probe_ctx->event;
636 struct lttng_client_ctx client_ctx;
1c25284c
MD
637 int ret, cpu;
638
639 cpu = lib_ring_buffer_get_cpu(&client_config);
5ebb028f 640 if (unlikely(cpu < 0))
1c25284c
MD
641 return -EPERM;
642 ctx->cpu = cpu;
e755470c
FD
643
644 /* Compute internal size of context structures. */
645 ctx_get_struct_size(lttng_chan->ctx, &client_ctx.packet_context_len, lttng_chan, ctx);
646 ctx_get_struct_size(event->ctx, &client_ctx.event_context_len, lttng_chan, ctx);
1c25284c 647
a90917c3 648 switch (lttng_chan->header_type) {
64c796d8
MD
649 case 1: /* compact */
650 if (event_id > 30)
a90917c3 651 ctx->rflags |= LTTNG_RFLAG_EXTENDED;
64c796d8
MD
652 break;
653 case 2: /* large */
654 if (event_id > 65534)
a90917c3 655 ctx->rflags |= LTTNG_RFLAG_EXTENDED;
64c796d8
MD
656 break;
657 default:
658 WARN_ON_ONCE(1);
659 }
660
cc62f29e 661 ret = lib_ring_buffer_reserve(&client_config, ctx, &client_ctx);
5ebb028f 662 if (unlikely(ret))
1c25284c 663 goto put;
85a07c33
MD
664 lib_ring_buffer_backend_get_pages(&client_config, ctx,
665 &ctx->backend_pages);
a90917c3 666 lttng_write_event_header(&client_config, ctx, event_id);
4e1f08f4 667 return 0;
1c25284c
MD
668put:
669 lib_ring_buffer_put_cpu(&client_config);
670 return ret;
ad1c05e1
MD
671}
672
c099397a 673static
a90917c3 674void lttng_event_commit(struct lib_ring_buffer_ctx *ctx)
1c25284c
MD
675{
676 lib_ring_buffer_commit(&client_config, ctx);
677 lib_ring_buffer_put_cpu(&client_config);
678}
679
c099397a 680static
a90917c3 681void lttng_event_write(struct lib_ring_buffer_ctx *ctx, const void *src,
e763dbf5
MD
682 size_t len)
683{
684 lib_ring_buffer_write(&client_config, ctx, src, len);
685}
1c25284c 686
4ea00e4f 687static
a90917c3 688void lttng_event_write_from_user(struct lib_ring_buffer_ctx *ctx,
4ea00e4f
JD
689 const void __user *src, size_t len)
690{
7b8ea3a5 691 lib_ring_buffer_copy_from_user_inatomic(&client_config, ctx, src, len);
4ea00e4f
JD
692}
693
58aa5d24 694static
a90917c3 695void lttng_event_memset(struct lib_ring_buffer_ctx *ctx,
58aa5d24
MD
696 int c, size_t len)
697{
698 lib_ring_buffer_memset(&client_config, ctx, c, len);
699}
700
16f78f3a
MD
701static
702void lttng_event_strcpy(struct lib_ring_buffer_ctx *ctx, const char *src,
703 size_t len)
704{
705 lib_ring_buffer_strcpy(&client_config, ctx, src, len, '#');
706}
707
708static
709void lttng_event_strcpy_from_user(struct lib_ring_buffer_ctx *ctx,
710 const char __user *src, size_t len)
711{
712 lib_ring_buffer_strcpy_from_user_inatomic(&client_config, ctx, src,
713 len, '#');
714}
715
c099397a 716static
a90917c3 717wait_queue_head_t *lttng_get_writer_buf_wait_queue(struct channel *chan, int cpu)
c099397a 718{
71c1d843
MD
719 struct lib_ring_buffer *buf = channel_get_ring_buffer(&client_config,
720 chan, cpu);
721 return &buf->write_wait;
24cedcfe
MD
722}
723
724static
a90917c3 725wait_queue_head_t *lttng_get_hp_wait_queue(struct channel *chan)
24cedcfe
MD
726{
727 return &chan->hp_wait;
728}
729
730static
a90917c3 731int lttng_is_finalized(struct channel *chan)
24cedcfe
MD
732{
733 return lib_ring_buffer_channel_is_finalized(chan);
c099397a
MD
734}
735
254ec7bc 736static
a90917c3 737int lttng_is_disabled(struct channel *chan)
254ec7bc
MD
738{
739 return lib_ring_buffer_channel_is_disabled(chan);
740}
741
a90917c3 742static struct lttng_transport lttng_relay_transport = {
3d084699 743 .name = "relay-" RING_BUFFER_MODE_TEMPLATE_STRING,
7514523f
MD
744 .owner = THIS_MODULE,
745 .ops = {
1c25284c 746 .channel_create = _channel_create,
a90917c3
MD
747 .channel_destroy = lttng_channel_destroy,
748 .buffer_read_open = lttng_buffer_read_open,
f71ecafa 749 .buffer_has_read_closed_stream =
a90917c3
MD
750 lttng_buffer_has_read_closed_stream,
751 .buffer_read_close = lttng_buffer_read_close,
752 .event_reserve = lttng_event_reserve,
753 .event_commit = lttng_event_commit,
754 .event_write = lttng_event_write,
755 .event_write_from_user = lttng_event_write_from_user,
756 .event_memset = lttng_event_memset,
16f78f3a
MD
757 .event_strcpy = lttng_event_strcpy,
758 .event_strcpy_from_user = lttng_event_strcpy_from_user,
1ec3f75a 759 .packet_avail_size = NULL, /* Would be racy anyway */
a90917c3
MD
760 .get_writer_buf_wait_queue = lttng_get_writer_buf_wait_queue,
761 .get_hp_wait_queue = lttng_get_hp_wait_queue,
762 .is_finalized = lttng_is_finalized,
763 .is_disabled = lttng_is_disabled,
67a80835
MD
764 .timestamp_begin = client_timestamp_begin,
765 .timestamp_end = client_timestamp_end,
766 .events_discarded = client_events_discarded,
767 .content_size = client_content_size,
768 .packet_size = client_packet_size,
769 .stream_id = client_stream_id,
770 .current_timestamp = client_current_timestamp,
5b3cf4f9 771 .sequence_number = client_sequence_number,
5594698f 772 .instance_id = client_instance_id,
7514523f
MD
773 },
774};
775
a90917c3 776static int __init lttng_ring_buffer_client_init(void)
7514523f 777{
a509e133
MD
778 /*
779 * This vmalloc sync all also takes care of the lib ring buffer
780 * vmalloc'd module pages when it is built as a module into LTTng.
781 */
6d2a620c 782 wrapper_vmalloc_sync_all();
a90917c3 783 lttng_transport_register(&lttng_relay_transport);
7514523f
MD
784 return 0;
785}
786
a90917c3 787module_init(lttng_ring_buffer_client_init);
1c25284c 788
a90917c3 789static void __exit lttng_ring_buffer_client_exit(void)
7514523f 790{
a90917c3 791 lttng_transport_unregister(&lttng_relay_transport);
7514523f
MD
792}
793
a90917c3 794module_exit(lttng_ring_buffer_client_exit);
1c25284c 795
7514523f
MD
796MODULE_LICENSE("GPL and additional rights");
797MODULE_AUTHOR("Mathieu Desnoyers");
3d084699
MD
798MODULE_DESCRIPTION("LTTng ring buffer " RING_BUFFER_MODE_TEMPLATE_STRING
799 " client");
This page took 0.073694 seconds and 4 git commands to generate.