4 * (C) Copyright 2005-2008 -
5 * Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)
7 * Tracing management internal kernel API. Trace buffer allocation/free, tracing
11 * Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)
14 * Karim Yaghmour (karim@opersys.com)
15 * Tom Zanussi (zanussi@us.ibm.com)
16 * Bob Wisniewski (bob@watson.ibm.com)
18 * Bob Wisniewski (bob@watson.ibm.com)
21 * 22/09/06, Move to the marker/probes mechanism.
22 * 19/10/05, Complete lockless mechanism.
23 * 27/05/05, Modular redesign and rewrite.
26 //ust// #include <linux/time.h>
27 //ust// #include <linux/ltt-tracer.h>
28 //ust// #include <linux/module.h>
29 //ust// #include <linux/string.h>
30 //ust// #include <linux/slab.h>
31 //ust// #include <linux/init.h>
32 //ust// #include <linux/rcupdate.h>
33 //ust// #include <linux/sched.h>
34 //ust// #include <linux/bitops.h>
35 //ust// #include <linux/fs.h>
36 //ust// #include <linux/cpu.h>
37 //ust// #include <linux/kref.h>
38 //ust// #include <linux/delay.h>
39 //ust// #include <linux/vmalloc.h>
40 //ust// #include <asm/atomic.h>
41 #include "kernelcompat.h"
42 #include "tracercore.h"
46 //ust// static void async_wakeup(unsigned long data);
48 //ust// static DEFINE_TIMER(ltt_async_wakeup_timer, async_wakeup, 0, 0);
50 /* Default callbacks for modules */
51 notrace
int ltt_filter_control_default(enum ltt_filter_control_msg msg
,
52 struct ltt_trace_struct
*trace
)
57 int ltt_statedump_default(struct ltt_trace_struct
*trace
)
62 /* Callbacks for registered modules */
64 int (*ltt_filter_control_functor
)
65 (enum ltt_filter_control_msg msg
, struct ltt_trace_struct
*trace
) =
66 ltt_filter_control_default
;
67 struct module
*ltt_filter_control_owner
;
69 /* These function pointers are protected by a trace activation check */
70 struct module
*ltt_run_filter_owner
;
71 int (*ltt_statedump_functor
)(struct ltt_trace_struct
*trace
) =
72 ltt_statedump_default
;
73 struct module
*ltt_statedump_owner
;
75 struct chan_info_struct
{
77 unsigned int def_subbufsize
;
78 unsigned int def_subbufcount
;
80 [LTT_CHANNEL_METADATA
] = {
82 LTT_DEFAULT_SUBBUF_SIZE_LOW
,
83 LTT_DEFAULT_N_SUBBUFS_LOW
,
87 LTT_DEFAULT_SUBBUF_SIZE_HIGH
,
88 LTT_DEFAULT_N_SUBBUFS_HIGH
,
92 static enum ltt_channels
get_channel_type_from_name(const char *name
)
97 return LTT_CHANNEL_UST
;
99 for (i
= 0; i
< ARRAY_SIZE(chan_infos
); i
++)
100 if (chan_infos
[i
].name
&& !strcmp(name
, chan_infos
[i
].name
))
101 return (enum ltt_channels
)i
;
103 return LTT_CHANNEL_UST
;
107 * ltt_module_register - LTT module registration
109 * @function: callback to register
110 * @owner: module which owns the callback
112 * The module calling this registration function must ensure that no
113 * trap-inducing code will be executed by "function". E.g. vmalloc_sync_all()
114 * must be called between a vmalloc and the moment the memory is made visible to
115 * "function". This registration acts as a vmalloc_sync_all. Therefore, only if
116 * the module allocates virtual memory after its registration must it
117 * synchronize the TLBs.
119 //ust// int ltt_module_register(enum ltt_module_function name, void *function,
120 //ust// struct module *owner)
125 //ust// * Make sure no page fault can be triggered by the module about to be
126 //ust// * registered. We deal with this here so we don't have to call
127 //ust// * vmalloc_sync_all() in each module's init.
129 //ust// vmalloc_sync_all();
131 //ust// switch (name) {
132 //ust// case LTT_FUNCTION_RUN_FILTER:
133 //ust// if (ltt_run_filter_owner != NULL) {
134 //ust// ret = -EEXIST;
137 //ust// ltt_filter_register((ltt_run_filter_functor)function);
138 //ust// ltt_run_filter_owner = owner;
140 //ust// case LTT_FUNCTION_FILTER_CONTROL:
141 //ust// if (ltt_filter_control_owner != NULL) {
142 //ust// ret = -EEXIST;
145 //ust// ltt_filter_control_functor =
146 //ust// (int (*)(enum ltt_filter_control_msg,
147 //ust// struct ltt_trace_struct *))function;
148 //ust// ltt_filter_control_owner = owner;
150 //ust// case LTT_FUNCTION_STATEDUMP:
151 //ust// if (ltt_statedump_owner != NULL) {
152 //ust// ret = -EEXIST;
155 //ust// ltt_statedump_functor =
156 //ust// (int (*)(struct ltt_trace_struct *))function;
157 //ust// ltt_statedump_owner = owner;
165 //ust// EXPORT_SYMBOL_GPL(ltt_module_register);
168 * ltt_module_unregister - LTT module unregistration
171 //ust// void ltt_module_unregister(enum ltt_module_function name)
173 //ust// switch (name) {
174 //ust// case LTT_FUNCTION_RUN_FILTER:
175 //ust// ltt_filter_unregister();
176 //ust// ltt_run_filter_owner = NULL;
177 //ust// /* Wait for preempt sections to finish */
178 //ust// synchronize_sched();
180 //ust// case LTT_FUNCTION_FILTER_CONTROL:
181 //ust// ltt_filter_control_functor = ltt_filter_control_default;
182 //ust// ltt_filter_control_owner = NULL;
184 //ust// case LTT_FUNCTION_STATEDUMP:
185 //ust// ltt_statedump_functor = ltt_statedump_default;
186 //ust// ltt_statedump_owner = NULL;
191 //ust// EXPORT_SYMBOL_GPL(ltt_module_unregister);
193 static LIST_HEAD(ltt_transport_list
);
196 * ltt_transport_register - LTT transport registration
197 * @transport: transport structure
199 * Registers a transport which can be used as output to extract the data out of
200 * LTTng. The module calling this registration function must ensure that no
201 * trap-inducing code will be executed by the transport functions. E.g.
202 * vmalloc_sync_all() must be called between a vmalloc and the moment the memory
203 * is made visible to the transport function. This registration acts as a
204 * vmalloc_sync_all. Therefore, only if the module allocates virtual memory
205 * after its registration must it synchronize the TLBs.
207 void ltt_transport_register(struct ltt_transport
*transport
)
210 * Make sure no page fault can be triggered by the module about to be
211 * registered. We deal with this here so we don't have to call
212 * vmalloc_sync_all() in each module's init.
214 //ust// vmalloc_sync_all();
217 list_add_tail(&transport
->node
, <t_transport_list
);
220 //ust// EXPORT_SYMBOL_GPL(ltt_transport_register);
223 * ltt_transport_unregister - LTT transport unregistration
224 * @transport: transport structure
226 void ltt_transport_unregister(struct ltt_transport
*transport
)
229 list_del(&transport
->node
);
232 //ust// EXPORT_SYMBOL_GPL(ltt_transport_unregister);
234 static inline int is_channel_overwrite(enum ltt_channels chan
,
235 enum trace_mode mode
)
238 case LTT_TRACE_NORMAL
:
240 case LTT_TRACE_FLIGHT
:
242 case LTT_CHANNEL_METADATA
:
247 case LTT_TRACE_HYBRID
:
249 case LTT_CHANNEL_METADATA
:
260 * ltt_write_trace_header - Write trace header
261 * @trace: Trace information
262 * @header: Memory address where the information must be written to
264 void notrace
ltt_write_trace_header(struct ltt_trace_struct
*trace
,
265 struct ltt_subbuffer_header
*header
)
267 header
->magic_number
= LTT_TRACER_MAGIC_NUMBER
;
268 header
->major_version
= LTT_TRACER_VERSION_MAJOR
;
269 header
->minor_version
= LTT_TRACER_VERSION_MINOR
;
270 header
->arch_size
= sizeof(void *);
271 header
->alignment
= ltt_get_alignment();
272 header
->start_time_sec
= trace
->start_time
.tv_sec
;
273 header
->start_time_usec
= trace
->start_time
.tv_usec
;
274 header
->start_freq
= trace
->start_freq
;
275 header
->freq_scale
= trace
->freq_scale
;
277 //ust// EXPORT_SYMBOL_GPL(ltt_write_trace_header);
279 static void trace_async_wakeup(struct ltt_trace_struct
*trace
)
282 struct ltt_channel_struct
*chan
;
284 /* Must check each channel for pending read wakeup */
285 for (i
= 0; i
< trace
->nr_channels
; i
++) {
286 chan
= &trace
->channels
[i
];
288 trace
->ops
->wakeup_channel(chan
);
292 //ust// /* Timer to send async wakeups to the readers */
293 //ust// static void async_wakeup(unsigned long data)
295 //ust// struct ltt_trace_struct *trace;
298 //ust// * PREEMPT_RT does not allow spinlocks to be taken within preempt
299 //ust// * disable sections (spinlock taken in wake_up). However, mainline won't
300 //ust// * allow mutex to be taken in interrupt context. Ugly.
301 //ust// * A proper way to do this would be to turn the timer into a
302 //ust// * periodically woken up thread, but it adds to the footprint.
304 //ust// #ifndef CONFIG_PREEMPT_RT
305 //ust// rcu_read_lock_sched();
307 //ust// ltt_lock_traces();
309 //ust// list_for_each_entry_rcu(trace, <t_traces.head, list) {
310 //ust// trace_async_wakeup(trace);
312 //ust// #ifndef CONFIG_PREEMPT_RT
313 //ust// rcu_read_unlock_sched();
315 //ust// ltt_unlock_traces();
318 //ust// mod_timer(<t_async_wakeup_timer, jiffies + LTT_PERCPU_TIMER_INTERVAL);
322 * _ltt_trace_find - find a trace by given name.
323 * trace_name: trace name
325 * Returns a pointer to the trace structure, NULL if not found.
327 struct ltt_trace_struct
*_ltt_trace_find(const char *trace_name
)
329 struct ltt_trace_struct
*trace
;
331 list_for_each_entry(trace
, <t_traces
.head
, list
)
332 if (!strncmp(trace
->trace_name
, trace_name
, NAME_MAX
))
338 /* _ltt_trace_find_setup :
339 * find a trace in setup list by given name.
341 * Returns a pointer to the trace structure, NULL if not found.
343 struct ltt_trace_struct
*_ltt_trace_find_setup(const char *trace_name
)
345 struct ltt_trace_struct
*trace
;
347 list_for_each_entry(trace
, <t_traces
.setup_head
, list
)
348 if (!strncmp(trace
->trace_name
, trace_name
, NAME_MAX
))
353 //ust// EXPORT_SYMBOL_GPL(_ltt_trace_find_setup);
356 * ltt_release_transport - Release an LTT transport
357 * @kref : reference count on the transport
359 void ltt_release_transport(struct kref
*kref
)
361 struct ltt_trace_struct
*trace
= container_of(kref
,
362 struct ltt_trace_struct
, ltt_transport_kref
);
363 //ust// trace->ops->remove_dirs(trace);
365 //ust// EXPORT_SYMBOL_GPL(ltt_release_transport);
368 * ltt_release_trace - Release a LTT trace
369 * @kref : reference count on the trace
371 void ltt_release_trace(struct kref
*kref
)
373 struct ltt_trace_struct
*trace
= container_of(kref
,
374 struct ltt_trace_struct
, kref
);
375 ltt_channels_trace_free(trace
->channels
);
378 //ust// EXPORT_SYMBOL_GPL(ltt_release_trace);
380 static inline void prepare_chan_size_num(unsigned int *subbuf_size
,
381 unsigned int *n_subbufs
)
383 *subbuf_size
= 1 << get_count_order(*subbuf_size
);
384 *n_subbufs
= 1 << get_count_order(*n_subbufs
);
386 /* Subbuf size and number must both be power of two */
387 WARN_ON(hweight32(*subbuf_size
) != 1);
388 WARN_ON(hweight32(*n_subbufs
) != 1);
391 int _ltt_trace_setup(const char *trace_name
)
394 struct ltt_trace_struct
*new_trace
= NULL
;
397 enum ltt_channels chantype
;
399 if (_ltt_trace_find_setup(trace_name
)) {
400 printk(KERN_ERR
"LTT : Trace name %s already used.\n",
406 if (_ltt_trace_find(trace_name
)) {
407 printk(KERN_ERR
"LTT : Trace name %s already used.\n",
413 new_trace
= kzalloc(sizeof(struct ltt_trace_struct
), GFP_KERNEL
);
416 "LTT : Unable to allocate memory for trace %s\n",
421 strncpy(new_trace
->trace_name
, trace_name
, NAME_MAX
);
422 new_trace
->channels
= ltt_channels_trace_alloc(&new_trace
->nr_channels
,
424 if (!new_trace
->channels
) {
426 "LTT : Unable to allocate memory for chaninfo %s\n",
433 * Force metadata channel to active, no overwrite.
435 metadata_index
= ltt_channels_get_index_from_name("metadata");
436 WARN_ON(metadata_index
< 0);
437 new_trace
->channels
[metadata_index
].overwrite
= 0;
438 new_trace
->channels
[metadata_index
].active
= 1;
441 * Set hardcoded tracer defaults for some channels
443 for (chan
= 0; chan
< new_trace
->nr_channels
; chan
++) {
444 if (!(new_trace
->channels
[chan
].active
))
447 chantype
= get_channel_type_from_name(
448 ltt_channels_get_name_from_index(chan
));
449 new_trace
->channels
[chan
].subbuf_size
=
450 chan_infos
[chantype
].def_subbufsize
;
451 new_trace
->channels
[chan
].subbuf_cnt
=
452 chan_infos
[chantype
].def_subbufcount
;
455 list_add(&new_trace
->list
, <t_traces
.setup_head
);
463 //ust// EXPORT_SYMBOL_GPL(_ltt_trace_setup);
466 int ltt_trace_setup(const char *trace_name
)
470 ret
= _ltt_trace_setup(trace_name
);
474 //ust// EXPORT_SYMBOL_GPL(ltt_trace_setup);
476 /* must be called from within a traces lock. */
477 static void _ltt_trace_free(struct ltt_trace_struct
*trace
)
479 list_del(&trace
->list
);
483 int ltt_trace_set_type(const char *trace_name
, const char *trace_type
)
486 struct ltt_trace_struct
*trace
;
487 struct ltt_transport
*tran_iter
, *transport
= NULL
;
491 trace
= _ltt_trace_find_setup(trace_name
);
493 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
498 list_for_each_entry(tran_iter
, <t_transport_list
, node
) {
499 if (!strcmp(tran_iter
->name
, trace_type
)) {
500 transport
= tran_iter
;
505 printk(KERN_ERR
"LTT : Transport %s is not present.\n",
511 trace
->transport
= transport
;
517 //ust// EXPORT_SYMBOL_GPL(ltt_trace_set_type);
519 int ltt_trace_set_channel_subbufsize(const char *trace_name
,
520 const char *channel_name
, unsigned int size
)
523 struct ltt_trace_struct
*trace
;
528 trace
= _ltt_trace_find_setup(trace_name
);
530 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
535 index
= ltt_channels_get_index_from_name(channel_name
);
537 printk(KERN_ERR
"LTT : Channel %s not found\n", channel_name
);
541 trace
->channels
[index
].subbuf_size
= size
;
547 //ust// EXPORT_SYMBOL_GPL(ltt_trace_set_channel_subbufsize);
549 int ltt_trace_set_channel_subbufcount(const char *trace_name
,
550 const char *channel_name
, unsigned int cnt
)
553 struct ltt_trace_struct
*trace
;
558 trace
= _ltt_trace_find_setup(trace_name
);
560 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
565 index
= ltt_channels_get_index_from_name(channel_name
);
567 printk(KERN_ERR
"LTT : Channel %s not found\n", channel_name
);
571 trace
->channels
[index
].subbuf_cnt
= cnt
;
577 //ust// EXPORT_SYMBOL_GPL(ltt_trace_set_channel_subbufcount);
579 int ltt_trace_set_channel_enable(const char *trace_name
,
580 const char *channel_name
, unsigned int enable
)
583 struct ltt_trace_struct
*trace
;
588 trace
= _ltt_trace_find_setup(trace_name
);
590 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
596 * Datas in metadata channel(marker info) is necessary to be able to
597 * read the trace, we always enable this channel.
599 if (!enable
&& !strcmp(channel_name
, "metadata")) {
600 printk(KERN_ERR
"LTT : Trying to disable metadata channel\n");
605 index
= ltt_channels_get_index_from_name(channel_name
);
607 printk(KERN_ERR
"LTT : Channel %s not found\n", channel_name
);
612 trace
->channels
[index
].active
= enable
;
618 //ust// EXPORT_SYMBOL_GPL(ltt_trace_set_channel_enable);
620 int ltt_trace_set_channel_overwrite(const char *trace_name
,
621 const char *channel_name
, unsigned int overwrite
)
624 struct ltt_trace_struct
*trace
;
629 trace
= _ltt_trace_find_setup(trace_name
);
631 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
637 * Always put the metadata channel in non-overwrite mode :
638 * This is a very low traffic channel and it can't afford to have its
639 * data overwritten : this data (marker info) is necessary to be
640 * able to read the trace.
642 if (overwrite
&& !strcmp(channel_name
, "metadata")) {
643 printk(KERN_ERR
"LTT : Trying to set metadata channel to "
649 index
= ltt_channels_get_index_from_name(channel_name
);
651 printk(KERN_ERR
"LTT : Channel %s not found\n", channel_name
);
656 trace
->channels
[index
].overwrite
= overwrite
;
662 //ust// EXPORT_SYMBOL_GPL(ltt_trace_set_channel_overwrite);
664 int ltt_trace_alloc(const char *trace_name
)
667 struct ltt_trace_struct
*trace
;
668 int subbuf_size
, subbuf_cnt
;
671 const char *channel_name
;
675 trace
= _ltt_trace_find_setup(trace_name
);
677 printk(KERN_ERR
"LTT : Trace not found %s\n", trace_name
);
682 kref_init(&trace
->kref
);
683 kref_init(&trace
->ltt_transport_kref
);
684 //ust// init_waitqueue_head(&trace->kref_wq);
686 //ust// get_trace_clock();
687 trace
->freq_scale
= trace_clock_freq_scale();
689 if (!trace
->transport
) {
690 printk(KERN_ERR
"LTT : Transport is not set.\n");
692 goto transport_error
;
694 //ust// if (!try_module_get(trace->transport->owner)) {
695 //ust// printk(KERN_ERR "LTT : Can't lock transport module.\n");
696 //ust// err = -ENODEV;
697 //ust// goto transport_error;
699 trace
->ops
= &trace
->transport
->ops
;
701 //ust// err = trace->ops->create_dirs(trace);
703 //ust// printk(KERN_ERR "LTT : Can't create dir for trace %s.\n",
705 //ust// goto dirs_error;
708 //ust// local_irq_save(flags);
709 trace
->start_freq
= trace_clock_frequency();
710 trace
->start_tsc
= trace_clock_read64();
711 gettimeofday(&trace
->start_time
, NULL
); //ust// changed
712 //ust// local_irq_restore(flags);
714 for (chan
= 0; chan
< trace
->nr_channels
; chan
++) {
715 if (!(trace
->channels
[chan
].active
))
718 channel_name
= ltt_channels_get_name_from_index(chan
);
719 WARN_ON(!channel_name
);
720 subbuf_size
= trace
->channels
[chan
].subbuf_size
;
721 subbuf_cnt
= trace
->channels
[chan
].subbuf_cnt
;
722 prepare_chan_size_num(&subbuf_size
, &subbuf_cnt
);
723 err
= trace
->ops
->create_channel(trace_name
, trace
,
724 trace
->dentry
.trace_root
,
726 &trace
->channels
[chan
],
729 trace
->channels
[chan
].overwrite
);
731 printk(KERN_ERR
"LTT : Can't create channel %s.\n",
733 goto create_channel_error
;
737 list_del(&trace
->list
);
738 //ust// if (list_empty(<t_traces.head)) {
739 //ust// mod_timer(<t_async_wakeup_timer,
740 //ust// jiffies + LTT_PERCPU_TIMER_INTERVAL);
741 //ust// set_kernel_trace_flag_all_tasks();
743 list_add_rcu(&trace
->list
, <t_traces
.head
);
744 //ust// synchronize_sched();
750 create_channel_error
:
751 for (chan
--; chan
>= 0; chan
--)
752 if (trace
->channels
[chan
].active
)
753 trace
->ops
->remove_channel(&trace
->channels
[chan
]);
756 //ust// module_put(trace->transport->owner);
758 //ust// put_trace_clock();
763 //ust// EXPORT_SYMBOL_GPL(ltt_trace_alloc);
766 * It is worked as a wrapper for current version of ltt_control.ko.
767 * We will make a new ltt_control based on debugfs, and control each channel's
770 static int ltt_trace_create(const char *trace_name
, const char *trace_type
,
771 enum trace_mode mode
,
772 unsigned int subbuf_size_low
, unsigned int n_subbufs_low
,
773 unsigned int subbuf_size_med
, unsigned int n_subbufs_med
,
774 unsigned int subbuf_size_high
, unsigned int n_subbufs_high
)
778 err
= ltt_trace_setup(trace_name
);
779 if (IS_ERR_VALUE(err
))
782 err
= ltt_trace_set_type(trace_name
, trace_type
);
783 if (IS_ERR_VALUE(err
))
786 err
= ltt_trace_alloc(trace_name
);
787 if (IS_ERR_VALUE(err
))
793 /* Must be called while sure that trace is in the list. */
794 static int _ltt_trace_destroy(struct ltt_trace_struct
*trace
)
804 "LTT : Can't destroy trace %s : tracer is active\n",
809 /* Everything went fine */
810 //ust// list_del_rcu(&trace->list);
811 //ust// synchronize_sched();
812 if (list_empty(<t_traces
.head
)) {
813 //ust// clear_kernel_trace_flag_all_tasks();
815 * We stop the asynchronous delivery of reader wakeup, but
816 * we must make one last check for reader wakeups pending
817 * later in __ltt_trace_destroy.
819 //ust// del_timer_sync(<t_async_wakeup_timer);
829 /* Sleepable part of the destroy */
830 static void __ltt_trace_destroy(struct ltt_trace_struct
*trace
)
833 struct ltt_channel_struct
*chan
;
835 for (i
= 0; i
< trace
->nr_channels
; i
++) {
836 chan
= &trace
->channels
[i
];
838 trace
->ops
->finish_channel(chan
);
841 return; /* FIXME: temporary for ust */
842 //ust// flush_scheduled_work();
845 * The currently destroyed trace is not in the trace list anymore,
846 * so it's safe to call the async wakeup ourself. It will deliver
847 * the last subbuffers.
849 trace_async_wakeup(trace
);
851 for (i
= 0; i
< trace
->nr_channels
; i
++) {
852 chan
= &trace
->channels
[i
];
854 trace
->ops
->remove_channel(chan
);
857 kref_put(&trace
->ltt_transport_kref
, ltt_release_transport
);
859 //ust// module_put(trace->transport->owner);
862 * Wait for lttd readers to release the files, therefore making sure
863 * the last subbuffers have been read.
865 //ust// if (atomic_read(&trace->kref.refcount) > 1) {
867 //ust// __wait_event_interruptible(trace->kref_wq,
868 //ust// (atomic_read(&trace->kref.refcount) == 1), ret);
870 kref_put(&trace
->kref
, ltt_release_trace
);
873 int ltt_trace_destroy(const char *trace_name
)
876 struct ltt_trace_struct
*trace
;
880 trace
= _ltt_trace_find(trace_name
);
882 err
= _ltt_trace_destroy(trace
);
888 __ltt_trace_destroy(trace
);
889 //ust// put_trace_clock();
894 trace
= _ltt_trace_find_setup(trace_name
);
896 _ltt_trace_free(trace
);
908 //ust// EXPORT_SYMBOL_GPL(ltt_trace_destroy);
910 /* must be called from within a traces lock. */
911 static int _ltt_trace_start(struct ltt_trace_struct
*trace
)
920 printk(KERN_INFO
"LTT : Tracing already active for trace %s\n",
922 //ust// if (!try_module_get(ltt_run_filter_owner)) {
923 //ust// err = -ENODEV;
924 //ust// printk(KERN_ERR "LTT : Can't lock filter module.\n");
925 //ust// goto get_ltt_run_filter_error;
928 /* Read by trace points without protection : be careful */
929 ltt_traces
.num_active_traces
++;
933 get_ltt_run_filter_error
:
938 int ltt_trace_start(const char *trace_name
)
941 struct ltt_trace_struct
*trace
;
945 trace
= _ltt_trace_find(trace_name
);
946 err
= _ltt_trace_start(trace
);
953 * Call the kernel state dump.
954 * Events will be mixed with real kernel events, it's ok.
955 * Notice that there is no protection on the trace : that's exactly
956 * why we iterate on the list and check for trace equality instead of
957 * directly using this trace handle inside the logging function.
960 ltt_dump_marker_state(trace
);
962 //ust// if (!try_module_get(ltt_statedump_owner)) {
963 //ust// err = -ENODEV;
964 //ust// printk(KERN_ERR
965 //ust// "LTT : Can't lock state dump module.\n");
967 ltt_statedump_functor(trace
);
968 //ust// module_put(ltt_statedump_owner);
978 //ust// EXPORT_SYMBOL_GPL(ltt_trace_start);
980 /* must be called from within traces lock */
981 static int _ltt_trace_stop(struct ltt_trace_struct
*trace
)
990 printk(KERN_INFO
"LTT : Tracing not active for trace %s\n",
994 ltt_traces
.num_active_traces
--;
995 //ust// synchronize_sched(); /* Wait for each tracing to be finished */
997 //ust// module_put(ltt_run_filter_owner);
998 /* Everything went fine */
1001 /* Error handling */
1006 int ltt_trace_stop(const char *trace_name
)
1009 struct ltt_trace_struct
*trace
;
1012 trace
= _ltt_trace_find(trace_name
);
1013 err
= _ltt_trace_stop(trace
);
1014 ltt_unlock_traces();
1017 //ust// EXPORT_SYMBOL_GPL(ltt_trace_stop);
1020 * ltt_control - Trace control in-kernel API
1021 * @msg: Action to perform
1022 * @trace_name: Trace on which the action must be done
1023 * @trace_type: Type of trace (normal, flight, hybrid)
1024 * @args: Arguments specific to the action
1026 //ust// int ltt_control(enum ltt_control_msg msg, const char *trace_name,
1027 //ust// const char *trace_type, union ltt_control_args args)
1029 //ust// int err = -EPERM;
1031 //ust// printk(KERN_ALERT "ltt_control : trace %s\n", trace_name);
1032 //ust// switch (msg) {
1033 //ust// case LTT_CONTROL_START:
1034 //ust// printk(KERN_DEBUG "Start tracing %s\n", trace_name);
1035 //ust// err = ltt_trace_start(trace_name);
1037 //ust// case LTT_CONTROL_STOP:
1038 //ust// printk(KERN_DEBUG "Stop tracing %s\n", trace_name);
1039 //ust// err = ltt_trace_stop(trace_name);
1041 //ust// case LTT_CONTROL_CREATE_TRACE:
1042 //ust// printk(KERN_DEBUG "Creating trace %s\n", trace_name);
1043 //ust// err = ltt_trace_create(trace_name, trace_type,
1044 //ust// args.new_trace.mode,
1045 //ust// args.new_trace.subbuf_size_low,
1046 //ust// args.new_trace.n_subbufs_low,
1047 //ust// args.new_trace.subbuf_size_med,
1048 //ust// args.new_trace.n_subbufs_med,
1049 //ust// args.new_trace.subbuf_size_high,
1050 //ust// args.new_trace.n_subbufs_high);
1052 //ust// case LTT_CONTROL_DESTROY_TRACE:
1053 //ust// printk(KERN_DEBUG "Destroying trace %s\n", trace_name);
1054 //ust// err = ltt_trace_destroy(trace_name);
1059 //ust// EXPORT_SYMBOL_GPL(ltt_control);
1062 * ltt_filter_control - Trace filter control in-kernel API
1063 * @msg: Action to perform on the filter
1064 * @trace_name: Trace on which the action must be done
1066 int ltt_filter_control(enum ltt_filter_control_msg msg
, const char *trace_name
)
1069 struct ltt_trace_struct
*trace
;
1071 printk(KERN_DEBUG
"ltt_filter_control : trace %s\n", trace_name
);
1073 trace
= _ltt_trace_find(trace_name
);
1074 if (trace
== NULL
) {
1076 "Trace does not exist. Cannot proxy control request\n");
1080 //ust// if (!try_module_get(ltt_filter_control_owner)) {
1081 //ust// err = -ENODEV;
1082 //ust// goto get_module_error;
1085 case LTT_FILTER_DEFAULT_ACCEPT
:
1087 "Proxy filter default accept %s\n", trace_name
);
1088 err
= (*ltt_filter_control_functor
)(msg
, trace
);
1090 case LTT_FILTER_DEFAULT_REJECT
:
1092 "Proxy filter default reject %s\n", trace_name
);
1093 err
= (*ltt_filter_control_functor
)(msg
, trace
);
1098 //ust// module_put(ltt_filter_control_owner);
1102 ltt_unlock_traces();
1105 //ust// EXPORT_SYMBOL_GPL(ltt_filter_control);
1107 //ust// int __init ltt_init(void)
1109 //ust// /* Make sure no page fault can be triggered by this module */
1110 //ust// vmalloc_sync_all();
1114 //ust// module_init(ltt_init)
1116 //ust// static void __exit ltt_exit(void)
1118 //ust// struct ltt_trace_struct *trace;
1119 //ust// struct list_head *pos, *n;
1121 //ust// ltt_lock_traces();
1122 //ust// /* Stop each trace, currently being read by RCU read-side */
1123 //ust// list_for_each_entry_rcu(trace, <t_traces.head, list)
1124 //ust// _ltt_trace_stop(trace);
1125 //ust// /* Wait for quiescent state. Readers have preemption disabled. */
1126 //ust// synchronize_sched();
1127 //ust// /* Safe iteration is now permitted. It does not have to be RCU-safe
1128 //ust// * because no readers are left. */
1129 //ust// list_for_each_safe(pos, n, <t_traces.head) {
1130 //ust// trace = container_of(pos, struct ltt_trace_struct, list);
1131 //ust// /* _ltt_trace_destroy does a synchronize_sched() */
1132 //ust// _ltt_trace_destroy(trace);
1133 //ust// __ltt_trace_destroy(trace);
1135 //ust// /* free traces in pre-alloc status */
1136 //ust// list_for_each_safe(pos, n, <t_traces.setup_head) {
1137 //ust// trace = container_of(pos, struct ltt_trace_struct, list);
1138 //ust// _ltt_trace_free(trace);
1141 //ust// ltt_unlock_traces();
1144 //ust// module_exit(ltt_exit)
1146 //ust// MODULE_LICENSE("GPL");
1147 //ust// MODULE_AUTHOR("Mathieu Desnoyers");
1148 //ust// MODULE_DESCRIPTION("Linux Trace Toolkit Next Generation Tracer Kernel API");