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