4 * Holds LTTng per-session event registry.
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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
24 * This page_alloc.h wrapper needs to be included before gfpflags.h because it
25 * overrides a function with a define.
27 #include "wrapper/page_alloc.h"
29 #include <linux/module.h>
30 #include <linux/mutex.h>
31 #include <linux/sched.h>
32 #include <linux/slab.h>
33 #include <linux/jiffies.h>
34 #include <linux/utsname.h>
35 #include <linux/err.h>
36 #include <linux/seq_file.h>
37 #include <linux/file.h>
38 #include <linux/anon_inodes.h>
39 #include "wrapper/file.h"
40 #include <linux/jhash.h>
41 #include <linux/uaccess.h>
42 #include <linux/vmalloc.h>
44 #include "wrapper/uuid.h"
45 #include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
46 #include "wrapper/random.h"
47 #include "wrapper/tracepoint.h"
48 #include "wrapper/list.h"
49 #include "lttng-kernel-version.h"
50 #include "lttng-events.h"
51 #include "lttng-tracer.h"
52 #include "lttng-abi-old.h"
53 #include "wrapper/vzalloc.h"
55 #define METADATA_CACHE_DEFAULT_SIZE 4096
57 static LIST_HEAD(sessions
);
58 static LIST_HEAD(lttng_transport_list
);
60 * Protect the sessions and metadata caches.
62 static DEFINE_MUTEX(sessions_mutex
);
63 static struct kmem_cache
*event_cache
;
65 static void lttng_session_lazy_sync_enablers(struct lttng_session
*session
);
66 static void lttng_session_sync_enablers(struct lttng_session
*session
);
67 static void lttng_enabler_destroy(struct lttng_enabler
*enabler
);
69 static void _lttng_event_destroy(struct lttng_event
*event
);
70 static void _lttng_channel_destroy(struct lttng_channel
*chan
);
71 static int _lttng_event_unregister(struct lttng_event
*event
);
73 int _lttng_event_metadata_statedump(struct lttng_session
*session
,
74 struct lttng_channel
*chan
,
75 struct lttng_event
*event
);
77 int _lttng_session_metadata_statedump(struct lttng_session
*session
);
79 void _lttng_metadata_channel_hangup(struct lttng_metadata_stream
*stream
);
81 void synchronize_trace(void)
84 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
85 #ifdef CONFIG_PREEMPT_RT_FULL
88 #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0)) */
89 #ifdef CONFIG_PREEMPT_RT
92 #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0)) */
95 void lttng_lock_sessions(void)
97 mutex_lock(&sessions_mutex
);
100 void lttng_unlock_sessions(void)
102 mutex_unlock(&sessions_mutex
);
106 * Called with sessions lock held.
108 int lttng_session_active(void)
110 struct lttng_session
*iter
;
112 list_for_each_entry(iter
, &sessions
, list
) {
119 struct lttng_session
*lttng_session_create(void)
121 struct lttng_session
*session
;
122 struct lttng_metadata_cache
*metadata_cache
;
125 mutex_lock(&sessions_mutex
);
126 session
= kzalloc(sizeof(struct lttng_session
), GFP_KERNEL
);
129 INIT_LIST_HEAD(&session
->chan
);
130 INIT_LIST_HEAD(&session
->events
);
131 uuid_le_gen(&session
->uuid
);
133 metadata_cache
= kzalloc(sizeof(struct lttng_metadata_cache
),
136 goto err_free_session
;
137 metadata_cache
->data
= lttng_vzalloc(METADATA_CACHE_DEFAULT_SIZE
);
138 if (!metadata_cache
->data
)
140 metadata_cache
->cache_alloc
= METADATA_CACHE_DEFAULT_SIZE
;
141 kref_init(&metadata_cache
->refcount
);
142 mutex_init(&metadata_cache
->lock
);
143 session
->metadata_cache
= metadata_cache
;
144 INIT_LIST_HEAD(&metadata_cache
->metadata_stream
);
145 memcpy(&metadata_cache
->uuid
, &session
->uuid
,
146 sizeof(metadata_cache
->uuid
));
147 INIT_LIST_HEAD(&session
->enablers_head
);
148 for (i
= 0; i
< LTTNG_EVENT_HT_SIZE
; i
++)
149 INIT_HLIST_HEAD(&session
->events_ht
.table
[i
]);
150 list_add(&session
->list
, &sessions
);
151 mutex_unlock(&sessions_mutex
);
155 kfree(metadata_cache
);
159 mutex_unlock(&sessions_mutex
);
163 void metadata_cache_destroy(struct kref
*kref
)
165 struct lttng_metadata_cache
*cache
=
166 container_of(kref
, struct lttng_metadata_cache
, refcount
);
171 void lttng_session_destroy(struct lttng_session
*session
)
173 struct lttng_channel
*chan
, *tmpchan
;
174 struct lttng_event
*event
, *tmpevent
;
175 struct lttng_metadata_stream
*metadata_stream
;
176 struct lttng_enabler
*enabler
, *tmpenabler
;
179 mutex_lock(&sessions_mutex
);
180 ACCESS_ONCE(session
->active
) = 0;
181 list_for_each_entry(chan
, &session
->chan
, list
) {
182 ret
= lttng_syscalls_unregister(chan
);
185 list_for_each_entry(event
, &session
->events
, list
) {
186 ret
= _lttng_event_unregister(event
);
189 synchronize_trace(); /* Wait for in-flight events to complete */
190 list_for_each_entry_safe(enabler
, tmpenabler
,
191 &session
->enablers_head
, node
)
192 lttng_enabler_destroy(enabler
);
193 list_for_each_entry_safe(event
, tmpevent
, &session
->events
, list
)
194 _lttng_event_destroy(event
);
195 list_for_each_entry_safe(chan
, tmpchan
, &session
->chan
, list
) {
196 BUG_ON(chan
->channel_type
== METADATA_CHANNEL
);
197 _lttng_channel_destroy(chan
);
199 list_for_each_entry(metadata_stream
, &session
->metadata_cache
->metadata_stream
, list
)
200 _lttng_metadata_channel_hangup(metadata_stream
);
201 if (session
->pid_tracker
)
202 lttng_pid_tracker_destroy(session
->pid_tracker
);
203 kref_put(&session
->metadata_cache
->refcount
, metadata_cache_destroy
);
204 list_del(&session
->list
);
205 mutex_unlock(&sessions_mutex
);
209 int lttng_session_enable(struct lttng_session
*session
)
212 struct lttng_channel
*chan
;
214 mutex_lock(&sessions_mutex
);
215 if (session
->active
) {
220 /* Set transient enabler state to "enabled" */
224 * Snapshot the number of events per channel to know the type of header
227 list_for_each_entry(chan
, &session
->chan
, list
) {
228 if (chan
->header_type
)
229 continue; /* don't change it if session stop/restart */
230 if (chan
->free_event_id
< 31)
231 chan
->header_type
= 1; /* compact */
233 chan
->header_type
= 2; /* large */
236 /* We need to sync enablers with session before activation. */
237 lttng_session_sync_enablers(session
);
239 ACCESS_ONCE(session
->active
) = 1;
240 ACCESS_ONCE(session
->been_active
) = 1;
241 ret
= _lttng_session_metadata_statedump(session
);
243 ACCESS_ONCE(session
->active
) = 0;
246 ret
= lttng_statedump_start(session
);
248 ACCESS_ONCE(session
->active
) = 0;
250 mutex_unlock(&sessions_mutex
);
254 int lttng_session_disable(struct lttng_session
*session
)
258 mutex_lock(&sessions_mutex
);
259 if (!session
->active
) {
263 ACCESS_ONCE(session
->active
) = 0;
265 /* Set transient enabler state to "disabled" */
267 lttng_session_sync_enablers(session
);
269 mutex_unlock(&sessions_mutex
);
273 int lttng_channel_enable(struct lttng_channel
*channel
)
277 mutex_lock(&sessions_mutex
);
278 if (channel
->channel_type
== METADATA_CHANNEL
) {
282 if (channel
->enabled
) {
286 /* Set transient enabler state to "enabled" */
288 lttng_session_sync_enablers(channel
->session
);
289 /* Set atomically the state to "enabled" */
290 ACCESS_ONCE(channel
->enabled
) = 1;
292 mutex_unlock(&sessions_mutex
);
296 int lttng_channel_disable(struct lttng_channel
*channel
)
300 mutex_lock(&sessions_mutex
);
301 if (channel
->channel_type
== METADATA_CHANNEL
) {
305 if (!channel
->enabled
) {
309 /* Set atomically the state to "disabled" */
310 ACCESS_ONCE(channel
->enabled
) = 0;
311 /* Set transient enabler state to "enabled" */
313 lttng_session_sync_enablers(channel
->session
);
315 mutex_unlock(&sessions_mutex
);
319 int lttng_event_enable(struct lttng_event
*event
)
323 mutex_lock(&sessions_mutex
);
324 if (event
->chan
->channel_type
== METADATA_CHANNEL
) {
328 if (event
->enabled
) {
332 switch (event
->instrumentation
) {
333 case LTTNG_KERNEL_TRACEPOINT
:
334 case LTTNG_KERNEL_SYSCALL
:
337 case LTTNG_KERNEL_KPROBE
:
338 case LTTNG_KERNEL_FUNCTION
:
339 case LTTNG_KERNEL_NOOP
:
340 ACCESS_ONCE(event
->enabled
) = 1;
342 case LTTNG_KERNEL_KRETPROBE
:
343 ret
= lttng_kretprobes_event_enable_state(event
, 1);
350 mutex_unlock(&sessions_mutex
);
354 int lttng_event_disable(struct lttng_event
*event
)
358 mutex_lock(&sessions_mutex
);
359 if (event
->chan
->channel_type
== METADATA_CHANNEL
) {
363 if (!event
->enabled
) {
367 switch (event
->instrumentation
) {
368 case LTTNG_KERNEL_TRACEPOINT
:
369 case LTTNG_KERNEL_SYSCALL
:
372 case LTTNG_KERNEL_KPROBE
:
373 case LTTNG_KERNEL_FUNCTION
:
374 case LTTNG_KERNEL_NOOP
:
375 ACCESS_ONCE(event
->enabled
) = 0;
377 case LTTNG_KERNEL_KRETPROBE
:
378 ret
= lttng_kretprobes_event_enable_state(event
, 0);
385 mutex_unlock(&sessions_mutex
);
389 static struct lttng_transport
*lttng_transport_find(const char *name
)
391 struct lttng_transport
*transport
;
393 list_for_each_entry(transport
, <tng_transport_list
, node
) {
394 if (!strcmp(transport
->name
, name
))
400 struct lttng_channel
*lttng_channel_create(struct lttng_session
*session
,
401 const char *transport_name
,
403 size_t subbuf_size
, size_t num_subbuf
,
404 unsigned int switch_timer_interval
,
405 unsigned int read_timer_interval
,
406 enum channel_type channel_type
)
408 struct lttng_channel
*chan
;
409 struct lttng_transport
*transport
= NULL
;
411 mutex_lock(&sessions_mutex
);
412 if (session
->been_active
&& channel_type
!= METADATA_CHANNEL
)
413 goto active
; /* Refuse to add channel to active session */
414 transport
= lttng_transport_find(transport_name
);
416 printk(KERN_WARNING
"LTTng transport %s not found\n",
420 if (!try_module_get(transport
->owner
)) {
421 printk(KERN_WARNING
"LTT : Can't lock transport module.\n");
424 chan
= kzalloc(sizeof(struct lttng_channel
), GFP_KERNEL
);
427 chan
->session
= session
;
428 chan
->id
= session
->free_chan_id
++;
429 chan
->ops
= &transport
->ops
;
431 * Note: the channel creation op already writes into the packet
432 * headers. Therefore the "chan" information used as input
433 * should be already accessible.
435 chan
->chan
= transport
->ops
.channel_create(transport_name
,
436 chan
, buf_addr
, subbuf_size
, num_subbuf
,
437 switch_timer_interval
, read_timer_interval
);
442 chan
->transport
= transport
;
443 chan
->channel_type
= channel_type
;
444 list_add(&chan
->list
, &session
->chan
);
445 mutex_unlock(&sessions_mutex
);
452 module_put(transport
->owner
);
455 mutex_unlock(&sessions_mutex
);
460 * Only used internally at session destruction for per-cpu channels, and
461 * when metadata channel is released.
462 * Needs to be called with sessions mutex held.
465 void _lttng_channel_destroy(struct lttng_channel
*chan
)
467 chan
->ops
->channel_destroy(chan
->chan
);
468 module_put(chan
->transport
->owner
);
469 list_del(&chan
->list
);
470 lttng_destroy_context(chan
->ctx
);
474 void lttng_metadata_channel_destroy(struct lttng_channel
*chan
)
476 BUG_ON(chan
->channel_type
!= METADATA_CHANNEL
);
478 /* Protect the metadata cache with the sessions_mutex. */
479 mutex_lock(&sessions_mutex
);
480 _lttng_channel_destroy(chan
);
481 mutex_unlock(&sessions_mutex
);
483 EXPORT_SYMBOL_GPL(lttng_metadata_channel_destroy
);
486 void _lttng_metadata_channel_hangup(struct lttng_metadata_stream
*stream
)
488 stream
->finalized
= 1;
489 wake_up_interruptible(&stream
->read_wait
);
493 * Supports event creation while tracing session is active.
494 * Needs to be called with sessions mutex held.
496 struct lttng_event
*_lttng_event_create(struct lttng_channel
*chan
,
497 struct lttng_kernel_event
*event_param
,
499 const struct lttng_event_desc
*event_desc
,
500 enum lttng_kernel_instrumentation itype
)
502 struct lttng_session
*session
= chan
->session
;
503 struct lttng_event
*event
;
504 const char *event_name
;
505 struct hlist_head
*head
;
510 if (chan
->free_event_id
== -1U) {
516 case LTTNG_KERNEL_TRACEPOINT
:
517 event_name
= event_desc
->name
;
519 case LTTNG_KERNEL_KPROBE
:
520 case LTTNG_KERNEL_KRETPROBE
:
521 case LTTNG_KERNEL_FUNCTION
:
522 case LTTNG_KERNEL_NOOP
:
523 case LTTNG_KERNEL_SYSCALL
:
524 event_name
= event_param
->name
;
531 name_len
= strlen(event_name
);
532 hash
= jhash(event_name
, name_len
, 0);
533 head
= &session
->events_ht
.table
[hash
& (LTTNG_EVENT_HT_SIZE
- 1)];
534 lttng_hlist_for_each_entry(event
, head
, hlist
) {
535 WARN_ON_ONCE(!event
->desc
);
536 if (!strncmp(event
->desc
->name
, event_name
,
537 LTTNG_KERNEL_SYM_NAME_LEN
- 1)
538 && chan
== event
->chan
) {
544 event
= kmem_cache_zalloc(event_cache
, GFP_KERNEL
);
550 event
->filter
= filter
;
551 event
->id
= chan
->free_event_id
++;
552 event
->instrumentation
= itype
;
553 event
->evtype
= LTTNG_TYPE_EVENT
;
554 INIT_LIST_HEAD(&event
->bytecode_runtime_head
);
555 INIT_LIST_HEAD(&event
->enablers_ref_head
);
558 case LTTNG_KERNEL_TRACEPOINT
:
559 /* Event will be enabled by enabler sync. */
561 event
->registered
= 0;
562 event
->desc
= lttng_event_get(event_name
);
567 /* Populate lttng_event structure before event registration. */
570 case LTTNG_KERNEL_KPROBE
:
572 * Needs to be explicitly enabled after creation, since
573 * we may want to apply filters.
576 event
->registered
= 1;
578 * Populate lttng_event structure before event
582 ret
= lttng_kprobes_register(event_name
,
583 event_param
->u
.kprobe
.symbol_name
,
584 event_param
->u
.kprobe
.offset
,
585 event_param
->u
.kprobe
.addr
,
591 ret
= try_module_get(event
->desc
->owner
);
594 case LTTNG_KERNEL_KRETPROBE
:
596 struct lttng_event
*event_return
;
598 /* kretprobe defines 2 events */
600 * Needs to be explicitly enabled after creation, since
601 * we may want to apply filters.
604 event
->registered
= 1;
606 kmem_cache_zalloc(event_cache
, GFP_KERNEL
);
611 event_return
->chan
= chan
;
612 event_return
->filter
= filter
;
613 event_return
->id
= chan
->free_event_id
++;
614 event_return
->enabled
= 0;
615 event_return
->registered
= 1;
616 event_return
->instrumentation
= itype
;
618 * Populate lttng_event structure before kretprobe registration.
621 ret
= lttng_kretprobes_register(event_name
,
622 event_param
->u
.kretprobe
.symbol_name
,
623 event_param
->u
.kretprobe
.offset
,
624 event_param
->u
.kretprobe
.addr
,
625 event
, event_return
);
627 kmem_cache_free(event_cache
, event_return
);
631 /* Take 2 refs on the module: one per event. */
632 ret
= try_module_get(event
->desc
->owner
);
634 ret
= try_module_get(event
->desc
->owner
);
636 ret
= _lttng_event_metadata_statedump(chan
->session
, chan
,
638 WARN_ON_ONCE(ret
> 0);
640 kmem_cache_free(event_cache
, event_return
);
641 module_put(event
->desc
->owner
);
642 module_put(event
->desc
->owner
);
643 goto statedump_error
;
645 list_add(&event_return
->list
, &chan
->session
->events
);
648 case LTTNG_KERNEL_FUNCTION
:
650 * Needs to be explicitly enabled after creation, since
651 * we may want to apply filters.
654 event
->registered
= 1;
656 * Populate lttng_event structure before event
660 ret
= lttng_ftrace_register(event_name
,
661 event_param
->u
.ftrace
.symbol_name
,
666 ret
= try_module_get(event
->desc
->owner
);
669 case LTTNG_KERNEL_NOOP
:
670 case LTTNG_KERNEL_SYSCALL
:
672 * Needs to be explicitly enabled after creation, since
673 * we may want to apply filters.
676 event
->registered
= 0;
677 event
->desc
= event_desc
;
688 ret
= _lttng_event_metadata_statedump(chan
->session
, chan
, event
);
689 WARN_ON_ONCE(ret
> 0);
691 goto statedump_error
;
693 hlist_add_head(&event
->hlist
, head
);
694 list_add(&event
->list
, &chan
->session
->events
);
698 /* If a statedump error occurs, events will not be readable. */
700 kmem_cache_free(event_cache
, event
);
708 struct lttng_event
*lttng_event_create(struct lttng_channel
*chan
,
709 struct lttng_kernel_event
*event_param
,
711 const struct lttng_event_desc
*event_desc
,
712 enum lttng_kernel_instrumentation itype
)
714 struct lttng_event
*event
;
716 mutex_lock(&sessions_mutex
);
717 event
= _lttng_event_create(chan
, event_param
, filter
, event_desc
,
719 mutex_unlock(&sessions_mutex
);
723 /* Only used for tracepoints for now. */
725 void register_event(struct lttng_event
*event
)
727 const struct lttng_event_desc
*desc
;
730 if (event
->registered
)
734 switch (event
->instrumentation
) {
735 case LTTNG_KERNEL_TRACEPOINT
:
736 ret
= lttng_wrapper_tracepoint_probe_register(desc
->kname
,
737 desc
->probe_callback
,
740 case LTTNG_KERNEL_SYSCALL
:
741 ret
= lttng_syscall_filter_enable(event
->chan
,
744 case LTTNG_KERNEL_KPROBE
:
745 case LTTNG_KERNEL_KRETPROBE
:
746 case LTTNG_KERNEL_FUNCTION
:
747 case LTTNG_KERNEL_NOOP
:
754 event
->registered
= 1;
758 * Only used internally at session destruction.
760 int _lttng_event_unregister(struct lttng_event
*event
)
762 const struct lttng_event_desc
*desc
;
765 if (!event
->registered
)
769 switch (event
->instrumentation
) {
770 case LTTNG_KERNEL_TRACEPOINT
:
771 ret
= lttng_wrapper_tracepoint_probe_unregister(event
->desc
->kname
,
772 event
->desc
->probe_callback
,
775 case LTTNG_KERNEL_KPROBE
:
776 lttng_kprobes_unregister(event
);
779 case LTTNG_KERNEL_KRETPROBE
:
780 lttng_kretprobes_unregister(event
);
783 case LTTNG_KERNEL_FUNCTION
:
784 lttng_ftrace_unregister(event
);
787 case LTTNG_KERNEL_SYSCALL
:
788 ret
= lttng_syscall_filter_disable(event
->chan
,
791 case LTTNG_KERNEL_NOOP
:
798 event
->registered
= 0;
803 * Only used internally at session destruction.
806 void _lttng_event_destroy(struct lttng_event
*event
)
808 switch (event
->instrumentation
) {
809 case LTTNG_KERNEL_TRACEPOINT
:
810 lttng_event_put(event
->desc
);
812 case LTTNG_KERNEL_KPROBE
:
813 module_put(event
->desc
->owner
);
814 lttng_kprobes_destroy_private(event
);
816 case LTTNG_KERNEL_KRETPROBE
:
817 module_put(event
->desc
->owner
);
818 lttng_kretprobes_destroy_private(event
);
820 case LTTNG_KERNEL_FUNCTION
:
821 module_put(event
->desc
->owner
);
822 lttng_ftrace_destroy_private(event
);
824 case LTTNG_KERNEL_NOOP
:
825 case LTTNG_KERNEL_SYSCALL
:
830 list_del(&event
->list
);
831 lttng_destroy_context(event
->ctx
);
832 kmem_cache_free(event_cache
, event
);
835 int lttng_session_track_pid(struct lttng_session
*session
, int pid
)
841 mutex_lock(&sessions_mutex
);
843 /* track all pids: destroy tracker. */
844 if (session
->pid_tracker
) {
845 struct lttng_pid_tracker
*lpf
;
847 lpf
= session
->pid_tracker
;
848 rcu_assign_pointer(session
->pid_tracker
, NULL
);
850 lttng_pid_tracker_destroy(lpf
);
854 if (!session
->pid_tracker
) {
855 struct lttng_pid_tracker
*lpf
;
857 lpf
= lttng_pid_tracker_create();
862 ret
= lttng_pid_tracker_add(lpf
, pid
);
863 rcu_assign_pointer(session
->pid_tracker
, lpf
);
865 ret
= lttng_pid_tracker_add(session
->pid_tracker
, pid
);
869 mutex_unlock(&sessions_mutex
);
873 int lttng_session_untrack_pid(struct lttng_session
*session
, int pid
)
879 mutex_lock(&sessions_mutex
);
881 /* untrack all pids: replace by empty tracker. */
882 struct lttng_pid_tracker
*old_lpf
= session
->pid_tracker
;
883 struct lttng_pid_tracker
*lpf
;
885 lpf
= lttng_pid_tracker_create();
890 rcu_assign_pointer(session
->pid_tracker
, lpf
);
893 lttng_pid_tracker_destroy(old_lpf
);
896 if (!session
->pid_tracker
) {
900 ret
= lttng_pid_tracker_del(session
->pid_tracker
, pid
);
903 mutex_unlock(&sessions_mutex
);
908 void *pid_list_start(struct seq_file
*m
, loff_t
*pos
)
910 struct lttng_session
*session
= m
->private;
911 struct lttng_pid_tracker
*lpf
;
912 struct lttng_pid_hash_node
*e
;
915 mutex_lock(&sessions_mutex
);
916 lpf
= session
->pid_tracker
;
918 for (i
= 0; i
< LTTNG_PID_TABLE_SIZE
; i
++) {
919 struct hlist_head
*head
= &lpf
->pid_hash
[i
];
921 lttng_hlist_for_each_entry(e
, head
, hlist
) {
927 /* PID tracker disabled. */
928 if (iter
>= *pos
&& iter
== 0) {
929 return session
; /* empty tracker */
937 /* Called with sessions_mutex held. */
939 void *pid_list_next(struct seq_file
*m
, void *p
, loff_t
*ppos
)
941 struct lttng_session
*session
= m
->private;
942 struct lttng_pid_tracker
*lpf
;
943 struct lttng_pid_hash_node
*e
;
947 lpf
= session
->pid_tracker
;
949 for (i
= 0; i
< LTTNG_PID_TABLE_SIZE
; i
++) {
950 struct hlist_head
*head
= &lpf
->pid_hash
[i
];
952 lttng_hlist_for_each_entry(e
, head
, hlist
) {
958 /* PID tracker disabled. */
959 if (iter
>= *ppos
&& iter
== 0)
960 return session
; /* empty tracker */
969 void pid_list_stop(struct seq_file
*m
, void *p
)
971 mutex_unlock(&sessions_mutex
);
975 int pid_list_show(struct seq_file
*m
, void *p
)
979 if (p
== m
->private) {
980 /* Tracker disabled. */
983 const struct lttng_pid_hash_node
*e
= p
;
985 pid
= lttng_pid_tracker_get_node_pid(e
);
987 seq_printf(m
, "process { pid = %d; };\n", pid
);
992 const struct seq_operations lttng_tracker_pids_list_seq_ops
= {
993 .start
= pid_list_start
,
994 .next
= pid_list_next
,
995 .stop
= pid_list_stop
,
996 .show
= pid_list_show
,
1000 int lttng_tracker_pids_list_open(struct inode
*inode
, struct file
*file
)
1002 return seq_open(file
, <tng_tracker_pids_list_seq_ops
);
1006 int lttng_tracker_pids_list_release(struct inode
*inode
, struct file
*file
)
1008 struct seq_file
*m
= file
->private_data
;
1009 struct lttng_session
*session
= m
->private;
1012 WARN_ON_ONCE(!session
);
1013 ret
= seq_release(inode
, file
);
1014 if (!ret
&& session
)
1015 fput(session
->file
);
1019 const struct file_operations lttng_tracker_pids_list_fops
= {
1020 .owner
= THIS_MODULE
,
1021 .open
= lttng_tracker_pids_list_open
,
1023 .llseek
= seq_lseek
,
1024 .release
= lttng_tracker_pids_list_release
,
1027 int lttng_session_list_tracker_pids(struct lttng_session
*session
)
1029 struct file
*tracker_pids_list_file
;
1033 file_fd
= lttng_get_unused_fd();
1039 tracker_pids_list_file
= anon_inode_getfile("[lttng_tracker_pids_list]",
1040 <tng_tracker_pids_list_fops
,
1042 if (IS_ERR(tracker_pids_list_file
)) {
1043 ret
= PTR_ERR(tracker_pids_list_file
);
1046 ret
= lttng_tracker_pids_list_fops
.open(NULL
, tracker_pids_list_file
);
1049 m
= tracker_pids_list_file
->private_data
;
1050 m
->private = session
;
1051 fd_install(file_fd
, tracker_pids_list_file
);
1052 atomic_long_inc(&session
->file
->f_count
);
1057 fput(tracker_pids_list_file
);
1059 put_unused_fd(file_fd
);
1065 * Enabler management.
1068 int lttng_match_enabler_wildcard(const char *desc_name
,
1071 /* Compare excluding final '*' */
1072 if (strncmp(desc_name
, name
, strlen(name
) - 1))
1078 int lttng_match_enabler_name(const char *desc_name
,
1081 if (strcmp(desc_name
, name
))
1087 int lttng_desc_match_enabler(const struct lttng_event_desc
*desc
,
1088 struct lttng_enabler
*enabler
)
1090 const char *desc_name
, *enabler_name
;
1092 enabler_name
= enabler
->event_param
.name
;
1093 switch (enabler
->event_param
.instrumentation
) {
1094 case LTTNG_KERNEL_TRACEPOINT
:
1095 desc_name
= desc
->name
;
1097 case LTTNG_KERNEL_SYSCALL
:
1098 desc_name
= desc
->name
;
1099 if (!strncmp(desc_name
, "compat_", strlen("compat_")))
1100 desc_name
+= strlen("compat_");
1101 if (!strncmp(desc_name
, "syscall_exit_",
1102 strlen("syscall_exit_"))) {
1103 desc_name
+= strlen("syscall_exit_");
1104 } else if (!strncmp(desc_name
, "syscall_entry_",
1105 strlen("syscall_entry_"))) {
1106 desc_name
+= strlen("syscall_entry_");
1116 switch (enabler
->type
) {
1117 case LTTNG_ENABLER_WILDCARD
:
1118 return lttng_match_enabler_wildcard(desc_name
, enabler_name
);
1119 case LTTNG_ENABLER_NAME
:
1120 return lttng_match_enabler_name(desc_name
, enabler_name
);
1127 int lttng_event_match_enabler(struct lttng_event
*event
,
1128 struct lttng_enabler
*enabler
)
1130 if (enabler
->event_param
.instrumentation
!= event
->instrumentation
)
1132 if (lttng_desc_match_enabler(event
->desc
, enabler
)
1133 && event
->chan
== enabler
->chan
)
1140 struct lttng_enabler_ref
*lttng_event_enabler_ref(struct lttng_event
*event
,
1141 struct lttng_enabler
*enabler
)
1143 struct lttng_enabler_ref
*enabler_ref
;
1145 list_for_each_entry(enabler_ref
,
1146 &event
->enablers_ref_head
, node
) {
1147 if (enabler_ref
->ref
== enabler
)
1154 void lttng_create_tracepoint_if_missing(struct lttng_enabler
*enabler
)
1156 struct lttng_session
*session
= enabler
->chan
->session
;
1157 struct lttng_probe_desc
*probe_desc
;
1158 const struct lttng_event_desc
*desc
;
1160 struct list_head
*probe_list
;
1162 probe_list
= lttng_get_probe_list_head();
1164 * For each probe event, if we find that a probe event matches
1165 * our enabler, create an associated lttng_event if not
1168 list_for_each_entry(probe_desc
, probe_list
, head
) {
1169 for (i
= 0; i
< probe_desc
->nr_events
; i
++) {
1171 struct hlist_head
*head
;
1172 const char *event_name
;
1175 struct lttng_event
*event
;
1177 desc
= probe_desc
->event_desc
[i
];
1178 if (!lttng_desc_match_enabler(desc
, enabler
))
1180 event_name
= desc
->name
;
1181 name_len
= strlen(event_name
);
1184 * Check if already created.
1186 hash
= jhash(event_name
, name_len
, 0);
1187 head
= &session
->events_ht
.table
[hash
& (LTTNG_EVENT_HT_SIZE
- 1)];
1188 lttng_hlist_for_each_entry(event
, head
, hlist
) {
1189 if (event
->desc
== desc
1190 && event
->chan
== enabler
->chan
)
1197 * We need to create an event for this
1200 event
= _lttng_event_create(enabler
->chan
,
1202 LTTNG_KERNEL_TRACEPOINT
);
1204 printk(KERN_INFO
"Unable to create event %s\n",
1205 probe_desc
->event_desc
[i
]->name
);
1212 void lttng_create_syscall_if_missing(struct lttng_enabler
*enabler
)
1216 ret
= lttng_syscalls_register(enabler
->chan
, NULL
);
1221 * Create struct lttng_event if it is missing and present in the list of
1222 * tracepoint probes.
1223 * Should be called with sessions mutex held.
1226 void lttng_create_event_if_missing(struct lttng_enabler
*enabler
)
1228 switch (enabler
->event_param
.instrumentation
) {
1229 case LTTNG_KERNEL_TRACEPOINT
:
1230 lttng_create_tracepoint_if_missing(enabler
);
1232 case LTTNG_KERNEL_SYSCALL
:
1233 lttng_create_syscall_if_missing(enabler
);
1242 * Create events associated with an enabler (if not already present),
1243 * and add backward reference from the event to the enabler.
1244 * Should be called with sessions mutex held.
1247 int lttng_enabler_ref_events(struct lttng_enabler
*enabler
)
1249 struct lttng_session
*session
= enabler
->chan
->session
;
1250 struct lttng_event
*event
;
1252 /* First ensure that probe events are created for this enabler. */
1253 lttng_create_event_if_missing(enabler
);
1255 /* For each event matching enabler in session event list. */
1256 list_for_each_entry(event
, &session
->events
, list
) {
1257 struct lttng_enabler_ref
*enabler_ref
;
1259 if (!lttng_event_match_enabler(event
, enabler
))
1261 enabler_ref
= lttng_event_enabler_ref(event
, enabler
);
1264 * If no backward ref, create it.
1265 * Add backward ref from event to enabler.
1267 enabler_ref
= kzalloc(sizeof(*enabler_ref
), GFP_KERNEL
);
1270 enabler_ref
->ref
= enabler
;
1271 list_add(&enabler_ref
->node
,
1272 &event
->enablers_ref_head
);
1276 * Link filter bytecodes if not linked yet.
1278 lttng_enabler_event_link_bytecode(event
, enabler
);
1280 /* TODO: merge event context. */
1286 * Called at module load: connect the probe on all enablers matching
1288 * Called with sessions lock held.
1290 int lttng_fix_pending_events(void)
1292 struct lttng_session
*session
;
1294 list_for_each_entry(session
, &sessions
, list
)
1295 lttng_session_lazy_sync_enablers(session
);
1299 struct lttng_enabler
*lttng_enabler_create(enum lttng_enabler_type type
,
1300 struct lttng_kernel_event
*event_param
,
1301 struct lttng_channel
*chan
)
1303 struct lttng_enabler
*enabler
;
1305 enabler
= kzalloc(sizeof(*enabler
), GFP_KERNEL
);
1308 enabler
->type
= type
;
1309 INIT_LIST_HEAD(&enabler
->filter_bytecode_head
);
1310 memcpy(&enabler
->event_param
, event_param
,
1311 sizeof(enabler
->event_param
));
1312 enabler
->chan
= chan
;
1314 enabler
->enabled
= 0;
1315 enabler
->evtype
= LTTNG_TYPE_ENABLER
;
1316 mutex_lock(&sessions_mutex
);
1317 list_add(&enabler
->node
, &enabler
->chan
->session
->enablers_head
);
1318 lttng_session_lazy_sync_enablers(enabler
->chan
->session
);
1319 mutex_unlock(&sessions_mutex
);
1323 int lttng_enabler_enable(struct lttng_enabler
*enabler
)
1325 mutex_lock(&sessions_mutex
);
1326 enabler
->enabled
= 1;
1327 lttng_session_lazy_sync_enablers(enabler
->chan
->session
);
1328 mutex_unlock(&sessions_mutex
);
1332 int lttng_enabler_disable(struct lttng_enabler
*enabler
)
1334 mutex_lock(&sessions_mutex
);
1335 enabler
->enabled
= 0;
1336 lttng_session_lazy_sync_enablers(enabler
->chan
->session
);
1337 mutex_unlock(&sessions_mutex
);
1341 int lttng_enabler_attach_bytecode(struct lttng_enabler
*enabler
,
1342 struct lttng_kernel_filter_bytecode __user
*bytecode
)
1344 struct lttng_filter_bytecode_node
*bytecode_node
;
1345 uint32_t bytecode_len
;
1348 ret
= get_user(bytecode_len
, &bytecode
->len
);
1351 bytecode_node
= kzalloc(sizeof(*bytecode_node
) + bytecode_len
,
1355 ret
= copy_from_user(&bytecode_node
->bc
, bytecode
,
1356 sizeof(*bytecode
) + bytecode_len
);
1359 bytecode_node
->enabler
= enabler
;
1360 /* Enforce length based on allocated size */
1361 bytecode_node
->bc
.len
= bytecode_len
;
1362 list_add_tail(&bytecode_node
->node
, &enabler
->filter_bytecode_head
);
1363 lttng_session_lazy_sync_enablers(enabler
->chan
->session
);
1367 kfree(bytecode_node
);
1371 int lttng_enabler_attach_context(struct lttng_enabler
*enabler
,
1372 struct lttng_kernel_context
*context_param
)
1378 void lttng_enabler_destroy(struct lttng_enabler
*enabler
)
1380 struct lttng_filter_bytecode_node
*filter_node
, *tmp_filter_node
;
1382 /* Destroy filter bytecode */
1383 list_for_each_entry_safe(filter_node
, tmp_filter_node
,
1384 &enabler
->filter_bytecode_head
, node
) {
1388 /* Destroy contexts */
1389 lttng_destroy_context(enabler
->ctx
);
1391 list_del(&enabler
->node
);
1396 * lttng_session_sync_enablers should be called just before starting a
1398 * Should be called with sessions mutex held.
1401 void lttng_session_sync_enablers(struct lttng_session
*session
)
1403 struct lttng_enabler
*enabler
;
1404 struct lttng_event
*event
;
1406 list_for_each_entry(enabler
, &session
->enablers_head
, node
)
1407 lttng_enabler_ref_events(enabler
);
1409 * For each event, if at least one of its enablers is enabled,
1410 * and its channel and session transient states are enabled, we
1411 * enable the event, else we disable it.
1413 list_for_each_entry(event
, &session
->events
, list
) {
1414 struct lttng_enabler_ref
*enabler_ref
;
1415 struct lttng_bytecode_runtime
*runtime
;
1416 int enabled
= 0, has_enablers_without_bytecode
= 0;
1418 switch (event
->instrumentation
) {
1419 case LTTNG_KERNEL_TRACEPOINT
:
1420 case LTTNG_KERNEL_SYSCALL
:
1422 list_for_each_entry(enabler_ref
,
1423 &event
->enablers_ref_head
, node
) {
1424 if (enabler_ref
->ref
->enabled
) {
1431 /* Not handled with lazy sync. */
1435 * Enabled state is based on union of enablers, with
1436 * intesection of session and channel transient enable
1439 enabled
= enabled
&& session
->tstate
&& event
->chan
->tstate
;
1441 ACCESS_ONCE(event
->enabled
) = enabled
;
1443 * Sync tracepoint registration with event enabled
1447 register_event(event
);
1449 _lttng_event_unregister(event
);
1452 /* Check if has enablers without bytecode enabled */
1453 list_for_each_entry(enabler_ref
,
1454 &event
->enablers_ref_head
, node
) {
1455 if (enabler_ref
->ref
->enabled
1456 && list_empty(&enabler_ref
->ref
->filter_bytecode_head
)) {
1457 has_enablers_without_bytecode
= 1;
1461 event
->has_enablers_without_bytecode
=
1462 has_enablers_without_bytecode
;
1464 /* Enable filters */
1465 list_for_each_entry(runtime
,
1466 &event
->bytecode_runtime_head
, node
)
1467 lttng_filter_sync_state(runtime
);
1472 * Apply enablers to session events, adding events to session if need
1473 * be. It is required after each modification applied to an active
1474 * session, and right before session "start".
1475 * "lazy" sync means we only sync if required.
1476 * Should be called with sessions mutex held.
1479 void lttng_session_lazy_sync_enablers(struct lttng_session
*session
)
1481 /* We can skip if session is not active */
1482 if (!session
->active
)
1484 lttng_session_sync_enablers(session
);
1488 * Serialize at most one packet worth of metadata into a metadata
1490 * We grab the metadata cache mutex to get exclusive access to our metadata
1491 * buffer and to the metadata cache. Exclusive access to the metadata buffer
1492 * allows us to do racy operations such as looking for remaining space left in
1493 * packet and write, since mutual exclusion protects us from concurrent writes.
1494 * Mutual exclusion on the metadata cache allow us to read the cache content
1495 * without racing against reallocation of the cache by updates.
1496 * Returns the number of bytes written in the channel, 0 if no data
1497 * was written and a negative value on error.
1499 int lttng_metadata_output_channel(struct lttng_metadata_stream
*stream
,
1500 struct channel
*chan
)
1502 struct lib_ring_buffer_ctx ctx
;
1504 size_t len
, reserve_len
;
1507 * Ensure we support mutiple get_next / put sequences followed by
1508 * put_next. The metadata cache lock protects reading the metadata
1509 * cache. It can indeed be read concurrently by "get_next_subbuf" and
1510 * "flush" operations on the buffer invoked by different processes.
1511 * Moreover, since the metadata cache memory can be reallocated, we
1512 * need to have exclusive access against updates even though we only
1515 mutex_lock(&stream
->metadata_cache
->lock
);
1516 WARN_ON(stream
->metadata_in
< stream
->metadata_out
);
1517 if (stream
->metadata_in
!= stream
->metadata_out
)
1520 len
= stream
->metadata_cache
->metadata_written
-
1521 stream
->metadata_in
;
1524 reserve_len
= min_t(size_t,
1525 stream
->transport
->ops
.packet_avail_size(chan
),
1527 lib_ring_buffer_ctx_init(&ctx
, chan
, NULL
, reserve_len
,
1530 * If reservation failed, return an error to the caller.
1532 ret
= stream
->transport
->ops
.event_reserve(&ctx
, 0);
1534 printk(KERN_WARNING
"LTTng: Metadata event reservation failed\n");
1537 stream
->transport
->ops
.event_write(&ctx
,
1538 stream
->metadata_cache
->data
+ stream
->metadata_in
,
1540 stream
->transport
->ops
.event_commit(&ctx
);
1541 stream
->metadata_in
+= reserve_len
;
1545 mutex_unlock(&stream
->metadata_cache
->lock
);
1550 * Write the metadata to the metadata cache.
1551 * Must be called with sessions_mutex held.
1552 * The metadata cache lock protects us from concurrent read access from
1553 * thread outputting metadata content to ring buffer.
1555 int lttng_metadata_printf(struct lttng_session
*session
,
1556 const char *fmt
, ...)
1561 struct lttng_metadata_stream
*stream
;
1563 WARN_ON_ONCE(!ACCESS_ONCE(session
->active
));
1566 str
= kvasprintf(GFP_KERNEL
, fmt
, ap
);
1572 mutex_lock(&session
->metadata_cache
->lock
);
1573 if (session
->metadata_cache
->metadata_written
+ len
>
1574 session
->metadata_cache
->cache_alloc
) {
1575 char *tmp_cache_realloc
;
1576 unsigned int tmp_cache_alloc_size
;
1578 tmp_cache_alloc_size
= max_t(unsigned int,
1579 session
->metadata_cache
->cache_alloc
+ len
,
1580 session
->metadata_cache
->cache_alloc
<< 1);
1581 tmp_cache_realloc
= lttng_vzalloc(tmp_cache_alloc_size
);
1582 if (!tmp_cache_realloc
)
1584 if (session
->metadata_cache
->data
) {
1585 memcpy(tmp_cache_realloc
,
1586 session
->metadata_cache
->data
,
1587 session
->metadata_cache
->cache_alloc
);
1588 vfree(session
->metadata_cache
->data
);
1591 session
->metadata_cache
->cache_alloc
= tmp_cache_alloc_size
;
1592 session
->metadata_cache
->data
= tmp_cache_realloc
;
1594 memcpy(session
->metadata_cache
->data
+
1595 session
->metadata_cache
->metadata_written
,
1597 session
->metadata_cache
->metadata_written
+= len
;
1598 mutex_unlock(&session
->metadata_cache
->lock
);
1601 list_for_each_entry(stream
, &session
->metadata_cache
->metadata_stream
, list
)
1602 wake_up_interruptible(&stream
->read_wait
);
1607 mutex_unlock(&session
->metadata_cache
->lock
);
1613 * Must be called with sessions_mutex held.
1616 int _lttng_field_statedump(struct lttng_session
*session
,
1617 const struct lttng_event_field
*field
)
1621 switch (field
->type
.atype
) {
1623 ret
= lttng_metadata_printf(session
,
1624 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s;\n",
1625 field
->type
.u
.basic
.integer
.size
,
1626 field
->type
.u
.basic
.integer
.alignment
,
1627 field
->type
.u
.basic
.integer
.signedness
,
1628 (field
->type
.u
.basic
.integer
.encoding
== lttng_encode_none
)
1630 : (field
->type
.u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
1633 field
->type
.u
.basic
.integer
.base
,
1635 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
1637 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
1642 ret
= lttng_metadata_printf(session
,
1644 field
->type
.u
.basic
.enumeration
.name
,
1649 const struct lttng_basic_type
*elem_type
;
1651 elem_type
= &field
->type
.u
.array
.elem_type
;
1652 ret
= lttng_metadata_printf(session
,
1653 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[%u];\n",
1654 elem_type
->u
.basic
.integer
.size
,
1655 elem_type
->u
.basic
.integer
.alignment
,
1656 elem_type
->u
.basic
.integer
.signedness
,
1657 (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
1659 : (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
1662 elem_type
->u
.basic
.integer
.base
,
1664 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
1666 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
1668 field
->name
, field
->type
.u
.array
.length
);
1671 case atype_sequence
:
1673 const struct lttng_basic_type
*elem_type
;
1674 const struct lttng_basic_type
*length_type
;
1676 elem_type
= &field
->type
.u
.sequence
.elem_type
;
1677 length_type
= &field
->type
.u
.sequence
.length_type
;
1678 ret
= lttng_metadata_printf(session
,
1679 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } __%s_length;\n",
1680 length_type
->u
.basic
.integer
.size
,
1681 (unsigned int) length_type
->u
.basic
.integer
.alignment
,
1682 length_type
->u
.basic
.integer
.signedness
,
1683 (length_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
1685 : ((length_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
1688 length_type
->u
.basic
.integer
.base
,
1690 length_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
1692 length_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
1698 ret
= lttng_metadata_printf(session
,
1699 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[ __%s_length ];\n",
1700 elem_type
->u
.basic
.integer
.size
,
1701 (unsigned int) elem_type
->u
.basic
.integer
.alignment
,
1702 elem_type
->u
.basic
.integer
.signedness
,
1703 (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
1705 : ((elem_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
1708 elem_type
->u
.basic
.integer
.base
,
1710 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
1712 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
1720 /* Default encoding is UTF8 */
1721 ret
= lttng_metadata_printf(session
,
1723 field
->type
.u
.basic
.string
.encoding
== lttng_encode_ASCII
?
1724 " { encoding = ASCII; }" : "",
1735 int _lttng_context_metadata_statedump(struct lttng_session
*session
,
1736 struct lttng_ctx
*ctx
)
1743 for (i
= 0; i
< ctx
->nr_fields
; i
++) {
1744 const struct lttng_ctx_field
*field
= &ctx
->fields
[i
];
1746 ret
= _lttng_field_statedump(session
, &field
->event_field
);
1754 int _lttng_fields_metadata_statedump(struct lttng_session
*session
,
1755 struct lttng_event
*event
)
1757 const struct lttng_event_desc
*desc
= event
->desc
;
1761 for (i
= 0; i
< desc
->nr_fields
; i
++) {
1762 const struct lttng_event_field
*field
= &desc
->fields
[i
];
1764 ret
= _lttng_field_statedump(session
, field
);
1772 * Must be called with sessions_mutex held.
1775 int _lttng_event_metadata_statedump(struct lttng_session
*session
,
1776 struct lttng_channel
*chan
,
1777 struct lttng_event
*event
)
1781 if (event
->metadata_dumped
|| !ACCESS_ONCE(session
->active
))
1783 if (chan
->channel_type
== METADATA_CHANNEL
)
1786 ret
= lttng_metadata_printf(session
,
1790 " stream_id = %u;\n",
1798 ret
= lttng_metadata_printf(session
,
1799 " context := struct {\n");
1803 ret
= _lttng_context_metadata_statedump(session
, event
->ctx
);
1807 ret
= lttng_metadata_printf(session
,
1813 ret
= lttng_metadata_printf(session
,
1814 " fields := struct {\n"
1819 ret
= _lttng_fields_metadata_statedump(session
, event
);
1824 * LTTng space reservation can only reserve multiples of the
1827 ret
= lttng_metadata_printf(session
,
1833 event
->metadata_dumped
= 1;
1840 * Must be called with sessions_mutex held.
1843 int _lttng_channel_metadata_statedump(struct lttng_session
*session
,
1844 struct lttng_channel
*chan
)
1848 if (chan
->metadata_dumped
|| !ACCESS_ONCE(session
->active
))
1851 if (chan
->channel_type
== METADATA_CHANNEL
)
1854 WARN_ON_ONCE(!chan
->header_type
);
1855 ret
= lttng_metadata_printf(session
,
1858 " event.header := %s;\n"
1859 " packet.context := struct packet_context;\n",
1861 chan
->header_type
== 1 ? "struct event_header_compact" :
1862 "struct event_header_large");
1867 ret
= lttng_metadata_printf(session
,
1868 " event.context := struct {\n");
1872 ret
= _lttng_context_metadata_statedump(session
, chan
->ctx
);
1876 ret
= lttng_metadata_printf(session
,
1882 ret
= lttng_metadata_printf(session
,
1885 chan
->metadata_dumped
= 1;
1891 * Must be called with sessions_mutex held.
1894 int _lttng_stream_packet_context_declare(struct lttng_session
*session
)
1896 return lttng_metadata_printf(session
,
1897 "struct packet_context {\n"
1898 " uint64_clock_monotonic_t timestamp_begin;\n"
1899 " uint64_clock_monotonic_t timestamp_end;\n"
1900 " uint64_t content_size;\n"
1901 " uint64_t packet_size;\n"
1902 " unsigned long events_discarded;\n"
1903 " uint32_t cpu_id;\n"
1910 * id: range: 0 - 30.
1911 * id 31 is reserved to indicate an extended header.
1914 * id: range: 0 - 65534.
1915 * id 65535 is reserved to indicate an extended header.
1917 * Must be called with sessions_mutex held.
1920 int _lttng_event_header_declare(struct lttng_session
*session
)
1922 return lttng_metadata_printf(session
,
1923 "struct event_header_compact {\n"
1924 " enum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
1927 " uint27_clock_monotonic_t timestamp;\n"
1931 " uint64_clock_monotonic_t timestamp;\n"
1936 "struct event_header_large {\n"
1937 " enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;\n"
1940 " uint32_clock_monotonic_t timestamp;\n"
1944 " uint64_clock_monotonic_t timestamp;\n"
1948 lttng_alignof(uint32_t) * CHAR_BIT
,
1949 lttng_alignof(uint16_t) * CHAR_BIT
1954 * Approximation of NTP time of day to clock monotonic correlation,
1955 * taken at start of trace.
1956 * Yes, this is only an approximation. Yes, we can (and will) do better
1957 * in future versions.
1960 uint64_t measure_clock_offset(void)
1962 uint64_t offset
, monotonic
[2], realtime
;
1963 struct timespec rts
= { 0, 0 };
1964 unsigned long flags
;
1966 /* Disable interrupts to increase correlation precision. */
1967 local_irq_save(flags
);
1968 monotonic
[0] = trace_clock_read64();
1969 getnstimeofday(&rts
);
1970 monotonic
[1] = trace_clock_read64();
1971 local_irq_restore(flags
);
1973 offset
= (monotonic
[0] + monotonic
[1]) >> 1;
1974 realtime
= (uint64_t) rts
.tv_sec
* NSEC_PER_SEC
;
1975 realtime
+= rts
.tv_nsec
;
1976 offset
= realtime
- offset
;
1981 * Output metadata into this session's metadata buffers.
1982 * Must be called with sessions_mutex held.
1985 int _lttng_session_metadata_statedump(struct lttng_session
*session
)
1987 unsigned char *uuid_c
= session
->uuid
.b
;
1988 unsigned char uuid_s
[37], clock_uuid_s
[BOOT_ID_LEN
];
1989 struct lttng_channel
*chan
;
1990 struct lttng_event
*event
;
1993 if (!ACCESS_ONCE(session
->active
))
1995 if (session
->metadata_dumped
)
1998 snprintf(uuid_s
, sizeof(uuid_s
),
1999 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
2000 uuid_c
[0], uuid_c
[1], uuid_c
[2], uuid_c
[3],
2001 uuid_c
[4], uuid_c
[5], uuid_c
[6], uuid_c
[7],
2002 uuid_c
[8], uuid_c
[9], uuid_c
[10], uuid_c
[11],
2003 uuid_c
[12], uuid_c
[13], uuid_c
[14], uuid_c
[15]);
2005 ret
= lttng_metadata_printf(session
,
2006 "typealias integer { size = 8; align = %u; signed = false; } := uint8_t;\n"
2007 "typealias integer { size = 16; align = %u; signed = false; } := uint16_t;\n"
2008 "typealias integer { size = 32; align = %u; signed = false; } := uint32_t;\n"
2009 "typealias integer { size = 64; align = %u; signed = false; } := uint64_t;\n"
2010 "typealias integer { size = %u; align = %u; signed = false; } := unsigned long;\n"
2011 "typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
2012 "typealias integer { size = 27; align = 1; signed = false; } := uint27_t;\n"
2018 " byte_order = %s;\n"
2019 " packet.header := struct {\n"
2020 " uint32_t magic;\n"
2021 " uint8_t uuid[16];\n"
2022 " uint32_t stream_id;\n"
2025 lttng_alignof(uint8_t) * CHAR_BIT
,
2026 lttng_alignof(uint16_t) * CHAR_BIT
,
2027 lttng_alignof(uint32_t) * CHAR_BIT
,
2028 lttng_alignof(uint64_t) * CHAR_BIT
,
2029 sizeof(unsigned long) * CHAR_BIT
,
2030 lttng_alignof(unsigned long) * CHAR_BIT
,
2043 ret
= lttng_metadata_printf(session
,
2045 " hostname = \"%s\";\n"
2046 " domain = \"kernel\";\n"
2047 " sysname = \"%s\";\n"
2048 " kernel_release = \"%s\";\n"
2049 " kernel_version = \"%s\";\n"
2050 " tracer_name = \"lttng-modules\";\n"
2051 " tracer_major = %d;\n"
2052 " tracer_minor = %d;\n"
2053 " tracer_patchlevel = %d;\n"
2055 current
->nsproxy
->uts_ns
->name
.nodename
,
2059 LTTNG_MODULES_MAJOR_VERSION
,
2060 LTTNG_MODULES_MINOR_VERSION
,
2061 LTTNG_MODULES_PATCHLEVEL_VERSION
2066 ret
= lttng_metadata_printf(session
,
2074 if (!trace_clock_uuid(clock_uuid_s
)) {
2075 ret
= lttng_metadata_printf(session
,
2076 " uuid = \"%s\";\n",
2083 ret
= lttng_metadata_printf(session
,
2084 " description = \"Monotonic Clock\";\n"
2085 " freq = %llu; /* Frequency, in Hz */\n"
2086 " /* clock value offset from Epoch is: offset * (1/freq) */\n"
2089 (unsigned long long) trace_clock_freq(),
2090 (unsigned long long) measure_clock_offset()
2095 ret
= lttng_metadata_printf(session
,
2096 "typealias integer {\n"
2097 " size = 27; align = 1; signed = false;\n"
2098 " map = clock.monotonic.value;\n"
2099 "} := uint27_clock_monotonic_t;\n"
2101 "typealias integer {\n"
2102 " size = 32; align = %u; signed = false;\n"
2103 " map = clock.monotonic.value;\n"
2104 "} := uint32_clock_monotonic_t;\n"
2106 "typealias integer {\n"
2107 " size = 64; align = %u; signed = false;\n"
2108 " map = clock.monotonic.value;\n"
2109 "} := uint64_clock_monotonic_t;\n\n",
2110 lttng_alignof(uint32_t) * CHAR_BIT
,
2111 lttng_alignof(uint64_t) * CHAR_BIT
2116 ret
= _lttng_stream_packet_context_declare(session
);
2120 ret
= _lttng_event_header_declare(session
);
2125 list_for_each_entry(chan
, &session
->chan
, list
) {
2126 ret
= _lttng_channel_metadata_statedump(session
, chan
);
2131 list_for_each_entry(event
, &session
->events
, list
) {
2132 ret
= _lttng_event_metadata_statedump(session
, event
->chan
, event
);
2136 session
->metadata_dumped
= 1;
2142 * lttng_transport_register - LTT transport registration
2143 * @transport: transport structure
2145 * Registers a transport which can be used as output to extract the data out of
2146 * LTTng. The module calling this registration function must ensure that no
2147 * trap-inducing code will be executed by the transport functions. E.g.
2148 * vmalloc_sync_all() must be called between a vmalloc and the moment the memory
2149 * is made visible to the transport function. This registration acts as a
2150 * vmalloc_sync_all. Therefore, only if the module allocates virtual memory
2151 * after its registration must it synchronize the TLBs.
2153 void lttng_transport_register(struct lttng_transport
*transport
)
2156 * Make sure no page fault can be triggered by the module about to be
2157 * registered. We deal with this here so we don't have to call
2158 * vmalloc_sync_all() in each module's init.
2160 wrapper_vmalloc_sync_all();
2162 mutex_lock(&sessions_mutex
);
2163 list_add_tail(&transport
->node
, <tng_transport_list
);
2164 mutex_unlock(&sessions_mutex
);
2166 EXPORT_SYMBOL_GPL(lttng_transport_register
);
2169 * lttng_transport_unregister - LTT transport unregistration
2170 * @transport: transport structure
2172 void lttng_transport_unregister(struct lttng_transport
*transport
)
2174 mutex_lock(&sessions_mutex
);
2175 list_del(&transport
->node
);
2176 mutex_unlock(&sessions_mutex
);
2178 EXPORT_SYMBOL_GPL(lttng_transport_unregister
);
2180 static int __init
lttng_events_init(void)
2184 ret
= wrapper_lttng_fixup_sig(THIS_MODULE
);
2187 ret
= wrapper_get_pfnblock_flags_mask_init();
2190 ret
= lttng_context_init();
2193 ret
= lttng_tracepoint_init();
2196 event_cache
= KMEM_CACHE(lttng_event
, 0);
2201 ret
= lttng_abi_init();
2204 ret
= lttng_logger_init();
2212 kmem_cache_destroy(event_cache
);
2214 lttng_tracepoint_exit();
2216 lttng_context_exit();
2220 module_init(lttng_events_init
);
2222 static void __exit
lttng_events_exit(void)
2224 struct lttng_session
*session
, *tmpsession
;
2226 lttng_logger_exit();
2228 list_for_each_entry_safe(session
, tmpsession
, &sessions
, list
)
2229 lttng_session_destroy(session
);
2230 kmem_cache_destroy(event_cache
);
2231 lttng_tracepoint_exit();
2232 lttng_context_exit();
2235 module_exit(lttng_events_exit
);
2237 MODULE_LICENSE("GPL and additional rights");
2238 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
2239 MODULE_DESCRIPTION("LTTng Events");
2240 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
2241 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
2242 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
2243 LTTNG_MODULES_EXTRAVERSION
);