Fix: liblttng-ust-fork Makefile flags mismatch
[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>
33661f97 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"
7dd08bec 41#include "lttng-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 80 */
33de2634 81#define TRACEPOINT_HASH_BITS 12
f99be407 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 140tracepoint_entry_add_probe(struct tracepoint_entry *entry,
fbdeb5ec 141 void (*probe)(void), void *data)
f99be407
PMF
142{
143 int nr_probes = 0;
b979b346 144 struct tracepoint_probe *old, *new;
f99be407 145
a26745c5
MD
146 if (!probe) {
147 WARN_ON(1);
148 return ERR_PTR(-EINVAL);
149 }
f99be407 150 debug_print_probes(entry);
9dec086e 151 old = entry->probes;
f99be407
PMF
152 if (old) {
153 /* (N -> N+1), (N != 0, 1) probes */
9dec086e
NC
154 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
155 if (old[nr_probes].func == probe &&
156 old[nr_probes].data == data)
f99be407
PMF
157 return ERR_PTR(-EEXIST);
158 }
159 /* + 2 : one for new probe, one for NULL func */
160 new = allocate_probes(nr_probes + 2);
161 if (new == NULL)
162 return ERR_PTR(-ENOMEM);
163 if (old)
b979b346 164 memcpy(new, old, nr_probes * sizeof(struct tracepoint_probe));
9dec086e
NC
165 new[nr_probes].func = probe;
166 new[nr_probes].data = data;
167 new[nr_probes + 1].func = NULL;
f99be407 168 entry->refcount = nr_probes + 1;
9dec086e 169 entry->probes = new;
f99be407
PMF
170 debug_print_probes(entry);
171 return old;
172}
173
174static void *
fbdeb5ec
MD
175tracepoint_entry_remove_probe(struct tracepoint_entry *entry,
176 void (*probe)(void), void *data)
f99be407
PMF
177{
178 int nr_probes = 0, nr_del = 0, i;
b979b346 179 struct tracepoint_probe *old, *new;
f99be407 180
9dec086e 181 old = entry->probes;
f99be407
PMF
182
183 if (!old)
184 return ERR_PTR(-ENOENT);
185
186 debug_print_probes(entry);
187 /* (N -> M), (N > 1, M >= 0) probes */
9dec086e 188 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
c66428ac
DG
189 if (!probe ||
190 (old[nr_probes].func == probe &&
9dec086e 191 old[nr_probes].data == data))
f99be407
PMF
192 nr_del++;
193 }
194
195 if (nr_probes - nr_del == 0) {
196 /* N -> 0, (N > 1) */
9dec086e 197 entry->probes = NULL;
f99be407
PMF
198 entry->refcount = 0;
199 debug_print_probes(entry);
200 return old;
201 } else {
202 int j = 0;
203 /* N -> M, (N > 1, M > 0) */
204 /* + 1 for NULL */
205 new = allocate_probes(nr_probes - nr_del + 1);
206 if (new == NULL)
207 return ERR_PTR(-ENOMEM);
9dec086e
NC
208 for (i = 0; old[i].func; i++)
209 if (probe &&
210 (old[i].func != probe || old[i].data != data))
f99be407 211 new[j++] = old[i];
9dec086e 212 new[nr_probes - nr_del].func = NULL;
f99be407 213 entry->refcount = nr_probes - nr_del;
9dec086e 214 entry->probes = new;
f99be407
PMF
215 }
216 debug_print_probes(entry);
217 return old;
218}
219
220/*
221 * Get tracepoint if the tracepoint is present in the tracepoint hash table.
8792fbae 222 * Must be called with tracepoint mutex held.
f99be407
PMF
223 * Returns NULL if not present.
224 */
225static struct tracepoint_entry *get_tracepoint(const char *name)
226{
10c56168
DG
227 struct cds_hlist_head *head;
228 struct cds_hlist_node *node;
f99be407 229 struct tracepoint_entry *e;
ff412fb5
MD
230 size_t name_len = strlen(name);
231 uint32_t hash;
f99be407 232
ff412fb5
MD
233 if (name_len > LTTNG_UST_SYM_NAME_LEN - 1) {
234 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_SYM_NAME_LEN - 1);
235 name_len = LTTNG_UST_SYM_NAME_LEN - 1;
236 }
237 hash = jhash(name, name_len, 0);
f99be407 238 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
10c56168 239 cds_hlist_for_each_entry(e, node, head, hlist) {
ff412fb5 240 if (!strncmp(name, e->name, LTTNG_UST_SYM_NAME_LEN - 1))
f99be407
PMF
241 return e;
242 }
243 return NULL;
244}
245
246/*
247 * Add the tracepoint to the tracepoint hash table. Must be called with
8792fbae 248 * tracepoint mutex held.
f99be407 249 */
67e5f391
MD
250static struct tracepoint_entry *add_tracepoint(const char *name,
251 const char *signature)
f99be407 252{
10c56168
DG
253 struct cds_hlist_head *head;
254 struct cds_hlist_node *node;
f99be407 255 struct tracepoint_entry *e;
ff412fb5
MD
256 size_t name_len = strlen(name);
257 uint32_t hash;
f99be407 258
ff412fb5
MD
259 if (name_len > LTTNG_UST_SYM_NAME_LEN - 1) {
260 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_SYM_NAME_LEN - 1);
261 name_len = LTTNG_UST_SYM_NAME_LEN - 1;
262 }
263 hash = jhash(name, name_len, 0);
f99be407 264 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
10c56168 265 cds_hlist_for_each_entry(e, node, head, hlist) {
ff412fb5 266 if (!strncmp(name, e->name, LTTNG_UST_SYM_NAME_LEN - 1)) {
c1f20530 267 DBG("tracepoint %s busy", name);
f99be407
PMF
268 return ERR_PTR(-EEXIST); /* Already there */
269 }
270 }
271 /*
1dba3e6c 272 * Using zmalloc here to allocate a variable length element. Could
f99be407
PMF
273 * cause some memory fragmentation if overused.
274 */
ff412fb5 275 e = zmalloc(sizeof(struct tracepoint_entry) + name_len + 1);
f99be407
PMF
276 if (!e)
277 return ERR_PTR(-ENOMEM);
ff412fb5
MD
278 memcpy(&e->name[0], name, name_len + 1);
279 e->name[name_len] = '\0';
9dec086e 280 e->probes = NULL;
f99be407 281 e->refcount = 0;
67e5f391 282 e->signature = signature;
10c56168 283 cds_hlist_add_head(&e->hlist, head);
f99be407
PMF
284 return e;
285}
286
287/*
288 * Remove the tracepoint from the tracepoint hash table. Must be called with
8792fbae 289 * tracepoint mutex held.
f99be407 290 */
efa2c591 291static void remove_tracepoint(struct tracepoint_entry *e)
f99be407 292{
10c56168 293 cds_hlist_del(&e->hlist);
909bc43f 294 free(e);
f99be407
PMF
295}
296
297/*
298 * Sets the probe callback corresponding to one tracepoint.
299 */
300static void set_tracepoint(struct tracepoint_entry **entry,
301 struct tracepoint *elem, int active)
302{
ff412fb5 303 WARN_ON(strncmp((*entry)->name, elem->name, LTTNG_UST_SYM_NAME_LEN - 1) != 0);
67e5f391
MD
304 /*
305 * Check that signatures match before connecting a probe to a
306 * tracepoint. Warn the user if they don't.
307 */
308 if (strcmp(elem->signature, (*entry)->signature) != 0) {
309 static int warned = 0;
310
311 /* Only print once, don't flood console. */
312 if (!warned) {
313 WARN("Tracepoint signature mismatch, not enabling one or more tracepoints. Ensure that the tracepoint probes prototypes match the application.");
314 WARN("Tracepoint \"%s\" signatures: call: \"%s\" vs probe: \"%s\".",
315 elem->name, elem->signature, (*entry)->signature);
316 warned = 1;
317 }
318 /* Don't accept connecting non-matching signatures. */
319 return;
320 }
f99be407
PMF
321
322 /*
0222e121 323 * rcu_assign_pointer has a cmm_smp_wmb() which makes sure that the new
f99be407
PMF
324 * probe callbacks array is consistent before setting a pointer to it.
325 * This array is referenced by __DO_TRACE from
0222e121 326 * include/linux/tracepoints.h. A matching cmm_smp_read_barrier_depends()
f99be407
PMF
327 * is used.
328 */
9dec086e 329 rcu_assign_pointer(elem->probes, (*entry)->probes);
f36c12ab 330 elem->state = active;
f99be407
PMF
331}
332
333/*
334 * Disable a tracepoint and its probe callback.
335 * Note: only waiting an RCU period after setting elem->call to the empty
336 * function insures that the original callback is not used anymore. This insured
337 * by preempt_disable around the call site.
338 */
339static void disable_tracepoint(struct tracepoint *elem)
340{
f36c12ab 341 elem->state = 0;
9dec086e 342 rcu_assign_pointer(elem->probes, NULL);
f99be407
PMF
343}
344
345/**
346 * tracepoint_update_probe_range - Update a probe range
347 * @begin: beginning of the range
348 * @end: end of the range
349 *
350 * Updates the probe callback corresponding to a range of tracepoints.
351 */
b27f8e75 352static
f218ff28
MD
353void tracepoint_update_probe_range(struct tracepoint * const *begin,
354 struct tracepoint * const *end)
f99be407 355{
f218ff28 356 struct tracepoint * const *iter;
f99be407
PMF
357 struct tracepoint_entry *mark_entry;
358
f99be407 359 for (iter = begin; iter < end; iter++) {
f08ebbe2
MD
360 if (!*iter)
361 continue; /* skip dummy */
f218ff28
MD
362 if (!(*iter)->name) {
363 disable_tracepoint(*iter);
9dec086e
NC
364 continue;
365 }
f218ff28 366 mark_entry = get_tracepoint((*iter)->name);
f99be407 367 if (mark_entry) {
f218ff28 368 set_tracepoint(&mark_entry, *iter,
f99be407
PMF
369 !!mark_entry->refcount);
370 } else {
f218ff28 371 disable_tracepoint(*iter);
f99be407
PMF
372 }
373 }
f99be407
PMF
374}
375
772030fe
PMF
376static void lib_update_tracepoints(void)
377{
378 struct tracepoint_lib *lib;
379
b27f8e75 380 cds_list_for_each_entry(lib, &libs, list) {
772030fe
PMF
381 tracepoint_update_probe_range(lib->tracepoints_start,
382 lib->tracepoints_start + lib->tracepoints_count);
b27f8e75 383 }
772030fe
PMF
384}
385
f99be407
PMF
386/*
387 * Update probes, removing the faulty probes.
388 */
389static void tracepoint_update_probes(void)
390{
b27f8e75 391 /* tracepoints registered from libraries and executable. */
474d745f 392 lib_update_tracepoints();
f99be407
PMF
393}
394
b979b346 395static struct tracepoint_probe *
fbdeb5ec 396tracepoint_add_probe(const char *name, void (*probe)(void), void *data,
67e5f391 397 const char *signature)
f99be407
PMF
398{
399 struct tracepoint_entry *entry;
b979b346 400 struct tracepoint_probe *old;
f99be407
PMF
401
402 entry = get_tracepoint(name);
403 if (!entry) {
67e5f391 404 entry = add_tracepoint(name, signature);
f99be407 405 if (IS_ERR(entry))
b979b346 406 return (struct tracepoint_probe *)entry;
f99be407 407 }
9dec086e 408 old = tracepoint_entry_add_probe(entry, probe, data);
f99be407
PMF
409 if (IS_ERR(old) && !entry->refcount)
410 remove_tracepoint(entry);
411 return old;
412}
413
414/**
81614639 415 * __tracepoint_probe_register - Connect a probe to a tracepoint
f99be407
PMF
416 * @name: tracepoint name
417 * @probe: probe handler
418 *
419 * Returns 0 if ok, error value on error.
420 * The probe address must at least be aligned on the architecture pointer size.
8792fbae 421 * Called with the tracepoint mutex held.
f99be407 422 */
fbdeb5ec
MD
423int __tracepoint_probe_register(const char *name, void (*probe)(void),
424 void *data, const char *signature)
f99be407
PMF
425{
426 void *old;
8792fbae 427 int ret = 0;
f99be407 428
05780d81
MD
429 DBG("Registering probe to tracepoint %s", name);
430
8792fbae 431 pthread_mutex_lock(&tracepoint_mutex);
67e5f391 432 old = tracepoint_add_probe(name, probe, data, signature);
8792fbae
MD
433 if (IS_ERR(old)) {
434 ret = PTR_ERR(old);
435 goto end;
436 }
f99be407
PMF
437
438 tracepoint_update_probes(); /* may update entry */
439 release_probes(old);
8792fbae
MD
440end:
441 pthread_mutex_unlock(&tracepoint_mutex);
442 return ret;
f99be407 443}
f99be407 444
fbdeb5ec
MD
445static void *tracepoint_remove_probe(const char *name, void (*probe)(void),
446 void *data)
f99be407
PMF
447{
448 struct tracepoint_entry *entry;
449 void *old;
450
451 entry = get_tracepoint(name);
452 if (!entry)
453 return ERR_PTR(-ENOENT);
9dec086e 454 old = tracepoint_entry_remove_probe(entry, probe, data);
f99be407
PMF
455 if (IS_ERR(old))
456 return old;
457 if (!entry->refcount)
458 remove_tracepoint(entry);
459 return old;
460}
461
462/**
463 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
464 * @name: tracepoint name
465 * @probe: probe function pointer
9dec086e 466 * @probe: probe data pointer
f99be407 467 */
fbdeb5ec
MD
468int __tracepoint_probe_unregister(const char *name, void (*probe)(void),
469 void *data)
f99be407
PMF
470{
471 void *old;
8792fbae 472 int ret = 0;
f99be407 473
05780d81
MD
474 DBG("Un-registering probe from tracepoint %s", name);
475
8792fbae 476 pthread_mutex_lock(&tracepoint_mutex);
9dec086e 477 old = tracepoint_remove_probe(name, probe, data);
8792fbae
MD
478 if (IS_ERR(old)) {
479 ret = PTR_ERR(old);
480 goto end;
481 }
f99be407
PMF
482 tracepoint_update_probes(); /* may update entry */
483 release_probes(old);
8792fbae
MD
484end:
485 pthread_mutex_unlock(&tracepoint_mutex);
486 return ret;
f99be407 487}
f99be407 488
f99be407
PMF
489static void tracepoint_add_old_probes(void *old)
490{
491 need_update = 1;
492 if (old) {
b728d87e 493 struct tp_probes *tp_probes = caa_container_of(old,
f99be407 494 struct tp_probes, probes[0]);
0222e121 495 cds_list_add(&tp_probes->u.list, &old_probes);
f99be407
PMF
496 }
497}
498
499/**
500 * tracepoint_probe_register_noupdate - register a probe but not connect
501 * @name: tracepoint name
502 * @probe: probe handler
503 *
504 * caller must call tracepoint_probe_update_all()
505 */
fbdeb5ec 506int tracepoint_probe_register_noupdate(const char *name, void (*probe)(void),
67e5f391 507 void *data, const char *signature)
f99be407
PMF
508{
509 void *old;
8792fbae 510 int ret = 0;
f99be407 511
8792fbae 512 pthread_mutex_lock(&tracepoint_mutex);
67e5f391 513 old = tracepoint_add_probe(name, probe, data, signature);
f99be407 514 if (IS_ERR(old)) {
8792fbae
MD
515 ret = PTR_ERR(old);
516 goto end;
f99be407
PMF
517 }
518 tracepoint_add_old_probes(old);
8792fbae
MD
519end:
520 pthread_mutex_unlock(&tracepoint_mutex);
521 return ret;
f99be407 522}
f99be407
PMF
523
524/**
525 * tracepoint_probe_unregister_noupdate - remove a probe but not disconnect
526 * @name: tracepoint name
527 * @probe: probe function pointer
528 *
529 * caller must call tracepoint_probe_update_all()
8792fbae 530 * Called with the tracepoint mutex held.
f99be407 531 */
fbdeb5ec 532int tracepoint_probe_unregister_noupdate(const char *name, void (*probe)(void),
9dec086e 533 void *data)
f99be407
PMF
534{
535 void *old;
8792fbae 536 int ret = 0;
f99be407 537
05780d81
MD
538 DBG("Un-registering probe from tracepoint %s", name);
539
8792fbae 540 pthread_mutex_lock(&tracepoint_mutex);
9dec086e 541 old = tracepoint_remove_probe(name, probe, data);
f99be407 542 if (IS_ERR(old)) {
8792fbae
MD
543 ret = PTR_ERR(old);
544 goto end;
f99be407
PMF
545 }
546 tracepoint_add_old_probes(old);
8792fbae
MD
547end:
548 pthread_mutex_unlock(&tracepoint_mutex);
549 return ret;
f99be407 550}
f99be407
PMF
551
552/**
553 * tracepoint_probe_update_all - update tracepoints
554 */
555void tracepoint_probe_update_all(void)
556{
0222e121 557 CDS_LIST_HEAD(release_probes);
f99be407
PMF
558 struct tp_probes *pos, *next;
559
8792fbae 560 pthread_mutex_lock(&tracepoint_mutex);
f99be407 561 if (!need_update) {
8792fbae 562 goto end;
f99be407 563 }
0222e121
MD
564 if (!cds_list_empty(&old_probes))
565 cds_list_replace_init(&old_probes, &release_probes);
f99be407 566 need_update = 0;
f99be407
PMF
567
568 tracepoint_update_probes();
0222e121
MD
569 cds_list_for_each_entry_safe(pos, next, &release_probes, u.list) {
570 cds_list_del(&pos->u.list);
474d745f 571 synchronize_rcu();
909bc43f 572 free(pos);
f99be407 573 }
8792fbae
MD
574end:
575 pthread_mutex_unlock(&tracepoint_mutex);
f99be407 576}
f99be407 577
474d745f
PMF
578void tracepoint_set_new_tracepoint_cb(void (*cb)(struct tracepoint *))
579{
580 new_tracepoint_cb = cb;
581}
f99be407 582
f218ff28 583static void new_tracepoints(struct tracepoint * const *start, struct tracepoint * const *end)
f99be407 584{
f218ff28
MD
585 if (new_tracepoint_cb) {
586 struct tracepoint * const *t;
f08ebbe2 587
b27f8e75 588 for (t = start; t < end; t++) {
f08ebbe2
MD
589 if (*t)
590 new_tracepoint_cb(*t);
474d745f
PMF
591 }
592 }
f99be407 593}
f99be407 594
1622ba22
MD
595static
596void lib_disable_tracepoints(struct tracepoint * const *begin,
597 struct tracepoint * const *end)
598{
599 struct tracepoint * const *iter;
600
601 for (iter = begin; iter < end; iter++) {
602 if (!*iter)
603 continue; /* skip dummy */
604 disable_tracepoint(*iter);
605 }
606
607}
608
b27f8e75
MD
609int tracepoint_register_lib(struct tracepoint * const *tracepoints_start,
610 int tracepoints_count)
474d745f 611{
b467f7a7 612 struct tracepoint_lib *pl, *iter;
474d745f 613
edaa1431
MD
614 init_tracepoint();
615
1dba3e6c 616 pl = (struct tracepoint_lib *) zmalloc(sizeof(struct tracepoint_lib));
474d745f
PMF
617
618 pl->tracepoints_start = tracepoints_start;
619 pl->tracepoints_count = tracepoints_count;
620
8792fbae 621 pthread_mutex_lock(&tracepoint_mutex);
b467f7a7
MD
622 /*
623 * We sort the libs by struct lib pointer address.
624 */
625 cds_list_for_each_entry_reverse(iter, &libs, list) {
626 BUG_ON(iter == pl); /* Should never be in the list twice */
627 if (iter < pl) {
628 /* We belong to the location right after iter. */
629 cds_list_add(&pl->list, &iter->list);
630 goto lib_added;
631 }
632 }
633 /* We should be added at the head of the list */
0222e121 634 cds_list_add(&pl->list, &libs);
b467f7a7 635lib_added:
474d745f
PMF
636 new_tracepoints(tracepoints_start, tracepoints_start + tracepoints_count);
637
b27f8e75 638 /* TODO: update just the loaded lib */
474d745f 639 lib_update_tracepoints();
8792fbae 640 pthread_mutex_unlock(&tracepoint_mutex);
474d745f 641
1fcf7ad7
MD
642 DBG("just registered a tracepoints section from %p and having %d tracepoints",
643 tracepoints_start, tracepoints_count);
05780d81
MD
644 if (ust_debug()) {
645 int i;
646
647 for (i = 0; i < tracepoints_count; i++) {
648 DBG("registered tracepoint: %s", tracepoints_start[i]->name);
649 }
650 }
9dec086e 651
474d745f
PMF
652 return 0;
653}
654
f218ff28 655int tracepoint_unregister_lib(struct tracepoint * const *tracepoints_start)
474d745f 656{
24b6668c 657 struct tracepoint_lib *lib;
1622ba22 658 int tracepoints_count;
24b6668c 659
8792fbae 660 pthread_mutex_lock(&tracepoint_mutex);
0222e121 661 cds_list_for_each_entry(lib, &libs, list) {
f218ff28 662 if (lib->tracepoints_start == tracepoints_start) {
24b6668c 663 struct tracepoint_lib *lib2free = lib;
1622ba22 664
0222e121 665 cds_list_del(&lib->list);
1622ba22 666 tracepoints_count = lib->tracepoints_count;
24b6668c 667 free(lib2free);
1622ba22 668 goto found;
24b6668c
PMF
669 }
670 }
1622ba22
MD
671 goto end;
672found:
673 /*
674 * Force tracepoint disarm for all tracepoints of this lib.
675 * This takes care of destructor of library that would leave a
676 * LD_PRELOAD wrapper override function enabled for tracing, but
677 * the session teardown would not be able to reach the
678 * tracepoint anymore to disable it.
679 */
680 lib_disable_tracepoints(tracepoints_start,
681 tracepoints_start + tracepoints_count);
682 DBG("just unregistered a tracepoints section from %p",
683 tracepoints_start);
684end:
8792fbae 685 pthread_mutex_unlock(&tracepoint_mutex);
474d745f
PMF
686 return 0;
687}
b27f8e75 688
edaa1431 689void init_tracepoint(void)
b27f8e75 690{
edaa1431
MD
691 if (uatomic_xchg(&initialized, 1) == 1)
692 return;
5e96a467 693 init_usterr();
b27f8e75
MD
694}
695
edaa1431 696void exit_tracepoint(void)
b27f8e75 697{
17dfb34b 698 initialized = 0;
b27f8e75 699}
40b2b5a4
MD
700
701/*
702 * Create the wrapper symbols.
703 */
704#undef tp_rcu_read_lock_bp
705#undef tp_rcu_read_unlock_bp
706#undef tp_rcu_dereference_bp
707
708void tp_rcu_read_lock_bp(void)
709{
710 rcu_read_lock_bp();
711}
712
713void tp_rcu_read_unlock_bp(void)
714{
715 rcu_read_unlock_bp();
716}
717
718void *tp_rcu_dereference_sym_bp(void *p)
719{
720 return rcu_dereference_bp(p);
721}
This page took 0.065593 seconds and 4 git commands to generate.