2 * probes/lttng-ftrace.c
4 * LTTng function tracer integration module.
6 * Copyright (C) 2009-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 * Ftrace function tracer does not seem to provide synchronization between probe
25 * teardown and callback execution. Therefore, we make this module permanently
26 * loaded (unloadable).
28 * TODO: Move to register_ftrace_function() (which is exported for
29 * modules) for Linux >= 3.0. It is faster (only enables the selected
30 * functions), and will stay there.
33 #include <linux/module.h>
34 #include <linux/ftrace.h>
35 #include <linux/slab.h>
36 #include <lttng-events.h>
37 #include <wrapper/ringbuffer/frontend_types.h>
38 #include <wrapper/ftrace.h>
39 #include <wrapper/vmalloc.h>
40 #include <lttng-tracer.h>
42 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0))
44 void lttng_ftrace_handler(unsigned long ip
, unsigned long parent_ip
,
45 struct trace_array
*tr
, struct ftrace_probe_ops
*ops
,
48 struct lttng_event
*event
= data
;
49 struct lttng_probe_ctx lttng_probe_ctx
= {
51 .interruptible
= !irqs_disabled(),
53 struct lttng_channel
*chan
= event
->chan
;
54 struct lib_ring_buffer_ctx ctx
;
57 unsigned long parent_ip
;
61 if (unlikely(!READ_ONCE(chan
->session
->active
)))
63 if (unlikely(!READ_ONCE(chan
->enabled
)))
65 if (unlikely(!READ_ONCE(event
->enabled
)))
68 lib_ring_buffer_ctx_init(&ctx
, chan
->chan
, <tng_probe_ctx
,
69 sizeof(payload
), lttng_alignof(payload
), -1);
70 ret
= chan
->ops
->event_reserve(&ctx
, event
->id
);
74 payload
.parent_ip
= parent_ip
;
75 lib_ring_buffer_align_ctx(&ctx
, lttng_alignof(payload
));
76 chan
->ops
->event_write(&ctx
, &payload
, sizeof(payload
));
77 chan
->ops
->event_commit(&ctx
);
82 void lttng_ftrace_handler(unsigned long ip
, unsigned long parent_ip
, void **data
)
84 struct lttng_event
*event
= *data
;
85 struct lttng_probe_ctx lttng_probe_ctx
= {
87 .interruptible
= !irqs_disabled(),
89 struct lttng_channel
*chan
= event
->chan
;
90 struct lib_ring_buffer_ctx ctx
;
93 unsigned long parent_ip
;
97 if (unlikely(!READ_ONCE(chan
->session
->active
)))
99 if (unlikely(!READ_ONCE(chan
->enabled
)))
101 if (unlikely(!READ_ONCE(event
->enabled
)))
104 lib_ring_buffer_ctx_init(&ctx
, chan
->chan
, <tng_probe_ctx
,
105 sizeof(payload
), lttng_alignof(payload
), -1);
106 ret
= chan
->ops
->event_reserve(&ctx
, event
->id
);
110 payload
.parent_ip
= parent_ip
;
111 lib_ring_buffer_align_ctx(&ctx
, lttng_alignof(payload
));
112 chan
->ops
->event_write(&ctx
, &payload
, sizeof(payload
));
113 chan
->ops
->event_commit(&ctx
);
119 * Create event description
122 int lttng_create_ftrace_event(const char *name
, struct lttng_event
*event
)
124 struct lttng_event_field
*fields
;
125 struct lttng_event_desc
*desc
;
128 desc
= kzalloc(sizeof(*event
->desc
), GFP_KERNEL
);
131 desc
->name
= kstrdup(name
, GFP_KERNEL
);
137 desc
->fields
= fields
=
138 kzalloc(2 * sizeof(struct lttng_event_field
), GFP_KERNEL
);
143 fields
[0].name
= "ip";
144 fields
[0].type
.atype
= atype_integer
;
145 fields
[0].type
.u
.basic
.integer
.size
= sizeof(unsigned long) * CHAR_BIT
;
146 fields
[0].type
.u
.basic
.integer
.alignment
= lttng_alignof(unsigned long) * CHAR_BIT
;
147 fields
[0].type
.u
.basic
.integer
.signedness
= lttng_is_signed_type(unsigned long);
148 fields
[0].type
.u
.basic
.integer
.reverse_byte_order
= 0;
149 fields
[0].type
.u
.basic
.integer
.base
= 16;
150 fields
[0].type
.u
.basic
.integer
.encoding
= lttng_encode_none
;
152 fields
[1].name
= "parent_ip";
153 fields
[1].type
.atype
= atype_integer
;
154 fields
[1].type
.u
.basic
.integer
.size
= sizeof(unsigned long) * CHAR_BIT
;
155 fields
[1].type
.u
.basic
.integer
.alignment
= lttng_alignof(unsigned long) * CHAR_BIT
;
156 fields
[1].type
.u
.basic
.integer
.signedness
= lttng_is_signed_type(unsigned long);
157 fields
[1].type
.u
.basic
.integer
.reverse_byte_order
= 0;
158 fields
[1].type
.u
.basic
.integer
.base
= 16;
159 fields
[1].type
.u
.basic
.integer
.encoding
= lttng_encode_none
;
161 desc
->owner
= THIS_MODULE
;
174 struct ftrace_probe_ops lttng_ftrace_ops
= {
175 .func
= lttng_ftrace_handler
,
178 int lttng_ftrace_register(const char *name
,
179 const char *symbol_name
,
180 struct lttng_event
*event
)
184 ret
= lttng_create_ftrace_event(name
, event
);
188 event
->u
.ftrace
.symbol_name
= kstrdup(symbol_name
, GFP_KERNEL
);
189 if (!event
->u
.ftrace
.symbol_name
)
192 /* Ensure the memory we just allocated don't trigger page faults */
193 wrapper_vmalloc_sync_all();
195 ret
= wrapper_register_ftrace_function_probe(event
->u
.ftrace
.symbol_name
,
196 <tng_ftrace_ops
, event
);
202 kfree(event
->u
.ftrace
.symbol_name
);
204 kfree(event
->desc
->name
);
209 EXPORT_SYMBOL_GPL(lttng_ftrace_register
);
211 void lttng_ftrace_unregister(struct lttng_event
*event
)
213 wrapper_unregister_ftrace_function_probe(event
->u
.ftrace
.symbol_name
,
214 <tng_ftrace_ops
, event
);
216 EXPORT_SYMBOL_GPL(lttng_ftrace_unregister
);
218 void lttng_ftrace_destroy_private(struct lttng_event
*event
)
220 kfree(event
->u
.ftrace
.symbol_name
);
221 kfree(event
->desc
->fields
);
222 kfree(event
->desc
->name
);
225 EXPORT_SYMBOL_GPL(lttng_ftrace_destroy_private
);
227 int lttng_ftrace_init(void)
229 wrapper_vmalloc_sync_all();
232 module_init(lttng_ftrace_init
)
235 * Ftrace takes care of waiting for a grace period (RCU sched) at probe
236 * unregistration, and disables preemption around probe call.
238 void lttng_ftrace_exit(void)
241 module_exit(lttng_ftrace_exit
)
243 MODULE_LICENSE("GPL and additional rights");
244 MODULE_AUTHOR("Mathieu Desnoyers");
245 MODULE_DESCRIPTION("Linux Trace Toolkit Ftrace Support");
246 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
247 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
248 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
249 LTTNG_MODULES_EXTRAVERSION
);