Tracepoint API namespacing ust-endian
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-perf-counters.c
CommitLineData
d58d1454 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
d58d1454
MD
3 *
4 * Copyright (C) 2009-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
c0c0989a 6 * LTTng UST performance monitoring counters (perf-counters) integration.
d58d1454
MD
7 */
8
3fbec7dc 9#define _LGPL_SOURCE
9af5d97a 10#include <limits.h>
d58d1454
MD
11#include <sys/types.h>
12#include <unistd.h>
13#include <string.h>
14#include <stdlib.h>
15#include <stdio.h>
649fb6b3 16#include <stdbool.h>
b4051ad8 17#include <stddef.h>
fb31eb73 18#include <stdint.h>
d58d1454
MD
19#include <sys/mman.h>
20#include <sys/syscall.h>
2eba8e39 21#include <lttng/ust-arch.h>
d58d1454
MD
22#include <lttng/ust-events.h>
23#include <lttng/ust-tracer.h>
0b4b8811 24#include <lttng/ust-ringbuffer-context.h>
d58d1454
MD
25#include <urcu/system.h>
26#include <urcu/arch.h>
27#include <urcu/rculist.h>
9d315d6d 28#include "common/macros.h"
d58d1454 29#include <urcu/ref.h>
9d315d6d 30#include "common/logging.h"
d58d1454 31#include <signal.h>
20142124 32#include <urcu/tls-compat.h>
77d7fa98 33#include "perf_event.h"
fc80554e
MJ
34
35#include "context-internal.h"
d58d1454 36#include "lttng-tracer-core.h"
36c52fff 37#include "lib/lttng-ust/events.h"
d58d1454
MD
38
39/*
40 * We use a global perf counter key and iterate on per-thread RCU lists
41 * of fields in the fast path, even though this is not strictly speaking
42 * what would provide the best fast-path complexity, to ensure teardown
43 * of sessions vs thread exit is handled racelessly.
44 *
45 * Updates and traversals of thread_list are protected by UST lock.
46 * Updates to rcu_field_list are protected by UST lock.
47 */
48
49struct lttng_perf_counter_thread_field {
50 struct lttng_perf_counter_field *field; /* Back reference */
51 struct perf_event_mmap_page *pc;
52 struct cds_list_head thread_field_node; /* Per-field list of thread fields (node) */
53 struct cds_list_head rcu_field_node; /* RCU per-thread list of fields (node) */
b9389e6e 54 int fd; /* Perf FD */
d58d1454
MD
55};
56
57struct lttng_perf_counter_thread {
58 struct cds_list_head rcu_field_list; /* RCU per-thread list of fields */
59};
60
61struct lttng_perf_counter_field {
62 struct perf_event_attr attr;
63 struct cds_list_head thread_field_list; /* Per-field list of thread fields */
4e48b5d2 64 char *name;
f72cd4d9 65 struct lttng_ust_event_field *event_field;
d58d1454
MD
66};
67
68static pthread_key_t perf_counter_key;
69
20142124
MD
70/*
71 * lttng_perf_lock - Protect lttng-ust perf counter data structures
72 *
73 * Nests within the ust_lock, and therefore within the libc dl lock.
74 * Therefore, we need to fixup the TLS before nesting into this lock.
75 * Nests inside RCU bp read-side lock. Protects against concurrent
76 * fork.
77 */
78static pthread_mutex_t ust_perf_mutex = PTHREAD_MUTEX_INITIALIZER;
79
80/*
81 * Cancel state when grabbing the ust_perf_mutex. Saved when locking,
82 * restored on unlock. Protected by ust_perf_mutex.
83 */
84static int ust_perf_saved_cancelstate;
85
86/*
87 * Track whether we are tracing from a signal handler nested on an
88 * application thread.
89 */
90static DEFINE_URCU_TLS(int, ust_perf_mutex_nest);
91
92/*
93 * Force a read (imply TLS fixup for dlopen) of TLS variables.
94 */
95void lttng_ust_fixup_perf_counter_tls(void)
96{
97 asm volatile ("" : : "m" (URCU_TLS(ust_perf_mutex_nest)));
98}
99
100void lttng_perf_lock(void)
101{
102 sigset_t sig_all_blocked, orig_mask;
103 int ret, oldstate;
104
105 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
106 if (ret) {
107 ERR("pthread_setcancelstate: %s", strerror(ret));
108 }
109 sigfillset(&sig_all_blocked);
110 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
111 if (ret) {
112 ERR("pthread_sigmask: %s", strerror(ret));
113 }
114 if (!URCU_TLS(ust_perf_mutex_nest)++) {
115 /*
116 * Ensure the compiler don't move the store after the close()
117 * call in case close() would be marked as leaf.
118 */
119 cmm_barrier();
120 pthread_mutex_lock(&ust_perf_mutex);
121 ust_perf_saved_cancelstate = oldstate;
122 }
123 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
124 if (ret) {
125 ERR("pthread_sigmask: %s", strerror(ret));
126 }
127}
128
129void lttng_perf_unlock(void)
130{
131 sigset_t sig_all_blocked, orig_mask;
132 int ret, newstate, oldstate;
133 bool restore_cancel = false;
134
135 sigfillset(&sig_all_blocked);
136 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
137 if (ret) {
138 ERR("pthread_sigmask: %s", strerror(ret));
139 }
140 /*
141 * Ensure the compiler don't move the store before the close()
142 * call, in case close() would be marked as leaf.
143 */
144 cmm_barrier();
145 if (!--URCU_TLS(ust_perf_mutex_nest)) {
146 newstate = ust_perf_saved_cancelstate;
147 restore_cancel = true;
148 pthread_mutex_unlock(&ust_perf_mutex);
149 }
150 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
151 if (ret) {
152 ERR("pthread_sigmask: %s", strerror(ret));
153 }
154 if (restore_cancel) {
155 ret = pthread_setcancelstate(newstate, &oldstate);
156 if (ret) {
157 ERR("pthread_setcancelstate: %s", strerror(ret));
158 }
159 }
160}
161
d58d1454 162static
4e48b5d2 163size_t perf_counter_get_size(void *priv __attribute__((unused)),
2208d8b5 164 size_t offset)
d58d1454
MD
165{
166 size_t size = 0;
167
b5457df5 168 size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(uint64_t));
d58d1454
MD
169 size += sizeof(uint64_t);
170 return size;
171}
172
a3a8d943
MD
173static
174uint64_t read_perf_counter_syscall(
175 struct lttng_perf_counter_thread_field *thread_field)
176{
177 uint64_t count;
178
179 if (caa_unlikely(thread_field->fd < 0))
180 return 0;
181
182 if (caa_unlikely(read(thread_field->fd, &count, sizeof(count))
183 < sizeof(count)))
184 return 0;
185
186 return count;
187}
188
2eba8e39 189#if defined(LTTNG_UST_ARCH_X86)
d58d1454
MD
190
191static
192uint64_t rdpmc(unsigned int counter)
193{
194 unsigned int low, high;
195
196 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
197
198 return low | ((uint64_t) high) << 32;
199}
200
77d7fa98
MD
201static
202bool has_rdpmc(struct perf_event_mmap_page *pc)
203{
204 if (caa_unlikely(!pc->cap_bit0_is_deprecated))
205 return false;
206 /* Since Linux kernel 3.12. */
207 return pc->cap_user_rdpmc;
208}
209
d58d1454 210static
a3a8d943 211uint64_t arch_read_perf_counter(
d286ad50 212 struct lttng_perf_counter_thread_field *thread_field)
d58d1454
MD
213{
214 uint32_t seq, idx;
215 uint64_t count;
d286ad50 216 struct perf_event_mmap_page *pc = thread_field->pc;
d58d1454
MD
217
218 if (caa_unlikely(!pc))
219 return 0;
220
221 do {
222 seq = CMM_LOAD_SHARED(pc->lock);
223 cmm_barrier();
224
225 idx = pc->index;
77d7fa98 226 if (caa_likely(has_rdpmc(pc) && idx)) {
4f58f54f
MD
227 int64_t pmcval;
228
229 pmcval = rdpmc(idx - 1);
230 /* Sign-extend the pmc register result. */
231 pmcval <<= 64 - pc->pmc_width;
232 pmcval >>= 64 - pc->pmc_width;
233 count = pc->offset + pmcval;
234 } else {
a3a8d943
MD
235 /* Fall-back on system call if rdpmc cannot be used. */
236 return read_perf_counter_syscall(thread_field);
4f58f54f 237 }
d58d1454
MD
238 cmm_barrier();
239 } while (CMM_LOAD_SHARED(pc->lock) != seq);
240
241 return count;
242}
243
d286ad50 244static
a3a8d943 245int arch_perf_keep_fd(struct lttng_perf_counter_thread_field *thread_field)
d286ad50 246{
a3a8d943 247 struct perf_event_mmap_page *pc = thread_field->pc;
d286ad50 248
a3a8d943 249 if (!pc)
d286ad50 250 return 0;
77d7fa98 251 return !has_rdpmc(pc);
a3a8d943 252}
d286ad50 253
a3a8d943 254#else
d286ad50 255
a3a8d943
MD
256/* Generic (slow) implementation using a read system call. */
257static
258uint64_t arch_read_perf_counter(
259 struct lttng_perf_counter_thread_field *thread_field)
260{
261 return read_perf_counter_syscall(thread_field);
d286ad50
JD
262}
263
a3a8d943 264static
c494c0f1 265int arch_perf_keep_fd(struct lttng_perf_counter_thread_field *thread_field __attribute__((unused)))
a3a8d943
MD
266{
267 return 1;
268}
d286ad50 269
a3a8d943 270#endif
d286ad50 271
d58d1454
MD
272static
273int sys_perf_event_open(struct perf_event_attr *attr,
274 pid_t pid, int cpu, int group_fd,
275 unsigned long flags)
276{
277 return syscall(SYS_perf_event_open, attr, pid, cpu,
278 group_fd, flags);
279}
280
281static
b9389e6e 282int open_perf_fd(struct perf_event_attr *attr)
d58d1454 283{
b9389e6e 284 int fd;
d58d1454
MD
285
286 fd = sys_perf_event_open(attr, 0, -1, -1, 0);
287 if (fd < 0)
b9389e6e
JD
288 return -1;
289
290 return fd;
291}
292
d286ad50
JD
293static
294void close_perf_fd(int fd)
295{
296 int ret;
297
298 if (fd < 0)
299 return;
300
301 ret = close(fd);
302 if (ret) {
303 perror("Error closing LTTng-UST perf memory mapping FD");
304 }
305}
306
77d7fa98 307static void setup_perf(struct lttng_perf_counter_thread_field *thread_field)
b9389e6e
JD
308{
309 void *perf_addr;
d58d1454
MD
310
311 perf_addr = mmap(NULL, sizeof(struct perf_event_mmap_page),
b9389e6e 312 PROT_READ, MAP_SHARED, thread_field->fd, 0);
d58d1454 313 if (perf_addr == MAP_FAILED)
b9389e6e 314 perf_addr = NULL;
77d7fa98 315 thread_field->pc = perf_addr;
b9389e6e 316
a3a8d943 317 if (!arch_perf_keep_fd(thread_field)) {
b9389e6e
JD
318 close_perf_fd(thread_field->fd);
319 thread_field->fd = -1;
6c2125af 320 }
d58d1454
MD
321}
322
323static
324void unmap_perf_page(struct perf_event_mmap_page *pc)
325{
326 int ret;
327
328 if (!pc)
329 return;
330 ret = munmap(pc, sizeof(struct perf_event_mmap_page));
331 if (ret < 0) {
332 PERROR("Error in munmap");
333 abort();
334 }
335}
336
337static
338struct lttng_perf_counter_thread *alloc_perf_counter_thread(void)
339{
340 struct lttng_perf_counter_thread *perf_thread;
341 sigset_t newmask, oldmask;
342 int ret;
343
344 ret = sigfillset(&newmask);
345 if (ret)
346 abort();
347 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
348 if (ret)
349 abort();
350 /* Check again with signals disabled */
351 perf_thread = pthread_getspecific(perf_counter_key);
352 if (perf_thread)
353 goto skip;
354 perf_thread = zmalloc(sizeof(*perf_thread));
355 if (!perf_thread)
356 abort();
357 CDS_INIT_LIST_HEAD(&perf_thread->rcu_field_list);
358 ret = pthread_setspecific(perf_counter_key, perf_thread);
359 if (ret)
360 abort();
361skip:
362 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
363 if (ret)
364 abort();
365 return perf_thread;
366}
367
368static
369struct lttng_perf_counter_thread_field *
370 add_thread_field(struct lttng_perf_counter_field *perf_field,
371 struct lttng_perf_counter_thread *perf_thread)
372{
373 struct lttng_perf_counter_thread_field *thread_field;
374 sigset_t newmask, oldmask;
375 int ret;
376
377 ret = sigfillset(&newmask);
378 if (ret)
379 abort();
380 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
381 if (ret)
382 abort();
383 /* Check again with signals disabled */
384 cds_list_for_each_entry_rcu(thread_field, &perf_thread->rcu_field_list,
385 rcu_field_node) {
386 if (thread_field->field == perf_field)
387 goto skip;
388 }
389 thread_field = zmalloc(sizeof(*thread_field));
390 if (!thread_field)
391 abort();
392 thread_field->field = perf_field;
b9389e6e
JD
393 thread_field->fd = open_perf_fd(&perf_field->attr);
394 if (thread_field->fd >= 0)
77d7fa98 395 setup_perf(thread_field);
b9389e6e
JD
396 /*
397 * Note: thread_field->pc can be NULL if setup_perf() fails.
398 * Also, thread_field->fd can be -1 if open_perf_fd() fails.
399 */
20142124 400 lttng_perf_lock();
d58d1454
MD
401 cds_list_add_rcu(&thread_field->rcu_field_node,
402 &perf_thread->rcu_field_list);
403 cds_list_add(&thread_field->thread_field_node,
404 &perf_field->thread_field_list);
20142124 405 lttng_perf_unlock();
d58d1454
MD
406skip:
407 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
408 if (ret)
409 abort();
410 return thread_field;
411}
412
413static
414struct lttng_perf_counter_thread_field *
415 get_thread_field(struct lttng_perf_counter_field *field)
416{
417 struct lttng_perf_counter_thread *perf_thread;
418 struct lttng_perf_counter_thread_field *thread_field;
419
420 perf_thread = pthread_getspecific(perf_counter_key);
421 if (!perf_thread)
422 perf_thread = alloc_perf_counter_thread();
423 cds_list_for_each_entry_rcu(thread_field, &perf_thread->rcu_field_list,
424 rcu_field_node) {
425 if (thread_field->field == field)
426 return thread_field;
427 }
428 /* perf_counter_thread_field not found, need to add one */
429 return add_thread_field(field, perf_thread);
430}
431
432static
4e48b5d2 433uint64_t wrapper_perf_counter_read(void *priv)
d58d1454
MD
434{
435 struct lttng_perf_counter_field *perf_field;
436 struct lttng_perf_counter_thread_field *perf_thread_field;
437
4e48b5d2 438 perf_field = (struct lttng_perf_counter_field *) priv;
d58d1454 439 perf_thread_field = get_thread_field(perf_field);
a3a8d943 440 return arch_read_perf_counter(perf_thread_field);
d58d1454
MD
441}
442
443static
4e48b5d2 444void perf_counter_record(void *priv,
b5457df5 445 struct lttng_ust_ring_buffer_ctx *ctx,
e7bc0ef6 446 struct lttng_ust_channel_buffer *chan)
d58d1454
MD
447{
448 uint64_t value;
449
4e48b5d2 450 value = wrapper_perf_counter_read(priv);
8936b6c0 451 chan->ops->event_write(ctx, &value, sizeof(value), lttng_ust_rb_alignof(value));
d58d1454
MD
452}
453
454static
4e48b5d2 455void perf_counter_get_value(void *priv,
daacdbfc 456 struct lttng_ust_ctx_value *value)
d58d1454 457{
4e48b5d2 458 value->u.s64 = wrapper_perf_counter_read(priv);
d58d1454
MD
459}
460
20142124 461/* Called with perf lock held */
d58d1454
MD
462static
463void lttng_destroy_perf_thread_field(
464 struct lttng_perf_counter_thread_field *thread_field)
465{
b9389e6e 466 close_perf_fd(thread_field->fd);
d58d1454
MD
467 unmap_perf_page(thread_field->pc);
468 cds_list_del_rcu(&thread_field->rcu_field_node);
469 cds_list_del(&thread_field->thread_field_node);
470 free(thread_field);
471}
472
473static
474void lttng_destroy_perf_thread_key(void *_key)
475{
476 struct lttng_perf_counter_thread *perf_thread = _key;
477 struct lttng_perf_counter_thread_field *pos, *p;
478
20142124 479 lttng_perf_lock();
d58d1454
MD
480 cds_list_for_each_entry_safe(pos, p, &perf_thread->rcu_field_list,
481 rcu_field_node)
482 lttng_destroy_perf_thread_field(pos);
20142124 483 lttng_perf_unlock();
d58d1454
MD
484 free(perf_thread);
485}
486
487/* Called with UST lock held */
488static
4e48b5d2 489void lttng_destroy_perf_counter_ctx_field(void *priv)
d58d1454
MD
490{
491 struct lttng_perf_counter_field *perf_field;
492 struct lttng_perf_counter_thread_field *pos, *p;
493
4e48b5d2
MD
494 perf_field = (struct lttng_perf_counter_field *) priv;
495 free(perf_field->name);
d58d1454
MD
496 /*
497 * This put is performed when no threads can concurrently
498 * perform a "get" concurrently, thanks to urcu-bp grace
20142124
MD
499 * period. Holding the lttng perf lock protects against
500 * concurrent modification of the per-thread thread field
501 * list.
d58d1454 502 */
20142124 503 lttng_perf_lock();
d58d1454
MD
504 cds_list_for_each_entry_safe(pos, p, &perf_field->thread_field_list,
505 thread_field_node)
506 lttng_destroy_perf_thread_field(pos);
20142124 507 lttng_perf_unlock();
f72cd4d9 508 free(perf_field->event_field);
d58d1454
MD
509 free(perf_field);
510}
511
2eba8e39 512#ifdef LTTNG_UST_ARCH_ARMV7
d286ad50
JD
513
514static
515int perf_get_exclude_kernel(void)
516{
517 return 0;
518}
519
2eba8e39 520#else /* LTTNG_UST_ARCH_ARMV7 */
d286ad50
JD
521
522static
523int perf_get_exclude_kernel(void)
524{
525 return 1;
526}
527
2eba8e39 528#endif /* LTTNG_UST_ARCH_ARMV7 */
d286ad50 529
4e48b5d2
MD
530static const struct lttng_ust_type_common *ust_type =
531 lttng_ust_static_type_integer(sizeof(uint64_t) * CHAR_BIT,
532 lttng_ust_rb_alignof(uint64_t) * CHAR_BIT,
533 lttng_ust_is_signed_type(uint64_t),
baa8acf3 534 LTTNG_UST_BYTE_ORDER, 10);
4e48b5d2 535
d58d1454
MD
536/* Called with UST lock held */
537int lttng_add_perf_counter_to_ctx(uint32_t type,
538 uint64_t config,
539 const char *name,
daacdbfc 540 struct lttng_ust_ctx **ctx)
d58d1454 541{
4e48b5d2
MD
542 struct lttng_ust_ctx_field ctx_field;
543 struct lttng_ust_event_field *event_field;
d58d1454 544 struct lttng_perf_counter_field *perf_field;
d58d1454
MD
545 char *name_alloc;
546 int ret;
547
4e48b5d2
MD
548 if (lttng_find_context(*ctx, name)) {
549 ret = -EEXIST;
550 goto find_error;
551 }
d58d1454
MD
552 name_alloc = strdup(name);
553 if (!name_alloc) {
554 ret = -ENOMEM;
555 goto name_alloc_error;
556 }
4e48b5d2
MD
557 event_field = zmalloc(sizeof(*event_field));
558 if (!event_field) {
559 ret = -ENOMEM;
560 goto event_field_alloc_error;
561 }
562 event_field->name = name_alloc;
563 event_field->type = ust_type;
564
d58d1454
MD
565 perf_field = zmalloc(sizeof(*perf_field));
566 if (!perf_field) {
567 ret = -ENOMEM;
568 goto perf_field_alloc_error;
569 }
d58d1454
MD
570 perf_field->attr.type = type;
571 perf_field->attr.config = config;
d286ad50 572 perf_field->attr.exclude_kernel = perf_get_exclude_kernel();
d58d1454 573 CDS_INIT_LIST_HEAD(&perf_field->thread_field_list);
4e48b5d2 574 perf_field->name = name_alloc;
f72cd4d9 575 perf_field->event_field = event_field;
d58d1454
MD
576
577 /* Ensure that this perf counter can be used in this process. */
b9389e6e
JD
578 ret = open_perf_fd(&perf_field->attr);
579 if (ret < 0) {
d58d1454
MD
580 ret = -ENODEV;
581 goto setup_error;
582 }
b9389e6e 583 close_perf_fd(ret);
d58d1454 584
4e48b5d2
MD
585 ctx_field.event_field = event_field;
586 ctx_field.get_size = perf_counter_get_size;
587 ctx_field.record = perf_counter_record;
588 ctx_field.get_value = perf_counter_get_value;
589 ctx_field.destroy = lttng_destroy_perf_counter_ctx_field;
590 ctx_field.priv = perf_field;
d58d1454 591
4e48b5d2
MD
592 ret = lttng_ust_context_append(ctx, &ctx_field);
593 if (ret) {
594 ret = -ENOMEM;
595 goto append_context_error;
596 }
d58d1454
MD
597 return 0;
598
d58d1454 599append_context_error:
4e48b5d2 600setup_error:
d58d1454
MD
601 free(perf_field);
602perf_field_alloc_error:
4e48b5d2
MD
603 free(event_field);
604event_field_alloc_error:
d58d1454
MD
605 free(name_alloc);
606name_alloc_error:
4e48b5d2 607find_error:
d58d1454
MD
608 return ret;
609}
610
611int lttng_perf_counter_init(void)
612{
613 int ret;
614
615 ret = pthread_key_create(&perf_counter_key,
616 lttng_destroy_perf_thread_key);
617 if (ret)
618 ret = -ret;
619 return ret;
620}
621
622void lttng_perf_counter_exit(void)
623{
624 int ret;
625
626 ret = pthread_key_delete(perf_counter_key);
627 if (ret) {
628 errno = ret;
629 PERROR("Error in pthread_key_delete");
630 }
631}
This page took 0.059452 seconds and 4 git commands to generate.