Initialize liblttng-ust-common in dependent libraries
[lttng-ust.git] / src / lib / lttng-ust-tracepoint / tracepoint.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2008-2011 Mathieu Desnoyers
5 * Copyright (C) 2009 Pierre-Marc Fournier
6 *
7 * Ported to userspace by Pierre-Marc Fournier.
8 */
9
10 #define _LGPL_SOURCE
11 #include <errno.h>
12 #include <stdint.h>
13 #include <stddef.h>
14 #include <stdio.h>
15
16 #include <urcu/arch.h>
17 #include <lttng/urcu/urcu-ust.h>
18 #include <urcu/hlist.h>
19 #include <urcu/uatomic.h>
20 #include <urcu/compiler.h>
21 #include <urcu/system.h>
22
23 #include <lttng/tracepoint.h>
24 #include <lttng/ust-abi.h> /* for LTTNG_UST_ABI_SYM_NAME_LEN */
25 #include <lttng/ust-common.h>
26
27 #include "common/logging.h"
28 #include "common/macros.h"
29
30 #include "lib/lttng-ust-tracepoint/tracepoint.h"
31 #include "common/tracepoint.h"
32 #include "common/jhash.h"
33 #include "common/err-ptr.h"
34
35 /* Test compiler support for weak symbols with hidden visibility. */
36 int __tracepoint_test_symbol1 __attribute__((weak, visibility("hidden")));
37 void *__tracepoint_test_symbol2 __attribute__((weak, visibility("hidden")));
38 struct {
39 char a[24];
40 } __tracepoint_test_symbol3 __attribute__((weak, visibility("hidden")));
41
42 /* Set to 1 to enable tracepoint debug output */
43 static const int tracepoint_debug;
44 static int initialized;
45
46 /*
47 * If tracepoint_destructors_state = 1, tracepoint destructors are
48 * enabled. They are disabled otherwise.
49 */
50 static int tracepoint_destructors_state = 1;
51
52 static void (*new_tracepoint_cb)(struct lttng_ust_tracepoint *);
53
54 /*
55 * tracepoint_mutex nests inside UST mutex.
56 *
57 * Note about interaction with fork/clone: UST does not hold the
58 * tracepoint mutex across fork/clone because it is either:
59 * - nested within UST mutex, in which case holding the UST mutex across
60 * fork/clone suffice,
61 * - taken by a library constructor, which should never race with a
62 * fork/clone if the application is expected to continue running with
63 * the same memory layout (no following exec()).
64 */
65 static pthread_mutex_t tracepoint_mutex = PTHREAD_MUTEX_INITIALIZER;
66
67 /*
68 * libraries that contain tracepoints (struct tracepoint_lib).
69 * Protected by tracepoint mutex.
70 */
71 static CDS_LIST_HEAD(libs);
72
73 /*
74 * The tracepoint mutex protects the library tracepoints, the hash table, and
75 * the library list.
76 * All calls to the tracepoint API must be protected by the tracepoint mutex,
77 * excepts calls to tracepoint_register_lib and
78 * tracepoint_unregister_lib, which take the tracepoint mutex themselves.
79 */
80
81 /*
82 * Tracepoint hash table, containing the active tracepoints.
83 * Protected by tracepoint mutex.
84 */
85 #define TRACEPOINT_HASH_BITS 12
86 #define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
87 static struct cds_hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE];
88
89 static CDS_LIST_HEAD(old_probes);
90 static int need_update;
91
92 static CDS_LIST_HEAD(release_queue);
93 static int release_queue_need_update;
94
95 /*
96 * Note about RCU :
97 * It is used to to delay the free of multiple probes array until a quiescent
98 * state is reached.
99 * Tracepoint entries modifications are protected by the tracepoint mutex.
100 */
101 struct tracepoint_entry {
102 struct cds_hlist_node hlist;
103 struct lttng_ust_tracepoint_probe *probes;
104 int refcount; /* Number of times armed. 0 if disarmed. */
105 int callsite_refcount; /* how many libs use this tracepoint */
106 char *signature;
107 char *name;
108 };
109
110 struct tp_probes {
111 union {
112 struct cds_list_head list;
113 /* Field below only used for call_rcu scheme */
114 /* struct rcu_head head; */
115 } u;
116 struct lttng_ust_tracepoint_probe probes[0];
117 };
118
119 /*
120 * Callsite hash table, containing the tracepoint call sites.
121 * Protected by tracepoint mutex.
122 */
123 #define CALLSITE_HASH_BITS 12
124 #define CALLSITE_TABLE_SIZE (1 << CALLSITE_HASH_BITS)
125 static struct cds_hlist_head callsite_table[CALLSITE_TABLE_SIZE];
126
127 struct callsite_entry {
128 struct cds_hlist_node hlist; /* hash table node */
129 struct cds_list_head node; /* lib list of callsites node */
130 struct lttng_ust_tracepoint *tp;
131 bool tp_entry_callsite_ref; /* Has a tp_entry took a ref on this callsite */
132 };
133
134 lttng_ust_static_assert(LTTNG_UST_TRACEPOINT_NAME_LEN_MAX == LTTNG_UST_ABI_SYM_NAME_LEN,
135 "Tracepoint name max length mismatch between UST ABI and tracepoint API",
136 Tracepoint_name_max_length_mismatch);
137
138 /* coverity[+alloc] */
139 static void *allocate_probes(int count)
140 {
141 struct tp_probes *p =
142 zmalloc(count * sizeof(struct lttng_ust_tracepoint_probe)
143 + sizeof(struct tp_probes));
144 return p == NULL ? NULL : p->probes;
145 }
146
147 /* coverity[+free : arg-0] */
148 static void release_probes(void *old)
149 {
150 if (old) {
151 struct tp_probes *tp_probes = caa_container_of(old,
152 struct tp_probes, probes[0]);
153 lttng_ust_urcu_synchronize_rcu();
154 free(tp_probes);
155 }
156 }
157
158 static void debug_print_probes(struct tracepoint_entry *entry)
159 {
160 int i;
161
162 if (!tracepoint_debug || !entry->probes)
163 return;
164
165 for (i = 0; entry->probes[i].func; i++)
166 DBG("Probe %d : %p", i, entry->probes[i].func);
167 }
168
169 static void *
170 tracepoint_entry_add_probe(struct tracepoint_entry *entry,
171 void (*probe)(void), void *data)
172 {
173 int nr_probes = 0;
174 struct lttng_ust_tracepoint_probe *old, *new;
175
176 if (!probe) {
177 WARN_ON(1);
178 return ERR_PTR(-EINVAL);
179 }
180 debug_print_probes(entry);
181 old = entry->probes;
182 if (old) {
183 /* (N -> N+1), (N != 0, 1) probes */
184 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
185 if (old[nr_probes].func == probe &&
186 old[nr_probes].data == data)
187 return ERR_PTR(-EEXIST);
188 }
189 /* + 2 : one for new probe, one for NULL func */
190 new = allocate_probes(nr_probes + 2);
191 if (new == NULL)
192 return ERR_PTR(-ENOMEM);
193 if (old)
194 memcpy(new, old,
195 nr_probes * sizeof(struct lttng_ust_tracepoint_probe));
196 new[nr_probes].func = probe;
197 new[nr_probes].data = data;
198 new[nr_probes + 1].func = NULL;
199 entry->refcount = nr_probes + 1;
200 entry->probes = new;
201 debug_print_probes(entry);
202 return old;
203 }
204
205 static void *
206 tracepoint_entry_remove_probe(struct tracepoint_entry *entry,
207 void (*probe)(void), void *data)
208 {
209 int nr_probes = 0, nr_del = 0, i;
210 struct lttng_ust_tracepoint_probe *old, *new;
211
212 old = entry->probes;
213
214 if (!old)
215 return ERR_PTR(-ENOENT);
216
217 debug_print_probes(entry);
218 /* (N -> M), (N > 1, M >= 0) probes */
219 if (probe) {
220 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
221 if (old[nr_probes].func == probe &&
222 old[nr_probes].data == data)
223 nr_del++;
224 }
225 }
226
227 if (nr_probes - nr_del == 0) {
228 /* N -> 0, (N > 1) */
229 entry->probes = NULL;
230 entry->refcount = 0;
231 debug_print_probes(entry);
232 return old;
233 } else {
234 int j = 0;
235 /* N -> M, (N > 1, M > 0) */
236 /* + 1 for NULL */
237 new = allocate_probes(nr_probes - nr_del + 1);
238 if (new == NULL)
239 return ERR_PTR(-ENOMEM);
240 for (i = 0; old[i].func; i++)
241 if (old[i].func != probe || old[i].data != data)
242 new[j++] = old[i];
243 new[nr_probes - nr_del].func = NULL;
244 entry->refcount = nr_probes - nr_del;
245 entry->probes = new;
246 }
247 debug_print_probes(entry);
248 return old;
249 }
250
251 /*
252 * Get tracepoint if the tracepoint is present in the tracepoint hash table.
253 * Must be called with tracepoint mutex held.
254 * Returns NULL if not present.
255 */
256 static struct tracepoint_entry *get_tracepoint(const char *name)
257 {
258 struct cds_hlist_head *head;
259 struct cds_hlist_node *node;
260 struct tracepoint_entry *e;
261 size_t name_len = strlen(name);
262 uint32_t hash;
263
264 if (name_len > LTTNG_UST_ABI_SYM_NAME_LEN - 1) {
265 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_ABI_SYM_NAME_LEN - 1);
266 name_len = LTTNG_UST_ABI_SYM_NAME_LEN - 1;
267 }
268 hash = jhash(name, name_len, 0);
269 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
270 cds_hlist_for_each_entry(e, node, head, hlist) {
271 if (!strncmp(name, e->name, LTTNG_UST_ABI_SYM_NAME_LEN - 1))
272 return e;
273 }
274 return NULL;
275 }
276
277 /*
278 * Add the tracepoint to the tracepoint hash table. Must be called with
279 * tracepoint mutex held.
280 */
281 static struct tracepoint_entry *add_tracepoint(const char *name,
282 const char *signature)
283 {
284 struct cds_hlist_head *head;
285 struct cds_hlist_node *node;
286 struct tracepoint_entry *e;
287 size_t name_len = strlen(name);
288 size_t sig_len = strlen(signature);
289 size_t sig_off, name_off;
290 uint32_t hash;
291
292 if (name_len > LTTNG_UST_ABI_SYM_NAME_LEN - 1) {
293 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_ABI_SYM_NAME_LEN - 1);
294 name_len = LTTNG_UST_ABI_SYM_NAME_LEN - 1;
295 }
296 hash = jhash(name, name_len, 0);
297 head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
298 cds_hlist_for_each_entry(e, node, head, hlist) {
299 if (!strncmp(name, e->name, LTTNG_UST_ABI_SYM_NAME_LEN - 1)) {
300 DBG("tracepoint %s busy", name);
301 return ERR_PTR(-EEXIST); /* Already there */
302 }
303 }
304
305 /*
306 * Using zmalloc here to allocate a variable length elements: name and
307 * signature. Could cause some memory fragmentation if overused.
308 */
309 name_off = sizeof(struct tracepoint_entry);
310 sig_off = name_off + name_len + 1;
311
312 e = zmalloc(sizeof(struct tracepoint_entry) + name_len + 1 + sig_len + 1);
313 if (!e)
314 return ERR_PTR(-ENOMEM);
315 e->name = (char *) e + name_off;
316 memcpy(e->name, name, name_len + 1);
317 e->name[name_len] = '\0';
318
319 e->signature = (char *) e + sig_off;
320 memcpy(e->signature, signature, sig_len + 1);
321 e->signature[sig_len] = '\0';
322
323 e->probes = NULL;
324 e->refcount = 0;
325 e->callsite_refcount = 0;
326
327 cds_hlist_add_head(&e->hlist, head);
328 return e;
329 }
330
331 /*
332 * Remove the tracepoint from the tracepoint hash table. Must be called with
333 * tracepoint mutex held.
334 */
335 static void remove_tracepoint(struct tracepoint_entry *e)
336 {
337 cds_hlist_del(&e->hlist);
338 free(e);
339 }
340
341 /*
342 * Sets the probe callback corresponding to one tracepoint.
343 */
344 static void set_tracepoint(struct tracepoint_entry **entry,
345 struct lttng_ust_tracepoint *elem, int active)
346 {
347 WARN_ON(strncmp((*entry)->name, elem->name, LTTNG_UST_ABI_SYM_NAME_LEN - 1) != 0);
348 /*
349 * Check that signatures match before connecting a probe to a
350 * tracepoint. Warn the user if they don't.
351 */
352 if (strcmp(elem->signature, (*entry)->signature) != 0) {
353 static int warned = 0;
354
355 /* Only print once, don't flood console. */
356 if (!warned) {
357 WARN("Tracepoint signature mismatch, not enabling one or more tracepoints. Ensure that the tracepoint probes prototypes match the application.");
358 WARN("Tracepoint \"%s\" signatures: call: \"%s\" vs probe: \"%s\".",
359 elem->name, elem->signature, (*entry)->signature);
360 warned = 1;
361 }
362 /* Don't accept connecting non-matching signatures. */
363 return;
364 }
365
366 /*
367 * rcu_assign_pointer has a cmm_smp_wmb() which makes sure that the new
368 * probe callbacks array is consistent before setting a pointer to it.
369 * This array is referenced by __DO_TRACE from
370 * include/linux/tracepoints.h. A matching cmm_smp_read_barrier_depends()
371 * is used.
372 */
373 lttng_ust_rcu_assign_pointer(elem->probes, (*entry)->probes);
374 CMM_STORE_SHARED(elem->state, active);
375 }
376
377 /*
378 * Disable a tracepoint and its probe callback.
379 * Note: only waiting an RCU period after setting elem->call to the empty
380 * function insures that the original callback is not used anymore. This insured
381 * by preempt_disable around the call site.
382 */
383 static void disable_tracepoint(struct lttng_ust_tracepoint *elem)
384 {
385 CMM_STORE_SHARED(elem->state, 0);
386 lttng_ust_rcu_assign_pointer(elem->probes, NULL);
387 }
388
389 /*
390 * Add the callsite to the callsite hash table. Must be called with
391 * tracepoint mutex held.
392 */
393 static void add_callsite(struct tracepoint_lib * lib, struct lttng_ust_tracepoint *tp)
394 {
395 struct cds_hlist_head *head;
396 struct callsite_entry *e;
397 const char *name = tp->name;
398 size_t name_len = strlen(name);
399 uint32_t hash;
400 struct tracepoint_entry *tp_entry;
401
402 if (name_len > LTTNG_UST_ABI_SYM_NAME_LEN - 1) {
403 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_ABI_SYM_NAME_LEN - 1);
404 name_len = LTTNG_UST_ABI_SYM_NAME_LEN - 1;
405 }
406 hash = jhash(name, name_len, 0);
407 head = &callsite_table[hash & (CALLSITE_TABLE_SIZE - 1)];
408 e = zmalloc(sizeof(struct callsite_entry));
409 if (!e) {
410 PERROR("Unable to add callsite for tracepoint \"%s\"", name);
411 return;
412 }
413 cds_hlist_add_head(&e->hlist, head);
414 e->tp = tp;
415 cds_list_add(&e->node, &lib->callsites);
416
417 tp_entry = get_tracepoint(name);
418 if (!tp_entry)
419 return;
420 tp_entry->callsite_refcount++;
421 e->tp_entry_callsite_ref = true;
422 }
423
424 /*
425 * Remove the callsite from the callsite hash table and from lib
426 * callsite list. Must be called with tracepoint mutex held.
427 */
428 static void remove_callsite(struct callsite_entry *e)
429 {
430 struct tracepoint_entry *tp_entry;
431
432 tp_entry = get_tracepoint(e->tp->name);
433 if (tp_entry) {
434 if (e->tp_entry_callsite_ref)
435 tp_entry->callsite_refcount--;
436 if (tp_entry->callsite_refcount == 0)
437 disable_tracepoint(e->tp);
438 }
439 cds_hlist_del(&e->hlist);
440 cds_list_del(&e->node);
441 free(e);
442 }
443
444 /*
445 * Enable/disable all callsites based on the state of a specific
446 * tracepoint entry.
447 * Must be called with tracepoint mutex held.
448 */
449 static void tracepoint_sync_callsites(const char *name)
450 {
451 struct cds_hlist_head *head;
452 struct cds_hlist_node *node;
453 struct callsite_entry *e;
454 size_t name_len = strlen(name);
455 uint32_t hash;
456 struct tracepoint_entry *tp_entry;
457
458 tp_entry = get_tracepoint(name);
459 if (name_len > LTTNG_UST_ABI_SYM_NAME_LEN - 1) {
460 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name, LTTNG_UST_ABI_SYM_NAME_LEN - 1);
461 name_len = LTTNG_UST_ABI_SYM_NAME_LEN - 1;
462 }
463 hash = jhash(name, name_len, 0);
464 head = &callsite_table[hash & (CALLSITE_TABLE_SIZE - 1)];
465 cds_hlist_for_each_entry(e, node, head, hlist) {
466 struct lttng_ust_tracepoint *tp = e->tp;
467
468 if (strncmp(name, tp->name, LTTNG_UST_ABI_SYM_NAME_LEN - 1))
469 continue;
470 if (tp_entry) {
471 if (!e->tp_entry_callsite_ref) {
472 tp_entry->callsite_refcount++;
473 e->tp_entry_callsite_ref = true;
474 }
475 set_tracepoint(&tp_entry, tp,
476 !!tp_entry->refcount);
477 } else {
478 disable_tracepoint(tp);
479 e->tp_entry_callsite_ref = false;
480 }
481 }
482 }
483
484 /**
485 * tracepoint_update_probe_range - Update a probe range
486 * @begin: beginning of the range
487 * @end: end of the range
488 *
489 * Updates the probe callback corresponding to a range of tracepoints.
490 */
491 static
492 void tracepoint_update_probe_range(struct lttng_ust_tracepoint * const *begin,
493 struct lttng_ust_tracepoint * const *end)
494 {
495 struct lttng_ust_tracepoint * const *iter;
496 struct tracepoint_entry *mark_entry;
497
498 for (iter = begin; iter < end; iter++) {
499 if (!*iter)
500 continue; /* skip dummy */
501 if (!(*iter)->name) {
502 disable_tracepoint(*iter);
503 continue;
504 }
505 mark_entry = get_tracepoint((*iter)->name);
506 if (mark_entry) {
507 set_tracepoint(&mark_entry, *iter,
508 !!mark_entry->refcount);
509 } else {
510 disable_tracepoint(*iter);
511 }
512 }
513 }
514
515 static void lib_update_tracepoints(struct tracepoint_lib *lib)
516 {
517 tracepoint_update_probe_range(lib->tracepoints_start,
518 lib->tracepoints_start + lib->tracepoints_count);
519 }
520
521 static void lib_register_callsites(struct tracepoint_lib *lib)
522 {
523 struct lttng_ust_tracepoint * const *begin;
524 struct lttng_ust_tracepoint * const *end;
525 struct lttng_ust_tracepoint * const *iter;
526
527 begin = lib->tracepoints_start;
528 end = lib->tracepoints_start + lib->tracepoints_count;
529
530 for (iter = begin; iter < end; iter++) {
531 if (!*iter)
532 continue; /* skip dummy */
533 if (!(*iter)->name) {
534 continue;
535 }
536 add_callsite(lib, *iter);
537 }
538 }
539
540 static void lib_unregister_callsites(struct tracepoint_lib *lib)
541 {
542 struct callsite_entry *callsite, *tmp;
543
544 cds_list_for_each_entry_safe(callsite, tmp, &lib->callsites, node)
545 remove_callsite(callsite);
546 }
547
548 /*
549 * Update probes, removing the faulty probes.
550 */
551 static void tracepoint_update_probes(void)
552 {
553 struct tracepoint_lib *lib;
554
555 /* tracepoints registered from libraries and executable. */
556 cds_list_for_each_entry(lib, &libs, list)
557 lib_update_tracepoints(lib);
558 }
559
560 static struct lttng_ust_tracepoint_probe *
561 tracepoint_add_probe(const char *name, void (*probe)(void), void *data,
562 const char *signature)
563 {
564 struct tracepoint_entry *entry;
565 struct lttng_ust_tracepoint_probe *old;
566
567 entry = get_tracepoint(name);
568 if (entry) {
569 if (strcmp(entry->signature, signature) != 0) {
570 ERR("Tracepoint and probe signature do not match.");
571 return ERR_PTR(-EINVAL);
572 }
573 } else {
574 entry = add_tracepoint(name, signature);
575 if (IS_ERR(entry))
576 return (struct lttng_ust_tracepoint_probe *)entry;
577 }
578 old = tracepoint_entry_add_probe(entry, probe, data);
579 if (IS_ERR(old) && !entry->refcount)
580 remove_tracepoint(entry);
581 return old;
582 }
583
584 static void tracepoint_release_queue_add_old_probes(void *old)
585 {
586 release_queue_need_update = 1;
587 if (old) {
588 struct tp_probes *tp_probes = caa_container_of(old,
589 struct tp_probes, probes[0]);
590 cds_list_add(&tp_probes->u.list, &release_queue);
591 }
592 }
593
594 /**
595 * __tracepoint_probe_register - Connect a probe to a tracepoint
596 * @name: tracepoint name
597 * @probe: probe handler
598 *
599 * Returns 0 if ok, error value on error.
600 * The probe address must at least be aligned on the architecture pointer size.
601 * Called with the tracepoint mutex held.
602 */
603 int __tracepoint_probe_register(const char *name, void (*probe)(void),
604 void *data, const char *signature)
605 {
606 void *old;
607 int ret = 0;
608
609 DBG("Registering probe to tracepoint %s", name);
610
611 pthread_mutex_lock(&tracepoint_mutex);
612 old = tracepoint_add_probe(name, probe, data, signature);
613 if (IS_ERR(old)) {
614 ret = PTR_ERR(old);
615 goto end;
616 }
617
618 tracepoint_sync_callsites(name);
619 release_probes(old);
620 end:
621 pthread_mutex_unlock(&tracepoint_mutex);
622 return ret;
623 }
624
625 /*
626 * Caller needs to invoke __tracepoint_probe_release_queue() after
627 * calling lttng_ust_tp_probe_register_queue_release() one or multiple
628 * times to ensure it does not leak memory.
629 */
630 int lttng_ust_tp_probe_register_queue_release(const char *name,
631 void (*probe)(void), void *data, const char *signature)
632 {
633 void *old;
634 int ret = 0;
635
636 DBG("Registering probe to tracepoint %s. Queuing release.", name);
637
638 pthread_mutex_lock(&tracepoint_mutex);
639 old = tracepoint_add_probe(name, probe, data, signature);
640 if (IS_ERR(old)) {
641 ret = PTR_ERR(old);
642 goto end;
643 }
644
645 tracepoint_sync_callsites(name);
646 tracepoint_release_queue_add_old_probes(old);
647 end:
648 pthread_mutex_unlock(&tracepoint_mutex);
649 return ret;
650 }
651
652 static void *tracepoint_remove_probe(const char *name, void (*probe)(void),
653 void *data)
654 {
655 struct tracepoint_entry *entry;
656 void *old;
657
658 entry = get_tracepoint(name);
659 if (!entry)
660 return ERR_PTR(-ENOENT);
661 old = tracepoint_entry_remove_probe(entry, probe, data);
662 if (IS_ERR(old))
663 return old;
664 if (!entry->refcount)
665 remove_tracepoint(entry);
666 return old;
667 }
668
669 /**
670 * tracepoint_probe_unregister - Disconnect a probe from a tracepoint
671 * @name: tracepoint name
672 * @probe: probe function pointer
673 * @probe: probe data pointer
674 */
675 int __tracepoint_probe_unregister(const char *name, void (*probe)(void),
676 void *data)
677 {
678 void *old;
679 int ret = 0;
680
681 DBG("Un-registering probe from tracepoint %s", name);
682
683 pthread_mutex_lock(&tracepoint_mutex);
684 old = tracepoint_remove_probe(name, probe, data);
685 if (IS_ERR(old)) {
686 ret = PTR_ERR(old);
687 goto end;
688 }
689 tracepoint_sync_callsites(name);
690 release_probes(old);
691 end:
692 pthread_mutex_unlock(&tracepoint_mutex);
693 return ret;
694 }
695
696 /*
697 * Caller needs to invoke __tracepoint_probe_release_queue() after
698 * calling lttng_ust_tp_probe_unregister_queue_release() one or multiple
699 * times to ensure it does not leak memory.
700 */
701 int lttng_ust_tp_probe_unregister_queue_release(const char *name,
702 void (*probe)(void), void *data)
703 {
704 void *old;
705 int ret = 0;
706
707 DBG("Un-registering probe from tracepoint %s. Queuing release.", name);
708
709 pthread_mutex_lock(&tracepoint_mutex);
710 old = tracepoint_remove_probe(name, probe, data);
711 if (IS_ERR(old)) {
712 ret = PTR_ERR(old);
713 goto end;
714 }
715 tracepoint_sync_callsites(name);
716 tracepoint_release_queue_add_old_probes(old);
717 end:
718 pthread_mutex_unlock(&tracepoint_mutex);
719 return ret;
720 }
721
722 void lttng_ust_tp_probe_prune_release_queue(void)
723 {
724 CDS_LIST_HEAD(release_probes);
725 struct tp_probes *pos, *next;
726
727 DBG("Release queue of unregistered tracepoint probes.");
728
729 pthread_mutex_lock(&tracepoint_mutex);
730 if (!release_queue_need_update)
731 goto end;
732 if (!cds_list_empty(&release_queue))
733 cds_list_replace_init(&release_queue, &release_probes);
734 release_queue_need_update = 0;
735
736 /* Wait for grace period between all sync_callsites and free. */
737 lttng_ust_urcu_synchronize_rcu();
738
739 cds_list_for_each_entry_safe(pos, next, &release_probes, u.list) {
740 cds_list_del(&pos->u.list);
741 free(pos);
742 }
743 end:
744 pthread_mutex_unlock(&tracepoint_mutex);
745 }
746
747 static void tracepoint_add_old_probes(void *old)
748 {
749 need_update = 1;
750 if (old) {
751 struct tp_probes *tp_probes = caa_container_of(old,
752 struct tp_probes, probes[0]);
753 cds_list_add(&tp_probes->u.list, &old_probes);
754 }
755 }
756
757 /**
758 * tracepoint_probe_register_noupdate - register a probe but not connect
759 * @name: tracepoint name
760 * @probe: probe handler
761 *
762 * caller must call tracepoint_probe_update_all()
763 */
764 int tracepoint_probe_register_noupdate(const char *name, void (*probe)(void),
765 void *data, const char *signature)
766 {
767 void *old;
768 int ret = 0;
769
770 pthread_mutex_lock(&tracepoint_mutex);
771 old = tracepoint_add_probe(name, probe, data, signature);
772 if (IS_ERR(old)) {
773 ret = PTR_ERR(old);
774 goto end;
775 }
776 tracepoint_add_old_probes(old);
777 end:
778 pthread_mutex_unlock(&tracepoint_mutex);
779 return ret;
780 }
781
782 /**
783 * tracepoint_probe_unregister_noupdate - remove a probe but not disconnect
784 * @name: tracepoint name
785 * @probe: probe function pointer
786 *
787 * caller must call tracepoint_probe_update_all()
788 * Called with the tracepoint mutex held.
789 */
790 int tracepoint_probe_unregister_noupdate(const char *name, void (*probe)(void),
791 void *data)
792 {
793 void *old;
794 int ret = 0;
795
796 DBG("Un-registering probe from tracepoint %s", name);
797
798 pthread_mutex_lock(&tracepoint_mutex);
799 old = tracepoint_remove_probe(name, probe, data);
800 if (IS_ERR(old)) {
801 ret = PTR_ERR(old);
802 goto end;
803 }
804 tracepoint_add_old_probes(old);
805 end:
806 pthread_mutex_unlock(&tracepoint_mutex);
807 return ret;
808 }
809
810 /**
811 * tracepoint_probe_update_all - update tracepoints
812 */
813 void tracepoint_probe_update_all(void)
814 {
815 CDS_LIST_HEAD(release_probes);
816 struct tp_probes *pos, *next;
817
818 pthread_mutex_lock(&tracepoint_mutex);
819 if (!need_update) {
820 goto end;
821 }
822 if (!cds_list_empty(&old_probes))
823 cds_list_replace_init(&old_probes, &release_probes);
824 need_update = 0;
825
826 tracepoint_update_probes();
827 /* Wait for grace period between update_probes and free. */
828 lttng_ust_urcu_synchronize_rcu();
829 cds_list_for_each_entry_safe(pos, next, &release_probes, u.list) {
830 cds_list_del(&pos->u.list);
831 free(pos);
832 }
833 end:
834 pthread_mutex_unlock(&tracepoint_mutex);
835 }
836
837 static void new_tracepoints(struct lttng_ust_tracepoint * const *start,
838 struct lttng_ust_tracepoint * const *end)
839 {
840 if (new_tracepoint_cb) {
841 struct lttng_ust_tracepoint * const *t;
842
843 for (t = start; t < end; t++) {
844 if (*t)
845 new_tracepoint_cb(*t);
846 }
847 }
848 }
849
850 /*
851 * tracepoint_{un,}register_lib is meant to be looked up by instrumented
852 * applications through dlsym(). If found, those can register their
853 * tracepoints, else those tracepoints will not be available for
854 * tracing. The number at the end of those symbols acts as a major
855 * version for tracepoints.
856 *
857 * Older instrumented applications should still work with newer
858 * liblttng-ust, but it is fine that instrumented applications compiled
859 * against recent liblttng-ust headers require a recent liblttng-ust
860 * runtime for those tracepoints to be taken into account.
861 */
862 int tracepoint_register_lib(struct lttng_ust_tracepoint * const *tracepoints_start,
863 int tracepoints_count);
864 int tracepoint_register_lib(struct lttng_ust_tracepoint * const *tracepoints_start,
865 int tracepoints_count)
866 {
867 struct tracepoint_lib *pl, *iter;
868
869 lttng_ust_tp_init();
870
871 pl = (struct tracepoint_lib *) zmalloc(sizeof(struct tracepoint_lib));
872 if (!pl) {
873 PERROR("Unable to register tracepoint lib");
874 return -1;
875 }
876 pl->tracepoints_start = tracepoints_start;
877 pl->tracepoints_count = tracepoints_count;
878 CDS_INIT_LIST_HEAD(&pl->callsites);
879
880 pthread_mutex_lock(&tracepoint_mutex);
881 /*
882 * We sort the libs by struct lib pointer address.
883 */
884 cds_list_for_each_entry_reverse(iter, &libs, list) {
885 BUG_ON(iter == pl); /* Should never be in the list twice */
886 if (iter < pl) {
887 /* We belong to the location right after iter. */
888 cds_list_add(&pl->list, &iter->list);
889 goto lib_added;
890 }
891 }
892 /* We should be added at the head of the list */
893 cds_list_add(&pl->list, &libs);
894 lib_added:
895 new_tracepoints(tracepoints_start, tracepoints_start + tracepoints_count);
896 lib_register_callsites(pl);
897 lib_update_tracepoints(pl);
898 pthread_mutex_unlock(&tracepoint_mutex);
899
900 DBG("just registered a tracepoints section from %p and having %d tracepoints",
901 tracepoints_start, tracepoints_count);
902 if (lttng_ust_logging_debug_enabled()) {
903 int i;
904
905 for (i = 0; i < tracepoints_count; i++) {
906 DBG("registered tracepoint: %s", tracepoints_start[i]->name);
907 }
908 }
909
910 return 0;
911 }
912
913 int tracepoint_unregister_lib(struct lttng_ust_tracepoint * const *tracepoints_start);
914 int tracepoint_unregister_lib(struct lttng_ust_tracepoint * const *tracepoints_start)
915 {
916 struct tracepoint_lib *lib;
917
918 pthread_mutex_lock(&tracepoint_mutex);
919 cds_list_for_each_entry(lib, &libs, list) {
920 if (lib->tracepoints_start != tracepoints_start)
921 continue;
922
923 cds_list_del(&lib->list);
924 /*
925 * Unregistering a callsite also decreases the
926 * callsite reference count of the corresponding
927 * tracepoint, and disables the tracepoint if
928 * the reference count drops to zero.
929 */
930 lib_unregister_callsites(lib);
931 DBG("just unregistered a tracepoints section from %p",
932 lib->tracepoints_start);
933 free(lib);
934 break;
935 }
936 pthread_mutex_unlock(&tracepoint_mutex);
937 return 0;
938 }
939
940 /*
941 * Report in debug message whether the compiler correctly supports weak
942 * hidden symbols. This test checks that the address associated with two
943 * weak symbols with hidden visibility is the same when declared within
944 * two compile units part of the same module.
945 */
946 static void check_weak_hidden(void)
947 {
948 DBG("Your compiler treats weak symbols with hidden visibility for integer objects as %s between compile units part of the same module.",
949 &__tracepoint_test_symbol1 == lttng_ust_tp_check_weak_hidden1() ?
950 "SAME address" :
951 "DIFFERENT addresses");
952 DBG("Your compiler treats weak symbols with hidden visibility for pointer objects as %s between compile units part of the same module.",
953 &__tracepoint_test_symbol2 == lttng_ust_tp_check_weak_hidden2() ?
954 "SAME address" :
955 "DIFFERENT addresses");
956 DBG("Your compiler treats weak symbols with hidden visibility for 24-byte structure objects as %s between compile units part of the same module.",
957 &__tracepoint_test_symbol3 == lttng_ust_tp_check_weak_hidden3() ?
958 "SAME address" :
959 "DIFFERENT addresses");
960 }
961
962 void lttng_ust_tp_init(void)
963 {
964 if (uatomic_xchg(&initialized, 1) == 1)
965 return;
966 lttng_ust_logging_init();
967 lttng_ust_common_ctor();
968 check_weak_hidden();
969 }
970
971 void lttng_ust_tp_exit(void)
972 {
973 initialized = 0;
974 }
975
976 /*
977 * Create the wrapper symbols.
978 */
979 #undef tp_rcu_read_lock
980 #undef tp_rcu_read_unlock
981 #undef tp_rcu_dereference
982
983 void tp_rcu_read_lock(void);
984 void tp_rcu_read_lock(void)
985 {
986 lttng_ust_urcu_read_lock();
987 }
988
989 void tp_rcu_read_unlock(void);
990 void tp_rcu_read_unlock(void)
991 {
992 lttng_ust_urcu_read_unlock();
993 }
994
995 void *tp_rcu_dereference_sym(void *p);
996 void *tp_rcu_dereference_sym(void *p)
997 {
998 return lttng_ust_rcu_dereference(p);
999 }
1000
1001 /*
1002 * Programs that have threads that survive after they exit, and therefore call
1003 * library destructors, should disable the tracepoint destructors by calling
1004 * tp_disable_destructors(). This will leak the tracepoint
1005 * instrumentation library shared object, leaving its teardown to the operating
1006 * system process teardown.
1007 *
1008 * To access and/or modify this value, users need to use a combination of
1009 * dlopen(3) and dlsym(3) to get an handle on the
1010 * tp_disable_destructors and tp_get_destructors_state symbols below.
1011 */
1012 void tp_disable_destructors(void);
1013 void tp_disable_destructors(void)
1014 {
1015 uatomic_set(&tracepoint_destructors_state, 0);
1016 }
1017
1018 /*
1019 * Returns 1 if the destructors are enabled and should be executed.
1020 * Returns 0 if the destructors are disabled.
1021 */
1022 int tp_get_destructors_state(void);
1023 int tp_get_destructors_state(void)
1024 {
1025 return uatomic_read(&tracepoint_destructors_state);
1026 }
This page took 0.050559 seconds and 4 git commands to generate.