5061a050ce1f7e7453fce3721998e75f0fcadaad
[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 /*
296 * Note: the channel creation op already writes into the packet
297 * headers. Therefore the "chan" information used as input
298 * should be already accessible.
299 */
300 chan->chan = transport->ops.channel_create(transport_name,
301 chan, buf_addr, subbuf_size, num_subbuf,
302 switch_timer_interval, read_timer_interval);
303 if (!chan->chan)
304 goto create_error;
305 chan->enabled = 1;
306 chan->ops = &transport->ops;
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 goto register_error;
470 }
471 ret = _lttng_event_metadata_statedump(chan->session, chan, event);
472 if (ret)
473 goto statedump_error;
474 list_add(&event->list, &chan->session->events);
475 mutex_unlock(&sessions_mutex);
476 return event;
477
478 statedump_error:
479 /* If a statedump error occurs, events will not be readable. */
480 register_error:
481 kmem_cache_free(event_cache, event);
482 cache_error:
483 exist:
484 full:
485 mutex_unlock(&sessions_mutex);
486 return NULL;
487 }
488
489 /*
490 * Only used internally at session destruction.
491 */
492 int _lttng_event_unregister(struct lttng_event *event)
493 {
494 int ret = -EINVAL;
495
496 switch (event->instrumentation) {
497 case LTTNG_KERNEL_TRACEPOINT:
498 ret = kabi_2635_tracepoint_probe_unregister(event->desc->name,
499 event->desc->probe_callback,
500 event);
501 if (ret)
502 return ret;
503 break;
504 case LTTNG_KERNEL_KPROBE:
505 lttng_kprobes_unregister(event);
506 ret = 0;
507 break;
508 case LTTNG_KERNEL_KRETPROBE:
509 lttng_kretprobes_unregister(event);
510 ret = 0;
511 break;
512 case LTTNG_KERNEL_FUNCTION:
513 lttng_ftrace_unregister(event);
514 ret = 0;
515 break;
516 case LTTNG_KERNEL_NOOP:
517 ret = 0;
518 break;
519 default:
520 WARN_ON_ONCE(1);
521 }
522 return ret;
523 }
524
525 /*
526 * Only used internally at session destruction.
527 */
528 static
529 void _lttng_event_destroy(struct lttng_event *event)
530 {
531 switch (event->instrumentation) {
532 case LTTNG_KERNEL_TRACEPOINT:
533 lttng_event_put(event->desc);
534 break;
535 case LTTNG_KERNEL_KPROBE:
536 module_put(event->desc->owner);
537 lttng_kprobes_destroy_private(event);
538 break;
539 case LTTNG_KERNEL_KRETPROBE:
540 module_put(event->desc->owner);
541 lttng_kretprobes_destroy_private(event);
542 break;
543 case LTTNG_KERNEL_FUNCTION:
544 module_put(event->desc->owner);
545 lttng_ftrace_destroy_private(event);
546 break;
547 case LTTNG_KERNEL_NOOP:
548 break;
549 default:
550 WARN_ON_ONCE(1);
551 }
552 list_del(&event->list);
553 lttng_destroy_context(event->ctx);
554 kmem_cache_free(event_cache, event);
555 }
556
557 /*
558 * Serialize at most one packet worth of metadata into a metadata
559 * channel.
560 * We have exclusive access to our metadata buffer (protected by the
561 * sessions_mutex), so we can do racy operations such as looking for
562 * remaining space left in packet and write, since mutual exclusion
563 * protects us from concurrent writes.
564 */
565 int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
566 struct channel *chan)
567 {
568 struct lib_ring_buffer_ctx ctx;
569 int ret = 0;
570 size_t len, reserve_len;
571
572 /*
573 * Ensure we support mutiple get_next / put sequences followed
574 * by put_next.
575 */
576 WARN_ON(stream->metadata_in < stream->metadata_out);
577 if (stream->metadata_in != stream->metadata_out)
578 return 0;
579
580 len = stream->metadata_cache->metadata_written -
581 stream->metadata_in;
582 if (!len)
583 return 0;
584 reserve_len = min_t(size_t,
585 stream->transport->ops.packet_avail_size(chan),
586 len);
587 lib_ring_buffer_ctx_init(&ctx, chan, NULL, reserve_len,
588 sizeof(char), -1);
589 /*
590 * If reservation failed, return an error to the caller.
591 */
592 ret = stream->transport->ops.event_reserve(&ctx, 0);
593 if (ret != 0) {
594 printk(KERN_WARNING "LTTng: Metadata event reservation failed\n");
595 goto end;
596 }
597 stream->transport->ops.event_write(&ctx,
598 stream->metadata_cache->data + stream->metadata_in,
599 reserve_len);
600 stream->transport->ops.event_commit(&ctx);
601 stream->metadata_in += reserve_len;
602 ret = reserve_len;
603
604 end:
605 return ret;
606 }
607
608 /*
609 * Write the metadata to the metadata cache.
610 * Must be called with sessions_mutex held.
611 */
612 int lttng_metadata_printf(struct lttng_session *session,
613 const char *fmt, ...)
614 {
615 char *str;
616 size_t len;
617 va_list ap;
618 struct lttng_metadata_stream *stream;
619
620 WARN_ON_ONCE(!ACCESS_ONCE(session->active));
621
622 va_start(ap, fmt);
623 str = kvasprintf(GFP_KERNEL, fmt, ap);
624 va_end(ap);
625 if (!str)
626 return -ENOMEM;
627
628 len = strlen(str);
629 if (session->metadata_cache->metadata_written + len >
630 session->metadata_cache->cache_alloc) {
631 char *tmp_cache_realloc;
632 unsigned int tmp_cache_alloc_size;
633
634 tmp_cache_alloc_size = max_t(unsigned int,
635 session->metadata_cache->cache_alloc + len,
636 session->metadata_cache->cache_alloc << 1);
637 tmp_cache_realloc = krealloc(session->metadata_cache->data,
638 tmp_cache_alloc_size, GFP_KERNEL);
639 if (!tmp_cache_realloc)
640 goto err;
641 session->metadata_cache->cache_alloc = tmp_cache_alloc_size;
642 session->metadata_cache->data = tmp_cache_realloc;
643 }
644 memcpy(session->metadata_cache->data +
645 session->metadata_cache->metadata_written,
646 str, len);
647 session->metadata_cache->metadata_written += len;
648 kfree(str);
649
650 list_for_each_entry(stream, &session->metadata_cache->metadata_stream, list)
651 wake_up_interruptible(&stream->read_wait);
652
653 return 0;
654
655 err:
656 kfree(str);
657 return -ENOMEM;
658 }
659
660 /*
661 * Must be called with sessions_mutex held.
662 */
663 static
664 int _lttng_field_statedump(struct lttng_session *session,
665 const struct lttng_event_field *field)
666 {
667 int ret = 0;
668
669 switch (field->type.atype) {
670 case atype_integer:
671 ret = lttng_metadata_printf(session,
672 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s;\n",
673 field->type.u.basic.integer.size,
674 field->type.u.basic.integer.alignment,
675 field->type.u.basic.integer.signedness,
676 (field->type.u.basic.integer.encoding == lttng_encode_none)
677 ? "none"
678 : (field->type.u.basic.integer.encoding == lttng_encode_UTF8)
679 ? "UTF8"
680 : "ASCII",
681 field->type.u.basic.integer.base,
682 #ifdef __BIG_ENDIAN
683 field->type.u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
684 #else
685 field->type.u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
686 #endif
687 field->name);
688 break;
689 case atype_enum:
690 ret = lttng_metadata_printf(session,
691 " %s _%s;\n",
692 field->type.u.basic.enumeration.name,
693 field->name);
694 break;
695 case atype_array:
696 {
697 const struct lttng_basic_type *elem_type;
698
699 elem_type = &field->type.u.array.elem_type;
700 ret = lttng_metadata_printf(session,
701 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[%u];\n",
702 elem_type->u.basic.integer.size,
703 elem_type->u.basic.integer.alignment,
704 elem_type->u.basic.integer.signedness,
705 (elem_type->u.basic.integer.encoding == lttng_encode_none)
706 ? "none"
707 : (elem_type->u.basic.integer.encoding == lttng_encode_UTF8)
708 ? "UTF8"
709 : "ASCII",
710 elem_type->u.basic.integer.base,
711 #ifdef __BIG_ENDIAN
712 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
713 #else
714 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
715 #endif
716 field->name, field->type.u.array.length);
717 break;
718 }
719 case atype_sequence:
720 {
721 const struct lttng_basic_type *elem_type;
722 const struct lttng_basic_type *length_type;
723
724 elem_type = &field->type.u.sequence.elem_type;
725 length_type = &field->type.u.sequence.length_type;
726 ret = lttng_metadata_printf(session,
727 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } __%s_length;\n",
728 length_type->u.basic.integer.size,
729 (unsigned int) length_type->u.basic.integer.alignment,
730 length_type->u.basic.integer.signedness,
731 (length_type->u.basic.integer.encoding == lttng_encode_none)
732 ? "none"
733 : ((length_type->u.basic.integer.encoding == lttng_encode_UTF8)
734 ? "UTF8"
735 : "ASCII"),
736 length_type->u.basic.integer.base,
737 #ifdef __BIG_ENDIAN
738 length_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
739 #else
740 length_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
741 #endif
742 field->name);
743 if (ret)
744 return ret;
745
746 ret = lttng_metadata_printf(session,
747 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[ __%s_length ];\n",
748 elem_type->u.basic.integer.size,
749 (unsigned int) elem_type->u.basic.integer.alignment,
750 elem_type->u.basic.integer.signedness,
751 (elem_type->u.basic.integer.encoding == lttng_encode_none)
752 ? "none"
753 : ((elem_type->u.basic.integer.encoding == lttng_encode_UTF8)
754 ? "UTF8"
755 : "ASCII"),
756 elem_type->u.basic.integer.base,
757 #ifdef __BIG_ENDIAN
758 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = le;" : "",
759 #else
760 elem_type->u.basic.integer.reverse_byte_order ? " byte_order = be;" : "",
761 #endif
762 field->name,
763 field->name);
764 break;
765 }
766
767 case atype_string:
768 /* Default encoding is UTF8 */
769 ret = lttng_metadata_printf(session,
770 " string%s _%s;\n",
771 field->type.u.basic.string.encoding == lttng_encode_ASCII ?
772 " { encoding = ASCII; }" : "",
773 field->name);
774 break;
775 default:
776 WARN_ON_ONCE(1);
777 return -EINVAL;
778 }
779 return ret;
780 }
781
782 static
783 int _lttng_context_metadata_statedump(struct lttng_session *session,
784 struct lttng_ctx *ctx)
785 {
786 int ret = 0;
787 int i;
788
789 if (!ctx)
790 return 0;
791 for (i = 0; i < ctx->nr_fields; i++) {
792 const struct lttng_ctx_field *field = &ctx->fields[i];
793
794 ret = _lttng_field_statedump(session, &field->event_field);
795 if (ret)
796 return ret;
797 }
798 return ret;
799 }
800
801 static
802 int _lttng_fields_metadata_statedump(struct lttng_session *session,
803 struct lttng_event *event)
804 {
805 const struct lttng_event_desc *desc = event->desc;
806 int ret = 0;
807 int i;
808
809 for (i = 0; i < desc->nr_fields; i++) {
810 const struct lttng_event_field *field = &desc->fields[i];
811
812 ret = _lttng_field_statedump(session, field);
813 if (ret)
814 return ret;
815 }
816 return ret;
817 }
818
819 /*
820 * Must be called with sessions_mutex held.
821 */
822 static
823 int _lttng_event_metadata_statedump(struct lttng_session *session,
824 struct lttng_channel *chan,
825 struct lttng_event *event)
826 {
827 int ret = 0;
828
829 if (event->metadata_dumped || !ACCESS_ONCE(session->active))
830 return 0;
831 if (chan->channel_type == METADATA_CHANNEL)
832 return 0;
833
834 ret = lttng_metadata_printf(session,
835 "event {\n"
836 " name = %s;\n"
837 " id = %u;\n"
838 " stream_id = %u;\n",
839 event->desc->name,
840 event->id,
841 event->chan->id);
842 if (ret)
843 goto end;
844
845 if (event->ctx) {
846 ret = lttng_metadata_printf(session,
847 " context := struct {\n");
848 if (ret)
849 goto end;
850 }
851 ret = _lttng_context_metadata_statedump(session, event->ctx);
852 if (ret)
853 goto end;
854 if (event->ctx) {
855 ret = lttng_metadata_printf(session,
856 " };\n");
857 if (ret)
858 goto end;
859 }
860
861 ret = lttng_metadata_printf(session,
862 " fields := struct {\n"
863 );
864 if (ret)
865 goto end;
866
867 ret = _lttng_fields_metadata_statedump(session, event);
868 if (ret)
869 goto end;
870
871 /*
872 * LTTng space reservation can only reserve multiples of the
873 * byte size.
874 */
875 ret = lttng_metadata_printf(session,
876 " };\n"
877 "};\n\n");
878 if (ret)
879 goto end;
880
881 event->metadata_dumped = 1;
882 end:
883 return ret;
884
885 }
886
887 /*
888 * Must be called with sessions_mutex held.
889 */
890 static
891 int _lttng_channel_metadata_statedump(struct lttng_session *session,
892 struct lttng_channel *chan)
893 {
894 int ret = 0;
895
896 if (chan->metadata_dumped || !ACCESS_ONCE(session->active))
897 return 0;
898
899 if (chan->channel_type == METADATA_CHANNEL)
900 return 0;
901
902 WARN_ON_ONCE(!chan->header_type);
903 ret = lttng_metadata_printf(session,
904 "stream {\n"
905 " id = %u;\n"
906 " event.header := %s;\n"
907 " packet.context := struct packet_context;\n",
908 chan->id,
909 chan->header_type == 1 ? "struct event_header_compact" :
910 "struct event_header_large");
911 if (ret)
912 goto end;
913
914 if (chan->ctx) {
915 ret = lttng_metadata_printf(session,
916 " event.context := struct {\n");
917 if (ret)
918 goto end;
919 }
920 ret = _lttng_context_metadata_statedump(session, chan->ctx);
921 if (ret)
922 goto end;
923 if (chan->ctx) {
924 ret = lttng_metadata_printf(session,
925 " };\n");
926 if (ret)
927 goto end;
928 }
929
930 ret = lttng_metadata_printf(session,
931 "};\n\n");
932
933 chan->metadata_dumped = 1;
934 end:
935 return ret;
936 }
937
938 /*
939 * Must be called with sessions_mutex held.
940 */
941 static
942 int _lttng_stream_packet_context_declare(struct lttng_session *session)
943 {
944 return lttng_metadata_printf(session,
945 "struct packet_context {\n"
946 " uint64_clock_monotonic_t timestamp_begin;\n"
947 " uint64_clock_monotonic_t timestamp_end;\n"
948 " uint64_t content_size;\n"
949 " uint64_t packet_size;\n"
950 " unsigned long events_discarded;\n"
951 " uint32_t cpu_id;\n"
952 "};\n\n"
953 );
954 }
955
956 /*
957 * Compact header:
958 * id: range: 0 - 30.
959 * id 31 is reserved to indicate an extended header.
960 *
961 * Large header:
962 * id: range: 0 - 65534.
963 * id 65535 is reserved to indicate an extended header.
964 *
965 * Must be called with sessions_mutex held.
966 */
967 static
968 int _lttng_event_header_declare(struct lttng_session *session)
969 {
970 return lttng_metadata_printf(session,
971 "struct event_header_compact {\n"
972 " enum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
973 " variant <id> {\n"
974 " struct {\n"
975 " uint27_clock_monotonic_t timestamp;\n"
976 " } compact;\n"
977 " struct {\n"
978 " uint32_t id;\n"
979 " uint64_clock_monotonic_t timestamp;\n"
980 " } extended;\n"
981 " } v;\n"
982 "} align(%u);\n"
983 "\n"
984 "struct event_header_large {\n"
985 " enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;\n"
986 " variant <id> {\n"
987 " struct {\n"
988 " uint32_clock_monotonic_t timestamp;\n"
989 " } compact;\n"
990 " struct {\n"
991 " uint32_t id;\n"
992 " uint64_clock_monotonic_t timestamp;\n"
993 " } extended;\n"
994 " } v;\n"
995 "} align(%u);\n\n",
996 lttng_alignof(uint32_t) * CHAR_BIT,
997 lttng_alignof(uint16_t) * CHAR_BIT
998 );
999 }
1000
1001 /*
1002 * Approximation of NTP time of day to clock monotonic correlation,
1003 * taken at start of trace.
1004 * Yes, this is only an approximation. Yes, we can (and will) do better
1005 * in future versions.
1006 */
1007 static
1008 uint64_t measure_clock_offset(void)
1009 {
1010 uint64_t offset, monotonic[2], realtime;
1011 struct timespec rts = { 0, 0 };
1012 unsigned long flags;
1013
1014 /* Disable interrupts to increase correlation precision. */
1015 local_irq_save(flags);
1016 monotonic[0] = trace_clock_read64();
1017 getnstimeofday(&rts);
1018 monotonic[1] = trace_clock_read64();
1019 local_irq_restore(flags);
1020
1021 offset = (monotonic[0] + monotonic[1]) >> 1;
1022 realtime = (uint64_t) rts.tv_sec * NSEC_PER_SEC;
1023 realtime += rts.tv_nsec;
1024 offset = realtime - offset;
1025 return offset;
1026 }
1027
1028 /*
1029 * Output metadata into this session's metadata buffers.
1030 * Must be called with sessions_mutex held.
1031 */
1032 static
1033 int _lttng_session_metadata_statedump(struct lttng_session *session)
1034 {
1035 unsigned char *uuid_c = session->uuid.b;
1036 unsigned char uuid_s[37], clock_uuid_s[BOOT_ID_LEN];
1037 struct lttng_channel *chan;
1038 struct lttng_event *event;
1039 int ret = 0;
1040
1041 if (!ACCESS_ONCE(session->active))
1042 return 0;
1043 if (session->metadata_dumped)
1044 goto skip_session;
1045
1046 snprintf(uuid_s, sizeof(uuid_s),
1047 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
1048 uuid_c[0], uuid_c[1], uuid_c[2], uuid_c[3],
1049 uuid_c[4], uuid_c[5], uuid_c[6], uuid_c[7],
1050 uuid_c[8], uuid_c[9], uuid_c[10], uuid_c[11],
1051 uuid_c[12], uuid_c[13], uuid_c[14], uuid_c[15]);
1052
1053 ret = lttng_metadata_printf(session,
1054 "typealias integer { size = 8; align = %u; signed = false; } := uint8_t;\n"
1055 "typealias integer { size = 16; align = %u; signed = false; } := uint16_t;\n"
1056 "typealias integer { size = 32; align = %u; signed = false; } := uint32_t;\n"
1057 "typealias integer { size = 64; align = %u; signed = false; } := uint64_t;\n"
1058 "typealias integer { size = %u; align = %u; signed = false; } := unsigned long;\n"
1059 "typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
1060 "typealias integer { size = 27; align = 1; signed = false; } := uint27_t;\n"
1061 "\n"
1062 "trace {\n"
1063 " major = %u;\n"
1064 " minor = %u;\n"
1065 " uuid = \"%s\";\n"
1066 " byte_order = %s;\n"
1067 " packet.header := struct {\n"
1068 " uint32_t magic;\n"
1069 " uint8_t uuid[16];\n"
1070 " uint32_t stream_id;\n"
1071 " };\n"
1072 "};\n\n",
1073 lttng_alignof(uint8_t) * CHAR_BIT,
1074 lttng_alignof(uint16_t) * CHAR_BIT,
1075 lttng_alignof(uint32_t) * CHAR_BIT,
1076 lttng_alignof(uint64_t) * CHAR_BIT,
1077 sizeof(unsigned long) * CHAR_BIT,
1078 lttng_alignof(unsigned long) * CHAR_BIT,
1079 CTF_SPEC_MAJOR,
1080 CTF_SPEC_MINOR,
1081 uuid_s,
1082 #ifdef __BIG_ENDIAN
1083 "be"
1084 #else
1085 "le"
1086 #endif
1087 );
1088 if (ret)
1089 goto end;
1090
1091 ret = lttng_metadata_printf(session,
1092 "env {\n"
1093 " hostname = \"%s\";\n"
1094 " domain = \"kernel\";\n"
1095 " sysname = \"%s\";\n"
1096 " kernel_release = \"%s\";\n"
1097 " kernel_version = \"%s\";\n"
1098 " tracer_name = \"lttng-modules\";\n"
1099 " tracer_major = %d;\n"
1100 " tracer_minor = %d;\n"
1101 " tracer_patchlevel = %d;\n"
1102 "};\n\n",
1103 current->nsproxy->uts_ns->name.nodename,
1104 utsname()->sysname,
1105 utsname()->release,
1106 utsname()->version,
1107 LTTNG_MODULES_MAJOR_VERSION,
1108 LTTNG_MODULES_MINOR_VERSION,
1109 LTTNG_MODULES_PATCHLEVEL_VERSION
1110 );
1111 if (ret)
1112 goto end;
1113
1114 ret = lttng_metadata_printf(session,
1115 "clock {\n"
1116 " name = %s;\n",
1117 "monotonic"
1118 );
1119 if (ret)
1120 goto end;
1121
1122 if (!trace_clock_uuid(clock_uuid_s)) {
1123 ret = lttng_metadata_printf(session,
1124 " uuid = \"%s\";\n",
1125 clock_uuid_s
1126 );
1127 if (ret)
1128 goto end;
1129 }
1130
1131 ret = lttng_metadata_printf(session,
1132 " description = \"Monotonic Clock\";\n"
1133 " freq = %llu; /* Frequency, in Hz */\n"
1134 " /* clock value offset from Epoch is: offset * (1/freq) */\n"
1135 " offset = %llu;\n"
1136 "};\n\n",
1137 (unsigned long long) trace_clock_freq(),
1138 (unsigned long long) measure_clock_offset()
1139 );
1140 if (ret)
1141 goto end;
1142
1143 ret = lttng_metadata_printf(session,
1144 "typealias integer {\n"
1145 " size = 27; align = 1; signed = false;\n"
1146 " map = clock.monotonic.value;\n"
1147 "} := uint27_clock_monotonic_t;\n"
1148 "\n"
1149 "typealias integer {\n"
1150 " size = 32; align = %u; signed = false;\n"
1151 " map = clock.monotonic.value;\n"
1152 "} := uint32_clock_monotonic_t;\n"
1153 "\n"
1154 "typealias integer {\n"
1155 " size = 64; align = %u; signed = false;\n"
1156 " map = clock.monotonic.value;\n"
1157 "} := uint64_clock_monotonic_t;\n\n",
1158 lttng_alignof(uint32_t) * CHAR_BIT,
1159 lttng_alignof(uint64_t) * CHAR_BIT
1160 );
1161 if (ret)
1162 goto end;
1163
1164 ret = _lttng_stream_packet_context_declare(session);
1165 if (ret)
1166 goto end;
1167
1168 ret = _lttng_event_header_declare(session);
1169 if (ret)
1170 goto end;
1171
1172 skip_session:
1173 list_for_each_entry(chan, &session->chan, list) {
1174 ret = _lttng_channel_metadata_statedump(session, chan);
1175 if (ret)
1176 goto end;
1177 }
1178
1179 list_for_each_entry(event, &session->events, list) {
1180 ret = _lttng_event_metadata_statedump(session, event->chan, event);
1181 if (ret)
1182 goto end;
1183 }
1184 session->metadata_dumped = 1;
1185 end:
1186 return ret;
1187 }
1188
1189 /**
1190 * lttng_transport_register - LTT transport registration
1191 * @transport: transport structure
1192 *
1193 * Registers a transport which can be used as output to extract the data out of
1194 * LTTng. The module calling this registration function must ensure that no
1195 * trap-inducing code will be executed by the transport functions. E.g.
1196 * vmalloc_sync_all() must be called between a vmalloc and the moment the memory
1197 * is made visible to the transport function. This registration acts as a
1198 * vmalloc_sync_all. Therefore, only if the module allocates virtual memory
1199 * after its registration must it synchronize the TLBs.
1200 */
1201 void lttng_transport_register(struct lttng_transport *transport)
1202 {
1203 /*
1204 * Make sure no page fault can be triggered by the module about to be
1205 * registered. We deal with this here so we don't have to call
1206 * vmalloc_sync_all() in each module's init.
1207 */
1208 wrapper_vmalloc_sync_all();
1209
1210 mutex_lock(&sessions_mutex);
1211 list_add_tail(&transport->node, &lttng_transport_list);
1212 mutex_unlock(&sessions_mutex);
1213 }
1214 EXPORT_SYMBOL_GPL(lttng_transport_register);
1215
1216 /**
1217 * lttng_transport_unregister - LTT transport unregistration
1218 * @transport: transport structure
1219 */
1220 void lttng_transport_unregister(struct lttng_transport *transport)
1221 {
1222 mutex_lock(&sessions_mutex);
1223 list_del(&transport->node);
1224 mutex_unlock(&sessions_mutex);
1225 }
1226 EXPORT_SYMBOL_GPL(lttng_transport_unregister);
1227
1228 static int __init lttng_events_init(void)
1229 {
1230 int ret;
1231
1232 event_cache = KMEM_CACHE(lttng_event, 0);
1233 if (!event_cache)
1234 return -ENOMEM;
1235 ret = lttng_abi_init();
1236 if (ret)
1237 goto error_abi;
1238 return 0;
1239 error_abi:
1240 kmem_cache_destroy(event_cache);
1241 return ret;
1242 }
1243
1244 module_init(lttng_events_init);
1245
1246 static void __exit lttng_events_exit(void)
1247 {
1248 struct lttng_session *session, *tmpsession;
1249
1250 lttng_abi_exit();
1251 list_for_each_entry_safe(session, tmpsession, &sessions, list)
1252 lttng_session_destroy(session);
1253 kmem_cache_destroy(event_cache);
1254 }
1255
1256 module_exit(lttng_events_exit);
1257
1258 MODULE_LICENSE("GPL and additional rights");
1259 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
1260 MODULE_DESCRIPTION("LTTng Events");
This page took 0.052537 seconds and 3 git commands to generate.