tracepoint: include stdio.h for NULL definition
[lttng-ust.git] / liblttng-ust / tracepoint.c
CommitLineData
f99be407 1/*
b27f8e75 2 * Copyright (C) 2008-2011 Mathieu Desnoyers
1f8b0dff 3 * Copyright (C) 2009 Pierre-Marc Fournier
f99be407 4 *
34e4b7db
PMF
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
f37142a4
MD
7 * License as published by the Free Software Foundation;
8 * version 2.1 of the License.
f99be407 9 *
34e4b7db 10 * This library is distributed in the hope that it will be useful,
f99be407 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34e4b7db
PMF
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
f99be407 14 *
34e4b7db
PMF
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1f8b0dff
PMF
18 *
19 * Ported to userspace by Pierre-Marc Fournier.
f99be407 20 */
1f8b0dff 21
b0c4126f 22#define _LGPL_SOURCE
474d745f 23#include <errno.h>
b728d87e
MD
24#include <stdint.h>
25#include <stddef.h>
8c82e2da 26#include <stdio.h>
44c72f10 27
b728d87e 28#include <urcu/arch.h>
b7ea1a1c 29#include <urcu-bp.h>
10c56168 30#include <urcu/hlist.h>
edaa1431 31#include <urcu/uatomic.h>
b728d87e 32#include <urcu/compiler.h>
44c72f10
MD
33
34#include <lttng/tracepoint.h>
ff412fb5 35#include <lttng/ust-abi.h> /* for LTTNG_UST_SYM_NAME_LEN */
44c72f10
MD
36
37#include <usterr-signal-safe.h>
35897f8b 38#include <helper.h>
474d745f 39
23c8854a 40#include "tracepoint-internal.h"
b751f722 41#include "ltt-tracer-core.h"
596c4223 42#include "jhash.h"
8f3f8c99 43#include "error.h"
b0c4126f 44
f99be407
PMF
45/* Set to 1 to enable tracepoint debug output */
46static const int tracepoint_debug;
b27f8e75
MD
47static int initialized;
48static void (*new_tracepoint_cb)(struct tracepoint *);
f99be407 49
8792fbae
MD
50/*
51 * tracepoint_mutex nests inside UST mutex.
52 *
53 * Note about interaction with fork/clone: UST does not hold the
54 * tracepoint mutex across fork/clone because it is either:
55 * - nested within UST mutex, in which case holding the UST mutex across
56 * fork/clone suffice,
57 * - taken by a library constructor, which should never race with a
58 * fork/clone if the application is expected to continue running with
59 * the same memory layout (no following exec()).
60 */
61static pthread_mutex_t tracepoint_mutex = PTHREAD_MUTEX_INITIALIZER;
62
efa2c591
MD
63/*
64 * libraries that contain tracepoints (struct tracepoint_lib).
8792fbae 65 * Protected by tracepoint mutex.
efa2c591 66 */
0222e121 67static CDS_LIST_HEAD(libs);
474d745f 68
f99be407 69/*
8792fbae 70 * The tracepoint mutex protects the library tracepoints, the hash table, and
17dfb34b 71 * the library list.
8792fbae 72 * All calls to the tracepoint API must be protected by the tracepoint mutex,
17dfb34b 73 * excepts calls to tracepoint_register_lib and
8792fbae 74 * tracepoint_unregister_lib, which take the tracepoint mutex themselves.
f99be407 75 */
f99be407
PMF
76
77/*
78 * Tracepoint hash table, containing the active tracepoints.
8792fbae 79 * Protected by tracepoint mutex.
f99be407
PMF
80 */
81#define TRACEPOINT_HASH_BITS 6
82#define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
10c56168 83static struct cds_hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE];
f99be407 84
b27f8e75
MD
85static CDS_LIST_HEAD(old_probes);
86static int need_update;
87
f99be407
PMF
88/*
89 * Note about RCU :
90 * It is used to to delay the free of multiple probes array until a quiescent
91 * state is reached.
8792fbae 92 * Tracepoint entries modifications are protected by the tracepoint mutex.
f99be407
PMF
93 */
94struct tracepoint_entry {
10c56168 95 struct cds_hlist_node hlist;
b979b346 96 struct tracepoint_probe *probes;
f99be407 97 int refcount; /* Number of times armed. 0 if disarmed. */
67e5f391 98 const char *signature;
f99be407
PMF
99 char name[0];
100};
101
102struct tp_probes {
103 union {
0222e121 104 struct cds_list_head list;
ade7037b
MD
105 /* Field below only used for call_rcu scheme */
106 /* struct rcu_head head; */
f99be407 107 } u;
b979b346 108 struct tracepoint_probe probes[0];
f99be407
PMF
109};
110
efa2c591 111static void *allocate_probes(int count)
f99be407 112{
b979b346 113 struct tp_probes *p = zmalloc(count * sizeof(struct tracepoint_probe)
909bc43f 114 + sizeof(struct tp_probes));
f99be407
PMF
115 return p == NULL ? NULL : p->probes;
116}
117
efa2c591 118static void release_probes(void *old)
f99be407
PMF
119{
120 if (old) {
b728d87e 121 struct tp_probes *tp_probes = caa_container_of(old,
f99be407 122 struct tp_probes, probes[0]);
474d745f 123 synchronize_rcu();
909bc43f 124 free(tp_probes);
f99be407
PMF
125 }
126}
127
128static void debug_print_probes(struct tracepoint_entry *entry)
129{
130 int i;
131
9dec086e 132 if (!tracepoint_debug || !entry->probes)
f99be407
PMF
133 return;
134
9dec086e
NC
135 for (i = 0; entry->probes[i].func; i++)
136 DBG("Probe %d : %p", i, entry->probes[i].func);
f99be407
PMF
137}
138
139static void *
9dec086e
NC
140tracepoint_entry_add_probe(struct tracepoint_entry *entry,
141 void *probe, void *data)
f99be407
PMF
142{
143 int nr_probes = 0;
b979b346 144 struct tracepoint_probe *old, *new;
f99be407
PMF
145
146 WARN_ON(!probe);
147
148 debug_print_probes(entry);
9dec086e 149 old = entry->probes;
f99be407
PMF
150 if (old) {
151 /* (N -> N+1), (N != 0, 1) probes */
9dec086e
NC
152 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
153 if (old[nr_probes].func == probe &&
154 old[nr_probes].data == data)
f99be407
PMF
155 return ERR_PTR(-EEXIST);
156 }
157 /* + 2 : one for new probe, one for NULL func */
158 new = allocate_probes(nr_probes + 2);
159 if (new == NULL)
160 return ERR_PTR(-ENOMEM);
161 if (old)
b979b346 162 memcpy(new, old, nr_probes * sizeof(struct tracepoint_probe));
9dec086e
NC
163 new[nr_probes].func = probe;
164 new[nr_probes].data = data;
165 new[nr_probes + 1].func = NULL;
f99be407 166 entry->refcount = nr_probes + 1;
9dec086e 167 entry->probes = new;
f99be407
PMF
168 debug_print_probes(entry);
169 return old;
170}
171
172static void *
9dec086e
NC
173tracepoint_entry_remove_probe(struct tracepoint_entry *entry, void *probe,
174 void *data)
f99be407
PMF
175{
176 int nr_probes = 0, nr_del = 0, i;
b979b346 177 struct tracepoint_probe *old, *new;
f99be407 178
9dec086e 179 old = entry->probes;
f99be407
PMF
180
181 if (!old)
182 return ERR_PTR(-ENOENT);
183
184 debug_print_probes(entry);
185 /* (N -> M), (N > 1, M >= 0) probes */
9dec086e 186 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
c66428ac
DG
187 if (!probe ||
188 (old[nr_probes].func == probe &&
9dec086e 189 old[nr_probes].data == data))
f99be407
PMF
190 nr_del++;
191 }
192
193 if (nr_probes - nr_del == 0) {
194 /* N -> 0, (N > 1) */
9dec086e 195 entry->probes = NULL;
f99be407
PMF
196 entry->refcount = 0;
197 debug_print_probes(entry);
198 return old;
199 } else {
200 int j = 0;
201 /* N -> M, (N > 1, M > 0) */
202 /* + 1 for NULL */
203 new = allocate_probes(nr_probes - nr_del + 1);
204 if (new == NULL)
205 return ERR_PTR(-ENOMEM);
9dec086e
NC
206 for (i = 0; old[i].func; i++)
207 if (probe &&
208 (old[i].func != probe || old[i].data != data))
f99be407 209 new[j++] = old[i];
9dec086e 210 new[nr_probes - nr_del].func = NULL;
f99be407 211 entry->refcount = nr_probes - nr_del;
9dec086e 212 entry->probes = new;
f99be407
PMF
213 }
214 debug_print_probes(entry);
215 return old;
216}
217
218/*
219 * Get tracepoint if the tracepoint is present in the tracepoint hash table.
8792fbae 220 * Must be called with tracepoint mutex held.
f99be407
PMF
221 * Returns NULL if not present.
222 */
223static struct tracepoint_entry *get_tracepoint(const char *name)
224{
10c56168
DG
225 struct cds_hlist_head *head;
226 struct cds_hlist_node *node;
f99be407 227 struct tracepoint_entry *e;
ff412fb5
MD
228 size_t name_len = strlen(name);
229 uint32_t hash;
f99be407 230
ff412fb5
MD
231 if (name_len > LTTNG_UST_SYM_NAME_LEN - 1) {
232 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_SYM_NAME_LEN - 1);
233 name_len = LTTNG_UST_SYM_NAME_LEN - 1;
234 }
235 hash = jhash(name, name_len, 0);
f99be407 236 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
10c56168 237 cds_hlist_for_each_entry(e, node, head, hlist) {
ff412fb5 238 if (!strncmp(name, e->name, LTTNG_UST_SYM_NAME_LEN - 1))
f99be407
PMF
239 return e;
240 }
241 return NULL;
242}
243
244/*
245 * Add the tracepoint to the tracepoint hash table. Must be called with
8792fbae 246 * tracepoint mutex held.
f99be407 247 */
67e5f391
MD
248static struct tracepoint_entry *add_tracepoint(const char *name,
249 const char *signature)
f99be407 250{
10c56168
DG
251 struct cds_hlist_head *head;
252 struct cds_hlist_node *node;
f99be407 253 struct tracepoint_entry *e;
ff412fb5
MD
254 size_t name_len = strlen(name);
255 uint32_t hash;
f99be407 256
ff412fb5
MD
257 if (name_len > LTTNG_UST_SYM_NAME_LEN - 1) {
258 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_SYM_NAME_LEN - 1);
259 name_len = LTTNG_UST_SYM_NAME_LEN - 1;
260 }
261 hash = jhash(name, name_len, 0);
f99be407 262 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
10c56168 263 cds_hlist_for_each_entry(e, node, head, hlist) {
ff412fb5 264 if (!strncmp(name, e->name, LTTNG_UST_SYM_NAME_LEN - 1)) {
c1f20530 265 DBG("tracepoint %s busy", name);
f99be407
PMF
266 return ERR_PTR(-EEXIST); /* Already there */
267 }
268 }
269 /*
1dba3e6c 270 * Using zmalloc here to allocate a variable length element. Could
f99be407
PMF
271 * cause some memory fragmentation if overused.
272 */
ff412fb5 273 e = zmalloc(sizeof(struct tracepoint_entry) + name_len + 1);
f99be407
PMF
274 if (!e)
275 return ERR_PTR(-ENOMEM);
ff412fb5
MD
276 memcpy(&e->name[0], name, name_len + 1);
277 e->name[name_len] = '\0';
9dec086e 278 e->probes = NULL;
f99be407 279 e->refcount = 0;
67e5f391 280 e->signature = signature;
10c56168 281 cds_hlist_add_head(&e->hlist, head);
f99be407
PMF
282 return e;
283}
284
285/*
286 * Remove the tracepoint from the tracepoint hash table. Must be called with
8792fbae 287 * tracepoint mutex held.
f99be407 288 */
efa2c591 289static void remove_tracepoint(struct tracepoint_entry *e)
f99be407 290{
10c56168 291 cds_hlist_del(&e->hlist);
909bc43f 292 free(e);
f99be407
PMF
293}
294
295/*
296 * Sets the probe callback corresponding to one tracepoint.
297 */
298static void set_tracepoint(struct tracepoint_entry **entry,
299 struct tracepoint *elem, int active)
300{
ff412fb5 301 WARN_ON(strncmp((*entry)->name, elem->name, LTTNG_UST_SYM_NAME_LEN - 1) != 0);
67e5f391
MD
302 /*
303 * Check that signatures match before connecting a probe to a
304 * tracepoint. Warn the user if they don't.
305 */
306 if (strcmp(elem->signature, (*entry)->signature) != 0) {
307 static int warned = 0;
308
309 /* Only print once, don't flood console. */
310 if (!warned) {
311 WARN("Tracepoint signature mismatch, not enabling one or more tracepoints. Ensure that the tracepoint probes prototypes match the application.");
312 WARN("Tracepoint \"%s\" signatures: call: \"%s\" vs probe: \"%s\".",
313 elem->name, elem->signature, (*entry)->signature);
314 warned = 1;
315 }
316 /* Don't accept connecting non-matching signatures. */
317 return;
318 }
f99be407
PMF
319
320 /*
0222e121 321 * rcu_assign_pointer has a cmm_smp_wmb() which makes sure that the new
f99be407
PMF
322 * probe callbacks array is consistent before setting a pointer to it.
323 * This array is referenced by __DO_TRACE from
0222e121 324 * include/linux/tracepoints.h. A matching cmm_smp_read_barrier_depends()
f99be407
PMF
325 * is used.
326 */
9dec086e 327 rcu_assign_pointer(elem->probes, (*entry)->probes);
f36c12ab 328 elem->state = active;
f99be407
PMF
329}
330
331/*
332 * Disable a tracepoint and its probe callback.
333 * Note: only waiting an RCU period after setting elem->call to the empty
334 * function insures that the original callback is not used anymore. This insured
335 * by preempt_disable around the call site.
336 */
337static void disable_tracepoint(struct tracepoint *elem)
338{
f36c12ab 339 elem->state = 0;
9dec086e 340 rcu_assign_pointer(elem->probes, NULL);
f99be407
PMF
341}
342
343/**
344 * tracepoint_update_probe_range - Update a probe range
345 * @begin: beginning of the range
346 * @end: end of the range
347 *
348 * Updates the probe callback corresponding to a range of tracepoints.
349 */
b27f8e75 350static
f218ff28
MD
351void tracepoint_update_probe_range(struct tracepoint * const *begin,
352 struct tracepoint * const *end)
f99be407 353{
f218ff28 354 struct tracepoint * const *iter;
f99be407
PMF
355 struct tracepoint_entry *mark_entry;
356
f99be407 357 for (iter = begin; iter < end; iter++) {
f08ebbe2
MD
358 if (!*iter)
359 continue; /* skip dummy */
f218ff28
MD
360 if (!(*iter)->name) {
361 disable_tracepoint(*iter);
9dec086e
NC
362 continue;
363 }
f218ff28 364 mark_entry = get_tracepoint((*iter)->name);
f99be407 365 if (mark_entry) {
f218ff28 366 set_tracepoint(&mark_entry, *iter,
f99be407
PMF
367 !!mark_entry->refcount);
368 } else {
f218ff28 369 disable_tracepoint(*iter);
f99be407
PMF
370 }
371 }
f99be407
PMF
372}
373
772030fe
PMF
374static void lib_update_tracepoints(void)
375{
376 struct tracepoint_lib *lib;
377
b27f8e75 378 cds_list_for_each_entry(lib, &libs, list) {
772030fe
PMF
379 tracepoint_update_probe_range(lib->tracepoints_start,
380 lib->tracepoints_start + lib->tracepoints_count);
b27f8e75 381 }
772030fe
PMF
382}
383
f99be407
PMF
384/*
385 * Update probes, removing the faulty probes.
386 */
387static void tracepoint_update_probes(void)
388{
b27f8e75 389 /* tracepoints registered from libraries and executable. */
474d745f 390 lib_update_tracepoints();
f99be407
PMF
391}
392
b979b346 393static struct tracepoint_probe *
67e5f391
MD
394tracepoint_add_probe(const char *name, void *probe, void *data,
395 const char *signature)
f99be407
PMF
396{
397 struct tracepoint_entry *entry;
b979b346 398 struct tracepoint_probe *old;
f99be407
PMF
399
400 entry = get_tracepoint(name);
401 if (!entry) {
67e5f391 402 entry = add_tracepoint(name, signature);
f99be407 403 if (IS_ERR(entry))
b979b346 404 return (struct tracepoint_probe *)entry;
f99be407 405 }
9dec086e 406 old = tracepoint_entry_add_probe(entry, probe, data);
f99be407
PMF
407 if (IS_ERR(old) && !entry->refcount)
408 remove_tracepoint(entry);
409 return old;
410}
411
412/**
81614639 413 * __tracepoint_probe_register - Connect a probe to a tracepoint
f99be407
PMF
414 * @name: tracepoint name
415 * @probe: probe handler
416 *
417 * Returns 0 if ok, error value on error.
418 * The probe address must at least be aligned on the architecture pointer size.
8792fbae 419 * Called with the tracepoint mutex held.
f99be407 420 */
67e5f391
MD
421int __tracepoint_probe_register(const char *name, void *probe, void *data,
422 const char *signature)
f99be407
PMF
423{
424 void *old;
8792fbae 425 int ret = 0;
f99be407 426
05780d81
MD
427 DBG("Registering probe to tracepoint %s", name);
428
8792fbae 429 pthread_mutex_lock(&tracepoint_mutex);
67e5f391 430 old = tracepoint_add_probe(name, probe, data, signature);
8792fbae
MD
431 if (IS_ERR(old)) {
432 ret = PTR_ERR(old);
433 goto end;
434 }
f99be407
PMF
435
436 tracepoint_update_probes(); /* may update entry */
437 release_probes(old);
8792fbae
MD
438end:
439 pthread_mutex_unlock(&tracepoint_mutex);
440 return ret;
f99be407 441}
f99be407 442
9dec086e 443static void *tracepoint_remove_probe(const char *name, void *probe, void *data)
f99be407
PMF
444{
445 struct tracepoint_entry *entry;
446 void *old;
447
448 entry = get_tracepoint(name);
449 if (!entry)
450 return ERR_PTR(-ENOENT);
9dec086e 451 old = tracepoint_entry_remove_probe(entry, probe, data);
f99be407
PMF
452 if (IS_ERR(old))
453 return old;
454 if (!entry->refcount)
455 remove_tracepoint(entry);
456 return old;
457}
458
459/**
460 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
461 * @name: tracepoint name
462 * @probe: probe function pointer
9dec086e 463 * @probe: probe data pointer
f99be407 464 */
81614639 465int __tracepoint_probe_unregister(const char *name, void *probe, void *data)
f99be407
PMF
466{
467 void *old;
8792fbae 468 int ret = 0;
f99be407 469
05780d81
MD
470 DBG("Un-registering probe from tracepoint %s", name);
471
8792fbae 472 pthread_mutex_lock(&tracepoint_mutex);
9dec086e 473 old = tracepoint_remove_probe(name, probe, data);
8792fbae
MD
474 if (IS_ERR(old)) {
475 ret = PTR_ERR(old);
476 goto end;
477 }
f99be407
PMF
478 tracepoint_update_probes(); /* may update entry */
479 release_probes(old);
8792fbae
MD
480end:
481 pthread_mutex_unlock(&tracepoint_mutex);
482 return ret;
f99be407 483}
f99be407 484
f99be407
PMF
485static void tracepoint_add_old_probes(void *old)
486{
487 need_update = 1;
488 if (old) {
b728d87e 489 struct tp_probes *tp_probes = caa_container_of(old,
f99be407 490 struct tp_probes, probes[0]);
0222e121 491 cds_list_add(&tp_probes->u.list, &old_probes);
f99be407
PMF
492 }
493}
494
495/**
496 * tracepoint_probe_register_noupdate - register a probe but not connect
497 * @name: tracepoint name
498 * @probe: probe handler
499 *
500 * caller must call tracepoint_probe_update_all()
501 */
9dec086e 502int tracepoint_probe_register_noupdate(const char *name, void *probe,
67e5f391 503 void *data, const char *signature)
f99be407
PMF
504{
505 void *old;
8792fbae 506 int ret = 0;
f99be407 507
8792fbae 508 pthread_mutex_lock(&tracepoint_mutex);
67e5f391 509 old = tracepoint_add_probe(name, probe, data, signature);
f99be407 510 if (IS_ERR(old)) {
8792fbae
MD
511 ret = PTR_ERR(old);
512 goto end;
f99be407
PMF
513 }
514 tracepoint_add_old_probes(old);
8792fbae
MD
515end:
516 pthread_mutex_unlock(&tracepoint_mutex);
517 return ret;
f99be407 518}
f99be407
PMF
519
520/**
521 * tracepoint_probe_unregister_noupdate - remove a probe but not disconnect
522 * @name: tracepoint name
523 * @probe: probe function pointer
524 *
525 * caller must call tracepoint_probe_update_all()
8792fbae 526 * Called with the tracepoint mutex held.
f99be407 527 */
9dec086e
NC
528int tracepoint_probe_unregister_noupdate(const char *name, void *probe,
529 void *data)
f99be407
PMF
530{
531 void *old;
8792fbae 532 int ret = 0;
f99be407 533
05780d81
MD
534 DBG("Un-registering probe from tracepoint %s", name);
535
8792fbae 536 pthread_mutex_lock(&tracepoint_mutex);
9dec086e 537 old = tracepoint_remove_probe(name, probe, data);
f99be407 538 if (IS_ERR(old)) {
8792fbae
MD
539 ret = PTR_ERR(old);
540 goto end;
f99be407
PMF
541 }
542 tracepoint_add_old_probes(old);
8792fbae
MD
543end:
544 pthread_mutex_unlock(&tracepoint_mutex);
545 return ret;
f99be407 546}
f99be407
PMF
547
548/**
549 * tracepoint_probe_update_all - update tracepoints
550 */
551void tracepoint_probe_update_all(void)
552{
0222e121 553 CDS_LIST_HEAD(release_probes);
f99be407
PMF
554 struct tp_probes *pos, *next;
555
8792fbae 556 pthread_mutex_lock(&tracepoint_mutex);
f99be407 557 if (!need_update) {
8792fbae 558 goto end;
f99be407 559 }
0222e121
MD
560 if (!cds_list_empty(&old_probes))
561 cds_list_replace_init(&old_probes, &release_probes);
f99be407 562 need_update = 0;
f99be407
PMF
563
564 tracepoint_update_probes();
0222e121
MD
565 cds_list_for_each_entry_safe(pos, next, &release_probes, u.list) {
566 cds_list_del(&pos->u.list);
474d745f 567 synchronize_rcu();
909bc43f 568 free(pos);
f99be407 569 }
8792fbae
MD
570end:
571 pthread_mutex_unlock(&tracepoint_mutex);
f99be407 572}
f99be407 573
474d745f
PMF
574void tracepoint_set_new_tracepoint_cb(void (*cb)(struct tracepoint *))
575{
576 new_tracepoint_cb = cb;
577}
f99be407 578
f218ff28 579static void new_tracepoints(struct tracepoint * const *start, struct tracepoint * const *end)
f99be407 580{
f218ff28
MD
581 if (new_tracepoint_cb) {
582 struct tracepoint * const *t;
f08ebbe2 583
b27f8e75 584 for (t = start; t < end; t++) {
f08ebbe2
MD
585 if (*t)
586 new_tracepoint_cb(*t);
474d745f
PMF
587 }
588 }
f99be407 589}
f99be407 590
1622ba22
MD
591static
592void lib_disable_tracepoints(struct tracepoint * const *begin,
593 struct tracepoint * const *end)
594{
595 struct tracepoint * const *iter;
596
597 for (iter = begin; iter < end; iter++) {
598 if (!*iter)
599 continue; /* skip dummy */
600 disable_tracepoint(*iter);
601 }
602
603}
604
b27f8e75
MD
605int tracepoint_register_lib(struct tracepoint * const *tracepoints_start,
606 int tracepoints_count)
474d745f 607{
b467f7a7 608 struct tracepoint_lib *pl, *iter;
474d745f 609
edaa1431
MD
610 init_tracepoint();
611
1dba3e6c 612 pl = (struct tracepoint_lib *) zmalloc(sizeof(struct tracepoint_lib));
474d745f
PMF
613
614 pl->tracepoints_start = tracepoints_start;
615 pl->tracepoints_count = tracepoints_count;
616
8792fbae 617 pthread_mutex_lock(&tracepoint_mutex);
b467f7a7
MD
618 /*
619 * We sort the libs by struct lib pointer address.
620 */
621 cds_list_for_each_entry_reverse(iter, &libs, list) {
622 BUG_ON(iter == pl); /* Should never be in the list twice */
623 if (iter < pl) {
624 /* We belong to the location right after iter. */
625 cds_list_add(&pl->list, &iter->list);
626 goto lib_added;
627 }
628 }
629 /* We should be added at the head of the list */
0222e121 630 cds_list_add(&pl->list, &libs);
b467f7a7 631lib_added:
474d745f
PMF
632 new_tracepoints(tracepoints_start, tracepoints_start + tracepoints_count);
633
b27f8e75 634 /* TODO: update just the loaded lib */
474d745f 635 lib_update_tracepoints();
8792fbae 636 pthread_mutex_unlock(&tracepoint_mutex);
474d745f 637
1fcf7ad7
MD
638 DBG("just registered a tracepoints section from %p and having %d tracepoints",
639 tracepoints_start, tracepoints_count);
05780d81
MD
640 if (ust_debug()) {
641 int i;
642
643 for (i = 0; i < tracepoints_count; i++) {
644 DBG("registered tracepoint: %s", tracepoints_start[i]->name);
645 }
646 }
9dec086e 647
474d745f
PMF
648 return 0;
649}
650
f218ff28 651int tracepoint_unregister_lib(struct tracepoint * const *tracepoints_start)
474d745f 652{
24b6668c 653 struct tracepoint_lib *lib;
1622ba22 654 int tracepoints_count;
24b6668c 655
8792fbae 656 pthread_mutex_lock(&tracepoint_mutex);
0222e121 657 cds_list_for_each_entry(lib, &libs, list) {
f218ff28 658 if (lib->tracepoints_start == tracepoints_start) {
24b6668c 659 struct tracepoint_lib *lib2free = lib;
1622ba22 660
0222e121 661 cds_list_del(&lib->list);
1622ba22 662 tracepoints_count = lib->tracepoints_count;
24b6668c 663 free(lib2free);
1622ba22 664 goto found;
24b6668c
PMF
665 }
666 }
1622ba22
MD
667 goto end;
668found:
669 /*
670 * Force tracepoint disarm for all tracepoints of this lib.
671 * This takes care of destructor of library that would leave a
672 * LD_PRELOAD wrapper override function enabled for tracing, but
673 * the session teardown would not be able to reach the
674 * tracepoint anymore to disable it.
675 */
676 lib_disable_tracepoints(tracepoints_start,
677 tracepoints_start + tracepoints_count);
678 DBG("just unregistered a tracepoints section from %p",
679 tracepoints_start);
680end:
8792fbae 681 pthread_mutex_unlock(&tracepoint_mutex);
474d745f
PMF
682 return 0;
683}
b27f8e75 684
edaa1431 685void init_tracepoint(void)
b27f8e75 686{
edaa1431
MD
687 if (uatomic_xchg(&initialized, 1) == 1)
688 return;
5e96a467 689 init_usterr();
b27f8e75
MD
690}
691
edaa1431 692void exit_tracepoint(void)
b27f8e75 693{
17dfb34b 694 initialized = 0;
b27f8e75 695}
40b2b5a4
MD
696
697/*
698 * Create the wrapper symbols.
699 */
700#undef tp_rcu_read_lock_bp
701#undef tp_rcu_read_unlock_bp
702#undef tp_rcu_dereference_bp
703
704void tp_rcu_read_lock_bp(void)
705{
706 rcu_read_lock_bp();
707}
708
709void tp_rcu_read_unlock_bp(void)
710{
711 rcu_read_unlock_bp();
712}
713
714void *tp_rcu_dereference_sym_bp(void *p)
715{
716 return rcu_dereference_bp(p);
717}
This page took 0.064626 seconds and 4 git commands to generate.