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