blob: fb0a38a265555c6c846254859c83468d0aba0f35 [file] [log] [blame]
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04001/*
2 * Copyright (C) 2008 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>
Jason Barona871bd32009-08-10 16:52:31 -040027#include <linux/sched.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +010028#include <linux/static_key.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040029
Mathieu Desnoyers65498642011-01-26 17:26:22 -050030extern struct tracepoint * const __start___tracepoints_ptrs[];
31extern struct tracepoint * const __stop___tracepoints_ptrs[];
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040032
33/* Set to 1 to enable tracepoint debug output */
34static const int tracepoint_debug;
35
36/*
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -040037 * Tracepoints mutex protects the builtin and module tracepoints and the hash
38 * table, as well as the local module list.
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040039 */
40static DEFINE_MUTEX(tracepoints_mutex);
41
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -040042#ifdef CONFIG_MODULES
43/* Local list of struct module */
44static LIST_HEAD(tracepoint_module_list);
45#endif /* CONFIG_MODULES */
46
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040047/*
48 * Tracepoint hash table, containing the active tracepoints.
49 * Protected by tracepoints_mutex.
50 */
51#define TRACEPOINT_HASH_BITS 6
52#define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
Lai Jiangshan19dba332008-10-28 10:51:49 +080053static struct hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE];
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040054
55/*
56 * Note about RCU :
Anand Gadiyarfd589a82009-07-16 17:13:03 +020057 * It is used to delay the free of multiple probes array until a quiescent
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040058 * state is reached.
59 * Tracepoint entries modifications are protected by the tracepoints_mutex.
60 */
61struct tracepoint_entry {
62 struct hlist_node hlist;
Steven Rostedt38516ab2010-04-20 17:04:50 -040063 struct tracepoint_func *funcs;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040064 int refcount; /* Number of times armed. 0 if disarmed. */
Steven Rostedtb196e2b2014-02-13 15:45:07 -050065 int enabled; /* Tracepoint enabled */
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040066 char name[0];
67};
68
Lai Jiangshan19dba332008-10-28 10:51:49 +080069struct tp_probes {
Mathieu Desnoyers0dea6d522014-03-21 01:19:01 -040070 struct rcu_head rcu;
Steven Rostedt38516ab2010-04-20 17:04:50 -040071 struct tracepoint_func probes[0];
Lai Jiangshan19dba332008-10-28 10:51:49 +080072};
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040073
Lai Jiangshan19dba332008-10-28 10:51:49 +080074static inline void *allocate_probes(int count)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040075{
Steven Rostedt38516ab2010-04-20 17:04:50 -040076 struct tp_probes *p = kmalloc(count * sizeof(struct tracepoint_func)
Lai Jiangshan19dba332008-10-28 10:51:49 +080077 + sizeof(struct tp_probes), GFP_KERNEL);
78 return p == NULL ? NULL : p->probes;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040079}
80
Lai Jiangshan19dba332008-10-28 10:51:49 +080081static void rcu_free_old_probes(struct rcu_head *head)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040082{
Mathieu Desnoyers0dea6d522014-03-21 01:19:01 -040083 kfree(container_of(head, struct tp_probes, rcu));
Lai Jiangshan19dba332008-10-28 10:51:49 +080084}
85
Steven Rostedt38516ab2010-04-20 17:04:50 -040086static inline void release_probes(struct tracepoint_func *old)
Lai Jiangshan19dba332008-10-28 10:51:49 +080087{
88 if (old) {
89 struct tp_probes *tp_probes = container_of(old,
90 struct tp_probes, probes[0]);
Mathieu Desnoyers0dea6d522014-03-21 01:19:01 -040091 call_rcu_sched(&tp_probes->rcu, rcu_free_old_probes);
Lai Jiangshan19dba332008-10-28 10:51:49 +080092 }
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040093}
94
95static void debug_print_probes(struct tracepoint_entry *entry)
96{
97 int i;
98
Lai Jiangshan19dba332008-10-28 10:51:49 +080099 if (!tracepoint_debug || !entry->funcs)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400100 return;
101
Steven Rostedt38516ab2010-04-20 17:04:50 -0400102 for (i = 0; entry->funcs[i].func; i++)
103 printk(KERN_DEBUG "Probe %d : %p\n", i, entry->funcs[i].func);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400104}
105
Steven Rostedt38516ab2010-04-20 17:04:50 -0400106static struct tracepoint_func *
107tracepoint_entry_add_probe(struct tracepoint_entry *entry,
108 void *probe, void *data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400109{
110 int nr_probes = 0;
Steven Rostedt38516ab2010-04-20 17:04:50 -0400111 struct tracepoint_func *old, *new;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400112
Sahara4c69e6e2013-04-15 11:13:15 +0900113 if (WARN_ON(!probe))
114 return ERR_PTR(-EINVAL);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400115
116 debug_print_probes(entry);
117 old = entry->funcs;
118 if (old) {
119 /* (N -> N+1), (N != 0, 1) probes */
Steven Rostedt38516ab2010-04-20 17:04:50 -0400120 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
121 if (old[nr_probes].func == probe &&
122 old[nr_probes].data == data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400123 return ERR_PTR(-EEXIST);
124 }
125 /* + 2 : one for new probe, one for NULL func */
Lai Jiangshan19dba332008-10-28 10:51:49 +0800126 new = allocate_probes(nr_probes + 2);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400127 if (new == NULL)
128 return ERR_PTR(-ENOMEM);
129 if (old)
Steven Rostedt38516ab2010-04-20 17:04:50 -0400130 memcpy(new, old, nr_probes * sizeof(struct tracepoint_func));
131 new[nr_probes].func = probe;
132 new[nr_probes].data = data;
133 new[nr_probes + 1].func = NULL;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400134 entry->refcount = nr_probes + 1;
135 entry->funcs = new;
136 debug_print_probes(entry);
137 return old;
138}
139
140static void *
Steven Rostedt38516ab2010-04-20 17:04:50 -0400141tracepoint_entry_remove_probe(struct tracepoint_entry *entry,
142 void *probe, void *data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400143{
144 int nr_probes = 0, nr_del = 0, i;
Steven Rostedt38516ab2010-04-20 17:04:50 -0400145 struct tracepoint_func *old, *new;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400146
147 old = entry->funcs;
148
Frederic Weisbeckerf66af452008-10-22 19:14:55 +0200149 if (!old)
Lai Jiangshan19dba332008-10-28 10:51:49 +0800150 return ERR_PTR(-ENOENT);
Frederic Weisbeckerf66af452008-10-22 19:14:55 +0200151
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400152 debug_print_probes(entry);
153 /* (N -> M), (N > 1, M >= 0) probes */
Sahara4c69e6e2013-04-15 11:13:15 +0900154 if (probe) {
155 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
156 if (old[nr_probes].func == probe &&
157 old[nr_probes].data == data)
158 nr_del++;
159 }
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400160 }
161
Sahara4c69e6e2013-04-15 11:13:15 +0900162 /*
163 * If probe is NULL, then nr_probes = nr_del = 0, and then the
164 * entire entry will be removed.
165 */
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400166 if (nr_probes - nr_del == 0) {
167 /* N -> 0, (N > 1) */
168 entry->funcs = NULL;
169 entry->refcount = 0;
170 debug_print_probes(entry);
171 return old;
172 } else {
173 int j = 0;
174 /* N -> M, (N > 1, M > 0) */
175 /* + 1 for NULL */
Lai Jiangshan19dba332008-10-28 10:51:49 +0800176 new = allocate_probes(nr_probes - nr_del + 1);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400177 if (new == NULL)
178 return ERR_PTR(-ENOMEM);
Steven Rostedt38516ab2010-04-20 17:04:50 -0400179 for (i = 0; old[i].func; i++)
Sahara4c69e6e2013-04-15 11:13:15 +0900180 if (old[i].func != probe || old[i].data != data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400181 new[j++] = old[i];
Steven Rostedt38516ab2010-04-20 17:04:50 -0400182 new[nr_probes - nr_del].func = NULL;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400183 entry->refcount = nr_probes - nr_del;
184 entry->funcs = new;
185 }
186 debug_print_probes(entry);
187 return old;
188}
189
190/*
191 * Get tracepoint if the tracepoint is present in the tracepoint hash table.
192 * Must be called with tracepoints_mutex held.
193 * Returns NULL if not present.
194 */
195static struct tracepoint_entry *get_tracepoint(const char *name)
196{
197 struct hlist_head *head;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400198 struct tracepoint_entry *e;
199 u32 hash = jhash(name, strlen(name), 0);
200
Mathieu Desnoyers97953022008-07-24 16:37:23 -0400201 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800202 hlist_for_each_entry(e, head, hlist) {
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400203 if (!strcmp(name, e->name))
204 return e;
205 }
206 return NULL;
207}
208
209/*
210 * Add the tracepoint to the tracepoint hash table. Must be called with
211 * tracepoints_mutex held.
212 */
213static struct tracepoint_entry *add_tracepoint(const char *name)
214{
215 struct hlist_head *head;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400216 struct tracepoint_entry *e;
217 size_t name_len = strlen(name) + 1;
218 u32 hash = jhash(name, name_len-1, 0);
219
Mathieu Desnoyers97953022008-07-24 16:37:23 -0400220 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800221 hlist_for_each_entry(e, head, hlist) {
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400222 if (!strcmp(name, e->name)) {
223 printk(KERN_NOTICE
224 "tracepoint %s busy\n", name);
225 return ERR_PTR(-EEXIST); /* Already there */
226 }
227 }
228 /*
229 * Using kmalloc here to allocate a variable length element. Could
230 * cause some memory fragmentation if overused.
231 */
232 e = kmalloc(sizeof(struct tracepoint_entry) + name_len, GFP_KERNEL);
233 if (!e)
234 return ERR_PTR(-ENOMEM);
235 memcpy(&e->name[0], name, name_len);
236 e->funcs = NULL;
237 e->refcount = 0;
Steven Rostedtb196e2b2014-02-13 15:45:07 -0500238 e->enabled = 0;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400239 hlist_add_head(&e->hlist, head);
240 return e;
241}
242
243/*
244 * Remove the tracepoint from the tracepoint hash table. Must be called with
245 * mutex_lock held.
246 */
Lai Jiangshan19dba332008-10-28 10:51:49 +0800247static inline void remove_tracepoint(struct tracepoint_entry *e)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400248{
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400249 hlist_del(&e->hlist);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400250 kfree(e);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400251}
252
253/*
254 * Sets the probe callback corresponding to one tracepoint.
255 */
256static void set_tracepoint(struct tracepoint_entry **entry,
257 struct tracepoint *elem, int active)
258{
259 WARN_ON(strcmp((*entry)->name, elem->name) != 0);
260
Ingo Molnarc5905af2012-02-24 08:31:31 +0100261 if (elem->regfunc && !static_key_enabled(&elem->key) && active)
Josh Stone97419872009-08-24 14:43:13 -0700262 elem->regfunc();
Ingo Molnarc5905af2012-02-24 08:31:31 +0100263 else if (elem->unregfunc && static_key_enabled(&elem->key) && !active)
Josh Stone97419872009-08-24 14:43:13 -0700264 elem->unregfunc();
265
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400266 /*
267 * rcu_assign_pointer has a smp_wmb() which makes sure that the new
268 * probe callbacks array is consistent before setting a pointer to it.
269 * This array is referenced by __DO_TRACE from
270 * include/linux/tracepoints.h. A matching smp_read_barrier_depends()
271 * is used.
272 */
273 rcu_assign_pointer(elem->funcs, (*entry)->funcs);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100274 if (active && !static_key_enabled(&elem->key))
275 static_key_slow_inc(&elem->key);
276 else if (!active && static_key_enabled(&elem->key))
277 static_key_slow_dec(&elem->key);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400278}
279
280/*
281 * Disable a tracepoint and its probe callback.
282 * Note: only waiting an RCU period after setting elem->call to the empty
283 * function insures that the original callback is not used anymore. This insured
284 * by preempt_disable around the call site.
285 */
286static void disable_tracepoint(struct tracepoint *elem)
287{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100288 if (elem->unregfunc && static_key_enabled(&elem->key))
Josh Stone97419872009-08-24 14:43:13 -0700289 elem->unregfunc();
290
Ingo Molnarc5905af2012-02-24 08:31:31 +0100291 if (static_key_enabled(&elem->key))
292 static_key_slow_dec(&elem->key);
Mathieu Desnoyersde0baf92008-11-14 17:47:42 -0500293 rcu_assign_pointer(elem->funcs, NULL);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400294}
295
296/**
297 * tracepoint_update_probe_range - Update a probe range
298 * @begin: beginning of the range
299 * @end: end of the range
300 *
301 * Updates the probe callback corresponding to a range of tracepoints.
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400302 * Called with tracepoints_mutex held.
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400303 */
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400304static void tracepoint_update_probe_range(struct tracepoint * const *begin,
305 struct tracepoint * const *end)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400306{
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500307 struct tracepoint * const *iter;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400308 struct tracepoint_entry *mark_entry;
309
Ingo Molnarec625cb2009-03-18 19:54:04 +0100310 if (!begin)
Jaswinder Singh Rajput09933a12009-03-18 22:18:56 +0530311 return;
Jaswinder Singh Rajput09933a12009-03-18 22:18:56 +0530312
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400313 for (iter = begin; iter < end; iter++) {
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500314 mark_entry = get_tracepoint((*iter)->name);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400315 if (mark_entry) {
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500316 set_tracepoint(&mark_entry, *iter,
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400317 !!mark_entry->refcount);
Steven Rostedtb196e2b2014-02-13 15:45:07 -0500318 mark_entry->enabled = !!mark_entry->refcount;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400319 } else {
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500320 disable_tracepoint(*iter);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400321 }
322 }
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400323}
324
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400325#ifdef CONFIG_MODULES
326void module_update_tracepoints(void)
327{
328 struct tp_module *tp_mod;
329
330 list_for_each_entry(tp_mod, &tracepoint_module_list, list)
331 tracepoint_update_probe_range(tp_mod->tracepoints_ptrs,
332 tp_mod->tracepoints_ptrs + tp_mod->num_tracepoints);
333}
334#else /* CONFIG_MODULES */
335void module_update_tracepoints(void)
336{
337}
338#endif /* CONFIG_MODULES */
339
340
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400341/*
342 * Update probes, removing the faulty probes.
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400343 * Called with tracepoints_mutex held.
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400344 */
345static void tracepoint_update_probes(void)
346{
347 /* Core kernel tracepoints */
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500348 tracepoint_update_probe_range(__start___tracepoints_ptrs,
349 __stop___tracepoints_ptrs);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400350 /* tracepoints in modules. */
351 module_update_tracepoints();
352}
353
Steven Rostedt38516ab2010-04-20 17:04:50 -0400354static struct tracepoint_func *
355tracepoint_add_probe(const char *name, void *probe, void *data)
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800356{
357 struct tracepoint_entry *entry;
Steven Rostedt38516ab2010-04-20 17:04:50 -0400358 struct tracepoint_func *old;
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800359
360 entry = get_tracepoint(name);
361 if (!entry) {
362 entry = add_tracepoint(name);
363 if (IS_ERR(entry))
Steven Rostedt38516ab2010-04-20 17:04:50 -0400364 return (struct tracepoint_func *)entry;
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800365 }
Steven Rostedt38516ab2010-04-20 17:04:50 -0400366 old = tracepoint_entry_add_probe(entry, probe, data);
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800367 if (IS_ERR(old) && !entry->refcount)
368 remove_tracepoint(entry);
369 return old;
370}
371
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400372/**
373 * tracepoint_probe_register - Connect a probe to a tracepoint
374 * @name: tracepoint name
375 * @probe: probe handler
Mathieu Desnoyers4c116282014-03-11 21:32:28 -0400376 * @data: probe private data
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400377 *
Mathieu Desnoyers3bbc8db2014-03-10 21:04:58 -0400378 * Returns:
379 * - 0 if the probe was successfully registered, and tracepoint
380 * callsites are currently loaded for that probe,
381 * - -ENODEV if the probe was successfully registered, but no tracepoint
382 * callsite is currently loaded for that probe,
383 * - other negative error value on error.
384 *
385 * When tracepoint_probe_register() returns either 0 or -ENODEV,
386 * parameters @name, @probe, and @data may be used by the tracepoint
387 * infrastructure until the probe is unregistered.
388 *
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400389 * The probe address must at least be aligned on the architecture pointer size.
390 */
Steven Rostedt38516ab2010-04-20 17:04:50 -0400391int tracepoint_probe_register(const char *name, void *probe, void *data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400392{
Steven Rostedt38516ab2010-04-20 17:04:50 -0400393 struct tracepoint_func *old;
Steven Rostedtb196e2b2014-02-13 15:45:07 -0500394 struct tracepoint_entry *entry;
395 int ret = 0;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400396
397 mutex_lock(&tracepoints_mutex);
Steven Rostedt38516ab2010-04-20 17:04:50 -0400398 old = tracepoint_add_probe(name, probe, data);
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400399 if (IS_ERR(old)) {
400 mutex_unlock(&tracepoints_mutex);
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800401 return PTR_ERR(old);
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400402 }
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400403 tracepoint_update_probes(); /* may update entry */
Steven Rostedtb196e2b2014-02-13 15:45:07 -0500404 entry = get_tracepoint(name);
405 /* Make sure the entry was enabled */
406 if (!entry || !entry->enabled)
407 ret = -ENODEV;
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400408 mutex_unlock(&tracepoints_mutex);
Lai Jiangshan19dba332008-10-28 10:51:49 +0800409 release_probes(old);
Steven Rostedtb196e2b2014-02-13 15:45:07 -0500410 return ret;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400411}
412EXPORT_SYMBOL_GPL(tracepoint_probe_register);
413
Steven Rostedt38516ab2010-04-20 17:04:50 -0400414static struct tracepoint_func *
415tracepoint_remove_probe(const char *name, void *probe, void *data)
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800416{
417 struct tracepoint_entry *entry;
Steven Rostedt38516ab2010-04-20 17:04:50 -0400418 struct tracepoint_func *old;
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800419
420 entry = get_tracepoint(name);
421 if (!entry)
422 return ERR_PTR(-ENOENT);
Steven Rostedt38516ab2010-04-20 17:04:50 -0400423 old = tracepoint_entry_remove_probe(entry, probe, data);
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800424 if (IS_ERR(old))
425 return old;
426 if (!entry->refcount)
427 remove_tracepoint(entry);
428 return old;
429}
430
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400431/**
432 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
433 * @name: tracepoint name
434 * @probe: probe function pointer
Mathieu Desnoyers4c116282014-03-11 21:32:28 -0400435 * @data: probe private data
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400436 *
437 * We do not need to call a synchronize_sched to make sure the probes have
438 * finished running before doing a module unload, because the module unload
439 * itself uses stop_machine(), which insures that every preempt disabled section
440 * have finished.
441 */
Steven Rostedt38516ab2010-04-20 17:04:50 -0400442int tracepoint_probe_unregister(const char *name, void *probe, void *data)
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400443{
Steven Rostedt38516ab2010-04-20 17:04:50 -0400444 struct tracepoint_func *old;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400445
446 mutex_lock(&tracepoints_mutex);
Steven Rostedt38516ab2010-04-20 17:04:50 -0400447 old = tracepoint_remove_probe(name, probe, data);
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400448 if (IS_ERR(old)) {
449 mutex_unlock(&tracepoints_mutex);
Lai Jiangshan127cafb2008-10-28 10:51:53 +0800450 return PTR_ERR(old);
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400451 }
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400452 tracepoint_update_probes(); /* may update entry */
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400453 mutex_unlock(&tracepoints_mutex);
Lai Jiangshan19dba332008-10-28 10:51:49 +0800454 release_probes(old);
455 return 0;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400456}
457EXPORT_SYMBOL_GPL(tracepoint_probe_unregister);
458
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500459
Ingo Molnar227a8372008-11-16 09:50:34 +0100460#ifdef CONFIG_MODULES
Steven Rostedt (Red Hat)45ab28132014-02-26 13:37:38 -0500461bool trace_module_has_bad_taint(struct module *mod)
462{
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +1030463 return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) |
464 (1 << TAINT_UNSIGNED_MODULE));
Steven Rostedt (Red Hat)45ab28132014-02-26 13:37:38 -0500465}
466
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400467static int tracepoint_module_coming(struct module *mod)
468{
Mathieu Desnoyers0dea6d522014-03-21 01:19:01 -0400469 struct tp_module *tp_mod;
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400470 int ret = 0;
471
Steven Rostedt (Red Hat)7dec9352014-02-26 10:54:36 -0500472 if (!mod->num_tracepoints)
473 return 0;
474
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400475 /*
Steven Rostedtc10076c2012-01-13 21:40:59 -0500476 * We skip modules that taint the kernel, especially those with different
477 * module headers (for forced load), to make sure we don't cause a crash.
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +1030478 * Staging, out-of-tree, and unsigned GPL modules are fine.
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400479 */
Steven Rostedt (Red Hat)45ab28132014-02-26 13:37:38 -0500480 if (trace_module_has_bad_taint(mod))
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400481 return 0;
482 mutex_lock(&tracepoints_mutex);
483 tp_mod = kmalloc(sizeof(struct tp_module), GFP_KERNEL);
484 if (!tp_mod) {
485 ret = -ENOMEM;
486 goto end;
487 }
488 tp_mod->num_tracepoints = mod->num_tracepoints;
489 tp_mod->tracepoints_ptrs = mod->tracepoints_ptrs;
Mathieu Desnoyers0dea6d522014-03-21 01:19:01 -0400490 list_add_tail(&tp_mod->list, &tracepoint_module_list);
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400491 tracepoint_update_probe_range(mod->tracepoints_ptrs,
492 mod->tracepoints_ptrs + mod->num_tracepoints);
493end:
494 mutex_unlock(&tracepoints_mutex);
495 return ret;
496}
497
498static int tracepoint_module_going(struct module *mod)
499{
500 struct tp_module *pos;
501
Steven Rostedt (Red Hat)7dec9352014-02-26 10:54:36 -0500502 if (!mod->num_tracepoints)
503 return 0;
504
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400505 mutex_lock(&tracepoints_mutex);
506 tracepoint_update_probe_range(mod->tracepoints_ptrs,
507 mod->tracepoints_ptrs + mod->num_tracepoints);
508 list_for_each_entry(pos, &tracepoint_module_list, list) {
509 if (pos->tracepoints_ptrs == mod->tracepoints_ptrs) {
510 list_del(&pos->list);
511 kfree(pos);
512 break;
513 }
514 }
515 /*
516 * In the case of modules that were tainted at "coming", we'll simply
517 * walk through the list without finding it. We cannot use the "tainted"
518 * flag on "going", in case a module taints the kernel only after being
519 * loaded.
520 */
521 mutex_unlock(&tracepoints_mutex);
522 return 0;
523}
Ingo Molnar227a8372008-11-16 09:50:34 +0100524
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500525int tracepoint_module_notify(struct notifier_block *self,
526 unsigned long val, void *data)
527{
528 struct module *mod = data;
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400529 int ret = 0;
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500530
531 switch (val) {
532 case MODULE_STATE_COMING:
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400533 ret = tracepoint_module_coming(mod);
534 break;
535 case MODULE_STATE_LIVE:
536 break;
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500537 case MODULE_STATE_GOING:
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400538 ret = tracepoint_module_going(mod);
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500539 break;
540 }
Mathieu Desnoyersb75ef8b2011-08-10 15:18:39 -0400541 return ret;
Mathieu Desnoyers32f85742008-11-14 17:47:46 -0500542}
543
544struct notifier_block tracepoint_module_nb = {
545 .notifier_call = tracepoint_module_notify,
546 .priority = 0,
547};
548
549static int init_tracepoints(void)
550{
551 return register_module_notifier(&tracepoint_module_nb);
552}
553__initcall(init_tracepoints);
Ingo Molnar227a8372008-11-16 09:50:34 +0100554#endif /* CONFIG_MODULES */
Jason Barona871bd32009-08-10 16:52:31 -0400555
Josh Stone3d27d8c2009-08-24 14:43:12 -0700556#ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
Ingo Molnar60d970c2009-08-13 23:37:26 +0200557
Josh Stone97419872009-08-24 14:43:13 -0700558/* NB: reg/unreg are called while guarded with the tracepoints_mutex */
Jason Barona871bd32009-08-10 16:52:31 -0400559static int sys_tracepoint_refcount;
560
561void syscall_regfunc(void)
562{
563 unsigned long flags;
564 struct task_struct *g, *t;
565
Jason Barona871bd32009-08-10 16:52:31 -0400566 if (!sys_tracepoint_refcount) {
567 read_lock_irqsave(&tasklist_lock, flags);
568 do_each_thread(g, t) {
Hendrik Bruecknercc3b13c2009-08-25 18:02:37 +0200569 /* Skip kernel threads. */
570 if (t->mm)
571 set_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
Jason Barona871bd32009-08-10 16:52:31 -0400572 } while_each_thread(g, t);
573 read_unlock_irqrestore(&tasklist_lock, flags);
574 }
575 sys_tracepoint_refcount++;
Jason Barona871bd32009-08-10 16:52:31 -0400576}
577
578void syscall_unregfunc(void)
579{
580 unsigned long flags;
581 struct task_struct *g, *t;
582
Jason Barona871bd32009-08-10 16:52:31 -0400583 sys_tracepoint_refcount--;
584 if (!sys_tracepoint_refcount) {
585 read_lock_irqsave(&tasklist_lock, flags);
586 do_each_thread(g, t) {
Josh Stone66700002009-08-24 14:43:11 -0700587 clear_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
Jason Barona871bd32009-08-10 16:52:31 -0400588 } while_each_thread(g, t);
589 read_unlock_irqrestore(&tasklist_lock, flags);
590 }
Jason Barona871bd32009-08-10 16:52:31 -0400591}
Ingo Molnar60d970c2009-08-13 23:37:26 +0200592#endif