2 * Copyright (C) 2008 Mathieu Desnoyers
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #include <linux/module.h>
19 #include <linux/mutex.h>
20 #include <linux/types.h>
21 #include <linux/jhash.h>
22 #include <linux/list.h>
23 #include <linux/rcupdate.h>
24 #include <linux/tracepoint.h>
25 #include <linux/err.h>
26 #include <linux/slab.h>
27 #include <linux/sched.h>
29 extern struct tracepoint __start___tracepoints
[];
30 extern struct tracepoint __stop___tracepoints
[];
32 /* Set to 1 to enable tracepoint debug output */
33 static const int tracepoint_debug
;
36 * tracepoints_mutex nests inside module_mutex. Tracepoints mutex protects the
37 * builtin and module tracepoints and the hash table.
39 static DEFINE_MUTEX(tracepoints_mutex
);
42 * Tracepoint hash table, containing the active tracepoints.
43 * Protected by tracepoints_mutex.
45 #define TRACEPOINT_HASH_BITS 6
46 #define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
47 static struct hlist_head tracepoint_table
[TRACEPOINT_TABLE_SIZE
];
51 * It is used to delay the free of multiple probes array until a quiescent
53 * Tracepoint entries modifications are protected by the tracepoints_mutex.
55 struct tracepoint_entry
{
56 struct hlist_node hlist
;
57 struct tracepoint_func
*funcs
;
58 int refcount
; /* Number of times armed. 0 if disarmed. */
65 struct list_head list
;
67 struct tracepoint_func probes
[0];
70 static inline void *allocate_probes(int count
)
72 struct tp_probes
*p
= kmalloc(count
* sizeof(struct tracepoint_func
)
73 + sizeof(struct tp_probes
), GFP_KERNEL
);
74 return p
== NULL
? NULL
: p
->probes
;
77 static void rcu_free_old_probes(struct rcu_head
*head
)
79 kfree(container_of(head
, struct tp_probes
, u
.rcu
));
82 static inline void release_probes(struct tracepoint_func
*old
)
85 struct tp_probes
*tp_probes
= container_of(old
,
86 struct tp_probes
, probes
[0]);
87 call_rcu_sched(&tp_probes
->u
.rcu
, rcu_free_old_probes
);
91 static void debug_print_probes(struct tracepoint_entry
*entry
)
95 if (!tracepoint_debug
|| !entry
->funcs
)
98 for (i
= 0; entry
->funcs
[i
].func
; i
++)
99 printk(KERN_DEBUG
"Probe %d : %p\n", i
, entry
->funcs
[i
].func
);
102 static struct tracepoint_func
*
103 tracepoint_entry_add_probe(struct tracepoint_entry
*entry
,
104 void *probe
, void *data
)
107 struct tracepoint_func
*old
, *new;
111 debug_print_probes(entry
);
114 /* (N -> N+1), (N != 0, 1) probes */
115 for (nr_probes
= 0; old
[nr_probes
].func
; nr_probes
++)
116 if (old
[nr_probes
].func
== probe
&&
117 old
[nr_probes
].data
== data
)
118 return ERR_PTR(-EEXIST
);
120 /* + 2 : one for new probe, one for NULL func */
121 new = allocate_probes(nr_probes
+ 2);
123 return ERR_PTR(-ENOMEM
);
125 memcpy(new, old
, nr_probes
* sizeof(struct tracepoint_func
));
126 new[nr_probes
].func
= probe
;
127 new[nr_probes
].data
= data
;
128 new[nr_probes
+ 1].func
= NULL
;
129 entry
->refcount
= nr_probes
+ 1;
131 debug_print_probes(entry
);
136 tracepoint_entry_remove_probe(struct tracepoint_entry
*entry
,
137 void *probe
, void *data
)
139 int nr_probes
= 0, nr_del
= 0, i
;
140 struct tracepoint_func
*old
, *new;
145 return ERR_PTR(-ENOENT
);
147 debug_print_probes(entry
);
148 /* (N -> M), (N > 1, M >= 0) probes */
149 for (nr_probes
= 0; old
[nr_probes
].func
; nr_probes
++) {
151 (old
[nr_probes
].func
== probe
&&
152 old
[nr_probes
].data
== data
))
156 if (nr_probes
- nr_del
== 0) {
157 /* N -> 0, (N > 1) */
160 debug_print_probes(entry
);
164 /* N -> M, (N > 1, M > 0) */
166 new = allocate_probes(nr_probes
- nr_del
+ 1);
168 return ERR_PTR(-ENOMEM
);
169 for (i
= 0; old
[i
].func
; i
++)
171 (old
[i
].func
!= probe
|| old
[i
].data
!= data
))
173 new[nr_probes
- nr_del
].func
= NULL
;
174 entry
->refcount
= nr_probes
- nr_del
;
177 debug_print_probes(entry
);
182 * Get tracepoint if the tracepoint is present in the tracepoint hash table.
183 * Must be called with tracepoints_mutex held.
184 * Returns NULL if not present.
186 static struct tracepoint_entry
*get_tracepoint(const char *name
)
188 struct hlist_head
*head
;
189 struct hlist_node
*node
;
190 struct tracepoint_entry
*e
;
191 u32 hash
= jhash(name
, strlen(name
), 0);
193 head
= &tracepoint_table
[hash
& (TRACEPOINT_TABLE_SIZE
- 1)];
194 hlist_for_each_entry(e
, node
, head
, hlist
) {
195 if (!strcmp(name
, e
->name
))
202 * Add the tracepoint to the tracepoint hash table. Must be called with
203 * tracepoints_mutex held.
205 static struct tracepoint_entry
*add_tracepoint(const char *name
)
207 struct hlist_head
*head
;
208 struct hlist_node
*node
;
209 struct tracepoint_entry
*e
;
210 size_t name_len
= strlen(name
) + 1;
211 u32 hash
= jhash(name
, name_len
-1, 0);
213 head
= &tracepoint_table
[hash
& (TRACEPOINT_TABLE_SIZE
- 1)];
214 hlist_for_each_entry(e
, node
, head
, hlist
) {
215 if (!strcmp(name
, e
->name
)) {
217 "tracepoint %s busy\n", name
);
218 return ERR_PTR(-EEXIST
); /* Already there */
222 * Using kmalloc here to allocate a variable length element. Could
223 * cause some memory fragmentation if overused.
225 e
= kmalloc(sizeof(struct tracepoint_entry
) + name_len
, GFP_KERNEL
);
227 return ERR_PTR(-ENOMEM
);
228 memcpy(&e
->name
[0], name
, name_len
);
231 hlist_add_head(&e
->hlist
, head
);
236 * Remove the tracepoint from the tracepoint hash table. Must be called with
239 static inline void remove_tracepoint(struct tracepoint_entry
*e
)
241 hlist_del(&e
->hlist
);
246 * Sets the probe callback corresponding to one tracepoint.
248 static void set_tracepoint(struct tracepoint_entry
**entry
,
249 struct tracepoint
*elem
, int active
)
251 WARN_ON(strcmp((*entry
)->name
, elem
->name
) != 0);
253 if (elem
->regfunc
&& !elem
->state
&& active
)
255 else if (elem
->unregfunc
&& elem
->state
&& !active
)
259 * rcu_assign_pointer has a smp_wmb() which makes sure that the new
260 * probe callbacks array is consistent before setting a pointer to it.
261 * This array is referenced by __DO_TRACE from
262 * include/linux/tracepoints.h. A matching smp_read_barrier_depends()
265 rcu_assign_pointer(elem
->funcs
, (*entry
)->funcs
);
266 elem
->state
= active
;
270 * Disable a tracepoint and its probe callback.
271 * Note: only waiting an RCU period after setting elem->call to the empty
272 * function insures that the original callback is not used anymore. This insured
273 * by preempt_disable around the call site.
275 static void disable_tracepoint(struct tracepoint
*elem
)
277 if (elem
->unregfunc
&& elem
->state
)
281 rcu_assign_pointer(elem
->funcs
, NULL
);
285 * tracepoint_update_probe_range - Update a probe range
286 * @begin: beginning of the range
287 * @end: end of the range
289 * Updates the probe callback corresponding to a range of tracepoints.
292 tracepoint_update_probe_range(struct tracepoint
*begin
, struct tracepoint
*end
)
294 struct tracepoint
*iter
;
295 struct tracepoint_entry
*mark_entry
;
300 mutex_lock(&tracepoints_mutex
);
301 for (iter
= begin
; iter
< end
; iter
++) {
302 mark_entry
= get_tracepoint(iter
->name
);
304 set_tracepoint(&mark_entry
, iter
,
305 !!mark_entry
->refcount
);
307 disable_tracepoint(iter
);
310 mutex_unlock(&tracepoints_mutex
);
314 * Update probes, removing the faulty probes.
316 static void tracepoint_update_probes(void)
318 /* Core kernel tracepoints */
319 tracepoint_update_probe_range(__start___tracepoints
,
320 __stop___tracepoints
);
321 /* tracepoints in modules. */
322 module_update_tracepoints();
325 static struct tracepoint_func
*
326 tracepoint_add_probe(const char *name
, void *probe
, void *data
)
328 struct tracepoint_entry
*entry
;
329 struct tracepoint_func
*old
;
331 entry
= get_tracepoint(name
);
333 entry
= add_tracepoint(name
);
335 return (struct tracepoint_func
*)entry
;
337 old
= tracepoint_entry_add_probe(entry
, probe
, data
);
338 if (IS_ERR(old
) && !entry
->refcount
)
339 remove_tracepoint(entry
);
344 * tracepoint_probe_register - Connect a probe to a tracepoint
345 * @name: tracepoint name
346 * @probe: probe handler
348 * Returns 0 if ok, error value on error.
349 * The probe address must at least be aligned on the architecture pointer size.
351 int tracepoint_probe_register(const char *name
, void *probe
, void *data
)
353 struct tracepoint_func
*old
;
355 mutex_lock(&tracepoints_mutex
);
356 old
= tracepoint_add_probe(name
, probe
, data
);
357 mutex_unlock(&tracepoints_mutex
);
361 tracepoint_update_probes(); /* may update entry */
365 EXPORT_SYMBOL_GPL(tracepoint_probe_register
);
367 static struct tracepoint_func
*
368 tracepoint_remove_probe(const char *name
, void *probe
, void *data
)
370 struct tracepoint_entry
*entry
;
371 struct tracepoint_func
*old
;
373 entry
= get_tracepoint(name
);
375 return ERR_PTR(-ENOENT
);
376 old
= tracepoint_entry_remove_probe(entry
, probe
, data
);
379 if (!entry
->refcount
)
380 remove_tracepoint(entry
);
385 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
386 * @name: tracepoint name
387 * @probe: probe function pointer
389 * We do not need to call a synchronize_sched to make sure the probes have
390 * finished running before doing a module unload, because the module unload
391 * itself uses stop_machine(), which insures that every preempt disabled section
394 int tracepoint_probe_unregister(const char *name
, void *probe
, void *data
)
396 struct tracepoint_func
*old
;
398 mutex_lock(&tracepoints_mutex
);
399 old
= tracepoint_remove_probe(name
, probe
, data
);
400 mutex_unlock(&tracepoints_mutex
);
404 tracepoint_update_probes(); /* may update entry */
408 EXPORT_SYMBOL_GPL(tracepoint_probe_unregister
);
410 static LIST_HEAD(old_probes
);
411 static int need_update
;
413 static void tracepoint_add_old_probes(void *old
)
417 struct tp_probes
*tp_probes
= container_of(old
,
418 struct tp_probes
, probes
[0]);
419 list_add(&tp_probes
->u
.list
, &old_probes
);
424 * tracepoint_probe_register_noupdate - register a probe but not connect
425 * @name: tracepoint name
426 * @probe: probe handler
428 * caller must call tracepoint_probe_update_all()
430 int tracepoint_probe_register_noupdate(const char *name
, void *probe
,
433 struct tracepoint_func
*old
;
435 mutex_lock(&tracepoints_mutex
);
436 old
= tracepoint_add_probe(name
, probe
, data
);
438 mutex_unlock(&tracepoints_mutex
);
441 tracepoint_add_old_probes(old
);
442 mutex_unlock(&tracepoints_mutex
);
445 EXPORT_SYMBOL_GPL(tracepoint_probe_register_noupdate
);
448 * tracepoint_probe_unregister_noupdate - remove a probe but not disconnect
449 * @name: tracepoint name
450 * @probe: probe function pointer
452 * caller must call tracepoint_probe_update_all()
454 int tracepoint_probe_unregister_noupdate(const char *name
, void *probe
,
457 struct tracepoint_func
*old
;
459 mutex_lock(&tracepoints_mutex
);
460 old
= tracepoint_remove_probe(name
, probe
, data
);
462 mutex_unlock(&tracepoints_mutex
);
465 tracepoint_add_old_probes(old
);
466 mutex_unlock(&tracepoints_mutex
);
469 EXPORT_SYMBOL_GPL(tracepoint_probe_unregister_noupdate
);
472 * tracepoint_probe_update_all - update tracepoints
474 void tracepoint_probe_update_all(void)
476 LIST_HEAD(release_probes
);
477 struct tp_probes
*pos
, *next
;
479 mutex_lock(&tracepoints_mutex
);
481 mutex_unlock(&tracepoints_mutex
);
484 if (!list_empty(&old_probes
))
485 list_replace_init(&old_probes
, &release_probes
);
487 mutex_unlock(&tracepoints_mutex
);
489 tracepoint_update_probes();
490 list_for_each_entry_safe(pos
, next
, &release_probes
, u
.list
) {
491 list_del(&pos
->u
.list
);
492 call_rcu_sched(&pos
->u
.rcu
, rcu_free_old_probes
);
495 EXPORT_SYMBOL_GPL(tracepoint_probe_update_all
);
498 * tracepoint_get_iter_range - Get a next tracepoint iterator given a range.
499 * @tracepoint: current tracepoints (in), next tracepoint (out)
500 * @begin: beginning of the range
501 * @end: end of the range
503 * Returns whether a next tracepoint has been found (1) or not (0).
504 * Will return the first tracepoint in the range if the input tracepoint is
507 int tracepoint_get_iter_range(struct tracepoint
**tracepoint
,
508 struct tracepoint
*begin
, struct tracepoint
*end
)
510 if (!*tracepoint
&& begin
!= end
) {
514 if (*tracepoint
>= begin
&& *tracepoint
< end
)
518 EXPORT_SYMBOL_GPL(tracepoint_get_iter_range
);
520 static void tracepoint_get_iter(struct tracepoint_iter
*iter
)
524 /* Core kernel tracepoints */
526 found
= tracepoint_get_iter_range(&iter
->tracepoint
,
527 __start___tracepoints
, __stop___tracepoints
);
531 /* tracepoints in modules. */
532 found
= module_get_iter_tracepoints(iter
);
535 tracepoint_iter_reset(iter
);
538 void tracepoint_iter_start(struct tracepoint_iter
*iter
)
540 tracepoint_get_iter(iter
);
542 EXPORT_SYMBOL_GPL(tracepoint_iter_start
);
544 void tracepoint_iter_next(struct tracepoint_iter
*iter
)
548 * iter->tracepoint may be invalid because we blindly incremented it.
549 * Make sure it is valid by marshalling on the tracepoints, getting the
550 * tracepoints from following modules if necessary.
552 tracepoint_get_iter(iter
);
554 EXPORT_SYMBOL_GPL(tracepoint_iter_next
);
556 void tracepoint_iter_stop(struct tracepoint_iter
*iter
)
559 EXPORT_SYMBOL_GPL(tracepoint_iter_stop
);
561 void tracepoint_iter_reset(struct tracepoint_iter
*iter
)
564 iter
->tracepoint
= NULL
;
566 EXPORT_SYMBOL_GPL(tracepoint_iter_reset
);
568 #ifdef CONFIG_MODULES
570 int tracepoint_module_notify(struct notifier_block
*self
,
571 unsigned long val
, void *data
)
573 struct module
*mod
= data
;
576 case MODULE_STATE_COMING
:
577 case MODULE_STATE_GOING
:
578 tracepoint_update_probe_range(mod
->tracepoints
,
579 mod
->tracepoints
+ mod
->num_tracepoints
);
585 struct notifier_block tracepoint_module_nb
= {
586 .notifier_call
= tracepoint_module_notify
,
590 static int init_tracepoints(void)
592 return register_module_notifier(&tracepoint_module_nb
);
594 __initcall(init_tracepoints
);
596 #endif /* CONFIG_MODULES */
598 #ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
600 /* NB: reg/unreg are called while guarded with the tracepoints_mutex */
601 static int sys_tracepoint_refcount
;
603 void syscall_regfunc(void)
606 struct task_struct
*g
, *t
;
608 if (!sys_tracepoint_refcount
) {
609 read_lock_irqsave(&tasklist_lock
, flags
);
610 do_each_thread(g
, t
) {
611 /* Skip kernel threads. */
613 set_tsk_thread_flag(t
, TIF_SYSCALL_TRACEPOINT
);
614 } while_each_thread(g
, t
);
615 read_unlock_irqrestore(&tasklist_lock
, flags
);
617 sys_tracepoint_refcount
++;
620 void syscall_unregfunc(void)
623 struct task_struct
*g
, *t
;
625 sys_tracepoint_refcount
--;
626 if (!sys_tracepoint_refcount
) {
627 read_lock_irqsave(&tasklist_lock
, flags
);
628 do_each_thread(g
, t
) {
629 clear_tsk_thread_flag(t
, TIF_SYSCALL_TRACEPOINT
);
630 } while_each_thread(g
, t
);
631 read_unlock_irqrestore(&tasklist_lock
, flags
);