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