Loading...
1/*
2 * Copyright (C) 2008-2014 Mathieu Desnoyers
3 *
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.
8 *
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.
13 *
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.
17 */
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>
28#include <linux/static_key.h>
29
30extern struct tracepoint * const __start___tracepoints_ptrs[];
31extern struct tracepoint * const __stop___tracepoints_ptrs[];
32
33/* Set to 1 to enable tracepoint debug output */
34static const int tracepoint_debug;
35
36#ifdef CONFIG_MODULES
37/*
38 * Tracepoint module list mutex protects the local module list.
39 */
40static DEFINE_MUTEX(tracepoint_module_list_mutex);
41
42/* Local list of struct tp_module */
43static LIST_HEAD(tracepoint_module_list);
44#endif /* CONFIG_MODULES */
45
46/*
47 * tracepoints_mutex protects the builtin and module tracepoints.
48 * tracepoints_mutex nests inside tracepoint_module_list_mutex.
49 */
50static DEFINE_MUTEX(tracepoints_mutex);
51
52/*
53 * Note about RCU :
54 * It is used to delay the free of multiple probes array until a quiescent
55 * state is reached.
56 */
57struct tp_probes {
58 struct rcu_head rcu;
59 struct tracepoint_func probes[0];
60};
61
62static inline void *allocate_probes(int count)
63{
64 struct tp_probes *p = kmalloc(count * sizeof(struct tracepoint_func)
65 + sizeof(struct tp_probes), GFP_KERNEL);
66 return p == NULL ? NULL : p->probes;
67}
68
69static void rcu_free_old_probes(struct rcu_head *head)
70{
71 kfree(container_of(head, struct tp_probes, rcu));
72}
73
74static inline void release_probes(struct tracepoint_func *old)
75{
76 if (old) {
77 struct tp_probes *tp_probes = container_of(old,
78 struct tp_probes, probes[0]);
79 call_rcu_sched(&tp_probes->rcu, rcu_free_old_probes);
80 }
81}
82
83static void debug_print_probes(struct tracepoint_func *funcs)
84{
85 int i;
86
87 if (!tracepoint_debug || !funcs)
88 return;
89
90 for (i = 0; funcs[i].func; i++)
91 printk(KERN_DEBUG "Probe %d : %p\n", i, funcs[i].func);
92}
93
94static struct tracepoint_func *func_add(struct tracepoint_func **funcs,
95 struct tracepoint_func *tp_func)
96{
97 int nr_probes = 0;
98 struct tracepoint_func *old, *new;
99
100 if (WARN_ON(!tp_func->func))
101 return ERR_PTR(-EINVAL);
102
103 debug_print_probes(*funcs);
104 old = *funcs;
105 if (old) {
106 /* (N -> N+1), (N != 0, 1) probes */
107 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
108 if (old[nr_probes].func == tp_func->func &&
109 old[nr_probes].data == tp_func->data)
110 return ERR_PTR(-EEXIST);
111 }
112 /* + 2 : one for new probe, one for NULL func */
113 new = allocate_probes(nr_probes + 2);
114 if (new == NULL)
115 return ERR_PTR(-ENOMEM);
116 if (old)
117 memcpy(new, old, nr_probes * sizeof(struct tracepoint_func));
118 new[nr_probes] = *tp_func;
119 new[nr_probes + 1].func = NULL;
120 *funcs = new;
121 debug_print_probes(*funcs);
122 return old;
123}
124
125static void *func_remove(struct tracepoint_func **funcs,
126 struct tracepoint_func *tp_func)
127{
128 int nr_probes = 0, nr_del = 0, i;
129 struct tracepoint_func *old, *new;
130
131 old = *funcs;
132
133 if (!old)
134 return ERR_PTR(-ENOENT);
135
136 debug_print_probes(*funcs);
137 /* (N -> M), (N > 1, M >= 0) probes */
138 if (tp_func->func) {
139 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
140 if (old[nr_probes].func == tp_func->func &&
141 old[nr_probes].data == tp_func->data)
142 nr_del++;
143 }
144 }
145
146 /*
147 * If probe is NULL, then nr_probes = nr_del = 0, and then the
148 * entire entry will be removed.
149 */
150 if (nr_probes - nr_del == 0) {
151 /* N -> 0, (N > 1) */
152 *funcs = NULL;
153 debug_print_probes(*funcs);
154 return old;
155 } else {
156 int j = 0;
157 /* N -> M, (N > 1, M > 0) */
158 /* + 1 for NULL */
159 new = allocate_probes(nr_probes - nr_del + 1);
160 if (new == NULL)
161 return ERR_PTR(-ENOMEM);
162 for (i = 0; old[i].func; i++)
163 if (old[i].func != tp_func->func
164 || old[i].data != tp_func->data)
165 new[j++] = old[i];
166 new[nr_probes - nr_del].func = NULL;
167 *funcs = new;
168 }
169 debug_print_probes(*funcs);
170 return old;
171}
172
173/*
174 * Add the probe function to a tracepoint.
175 */
176static int tracepoint_add_func(struct tracepoint *tp,
177 struct tracepoint_func *func)
178{
179 struct tracepoint_func *old, *tp_funcs;
180
181 if (tp->regfunc && !static_key_enabled(&tp->key))
182 tp->regfunc();
183
184 tp_funcs = rcu_dereference_protected(tp->funcs,
185 lockdep_is_held(&tracepoints_mutex));
186 old = func_add(&tp_funcs, func);
187 if (IS_ERR(old)) {
188 WARN_ON_ONCE(1);
189 return PTR_ERR(old);
190 }
191
192 /*
193 * rcu_assign_pointer has a smp_wmb() which makes sure that the new
194 * probe callbacks array is consistent before setting a pointer to it.
195 * This array is referenced by __DO_TRACE from
196 * include/linux/tracepoints.h. A matching smp_read_barrier_depends()
197 * is used.
198 */
199 rcu_assign_pointer(tp->funcs, tp_funcs);
200 if (!static_key_enabled(&tp->key))
201 static_key_slow_inc(&tp->key);
202 release_probes(old);
203 return 0;
204}
205
206/*
207 * Remove a probe function from a tracepoint.
208 * Note: only waiting an RCU period after setting elem->call to the empty
209 * function insures that the original callback is not used anymore. This insured
210 * by preempt_disable around the call site.
211 */
212static int tracepoint_remove_func(struct tracepoint *tp,
213 struct tracepoint_func *func)
214{
215 struct tracepoint_func *old, *tp_funcs;
216
217 tp_funcs = rcu_dereference_protected(tp->funcs,
218 lockdep_is_held(&tracepoints_mutex));
219 old = func_remove(&tp_funcs, func);
220 if (IS_ERR(old)) {
221 WARN_ON_ONCE(1);
222 return PTR_ERR(old);
223 }
224
225 if (!tp_funcs) {
226 /* Removed last function */
227 if (tp->unregfunc && static_key_enabled(&tp->key))
228 tp->unregfunc();
229
230 if (static_key_enabled(&tp->key))
231 static_key_slow_dec(&tp->key);
232 }
233 rcu_assign_pointer(tp->funcs, tp_funcs);
234 release_probes(old);
235 return 0;
236}
237
238/**
239 * tracepoint_probe_register - Connect a probe to a tracepoint
240 * @tp: tracepoint
241 * @probe: probe handler
242 *
243 * Returns 0 if ok, error value on error.
244 * Note: if @tp is within a module, the caller is responsible for
245 * unregistering the probe before the module is gone. This can be
246 * performed either with a tracepoint module going notifier, or from
247 * within module exit functions.
248 */
249int tracepoint_probe_register(struct tracepoint *tp, void *probe, void *data)
250{
251 struct tracepoint_func tp_func;
252 int ret;
253
254 mutex_lock(&tracepoints_mutex);
255 tp_func.func = probe;
256 tp_func.data = data;
257 ret = tracepoint_add_func(tp, &tp_func);
258 mutex_unlock(&tracepoints_mutex);
259 return ret;
260}
261EXPORT_SYMBOL_GPL(tracepoint_probe_register);
262
263/**
264 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
265 * @tp: tracepoint
266 * @probe: probe function pointer
267 *
268 * Returns 0 if ok, error value on error.
269 */
270int tracepoint_probe_unregister(struct tracepoint *tp, void *probe, void *data)
271{
272 struct tracepoint_func tp_func;
273 int ret;
274
275 mutex_lock(&tracepoints_mutex);
276 tp_func.func = probe;
277 tp_func.data = data;
278 ret = tracepoint_remove_func(tp, &tp_func);
279 mutex_unlock(&tracepoints_mutex);
280 return ret;
281}
282EXPORT_SYMBOL_GPL(tracepoint_probe_unregister);
283
284#ifdef CONFIG_MODULES
285bool trace_module_has_bad_taint(struct module *mod)
286{
287 return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) |
288 (1 << TAINT_UNSIGNED_MODULE));
289}
290
291static BLOCKING_NOTIFIER_HEAD(tracepoint_notify_list);
292
293/**
294 * register_tracepoint_notifier - register tracepoint coming/going notifier
295 * @nb: notifier block
296 *
297 * Notifiers registered with this function are called on module
298 * coming/going with the tracepoint_module_list_mutex held.
299 * The notifier block callback should expect a "struct tp_module" data
300 * pointer.
301 */
302int register_tracepoint_module_notifier(struct notifier_block *nb)
303{
304 struct tp_module *tp_mod;
305 int ret;
306
307 mutex_lock(&tracepoint_module_list_mutex);
308 ret = blocking_notifier_chain_register(&tracepoint_notify_list, nb);
309 if (ret)
310 goto end;
311 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
312 (void) nb->notifier_call(nb, MODULE_STATE_COMING, tp_mod);
313end:
314 mutex_unlock(&tracepoint_module_list_mutex);
315 return ret;
316}
317EXPORT_SYMBOL_GPL(register_tracepoint_module_notifier);
318
319/**
320 * unregister_tracepoint_notifier - unregister tracepoint coming/going notifier
321 * @nb: notifier block
322 *
323 * The notifier block callback should expect a "struct tp_module" data
324 * pointer.
325 */
326int unregister_tracepoint_module_notifier(struct notifier_block *nb)
327{
328 struct tp_module *tp_mod;
329 int ret;
330
331 mutex_lock(&tracepoint_module_list_mutex);
332 ret = blocking_notifier_chain_unregister(&tracepoint_notify_list, nb);
333 if (ret)
334 goto end;
335 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
336 (void) nb->notifier_call(nb, MODULE_STATE_GOING, tp_mod);
337end:
338 mutex_unlock(&tracepoint_module_list_mutex);
339 return ret;
340
341}
342EXPORT_SYMBOL_GPL(unregister_tracepoint_module_notifier);
343
344/*
345 * Ensure the tracer unregistered the module's probes before the module
346 * teardown is performed. Prevents leaks of probe and data pointers.
347 */
348static void tp_module_going_check_quiescent(struct tracepoint * const *begin,
349 struct tracepoint * const *end)
350{
351 struct tracepoint * const *iter;
352
353 if (!begin)
354 return;
355 for (iter = begin; iter < end; iter++)
356 WARN_ON_ONCE((*iter)->funcs);
357}
358
359static int tracepoint_module_coming(struct module *mod)
360{
361 struct tp_module *tp_mod;
362 int ret = 0;
363
364 if (!mod->num_tracepoints)
365 return 0;
366
367 /*
368 * We skip modules that taint the kernel, especially those with different
369 * module headers (for forced load), to make sure we don't cause a crash.
370 * Staging, out-of-tree, and unsigned GPL modules are fine.
371 */
372 if (trace_module_has_bad_taint(mod))
373 return 0;
374 mutex_lock(&tracepoint_module_list_mutex);
375 tp_mod = kmalloc(sizeof(struct tp_module), GFP_KERNEL);
376 if (!tp_mod) {
377 ret = -ENOMEM;
378 goto end;
379 }
380 tp_mod->mod = mod;
381 list_add_tail(&tp_mod->list, &tracepoint_module_list);
382 blocking_notifier_call_chain(&tracepoint_notify_list,
383 MODULE_STATE_COMING, tp_mod);
384end:
385 mutex_unlock(&tracepoint_module_list_mutex);
386 return ret;
387}
388
389static void tracepoint_module_going(struct module *mod)
390{
391 struct tp_module *tp_mod;
392
393 if (!mod->num_tracepoints)
394 return;
395
396 mutex_lock(&tracepoint_module_list_mutex);
397 list_for_each_entry(tp_mod, &tracepoint_module_list, list) {
398 if (tp_mod->mod == mod) {
399 blocking_notifier_call_chain(&tracepoint_notify_list,
400 MODULE_STATE_GOING, tp_mod);
401 list_del(&tp_mod->list);
402 kfree(tp_mod);
403 /*
404 * Called the going notifier before checking for
405 * quiescence.
406 */
407 tp_module_going_check_quiescent(mod->tracepoints_ptrs,
408 mod->tracepoints_ptrs + mod->num_tracepoints);
409 break;
410 }
411 }
412 /*
413 * In the case of modules that were tainted at "coming", we'll simply
414 * walk through the list without finding it. We cannot use the "tainted"
415 * flag on "going", in case a module taints the kernel only after being
416 * loaded.
417 */
418 mutex_unlock(&tracepoint_module_list_mutex);
419}
420
421static int tracepoint_module_notify(struct notifier_block *self,
422 unsigned long val, void *data)
423{
424 struct module *mod = data;
425 int ret = 0;
426
427 switch (val) {
428 case MODULE_STATE_COMING:
429 ret = tracepoint_module_coming(mod);
430 break;
431 case MODULE_STATE_LIVE:
432 break;
433 case MODULE_STATE_GOING:
434 tracepoint_module_going(mod);
435 break;
436 case MODULE_STATE_UNFORMED:
437 break;
438 }
439 return ret;
440}
441
442static struct notifier_block tracepoint_module_nb = {
443 .notifier_call = tracepoint_module_notify,
444 .priority = 0,
445};
446
447static __init int init_tracepoints(void)
448{
449 int ret;
450
451 ret = register_module_notifier(&tracepoint_module_nb);
452 if (ret)
453 pr_warning("Failed to register tracepoint module enter notifier\n");
454
455 return ret;
456}
457__initcall(init_tracepoints);
458#endif /* CONFIG_MODULES */
459
460static void for_each_tracepoint_range(struct tracepoint * const *begin,
461 struct tracepoint * const *end,
462 void (*fct)(struct tracepoint *tp, void *priv),
463 void *priv)
464{
465 struct tracepoint * const *iter;
466
467 if (!begin)
468 return;
469 for (iter = begin; iter < end; iter++)
470 fct(*iter, priv);
471}
472
473/**
474 * for_each_kernel_tracepoint - iteration on all kernel tracepoints
475 * @fct: callback
476 * @priv: private data
477 */
478void for_each_kernel_tracepoint(void (*fct)(struct tracepoint *tp, void *priv),
479 void *priv)
480{
481 for_each_tracepoint_range(__start___tracepoints_ptrs,
482 __stop___tracepoints_ptrs, fct, priv);
483}
484EXPORT_SYMBOL_GPL(for_each_kernel_tracepoint);
485
486#ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
487
488/* NB: reg/unreg are called while guarded with the tracepoints_mutex */
489static int sys_tracepoint_refcount;
490
491void syscall_regfunc(void)
492{
493 unsigned long flags;
494 struct task_struct *g, *t;
495
496 if (!sys_tracepoint_refcount) {
497 read_lock_irqsave(&tasklist_lock, flags);
498 do_each_thread(g, t) {
499 /* Skip kernel threads. */
500 if (t->mm)
501 set_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
502 } while_each_thread(g, t);
503 read_unlock_irqrestore(&tasklist_lock, flags);
504 }
505 sys_tracepoint_refcount++;
506}
507
508void syscall_unregfunc(void)
509{
510 unsigned long flags;
511 struct task_struct *g, *t;
512
513 sys_tracepoint_refcount--;
514 if (!sys_tracepoint_refcount) {
515 read_lock_irqsave(&tasklist_lock, flags);
516 do_each_thread(g, t) {
517 clear_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
518 } while_each_thread(g, t);
519 read_unlock_irqrestore(&tasklist_lock, flags);
520 }
521}
522#endif
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2008-2014 Mathieu Desnoyers
4 */
5#include <linux/module.h>
6#include <linux/mutex.h>
7#include <linux/types.h>
8#include <linux/jhash.h>
9#include <linux/list.h>
10#include <linux/rcupdate.h>
11#include <linux/tracepoint.h>
12#include <linux/err.h>
13#include <linux/slab.h>
14#include <linux/sched/signal.h>
15#include <linux/sched/task.h>
16#include <linux/static_key.h>
17
18enum tp_func_state {
19 TP_FUNC_0,
20 TP_FUNC_1,
21 TP_FUNC_2,
22 TP_FUNC_N,
23};
24
25extern tracepoint_ptr_t __start___tracepoints_ptrs[];
26extern tracepoint_ptr_t __stop___tracepoints_ptrs[];
27
28enum tp_transition_sync {
29 TP_TRANSITION_SYNC_1_0_1,
30 TP_TRANSITION_SYNC_N_2_1,
31
32 _NR_TP_TRANSITION_SYNC,
33};
34
35struct tp_transition_snapshot {
36 unsigned long rcu;
37 bool ongoing;
38};
39
40/* Protected by tracepoints_mutex */
41static struct tp_transition_snapshot tp_transition_snapshot[_NR_TP_TRANSITION_SYNC];
42
43static void tp_rcu_get_state(enum tp_transition_sync sync)
44{
45 struct tp_transition_snapshot *snapshot = &tp_transition_snapshot[sync];
46
47 /* Keep the latest get_state snapshot. */
48 snapshot->rcu = get_state_synchronize_rcu();
49 snapshot->ongoing = true;
50}
51
52static void tp_rcu_cond_sync(enum tp_transition_sync sync)
53{
54 struct tp_transition_snapshot *snapshot = &tp_transition_snapshot[sync];
55
56 if (!snapshot->ongoing)
57 return;
58 cond_synchronize_rcu(snapshot->rcu);
59 snapshot->ongoing = false;
60}
61
62/* Set to 1 to enable tracepoint debug output */
63static const int tracepoint_debug;
64
65#ifdef CONFIG_MODULES
66/*
67 * Tracepoint module list mutex protects the local module list.
68 */
69static DEFINE_MUTEX(tracepoint_module_list_mutex);
70
71/* Local list of struct tp_module */
72static LIST_HEAD(tracepoint_module_list);
73#endif /* CONFIG_MODULES */
74
75/*
76 * tracepoints_mutex protects the builtin and module tracepoints.
77 * tracepoints_mutex nests inside tracepoint_module_list_mutex.
78 */
79static DEFINE_MUTEX(tracepoints_mutex);
80
81/*
82 * Note about RCU :
83 * It is used to delay the free of multiple probes array until a quiescent
84 * state is reached.
85 */
86struct tp_probes {
87 struct rcu_head rcu;
88 struct tracepoint_func probes[];
89};
90
91/* Called in removal of a func but failed to allocate a new tp_funcs */
92static void tp_stub_func(void)
93{
94 return;
95}
96
97static inline void *allocate_probes(int count)
98{
99 struct tp_probes *p = kmalloc(struct_size(p, probes, count),
100 GFP_KERNEL);
101 return p == NULL ? NULL : p->probes;
102}
103
104static void rcu_free_old_probes(struct rcu_head *head)
105{
106 kfree(container_of(head, struct tp_probes, rcu));
107}
108
109static inline void release_probes(struct tracepoint *tp, struct tracepoint_func *old)
110{
111 if (old) {
112 struct tp_probes *tp_probes = container_of(old,
113 struct tp_probes, probes[0]);
114
115 if (tracepoint_is_faultable(tp))
116 call_rcu_tasks_trace(&tp_probes->rcu, rcu_free_old_probes);
117 else
118 call_rcu(&tp_probes->rcu, rcu_free_old_probes);
119 }
120}
121
122static void debug_print_probes(struct tracepoint_func *funcs)
123{
124 int i;
125
126 if (!tracepoint_debug || !funcs)
127 return;
128
129 for (i = 0; funcs[i].func; i++)
130 printk(KERN_DEBUG "Probe %d : %p\n", i, funcs[i].func);
131}
132
133static struct tracepoint_func *
134func_add(struct tracepoint_func **funcs, struct tracepoint_func *tp_func,
135 int prio)
136{
137 struct tracepoint_func *old, *new;
138 int iter_probes; /* Iterate over old probe array. */
139 int nr_probes = 0; /* Counter for probes */
140 int pos = -1; /* Insertion position into new array */
141
142 if (WARN_ON(!tp_func->func))
143 return ERR_PTR(-EINVAL);
144
145 debug_print_probes(*funcs);
146 old = *funcs;
147 if (old) {
148 /* (N -> N+1), (N != 0, 1) probes */
149 for (iter_probes = 0; old[iter_probes].func; iter_probes++) {
150 if (old[iter_probes].func == tp_stub_func)
151 continue; /* Skip stub functions. */
152 if (old[iter_probes].func == tp_func->func &&
153 old[iter_probes].data == tp_func->data)
154 return ERR_PTR(-EEXIST);
155 nr_probes++;
156 }
157 }
158 /* + 2 : one for new probe, one for NULL func */
159 new = allocate_probes(nr_probes + 2);
160 if (new == NULL)
161 return ERR_PTR(-ENOMEM);
162 if (old) {
163 nr_probes = 0;
164 for (iter_probes = 0; old[iter_probes].func; iter_probes++) {
165 if (old[iter_probes].func == tp_stub_func)
166 continue;
167 /* Insert before probes of lower priority */
168 if (pos < 0 && old[iter_probes].prio < prio)
169 pos = nr_probes++;
170 new[nr_probes++] = old[iter_probes];
171 }
172 if (pos < 0)
173 pos = nr_probes++;
174 /* nr_probes now points to the end of the new array */
175 } else {
176 pos = 0;
177 nr_probes = 1; /* must point at end of array */
178 }
179 new[pos] = *tp_func;
180 new[nr_probes].func = NULL;
181 *funcs = new;
182 debug_print_probes(*funcs);
183 return old;
184}
185
186static void *func_remove(struct tracepoint_func **funcs,
187 struct tracepoint_func *tp_func)
188{
189 int nr_probes = 0, nr_del = 0, i;
190 struct tracepoint_func *old, *new;
191
192 old = *funcs;
193
194 if (!old)
195 return ERR_PTR(-ENOENT);
196
197 debug_print_probes(*funcs);
198 /* (N -> M), (N > 1, M >= 0) probes */
199 if (tp_func->func) {
200 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
201 if ((old[nr_probes].func == tp_func->func &&
202 old[nr_probes].data == tp_func->data) ||
203 old[nr_probes].func == tp_stub_func)
204 nr_del++;
205 }
206 }
207
208 /*
209 * If probe is NULL, then nr_probes = nr_del = 0, and then the
210 * entire entry will be removed.
211 */
212 if (nr_probes - nr_del == 0) {
213 /* N -> 0, (N > 1) */
214 *funcs = NULL;
215 debug_print_probes(*funcs);
216 return old;
217 } else {
218 int j = 0;
219 /* N -> M, (N > 1, M > 0) */
220 /* + 1 for NULL */
221 new = allocate_probes(nr_probes - nr_del + 1);
222 if (new) {
223 for (i = 0; old[i].func; i++) {
224 if ((old[i].func != tp_func->func ||
225 old[i].data != tp_func->data) &&
226 old[i].func != tp_stub_func)
227 new[j++] = old[i];
228 }
229 new[nr_probes - nr_del].func = NULL;
230 *funcs = new;
231 } else {
232 /*
233 * Failed to allocate, replace the old function
234 * with calls to tp_stub_func.
235 */
236 for (i = 0; old[i].func; i++) {
237 if (old[i].func == tp_func->func &&
238 old[i].data == tp_func->data)
239 WRITE_ONCE(old[i].func, tp_stub_func);
240 }
241 *funcs = old;
242 }
243 }
244 debug_print_probes(*funcs);
245 return old;
246}
247
248/*
249 * Count the number of functions (enum tp_func_state) in a tp_funcs array.
250 */
251static enum tp_func_state nr_func_state(const struct tracepoint_func *tp_funcs)
252{
253 if (!tp_funcs)
254 return TP_FUNC_0;
255 if (!tp_funcs[1].func)
256 return TP_FUNC_1;
257 if (!tp_funcs[2].func)
258 return TP_FUNC_2;
259 return TP_FUNC_N; /* 3 or more */
260}
261
262static void tracepoint_update_call(struct tracepoint *tp, struct tracepoint_func *tp_funcs)
263{
264 void *func = tp->iterator;
265
266 /* Synthetic events do not have static call sites */
267 if (!tp->static_call_key)
268 return;
269 if (nr_func_state(tp_funcs) == TP_FUNC_1)
270 func = tp_funcs[0].func;
271 __static_call_update(tp->static_call_key, tp->static_call_tramp, func);
272}
273
274/*
275 * Add the probe function to a tracepoint.
276 */
277static int tracepoint_add_func(struct tracepoint *tp,
278 struct tracepoint_func *func, int prio,
279 bool warn)
280{
281 struct tracepoint_func *old, *tp_funcs;
282 int ret;
283
284 if (tp->ext && tp->ext->regfunc && !static_key_enabled(&tp->key)) {
285 ret = tp->ext->regfunc();
286 if (ret < 0)
287 return ret;
288 }
289
290 tp_funcs = rcu_dereference_protected(tp->funcs,
291 lockdep_is_held(&tracepoints_mutex));
292 old = func_add(&tp_funcs, func, prio);
293 if (IS_ERR(old)) {
294 WARN_ON_ONCE(warn && PTR_ERR(old) != -ENOMEM);
295 return PTR_ERR(old);
296 }
297
298 /*
299 * rcu_assign_pointer has as smp_store_release() which makes sure
300 * that the new probe callbacks array is consistent before setting
301 * a pointer to it. This array is referenced by __DO_TRACE from
302 * include/linux/tracepoint.h using rcu_dereference_sched().
303 */
304 switch (nr_func_state(tp_funcs)) {
305 case TP_FUNC_1: /* 0->1 */
306 /*
307 * Make sure new static func never uses old data after a
308 * 1->0->1 transition sequence.
309 */
310 tp_rcu_cond_sync(TP_TRANSITION_SYNC_1_0_1);
311 /* Set static call to first function */
312 tracepoint_update_call(tp, tp_funcs);
313 /* Both iterator and static call handle NULL tp->funcs */
314 rcu_assign_pointer(tp->funcs, tp_funcs);
315 static_branch_enable(&tp->key);
316 break;
317 case TP_FUNC_2: /* 1->2 */
318 /* Set iterator static call */
319 tracepoint_update_call(tp, tp_funcs);
320 /*
321 * Iterator callback installed before updating tp->funcs.
322 * Requires ordering between RCU assign/dereference and
323 * static call update/call.
324 */
325 fallthrough;
326 case TP_FUNC_N: /* N->N+1 (N>1) */
327 rcu_assign_pointer(tp->funcs, tp_funcs);
328 /*
329 * Make sure static func never uses incorrect data after a
330 * N->...->2->1 (N>1) transition sequence.
331 */
332 if (tp_funcs[0].data != old[0].data)
333 tp_rcu_get_state(TP_TRANSITION_SYNC_N_2_1);
334 break;
335 default:
336 WARN_ON_ONCE(1);
337 break;
338 }
339
340 release_probes(tp, old);
341 return 0;
342}
343
344/*
345 * Remove a probe function from a tracepoint.
346 * Note: only waiting an RCU period after setting elem->call to the empty
347 * function insures that the original callback is not used anymore. This insured
348 * by preempt_disable around the call site.
349 */
350static int tracepoint_remove_func(struct tracepoint *tp,
351 struct tracepoint_func *func)
352{
353 struct tracepoint_func *old, *tp_funcs;
354
355 tp_funcs = rcu_dereference_protected(tp->funcs,
356 lockdep_is_held(&tracepoints_mutex));
357 old = func_remove(&tp_funcs, func);
358 if (WARN_ON_ONCE(IS_ERR(old)))
359 return PTR_ERR(old);
360
361 if (tp_funcs == old)
362 /* Failed allocating new tp_funcs, replaced func with stub */
363 return 0;
364
365 switch (nr_func_state(tp_funcs)) {
366 case TP_FUNC_0: /* 1->0 */
367 /* Removed last function */
368 if (tp->ext && tp->ext->unregfunc && static_key_enabled(&tp->key))
369 tp->ext->unregfunc();
370 static_branch_disable(&tp->key);
371 /* Set iterator static call */
372 tracepoint_update_call(tp, tp_funcs);
373 /* Both iterator and static call handle NULL tp->funcs */
374 rcu_assign_pointer(tp->funcs, NULL);
375 /*
376 * Make sure new static func never uses old data after a
377 * 1->0->1 transition sequence.
378 */
379 tp_rcu_get_state(TP_TRANSITION_SYNC_1_0_1);
380 break;
381 case TP_FUNC_1: /* 2->1 */
382 rcu_assign_pointer(tp->funcs, tp_funcs);
383 /*
384 * Make sure static func never uses incorrect data after a
385 * N->...->2->1 (N>2) transition sequence. If the first
386 * element's data has changed, then force the synchronization
387 * to prevent current readers that have loaded the old data
388 * from calling the new function.
389 */
390 if (tp_funcs[0].data != old[0].data)
391 tp_rcu_get_state(TP_TRANSITION_SYNC_N_2_1);
392 tp_rcu_cond_sync(TP_TRANSITION_SYNC_N_2_1);
393 /* Set static call to first function */
394 tracepoint_update_call(tp, tp_funcs);
395 break;
396 case TP_FUNC_2: /* N->N-1 (N>2) */
397 fallthrough;
398 case TP_FUNC_N:
399 rcu_assign_pointer(tp->funcs, tp_funcs);
400 /*
401 * Make sure static func never uses incorrect data after a
402 * N->...->2->1 (N>2) transition sequence.
403 */
404 if (tp_funcs[0].data != old[0].data)
405 tp_rcu_get_state(TP_TRANSITION_SYNC_N_2_1);
406 break;
407 default:
408 WARN_ON_ONCE(1);
409 break;
410 }
411 release_probes(tp, old);
412 return 0;
413}
414
415/**
416 * tracepoint_probe_register_prio_may_exist - Connect a probe to a tracepoint with priority
417 * @tp: tracepoint
418 * @probe: probe handler
419 * @data: tracepoint data
420 * @prio: priority of this function over other registered functions
421 *
422 * Same as tracepoint_probe_register_prio() except that it will not warn
423 * if the tracepoint is already registered.
424 */
425int tracepoint_probe_register_prio_may_exist(struct tracepoint *tp, void *probe,
426 void *data, int prio)
427{
428 struct tracepoint_func tp_func;
429 int ret;
430
431 mutex_lock(&tracepoints_mutex);
432 tp_func.func = probe;
433 tp_func.data = data;
434 tp_func.prio = prio;
435 ret = tracepoint_add_func(tp, &tp_func, prio, false);
436 mutex_unlock(&tracepoints_mutex);
437 return ret;
438}
439EXPORT_SYMBOL_GPL(tracepoint_probe_register_prio_may_exist);
440
441/**
442 * tracepoint_probe_register_prio - Connect a probe to a tracepoint with priority
443 * @tp: tracepoint
444 * @probe: probe handler
445 * @data: tracepoint data
446 * @prio: priority of this function over other registered functions
447 *
448 * Returns 0 if ok, error value on error.
449 * Note: if @tp is within a module, the caller is responsible for
450 * unregistering the probe before the module is gone. This can be
451 * performed either with a tracepoint module going notifier, or from
452 * within module exit functions.
453 */
454int tracepoint_probe_register_prio(struct tracepoint *tp, void *probe,
455 void *data, int prio)
456{
457 struct tracepoint_func tp_func;
458 int ret;
459
460 mutex_lock(&tracepoints_mutex);
461 tp_func.func = probe;
462 tp_func.data = data;
463 tp_func.prio = prio;
464 ret = tracepoint_add_func(tp, &tp_func, prio, true);
465 mutex_unlock(&tracepoints_mutex);
466 return ret;
467}
468EXPORT_SYMBOL_GPL(tracepoint_probe_register_prio);
469
470/**
471 * tracepoint_probe_register - Connect a probe to a tracepoint
472 * @tp: tracepoint
473 * @probe: probe handler
474 * @data: tracepoint data
475 *
476 * Returns 0 if ok, error value on error.
477 * Note: if @tp is within a module, the caller is responsible for
478 * unregistering the probe before the module is gone. This can be
479 * performed either with a tracepoint module going notifier, or from
480 * within module exit functions.
481 */
482int tracepoint_probe_register(struct tracepoint *tp, void *probe, void *data)
483{
484 return tracepoint_probe_register_prio(tp, probe, data, TRACEPOINT_DEFAULT_PRIO);
485}
486EXPORT_SYMBOL_GPL(tracepoint_probe_register);
487
488/**
489 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
490 * @tp: tracepoint
491 * @probe: probe function pointer
492 * @data: tracepoint data
493 *
494 * Returns 0 if ok, error value on error.
495 */
496int tracepoint_probe_unregister(struct tracepoint *tp, void *probe, void *data)
497{
498 struct tracepoint_func tp_func;
499 int ret;
500
501 mutex_lock(&tracepoints_mutex);
502 tp_func.func = probe;
503 tp_func.data = data;
504 ret = tracepoint_remove_func(tp, &tp_func);
505 mutex_unlock(&tracepoints_mutex);
506 return ret;
507}
508EXPORT_SYMBOL_GPL(tracepoint_probe_unregister);
509
510static void for_each_tracepoint_range(
511 tracepoint_ptr_t *begin, tracepoint_ptr_t *end,
512 void (*fct)(struct tracepoint *tp, void *priv),
513 void *priv)
514{
515 tracepoint_ptr_t *iter;
516
517 if (!begin)
518 return;
519 for (iter = begin; iter < end; iter++)
520 fct(tracepoint_ptr_deref(iter), priv);
521}
522
523#ifdef CONFIG_MODULES
524bool trace_module_has_bad_taint(struct module *mod)
525{
526 return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) |
527 (1 << TAINT_UNSIGNED_MODULE) | (1 << TAINT_TEST) |
528 (1 << TAINT_LIVEPATCH));
529}
530
531static BLOCKING_NOTIFIER_HEAD(tracepoint_notify_list);
532
533/**
534 * register_tracepoint_module_notifier - register tracepoint coming/going notifier
535 * @nb: notifier block
536 *
537 * Notifiers registered with this function are called on module
538 * coming/going with the tracepoint_module_list_mutex held.
539 * The notifier block callback should expect a "struct tp_module" data
540 * pointer.
541 */
542int register_tracepoint_module_notifier(struct notifier_block *nb)
543{
544 struct tp_module *tp_mod;
545 int ret;
546
547 mutex_lock(&tracepoint_module_list_mutex);
548 ret = blocking_notifier_chain_register(&tracepoint_notify_list, nb);
549 if (ret)
550 goto end;
551 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
552 (void) nb->notifier_call(nb, MODULE_STATE_COMING, tp_mod);
553end:
554 mutex_unlock(&tracepoint_module_list_mutex);
555 return ret;
556}
557EXPORT_SYMBOL_GPL(register_tracepoint_module_notifier);
558
559/**
560 * unregister_tracepoint_module_notifier - unregister tracepoint coming/going notifier
561 * @nb: notifier block
562 *
563 * The notifier block callback should expect a "struct tp_module" data
564 * pointer.
565 */
566int unregister_tracepoint_module_notifier(struct notifier_block *nb)
567{
568 struct tp_module *tp_mod;
569 int ret;
570
571 mutex_lock(&tracepoint_module_list_mutex);
572 ret = blocking_notifier_chain_unregister(&tracepoint_notify_list, nb);
573 if (ret)
574 goto end;
575 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
576 (void) nb->notifier_call(nb, MODULE_STATE_GOING, tp_mod);
577end:
578 mutex_unlock(&tracepoint_module_list_mutex);
579 return ret;
580
581}
582EXPORT_SYMBOL_GPL(unregister_tracepoint_module_notifier);
583
584/*
585 * Ensure the tracer unregistered the module's probes before the module
586 * teardown is performed. Prevents leaks of probe and data pointers.
587 */
588static void tp_module_going_check_quiescent(struct tracepoint *tp, void *priv)
589{
590 WARN_ON_ONCE(tp->funcs);
591}
592
593static int tracepoint_module_coming(struct module *mod)
594{
595 struct tp_module *tp_mod;
596
597 if (!mod->num_tracepoints)
598 return 0;
599
600 /*
601 * We skip modules that taint the kernel, especially those with different
602 * module headers (for forced load), to make sure we don't cause a crash.
603 * Staging, out-of-tree, unsigned GPL, and test modules are fine.
604 */
605 if (trace_module_has_bad_taint(mod))
606 return 0;
607
608 tp_mod = kmalloc(sizeof(struct tp_module), GFP_KERNEL);
609 if (!tp_mod)
610 return -ENOMEM;
611 tp_mod->mod = mod;
612
613 mutex_lock(&tracepoint_module_list_mutex);
614 list_add_tail(&tp_mod->list, &tracepoint_module_list);
615 blocking_notifier_call_chain(&tracepoint_notify_list,
616 MODULE_STATE_COMING, tp_mod);
617 mutex_unlock(&tracepoint_module_list_mutex);
618 return 0;
619}
620
621static void tracepoint_module_going(struct module *mod)
622{
623 struct tp_module *tp_mod;
624
625 if (!mod->num_tracepoints)
626 return;
627
628 mutex_lock(&tracepoint_module_list_mutex);
629 list_for_each_entry(tp_mod, &tracepoint_module_list, list) {
630 if (tp_mod->mod == mod) {
631 blocking_notifier_call_chain(&tracepoint_notify_list,
632 MODULE_STATE_GOING, tp_mod);
633 list_del(&tp_mod->list);
634 kfree(tp_mod);
635 /*
636 * Called the going notifier before checking for
637 * quiescence.
638 */
639 for_each_tracepoint_range(mod->tracepoints_ptrs,
640 mod->tracepoints_ptrs + mod->num_tracepoints,
641 tp_module_going_check_quiescent, NULL);
642 break;
643 }
644 }
645 /*
646 * In the case of modules that were tainted at "coming", we'll simply
647 * walk through the list without finding it. We cannot use the "tainted"
648 * flag on "going", in case a module taints the kernel only after being
649 * loaded.
650 */
651 mutex_unlock(&tracepoint_module_list_mutex);
652}
653
654static int tracepoint_module_notify(struct notifier_block *self,
655 unsigned long val, void *data)
656{
657 struct module *mod = data;
658 int ret = 0;
659
660 switch (val) {
661 case MODULE_STATE_COMING:
662 ret = tracepoint_module_coming(mod);
663 break;
664 case MODULE_STATE_LIVE:
665 break;
666 case MODULE_STATE_GOING:
667 tracepoint_module_going(mod);
668 break;
669 case MODULE_STATE_UNFORMED:
670 break;
671 }
672 return notifier_from_errno(ret);
673}
674
675static struct notifier_block tracepoint_module_nb = {
676 .notifier_call = tracepoint_module_notify,
677 .priority = 0,
678};
679
680static __init int init_tracepoints(void)
681{
682 int ret;
683
684 ret = register_module_notifier(&tracepoint_module_nb);
685 if (ret)
686 pr_warn("Failed to register tracepoint module enter notifier\n");
687
688 return ret;
689}
690__initcall(init_tracepoints);
691
692/**
693 * for_each_tracepoint_in_module - iteration on all tracepoints in a module
694 * @mod: module
695 * @fct: callback
696 * @priv: private data
697 */
698void for_each_tracepoint_in_module(struct module *mod,
699 void (*fct)(struct tracepoint *tp,
700 struct module *mod, void *priv),
701 void *priv)
702{
703 tracepoint_ptr_t *begin, *end, *iter;
704
705 lockdep_assert_held(&tracepoint_module_list_mutex);
706
707 if (!mod)
708 return;
709
710 begin = mod->tracepoints_ptrs;
711 end = mod->tracepoints_ptrs + mod->num_tracepoints;
712
713 for (iter = begin; iter < end; iter++)
714 fct(tracepoint_ptr_deref(iter), mod, priv);
715}
716
717/**
718 * for_each_module_tracepoint - iteration on all tracepoints in all modules
719 * @fct: callback
720 * @priv: private data
721 */
722void for_each_module_tracepoint(void (*fct)(struct tracepoint *tp,
723 struct module *mod, void *priv),
724 void *priv)
725{
726 struct tp_module *tp_mod;
727
728 mutex_lock(&tracepoint_module_list_mutex);
729 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
730 for_each_tracepoint_in_module(tp_mod->mod, fct, priv);
731 mutex_unlock(&tracepoint_module_list_mutex);
732}
733#endif /* CONFIG_MODULES */
734
735/**
736 * for_each_kernel_tracepoint - iteration on all kernel tracepoints
737 * @fct: callback
738 * @priv: private data
739 */
740void for_each_kernel_tracepoint(void (*fct)(struct tracepoint *tp, void *priv),
741 void *priv)
742{
743 for_each_tracepoint_range(__start___tracepoints_ptrs,
744 __stop___tracepoints_ptrs, fct, priv);
745}
746EXPORT_SYMBOL_GPL(for_each_kernel_tracepoint);
747
748#ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
749
750/* NB: reg/unreg are called while guarded with the tracepoints_mutex */
751static int sys_tracepoint_refcount;
752
753int syscall_regfunc(void)
754{
755 struct task_struct *p, *t;
756
757 if (!sys_tracepoint_refcount) {
758 read_lock(&tasklist_lock);
759 for_each_process_thread(p, t) {
760 set_task_syscall_work(t, SYSCALL_TRACEPOINT);
761 }
762 read_unlock(&tasklist_lock);
763 }
764 sys_tracepoint_refcount++;
765
766 return 0;
767}
768
769void syscall_unregfunc(void)
770{
771 struct task_struct *p, *t;
772
773 sys_tracepoint_refcount--;
774 if (!sys_tracepoint_refcount) {
775 read_lock(&tasklist_lock);
776 for_each_process_thread(p, t) {
777 clear_task_syscall_work(t, SYSCALL_TRACEPOINT);
778 }
779 read_unlock(&tasklist_lock);
780 }
781}
782#endif