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