Import fix from LTSI: 3.4+ RT kernels use CONFIG_PREEMPT_RT_FULL
[lttng-modules.git] / lttng-events.c
1 /*
2 * lttng-events.c
3 *
4 * Holds LTTng per-session event registry.
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 <linux/module.h>
24 #include <linux/list.h>
25 #include <linux/mutex.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
28 #include <linux/jiffies.h>
29 #include <linux/utsname.h>
30 #include "wrapper/uuid.h"
31 #include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
32 #include "wrapper/random.h"
33 #include "wrapper/tracepoint.h"
34 #include "lttng-kernel-version.h"
35 #include "lttng-events.h"
36 #include "lttng-tracer.h"
37 #include "lttng-abi-old.h"
38
39 #define METADATA_CACHE_DEFAULT_SIZE 4096
40
41 static LIST_HEAD(sessions);
42 static LIST_HEAD(lttng_transport_list);
43 /*
44 * Protect the sessions and metadata caches.
45 */
46 static DEFINE_MUTEX(sessions_mutex);
47 static struct kmem_cache *event_cache;
48
49 static void _lttng_event_destroy(struct lttng_event *event);
50 static void _lttng_channel_destroy(struct lttng_channel *chan);
51 static int _lttng_event_unregister(struct lttng_event *event);
52 static
53 int _lttng_event_metadata_statedump(struct lttng_session *session,
54 struct lttng_channel *chan,
55 struct lttng_event *event);
56 static
57 int _lttng_session_metadata_statedump(struct lttng_session *session);
58 static
59 void _lttng_metadata_channel_hangup(struct lttng_metadata_stream *stream);
60
61 void synchronize_trace(void)
62 {
63 synchronize_sched();
64 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
65 #ifdef CONFIG_PREEMPT_RT_FULL
66 synchronize_rcu();
67 #endif
68 #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0)) */
69 #ifdef CONFIG_PREEMPT_RT
70 synchronize_rcu();
71 #endif
72 #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0)) */
73 }
74
75 struct lttng_session *lttng_session_create(void)
76 {
77 struct lttng_session *session;
78 struct lttng_metadata_cache *metadata_cache;
79
80 mutex_lock(&sessions_mutex);
81 session = kzalloc(sizeof(struct lttng_session), GFP_KERNEL);
82 if (!session)
83 goto err;
84 INIT_LIST_HEAD(&session->chan);
85 INIT_LIST_HEAD(&session->events);
86 uuid_le_gen(&session->uuid);
87
88 metadata_cache = kzalloc(sizeof(struct lttng_metadata_cache),
89 GFP_KERNEL);
90 if (!metadata_cache)
91 goto err_free_session;
92 metadata_cache->data = kzalloc(METADATA_CACHE_DEFAULT_SIZE,
93 GFP_KERNEL);
94 if (!metadata_cache->data)
95 goto err_free_cache;
96 metadata_cache->cache_alloc = METADATA_CACHE_DEFAULT_SIZE;
97 kref_init(&metadata_cache->refcount);
98 session->metadata_cache = metadata_cache;
99 INIT_LIST_HEAD(&metadata_cache->metadata_stream);
100 list_add(&session->list, &sessions);
101 mutex_unlock(&sessions_mutex);
102 return session;
103
104 err_free_cache:
105 kfree(metadata_cache);
106 err_free_session:
107 kfree(session);
108 err:
109 mutex_unlock(&sessions_mutex);
110 return NULL;
111 }
112
113 void metadata_cache_destroy(struct kref *kref)
114 {
115 struct lttng_metadata_cache *cache =
116 container_of(kref, struct lttng_metadata_cache, refcount);
117 kfree(cache->data);
118 kfree(cache);
119 }
120
121 void lttng_session_destroy(struct lttng_session *session)
122 {
123 struct lttng_channel *chan, *tmpchan;
124 struct lttng_event *event, *tmpevent;
125 struct lttng_metadata_stream *metadata_stream;
126 int ret;
127
128 mutex_lock(&sessions_mutex);
129 ACCESS_ONCE(session->active) = 0;
130 list_for_each_entry(chan, &session->chan, list) {
131 ret = lttng_syscalls_unregister(chan);
132 WARN_ON(ret);
133 }
134 list_for_each_entry(event, &session->events, list) {
135 ret = _lttng_event_unregister(event);
136 WARN_ON(ret);
137 }
138 synchronize_trace(); /* Wait for in-flight events to complete */
139 list_for_each_entry_safe(event, tmpevent, &session->events, list)
140 _lttng_event_destroy(event);
141 list_for_each_entry_safe(chan, tmpchan, &session->chan, list) {
142 BUG_ON(chan->channel_type == METADATA_CHANNEL);
143 _lttng_channel_destroy(chan);
144 }
145 list_for_each_entry(metadata_stream, &session->metadata_cache->metadata_stream, list)
146 _lttng_metadata_channel_hangup(metadata_stream);
147 kref_put(&session->metadata_cache->refcount, metadata_cache_destroy);
148 list_del(&session->list);
149 mutex_unlock(&sessions_mutex);
150 kfree(session);
151 }
152
153 int lttng_session_enable(struct lttng_session *session)
154 {
155 int ret = 0;
156 struct lttng_channel *chan;
157
158 mutex_lock(&sessions_mutex);
159 if (session->active) {
160 ret = -EBUSY;
161 goto end;
162 }
163
164 /*
165 * Snapshot the number of events per channel to know the type of header
166 * we need to use.
167 */
168 list_for_each_entry(chan, &session->chan, list) {
169 if (chan->header_type)
170 continue; /* don't change it if session stop/restart */
171 if (chan->free_event_id < 31)
172 chan->header_type = 1; /* compact */
173 else
174 chan->header_type = 2; /* large */
175 }
176
177 ACCESS_ONCE(session->active) = 1;
178 ACCESS_ONCE(session->been_active) = 1;
179 ret = _lttng_session_metadata_statedump(session);
180 if (ret) {
181 ACCESS_ONCE(session->active) = 0;
182 goto end;
183 }
184 ret = lttng_statedump_start(session);
185 if (ret)
186 ACCESS_ONCE(session->active) = 0;
187 end:
188 mutex_unlock(&sessions_mutex);
189 return ret;
190 }
191
192 int lttng_session_disable(struct lttng_session *session)
193 {
194 int ret = 0;
195
196 mutex_lock(&sessions_mutex);
197 if (!session->active) {
198 ret = -EBUSY;
199 goto end;
200 }
201 ACCESS_ONCE(session->active) = 0;
202 end:
203 mutex_unlock(&sessions_mutex);
204 return ret;
205 }
206
207 int lttng_channel_enable(struct lttng_channel *channel)
208 {
209 int old;
210
211 if (channel->channel_type == METADATA_CHANNEL)
212 return -EPERM;
213 old = xchg(&channel->enabled, 1);
214 if (old)
215 return -EEXIST;
216 return 0;
217 }
218
219 int lttng_channel_disable(struct lttng_channel *channel)
220 {
221 int old;
222
223 if (channel->channel_type == METADATA_CHANNEL)
224 return -EPERM;
225 old = xchg(&channel->enabled, 0);
226 if (!old)
227 return -EEXIST;
228 return 0;
229 }
230
231 int lttng_event_enable(struct lttng_event *event)
232 {
233 int old;
234
235 if (event->chan->channel_type == METADATA_CHANNEL)
236 return -EPERM;
237 old = xchg(&event->enabled, 1);
238 if (old)
239 return -EEXIST;
240 return 0;
241 }
242
243 int lttng_event_disable(struct lttng_event *event)
244 {
245 int old;
246
247 if (event->chan->channel_type == METADATA_CHANNEL)
248 return -EPERM;
249 old = xchg(&event->enabled, 0);
250 if (!old)
251 return -EEXIST;
252 return 0;
253 }
254
255 static struct lttng_transport *lttng_transport_find(const char *name)
256 {
257 struct lttng_transport *transport;
258
259 list_for_each_entry(transport, &lttng_transport_list, node) {
260 if (!strcmp(transport->name, name))
261 return transport;
262 }
263 return NULL;
264 }
265
266 struct lttng_channel *lttng_channel_create(struct lttng_session *session,
267 const char *transport_name,
268 void *buf_addr,
269 size_t subbuf_size, size_t num_subbuf,
270 unsigned int switch_timer_interval,
271 unsigned int read_timer_interval,
272 enum channel_type channel_type)
273 {
274 struct lttng_channel *chan;
275 struct lttng_transport *transport = NULL;
276
277 mutex_lock(&sessions_mutex);
278 if (session->been_active && channel_type != METADATA_CHANNEL)
279 goto active; /* Refuse to add channel to active session */
280 transport = lttng_transport_find(transport_name);
281 if (!transport) {
282 printk(KERN_WARNING "LTTng transport %s not found\n",
283 transport_name);
284 goto notransport;
285 }
286 if (!try_module_get(transport->owner)) {
287 printk(KERN_WARNING "LTT : Can't lock transport module.\n");
288 goto notransport;
289 }
290 chan = kzalloc(sizeof(struct lttng_channel), GFP_KERNEL);
291 if (!chan)
292 goto nomem;
293 chan->session = session;
294 chan->id = session->free_chan_id++;
295 chan->ops = &transport->ops;
296 /*
297 * Note: the channel creation op already writes into the packet
298 * headers. Therefore the "chan" information used as input
299 * should be already accessible.
300 */
301 chan->chan = transport->ops.channel_create(transport_name,
302 chan, buf_addr, subbuf_size, num_subbuf,
303 switch_timer_interval, read_timer_interval);
304 if (!chan->chan)
305 goto create_error;
306 chan->enabled = 1;
307 chan->transport = transport;
308 chan->channel_type = channel_type;
309 list_add(&chan->list, &session->chan);
310 mutex_unlock(&sessions_mutex);
311 return chan;
312
313 create_error:
314 kfree(chan);
315 nomem:
316 if (transport)
317 module_put(transport->owner);
318 notransport:
319 active:
320 mutex_unlock(&sessions_mutex);
321 return NULL;
322 }
323
324 /*
325 * Only used internally at session destruction for per-cpu channels, and
326 * when metadata channel is released.
327 * Needs to be called with sessions mutex held.
328 */
329 static
330 void _lttng_channel_destroy(struct lttng_channel *chan)
331 {
332 chan->ops->channel_destroy(chan->chan);
333 module_put(chan->transport->owner);
334 list_del(&chan->list);
335 lttng_destroy_context(chan->ctx);
336 kfree(chan);
337 }
338
339 void lttng_metadata_channel_destroy(struct lttng_channel *chan)
340 {
341 BUG_ON(chan->channel_type != METADATA_CHANNEL);
342
343 /* Protect the metadata cache with the sessions_mutex. */
344 mutex_lock(&sessions_mutex);
345 _lttng_channel_destroy(chan);
346 mutex_unlock(&sessions_mutex);
347 }
348 EXPORT_SYMBOL_GPL(lttng_metadata_channel_destroy);
349
350 static
351 void _lttng_metadata_channel_hangup(struct lttng_metadata_stream *stream)
352 {
353 stream->finalized = 1;
354 wake_up_interruptible(&stream->read_wait);
355 }
356
357 /*
358 * Supports event creation while tracing session is active.
359 */
360 struct lttng_event *lttng_event_create(struct lttng_channel *chan,
361 struct lttng_kernel_event *event_param,
362 void *filter,
363 const struct lttng_event_desc *internal_desc)
364 {
365 struct lttng_event *event;
366 int ret;
367
368 mutex_lock(&sessions_mutex);
369 if (chan->free_event_id == -1U)
370 goto full;
371 /*
372 * This is O(n^2) (for each event, the loop is called at event
373 * creation). Might require a hash if we have lots of events.
374 */
375 list_for_each_entry(event, &chan->session->events, list)
376 if (!strcmp(event->desc->name, event_param->name))
377 goto exist;
378 event = kmem_cache_zalloc(event_cache, GFP_KERNEL);
379 if (!event)
380 goto cache_error;
381 event->chan = chan;
382 event->filter = filter;
383 event->id = chan->free_event_id++;
384 event->enabled = 1;
385 event->instrumentation = event_param->instrumentation;
386 /* Populate lttng_event structure before tracepoint registration. */
387 smp_wmb();
388 switch (event_param->instrumentation) {
389 case LTTNG_KERNEL_TRACEPOINT:
390 event->desc = lttng_event_get(event_param->name);
391 if (!event->desc)
392 goto register_error;
393 ret = kabi_2635_tracepoint_probe_register(event_param->name,
394 event->desc->probe_callback,
395 event);
396 if (ret)
397 goto register_error;
398 break;
399 case LTTNG_KERNEL_KPROBE:
400 ret = lttng_kprobes_register(event_param->name,
401 event_param->u.kprobe.symbol_name,
402 event_param->u.kprobe.offset,
403 event_param->u.kprobe.addr,
404 event);
405 if (ret)
406 goto register_error;
407 ret = try_module_get(event->desc->owner);
408 WARN_ON_ONCE(!ret);
409 break;
410 case LTTNG_KERNEL_KRETPROBE:
411 {
412 struct lttng_event *event_return;
413
414 /* kretprobe defines 2 events */
415 event_return =
416 kmem_cache_zalloc(event_cache, GFP_KERNEL);
417 if (!event_return)
418 goto register_error;
419 event_return->chan = chan;
420 event_return->filter = filter;
421 event_return->id = chan->free_event_id++;
422 event_return->enabled = 1;
423 event_return->instrumentation = event_param->instrumentation;
424 /*
425 * Populate lttng_event structure before kretprobe registration.
426 */
427 smp_wmb();
428 ret = lttng_kretprobes_register(event_param->name,
429 event_param->u.kretprobe.symbol_name,
430 event_param->u.kretprobe.offset,
431 event_param->u.kretprobe.addr,
432 event, event_return);
433 if (ret) {
434 kmem_cache_free(event_cache, event_return);
435 goto register_error;
436 }
437 /* Take 2 refs on the module: one per event. */
438 ret = try_module_get(event->desc->owner);
439 WARN_ON_ONCE(!ret);
440 ret = try_module_get(event->desc->owner);
441 WARN_ON_ONCE(!ret);
442 ret = _lttng_event_metadata_statedump(chan->session, chan,
443 event_return);
444 if (ret) {
445 kmem_cache_free(event_cache, event_return);
446 module_put(event->desc->owner);
447 module_put(event->desc->owner);
448 goto statedump_error;
449 }
450 list_add(&event_return->list, &chan->session->events);
451 break;
452 }
453 case LTTNG_KERNEL_FUNCTION:
454 ret = lttng_ftrace_register(event_param->name,
455 event_param->u.ftrace.symbol_name,
456 event);
457 if (ret)
458 goto register_error;
459 ret = try_module_get(event->desc->owner);
460 WARN_ON_ONCE(!ret);
461 break;
462 case LTTNG_KERNEL_NOOP:
463 event->desc = internal_desc;
464 if (!event->desc)
465 goto register_error;
466 break;
467 default:
468 WARN_ON_ONCE(1);
469 }
470 ret = _lttng_event_metadata_statedump(chan->session, chan, event);
471 if (ret)
472 goto statedump_error;
473 list_add(&event->list, &chan->session->events);
474 mutex_unlock(&sessions_mutex);
475 return event;
476
477 statedump_error:
478 /* If a statedump error occurs, events will not be readable. */
479 register_error:
480 kmem_cache_free(event_cache, event);
481 cache_error:
482 exist:
483 full:
484 mutex_unlock(&sessions_mutex);
485 return NULL;
486 }
487
488 /*
489 * Only used internally at session destruction.
490 */
491 int _lttng_event_unregister(struct lttng_event *event)
492 {
493 int ret = -EINVAL;
494
495 switch (event->instrumentation) {
496 case LTTNG_KERNEL_TRACEPOINT:
497 ret = kabi_2635_tracepoint_probe_unregister(event->desc->name,
498 event->desc->probe_callback,
499 event);
500 if (ret)
501 return ret;
502 break;
503 case LTTNG_KERNEL_KPROBE:
504 lttng_kprobes_unregister(event);
505 ret = 0;
506 break;
507 case LTTNG_KERNEL_KRETPROBE:
508 lttng_kretprobes_unregister(event);
509 ret = 0;
510 break;
511 case LTTNG_KERNEL_FUNCTION:
512 lttng_ftrace_unregister(event);
513 ret = 0;
514 break;
515 case LTTNG_KERNEL_NOOP:
516 ret = 0;
517 break;
518 default:
519 WARN_ON_ONCE(1);
520 }
521 return ret;
522 }
523
524 /*
525 * Only used internally at session destruction.
526 */
527 static
528 void _lttng_event_destroy(struct lttng_event *event)
529 {
530 switch (event->instrumentation) {
531 case LTTNG_KERNEL_TRACEPOINT:
532 lttng_event_put(event->desc);
533 break;
534 case LTTNG_KERNEL_KPROBE:
535 module_put(event->desc->owner);
536 lttng_kprobes_destroy_private(event);
537 break;
538 case LTTNG_KERNEL_KRETPROBE:
539 module_put(event->desc->owner);
540 lttng_kretprobes_destroy_private(event);
541 break;
542 case LTTNG_KERNEL_FUNCTION:
543 module_put(event->desc->owner);
544 lttng_ftrace_destroy_private(event);
545 break;
546 case LTTNG_KERNEL_NOOP:
547 break;
548 default:
549 WARN_ON_ONCE(1);
550 }
551 list_del(&event->list);
552 lttng_destroy_context(event->ctx);
553 kmem_cache_free(event_cache, event);
554 }
555
556 /*
557 * Serialize at most one packet worth of metadata into a metadata
558 * channel.
559 * We have exclusive access to our metadata buffer (protected by the
560 * sessions_mutex), so we can do racy operations such as looking for
561 * remaining space left in packet and write, since mutual exclusion
562 * protects us from concurrent writes.
563 * Returns the number of bytes written in the channel, 0 if no data
564 * was written and a negative value on error.
565 */
566 int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
567 struct channel *chan)
568 {
569 struct lib_ring_buffer_ctx ctx;
570 int ret = 0;
571 size_t len, reserve_len;
572
573 /*
574 * Ensure we support mutiple get_next / put sequences followed
575 * by put_next.
576 */
577 WARN_ON(stream->metadata_in < stream->metadata_out);
578 if (stream->metadata_in != stream->metadata_out)
579 return 0;
580
581 len = stream->metadata_cache->metadata_written -
582 stream->metadata_in;
583 if (!len)
584 return 0;
585 reserve_len = min_t(size_t,
586 stream->transport->ops.packet_avail_size(chan),
587 len);
588 lib_ring_buffer_ctx_init(&ctx, chan, NULL, reserve_len,
589 sizeof(char), -1);
590 /*
591 * If reservation failed, return an error to the caller.
592 */
593 ret = stream->transport->ops.event_reserve(&ctx, 0);
594 if (ret != 0) {
595 printk(KERN_WARNING "LTTng: Metadata event reservation failed\n");
596 goto end;
597 }
598 stream->transport->ops.event_write(&ctx,
599 stream->metadata_cache->data + stream->metadata_in,
600 reserve_len);
601 stream->transport->ops.event_commit(&ctx);
602 stream->metadata_in += reserve_len;
603 ret = reserve_len;
604
605 end:
606 return ret;
607 }
608
609 /*
610 * Write the metadata to the metadata cache.
611 * Must be called with sessions_mutex held.
612 */
613 int lttng_metadata_printf(struct lttng_session *session,
614 const char *fmt, ...)
615 {
616 char *str;
617 size_t len;
618 va_list ap;
619 struct lttng_metadata_stream *stream;
620
621 WARN_ON_ONCE(!ACCESS_ONCE(session->active));
622
623 va_start(ap, fmt);
624 str = kvasprintf(GFP_KERNEL, fmt, ap);
625 va_end(ap);
626 if (!str)
627 return -ENOMEM;
628
629 len = strlen(str);
630 if (session->metadata_cache->metadata_written + len >
631 session->metadata_cache->cache_alloc) {
632 char *tmp_cache_realloc;
633 unsigned int tmp_cache_alloc_size;
634
635 tmp_cache_alloc_size = max_t(unsigned int,
636 session->metadata_cache->cache_alloc + len,
637 session->metadata_cache->cache_alloc << 1);
638 tmp_cache_realloc = krealloc(session->metadata_cache->data,
639 tmp_cache_alloc_size, GFP_KERNEL);
640 if (!tmp_cache_realloc)
641 goto err;
642 session->metadata_cache->cache_alloc = tmp_cache_alloc_size;
643 session->metadata_cache->data = tmp_cache_realloc;
644 }
645 memcpy(session->metadata_cache->data +
646 session->metadata_cache->metadata_written,
647 str, len);
648 session->metadata_cache->metadata_written += len;
649 kfree(str);
650
651 list_for_each_entry(stream, &session->metadata_cache->metadata_stream, list)
652 wake_up_interruptible(&stream->read_wait);
653
654 return 0;
655
656 err:
657 kfree(str);
658 return -ENOMEM;
659 }
660
661 /*
662 * Must be called with sessions_mutex held.
663 */
664 static
665 int _lttng_field_statedump(struct lttng_session *session,
666 const struct lttng_event_field *field)
667 {
668 int ret = 0;
669
670 switch (field->type.atype) {
671 case atype_integer:
672 ret = lttng_metadata_printf(session,
673 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s;\n",
674 field->type.u.basic.integer.size,
675 field->type.u.basic.integer.alignment,
676 field->type.u.basic.integer.signedness,
677 (field->type.u.basic.integer.encoding == lttng_encode_none)
678 ? "none"
679 : (field->type.u.basic.integer.encoding == lttng_encode_UTF8)
680 ? "UTF8"
681 : "ASCII",
682 field->type.u.basic.integer.base,
683 #ifdef __BIG_ENDIAN
684 field->type.u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
685 #else
686 field->type.u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
687 #endif
688 field->name);
689 break;
690 case atype_enum:
691 ret = lttng_metadata_printf(session,
692 " %s _%s;\n",
693 field->type.u.basic.enumeration.name,
694 field->name);
695 break;
696 case atype_array:
697 {
698 const struct lttng_basic_type *elem_type;
699
700 elem_type = &field->type.u.array.elem_type;
701 ret = lttng_metadata_printf(session,
702 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[%u];\n",
703 elem_type->u.basic.integer.size,
704 elem_type->u.basic.integer.alignment,
705 elem_type->u.basic.integer.signedness,
706 (elem_type->u.basic.integer.encoding == lttng_encode_none)
707 ? "none"
708 : (elem_type->u.basic.integer.encoding == lttng_encode_UTF8)
709 ? "UTF8"
710 : "ASCII",
711 elem_type->u.basic.integer.base,
712 #ifdef __BIG_ENDIAN
713 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
714 #else
715 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
716 #endif
717 field->name, field->type.u.array.length);
718 break;
719 }
720 case atype_sequence:
721 {
722 const struct lttng_basic_type *elem_type;
723 const struct lttng_basic_type *length_type;
724
725 elem_type = &field->type.u.sequence.elem_type;
726 length_type = &field->type.u.sequence.length_type;
727 ret = lttng_metadata_printf(session,
728 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } __%s_length;\n",
729 length_type->u.basic.integer.size,
730 (unsigned int) length_type->u.basic.integer.alignment,
731 length_type->u.basic.integer.signedness,
732 (length_type->u.basic.integer.encoding == lttng_encode_none)
733 ? "none"
734 : ((length_type->u.basic.integer.encoding == lttng_encode_UTF8)
735 ? "UTF8"
736 : "ASCII"),
737 length_type->u.basic.integer.base,
738 #ifdef __BIG_ENDIAN
739 length_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
740 #else
741 length_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
742 #endif
743 field->name);
744 if (ret)
745 return ret;
746
747 ret = lttng_metadata_printf(session,
748 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[ __%s_length ];\n",
749 elem_type->u.basic.integer.size,
750 (unsigned int) elem_type->u.basic.integer.alignment,
751 elem_type->u.basic.integer.signedness,
752 (elem_type->u.basic.integer.encoding == lttng_encode_none)
753 ? "none"
754 : ((elem_type->u.basic.integer.encoding == lttng_encode_UTF8)
755 ? "UTF8"
756 : "ASCII"),
757 elem_type->u.basic.integer.base,
758 #ifdef __BIG_ENDIAN
759 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
760 #else
761 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
762 #endif
763 field->name,
764 field->name);
765 break;
766 }
767
768 case atype_string:
769 /* Default encoding is UTF8 */
770 ret = lttng_metadata_printf(session,
771 " string%s _%s;\n",
772 field->type.u.basic.string.encoding == lttng_encode_ASCII ?
773 " { encoding = ASCII; }" : "",
774 field->name);
775 break;
776 default:
777 WARN_ON_ONCE(1);
778 return -EINVAL;
779 }
780 return ret;
781 }
782
783 static
784 int _lttng_context_metadata_statedump(struct lttng_session *session,
785 struct lttng_ctx *ctx)
786 {
787 int ret = 0;
788 int i;
789
790 if (!ctx)
791 return 0;
792 for (i = 0; i < ctx->nr_fields; i++) {
793 const struct lttng_ctx_field *field = &ctx->fields[i];
794
795 ret = _lttng_field_statedump(session, &field->event_field);
796 if (ret)
797 return ret;
798 }
799 return ret;
800 }
801
802 static
803 int _lttng_fields_metadata_statedump(struct lttng_session *session,
804 struct lttng_event *event)
805 {
806 const struct lttng_event_desc *desc = event->desc;
807 int ret = 0;
808 int i;
809
810 for (i = 0; i < desc->nr_fields; i++) {
811 const struct lttng_event_field *field = &desc->fields[i];
812
813 ret = _lttng_field_statedump(session, field);
814 if (ret)
815 return ret;
816 }
817 return ret;
818 }
819
820 /*
821 * Must be called with sessions_mutex held.
822 */
823 static
824 int _lttng_event_metadata_statedump(struct lttng_session *session,
825 struct lttng_channel *chan,
826 struct lttng_event *event)
827 {
828 int ret = 0;
829
830 if (event->metadata_dumped || !ACCESS_ONCE(session->active))
831 return 0;
832 if (chan->channel_type == METADATA_CHANNEL)
833 return 0;
834
835 ret = lttng_metadata_printf(session,
836 "event {\n"
837 " name = %s;\n"
838 " id = %u;\n"
839 " stream_id = %u;\n",
840 event->desc->name,
841 event->id,
842 event->chan->id);
843 if (ret)
844 goto end;
845
846 if (event->ctx) {
847 ret = lttng_metadata_printf(session,
848 " context := struct {\n");
849 if (ret)
850 goto end;
851 }
852 ret = _lttng_context_metadata_statedump(session, event->ctx);
853 if (ret)
854 goto end;
855 if (event->ctx) {
856 ret = lttng_metadata_printf(session,
857 " };\n");
858 if (ret)
859 goto end;
860 }
861
862 ret = lttng_metadata_printf(session,
863 " fields := struct {\n"
864 );
865 if (ret)
866 goto end;
867
868 ret = _lttng_fields_metadata_statedump(session, event);
869 if (ret)
870 goto end;
871
872 /*
873 * LTTng space reservation can only reserve multiples of the
874 * byte size.
875 */
876 ret = lttng_metadata_printf(session,
877 " };\n"
878 "};\n\n");
879 if (ret)
880 goto end;
881
882 event->metadata_dumped = 1;
883 end:
884 return ret;
885
886 }
887
888 /*
889 * Must be called with sessions_mutex held.
890 */
891 static
892 int _lttng_channel_metadata_statedump(struct lttng_session *session,
893 struct lttng_channel *chan)
894 {
895 int ret = 0;
896
897 if (chan->metadata_dumped || !ACCESS_ONCE(session->active))
898 return 0;
899
900 if (chan->channel_type == METADATA_CHANNEL)
901 return 0;
902
903 WARN_ON_ONCE(!chan->header_type);
904 ret = lttng_metadata_printf(session,
905 "stream {\n"
906 " id = %u;\n"
907 " event.header := %s;\n"
908 " packet.context := struct packet_context;\n",
909 chan->id,
910 chan->header_type == 1 ? "struct event_header_compact" :
911 "struct event_header_large");
912 if (ret)
913 goto end;
914
915 if (chan->ctx) {
916 ret = lttng_metadata_printf(session,
917 " event.context := struct {\n");
918 if (ret)
919 goto end;
920 }
921 ret = _lttng_context_metadata_statedump(session, chan->ctx);
922 if (ret)
923 goto end;
924 if (chan->ctx) {
925 ret = lttng_metadata_printf(session,
926 " };\n");
927 if (ret)
928 goto end;
929 }
930
931 ret = lttng_metadata_printf(session,
932 "};\n\n");
933
934 chan->metadata_dumped = 1;
935 end:
936 return ret;
937 }
938
939 /*
940 * Must be called with sessions_mutex held.
941 */
942 static
943 int _lttng_stream_packet_context_declare(struct lttng_session *session)
944 {
945 return lttng_metadata_printf(session,
946 "struct packet_context {\n"
947 " uint64_clock_monotonic_t timestamp_begin;\n"
948 " uint64_clock_monotonic_t timestamp_end;\n"
949 " uint64_t content_size;\n"
950 " uint64_t packet_size;\n"
951 " unsigned long events_discarded;\n"
952 " uint32_t cpu_id;\n"
953 "};\n\n"
954 );
955 }
956
957 /*
958 * Compact header:
959 * id: range: 0 - 30.
960 * id 31 is reserved to indicate an extended header.
961 *
962 * Large header:
963 * id: range: 0 - 65534.
964 * id 65535 is reserved to indicate an extended header.
965 *
966 * Must be called with sessions_mutex held.
967 */
968 static
969 int _lttng_event_header_declare(struct lttng_session *session)
970 {
971 return lttng_metadata_printf(session,
972 "struct event_header_compact {\n"
973 " enum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
974 " variant <id> {\n"
975 " struct {\n"
976 " uint27_clock_monotonic_t timestamp;\n"
977 " } compact;\n"
978 " struct {\n"
979 " uint32_t id;\n"
980 " uint64_clock_monotonic_t timestamp;\n"
981 " } extended;\n"
982 " } v;\n"
983 "} align(%u);\n"
984 "\n"
985 "struct event_header_large {\n"
986 " enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;\n"
987 " variant <id> {\n"
988 " struct {\n"
989 " uint32_clock_monotonic_t timestamp;\n"
990 " } compact;\n"
991 " struct {\n"
992 " uint32_t id;\n"
993 " uint64_clock_monotonic_t timestamp;\n"
994 " } extended;\n"
995 " } v;\n"
996 "} align(%u);\n\n",
997 lttng_alignof(uint32_t) * CHAR_BIT,
998 lttng_alignof(uint16_t) * CHAR_BIT
999 );
1000 }
1001
1002 /*
1003 * Approximation of NTP time of day to clock monotonic correlation,
1004 * taken at start of trace.
1005 * Yes, this is only an approximation. Yes, we can (and will) do better
1006 * in future versions.
1007 */
1008 static
1009 uint64_t measure_clock_offset(void)
1010 {
1011 uint64_t offset, monotonic[2], realtime;
1012 struct timespec rts = { 0, 0 };
1013 unsigned long flags;
1014
1015 /* Disable interrupts to increase correlation precision. */
1016 local_irq_save(flags);
1017 monotonic[0] = trace_clock_read64();
1018 getnstimeofday(&rts);
1019 monotonic[1] = trace_clock_read64();
1020 local_irq_restore(flags);
1021
1022 offset = (monotonic[0] + monotonic[1]) >> 1;
1023 realtime = (uint64_t) rts.tv_sec * NSEC_PER_SEC;
1024 realtime += rts.tv_nsec;
1025 offset = realtime - offset;
1026 return offset;
1027 }
1028
1029 /*
1030 * Output metadata into this session's metadata buffers.
1031 * Must be called with sessions_mutex held.
1032 */
1033 static
1034 int _lttng_session_metadata_statedump(struct lttng_session *session)
1035 {
1036 unsigned char *uuid_c = session->uuid.b;
1037 unsigned char uuid_s[37], clock_uuid_s[BOOT_ID_LEN];
1038 struct lttng_channel *chan;
1039 struct lttng_event *event;
1040 int ret = 0;
1041
1042 if (!ACCESS_ONCE(session->active))
1043 return 0;
1044 if (session->metadata_dumped)
1045 goto skip_session;
1046
1047 snprintf(uuid_s, sizeof(uuid_s),
1048 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
1049 uuid_c[0], uuid_c[1], uuid_c[2], uuid_c[3],
1050 uuid_c[4], uuid_c[5], uuid_c[6], uuid_c[7],
1051 uuid_c[8], uuid_c[9], uuid_c[10], uuid_c[11],
1052 uuid_c[12], uuid_c[13], uuid_c[14], uuid_c[15]);
1053
1054 ret = lttng_metadata_printf(session,
1055 "typealias integer { size = 8; align = %u; signed = false; } := uint8_t;\n"
1056 "typealias integer { size = 16; align = %u; signed = false; } := uint16_t;\n"
1057 "typealias integer { size = 32; align = %u; signed = false; } := uint32_t;\n"
1058 "typealias integer { size = 64; align = %u; signed = false; } := uint64_t;\n"
1059 "typealias integer { size = %u; align = %u; signed = false; } := unsigned long;\n"
1060 "typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
1061 "typealias integer { size = 27; align = 1; signed = false; } := uint27_t;\n"
1062 "\n"
1063 "trace {\n"
1064 " major = %u;\n"
1065 " minor = %u;\n"
1066 " uuid = \"%s\";\n"
1067 " byte_order = %s;\n"
1068 " packet.header := struct {\n"
1069 " uint32_t magic;\n"
1070 " uint8_t uuid[16];\n"
1071 " uint32_t stream_id;\n"
1072 " };\n"
1073 "};\n\n",
1074 lttng_alignof(uint8_t) * CHAR_BIT,
1075 lttng_alignof(uint16_t) * CHAR_BIT,
1076 lttng_alignof(uint32_t) * CHAR_BIT,
1077 lttng_alignof(uint64_t) * CHAR_BIT,
1078 sizeof(unsigned long) * CHAR_BIT,
1079 lttng_alignof(unsigned long) * CHAR_BIT,
1080 CTF_SPEC_MAJOR,
1081 CTF_SPEC_MINOR,
1082 uuid_s,
1083 #ifdef __BIG_ENDIAN
1084 "be"
1085 #else
1086 "le"
1087 #endif
1088 );
1089 if (ret)
1090 goto end;
1091
1092 ret = lttng_metadata_printf(session,
1093 "env {\n"
1094 " hostname = \"%s\";\n"
1095 " domain = \"kernel\";\n"
1096 " sysname = \"%s\";\n"
1097 " kernel_release = \"%s\";\n"
1098 " kernel_version = \"%s\";\n"
1099 " tracer_name = \"lttng-modules\";\n"
1100 " tracer_major = %d;\n"
1101 " tracer_minor = %d;\n"
1102 " tracer_patchlevel = %d;\n"
1103 "};\n\n",
1104 current->nsproxy->uts_ns->name.nodename,
1105 utsname()->sysname,
1106 utsname()->release,
1107 utsname()->version,
1108 LTTNG_MODULES_MAJOR_VERSION,
1109 LTTNG_MODULES_MINOR_VERSION,
1110 LTTNG_MODULES_PATCHLEVEL_VERSION
1111 );
1112 if (ret)
1113 goto end;
1114
1115 ret = lttng_metadata_printf(session,
1116 "clock {\n"
1117 " name = %s;\n",
1118 "monotonic"
1119 );
1120 if (ret)
1121 goto end;
1122
1123 if (!trace_clock_uuid(clock_uuid_s)) {
1124 ret = lttng_metadata_printf(session,
1125 " uuid = \"%s\";\n",
1126 clock_uuid_s
1127 );
1128 if (ret)
1129 goto end;
1130 }
1131
1132 ret = lttng_metadata_printf(session,
1133 " description = \"Monotonic Clock\";\n"
1134 " freq = %llu; /* Frequency, in Hz */\n"
1135 " /* clock value offset from Epoch is: offset * (1/freq) */\n"
1136 " offset = %llu;\n"
1137 "};\n\n",
1138 (unsigned long long) trace_clock_freq(),
1139 (unsigned long long) measure_clock_offset()
1140 );
1141 if (ret)
1142 goto end;
1143
1144 ret = lttng_metadata_printf(session,
1145 "typealias integer {\n"
1146 " size = 27; align = 1; signed = false;\n"
1147 " map = clock.monotonic.value;\n"
1148 "} := uint27_clock_monotonic_t;\n"
1149 "\n"
1150 "typealias integer {\n"
1151 " size = 32; align = %u; signed = false;\n"
1152 " map = clock.monotonic.value;\n"
1153 "} := uint32_clock_monotonic_t;\n"
1154 "\n"
1155 "typealias integer {\n"
1156 " size = 64; align = %u; signed = false;\n"
1157 " map = clock.monotonic.value;\n"
1158 "} := uint64_clock_monotonic_t;\n\n",
1159 lttng_alignof(uint32_t) * CHAR_BIT,
1160 lttng_alignof(uint64_t) * CHAR_BIT
1161 );
1162 if (ret)
1163 goto end;
1164
1165 ret = _lttng_stream_packet_context_declare(session);
1166 if (ret)
1167 goto end;
1168
1169 ret = _lttng_event_header_declare(session);
1170 if (ret)
1171 goto end;
1172
1173 skip_session:
1174 list_for_each_entry(chan, &session->chan, list) {
1175 ret = _lttng_channel_metadata_statedump(session, chan);
1176 if (ret)
1177 goto end;
1178 }
1179
1180 list_for_each_entry(event, &session->events, list) {
1181 ret = _lttng_event_metadata_statedump(session, event->chan, event);
1182 if (ret)
1183 goto end;
1184 }
1185 session->metadata_dumped = 1;
1186 end:
1187 return ret;
1188 }
1189
1190 /**
1191 * lttng_transport_register - LTT transport registration
1192 * @transport: transport structure
1193 *
1194 * Registers a transport which can be used as output to extract the data out of
1195 * LTTng. The module calling this registration function must ensure that no
1196 * trap-inducing code will be executed by the transport functions. E.g.
1197 * vmalloc_sync_all() must be called between a vmalloc and the moment the memory
1198 * is made visible to the transport function. This registration acts as a
1199 * vmalloc_sync_all. Therefore, only if the module allocates virtual memory
1200 * after its registration must it synchronize the TLBs.
1201 */
1202 void lttng_transport_register(struct lttng_transport *transport)
1203 {
1204 /*
1205 * Make sure no page fault can be triggered by the module about to be
1206 * registered. We deal with this here so we don't have to call
1207 * vmalloc_sync_all() in each module's init.
1208 */
1209 wrapper_vmalloc_sync_all();
1210
1211 mutex_lock(&sessions_mutex);
1212 list_add_tail(&transport->node, &lttng_transport_list);
1213 mutex_unlock(&sessions_mutex);
1214 }
1215 EXPORT_SYMBOL_GPL(lttng_transport_register);
1216
1217 /**
1218 * lttng_transport_unregister - LTT transport unregistration
1219 * @transport: transport structure
1220 */
1221 void lttng_transport_unregister(struct lttng_transport *transport)
1222 {
1223 mutex_lock(&sessions_mutex);
1224 list_del(&transport->node);
1225 mutex_unlock(&sessions_mutex);
1226 }
1227 EXPORT_SYMBOL_GPL(lttng_transport_unregister);
1228
1229 static int __init lttng_events_init(void)
1230 {
1231 int ret;
1232
1233 event_cache = KMEM_CACHE(lttng_event, 0);
1234 if (!event_cache)
1235 return -ENOMEM;
1236 ret = lttng_abi_init();
1237 if (ret)
1238 goto error_abi;
1239 return 0;
1240 error_abi:
1241 kmem_cache_destroy(event_cache);
1242 return ret;
1243 }
1244
1245 module_init(lttng_events_init);
1246
1247 static void __exit lttng_events_exit(void)
1248 {
1249 struct lttng_session *session, *tmpsession;
1250
1251 lttng_abi_exit();
1252 list_for_each_entry_safe(session, tmpsession, &sessions, list)
1253 lttng_session_destroy(session);
1254 kmem_cache_destroy(event_cache);
1255 }
1256
1257 module_exit(lttng_events_exit);
1258
1259 MODULE_LICENSE("GPL and additional rights");
1260 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
1261 MODULE_DESCRIPTION("LTTng Events");
This page took 0.059983 seconds and 5 git commands to generate.