2 * lttng-context-perf-counters.c
4 * LTTng UST performance monitoring counters (perf-counters) integration.
6 * Copyright (C) 2009-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <sys/types.h>
30 #include <sys/syscall.h>
31 #include <linux/perf_event.h>
32 #include <lttng/ust-events.h>
33 #include <lttng/ust-tracer.h>
34 #include <lttng/ringbuffer-config.h>
35 #include <urcu/system.h>
36 #include <urcu/arch.h>
37 #include <urcu/rculist.h>
40 #include <usterr-signal-safe.h>
42 #include "lttng-tracer-core.h"
45 * We use a global perf counter key and iterate on per-thread RCU lists
46 * of fields in the fast path, even though this is not strictly speaking
47 * what would provide the best fast-path complexity, to ensure teardown
48 * of sessions vs thread exit is handled racelessly.
50 * Updates and traversals of thread_list are protected by UST lock.
51 * Updates to rcu_field_list are protected by UST lock.
54 struct lttng_perf_counter_thread_field
{
55 struct lttng_perf_counter_field
*field
; /* Back reference */
56 struct perf_event_mmap_page
*pc
;
57 struct cds_list_head thread_field_node
; /* Per-field list of thread fields (node) */
58 struct cds_list_head rcu_field_node
; /* RCU per-thread list of fields (node) */
62 struct lttng_perf_counter_thread
{
63 struct cds_list_head rcu_field_list
; /* RCU per-thread list of fields */
66 struct lttng_perf_counter_field
{
67 struct perf_event_attr attr
;
68 struct cds_list_head thread_field_list
; /* Per-field list of thread fields */
71 static pthread_key_t perf_counter_key
;
74 size_t perf_counter_get_size(struct lttng_ctx_field
*field
, size_t offset
)
78 size
+= lib_ring_buffer_align(offset
, lttng_alignof(uint64_t));
79 size
+= sizeof(uint64_t);
83 #if defined(__x86_64__) || defined(__i386__)
86 uint64_t rdpmc(unsigned int counter
)
88 unsigned int low
, high
;
90 asm volatile("rdpmc" : "=a" (low
), "=d" (high
) : "c" (counter
));
92 return low
| ((uint64_t) high
) << 32;
95 static bool arch_perf_use_read(void)
101 uint64_t read_perf_counter(
102 struct lttng_perf_counter_thread_field
*thread_field
)
106 struct perf_event_mmap_page
*pc
= thread_field
->pc
;
108 if (caa_unlikely(!pc
))
112 seq
= CMM_LOAD_SHARED(pc
->lock
);
117 count
= pc
->offset
+ rdpmc(idx
- 1);
122 } while (CMM_LOAD_SHARED(pc
->lock
) != seq
);
127 #elif defined (__ARM_ARCH_7A__)
129 static bool arch_perf_use_read(void)
135 uint64_t read_perf_counter(
136 struct lttng_perf_counter_thread_field
*thread_field
)
140 if (caa_unlikely(thread_field
->fd
< 0))
143 if (caa_unlikely(read(thread_field
->fd
, &count
, sizeof(count
))
150 #else /* defined(__x86_64__) || defined(__i386__) || defined(__ARM_ARCH_7A__) */
152 #error "Perf event counters are only supported on x86 and ARMv7 so far."
154 #endif /* #else defined(__x86_64__) || defined(__i386__) || defined(__ARM_ARCH_7A__) */
157 int sys_perf_event_open(struct perf_event_attr
*attr
,
158 pid_t pid
, int cpu
, int group_fd
,
161 return syscall(SYS_perf_event_open
, attr
, pid
, cpu
,
166 int open_perf_fd(struct perf_event_attr
*attr
)
170 fd
= sys_perf_event_open(attr
, 0, -1, -1, 0);
178 void close_perf_fd(int fd
)
187 perror("Error closing LTTng-UST perf memory mapping FD");
192 struct perf_event_mmap_page
*setup_perf(
193 struct lttng_perf_counter_thread_field
*thread_field
)
197 perf_addr
= mmap(NULL
, sizeof(struct perf_event_mmap_page
),
198 PROT_READ
, MAP_SHARED
, thread_field
->fd
, 0);
199 if (perf_addr
== MAP_FAILED
)
202 if (!arch_perf_use_read()) {
203 close_perf_fd(thread_field
->fd
);
204 thread_field
->fd
= -1;
211 void unmap_perf_page(struct perf_event_mmap_page
*pc
)
217 ret
= munmap(pc
, sizeof(struct perf_event_mmap_page
));
219 PERROR("Error in munmap");
225 struct lttng_perf_counter_thread
*alloc_perf_counter_thread(void)
227 struct lttng_perf_counter_thread
*perf_thread
;
228 sigset_t newmask
, oldmask
;
231 ret
= sigfillset(&newmask
);
234 ret
= pthread_sigmask(SIG_BLOCK
, &newmask
, &oldmask
);
237 /* Check again with signals disabled */
238 perf_thread
= pthread_getspecific(perf_counter_key
);
241 perf_thread
= zmalloc(sizeof(*perf_thread
));
244 CDS_INIT_LIST_HEAD(&perf_thread
->rcu_field_list
);
245 ret
= pthread_setspecific(perf_counter_key
, perf_thread
);
249 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
256 struct lttng_perf_counter_thread_field
*
257 add_thread_field(struct lttng_perf_counter_field
*perf_field
,
258 struct lttng_perf_counter_thread
*perf_thread
)
260 struct lttng_perf_counter_thread_field
*thread_field
;
261 sigset_t newmask
, oldmask
;
264 ret
= sigfillset(&newmask
);
267 ret
= pthread_sigmask(SIG_BLOCK
, &newmask
, &oldmask
);
270 /* Check again with signals disabled */
271 cds_list_for_each_entry_rcu(thread_field
, &perf_thread
->rcu_field_list
,
273 if (thread_field
->field
== perf_field
)
276 thread_field
= zmalloc(sizeof(*thread_field
));
279 thread_field
->field
= perf_field
;
280 thread_field
->fd
= open_perf_fd(&perf_field
->attr
);
281 if (thread_field
->fd
>= 0)
282 thread_field
->pc
= setup_perf(thread_field
);
284 * Note: thread_field->pc can be NULL if setup_perf() fails.
285 * Also, thread_field->fd can be -1 if open_perf_fd() fails.
288 cds_list_add_rcu(&thread_field
->rcu_field_node
,
289 &perf_thread
->rcu_field_list
);
290 cds_list_add(&thread_field
->thread_field_node
,
291 &perf_field
->thread_field_list
);
294 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
301 struct lttng_perf_counter_thread_field
*
302 get_thread_field(struct lttng_perf_counter_field
*field
)
304 struct lttng_perf_counter_thread
*perf_thread
;
305 struct lttng_perf_counter_thread_field
*thread_field
;
307 perf_thread
= pthread_getspecific(perf_counter_key
);
309 perf_thread
= alloc_perf_counter_thread();
310 cds_list_for_each_entry_rcu(thread_field
, &perf_thread
->rcu_field_list
,
312 if (thread_field
->field
== field
)
315 /* perf_counter_thread_field not found, need to add one */
316 return add_thread_field(field
, perf_thread
);
320 uint64_t wrapper_perf_counter_read(struct lttng_ctx_field
*field
)
322 struct lttng_perf_counter_field
*perf_field
;
323 struct lttng_perf_counter_thread_field
*perf_thread_field
;
325 perf_field
= field
->u
.perf_counter
;
326 perf_thread_field
= get_thread_field(perf_field
);
327 return read_perf_counter(perf_thread_field
);
331 void perf_counter_record(struct lttng_ctx_field
*field
,
332 struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
333 struct lttng_channel
*chan
)
337 value
= wrapper_perf_counter_read(field
);
338 lib_ring_buffer_align_ctx(ctx
, lttng_alignof(value
));
339 chan
->ops
->event_write(ctx
, &value
, sizeof(value
));
343 void perf_counter_get_value(struct lttng_ctx_field
*field
,
344 struct lttng_ctx_value
*value
)
348 v
= wrapper_perf_counter_read(field
);
352 /* Called with UST lock held */
354 void lttng_destroy_perf_thread_field(
355 struct lttng_perf_counter_thread_field
*thread_field
)
357 close_perf_fd(thread_field
->fd
);
358 unmap_perf_page(thread_field
->pc
);
359 cds_list_del_rcu(&thread_field
->rcu_field_node
);
360 cds_list_del(&thread_field
->thread_field_node
);
365 void lttng_destroy_perf_thread_key(void *_key
)
367 struct lttng_perf_counter_thread
*perf_thread
= _key
;
368 struct lttng_perf_counter_thread_field
*pos
, *p
;
371 cds_list_for_each_entry_safe(pos
, p
, &perf_thread
->rcu_field_list
,
373 lttng_destroy_perf_thread_field(pos
);
378 /* Called with UST lock held */
380 void lttng_destroy_perf_counter_field(struct lttng_ctx_field
*field
)
382 struct lttng_perf_counter_field
*perf_field
;
383 struct lttng_perf_counter_thread_field
*pos
, *p
;
385 free((char *) field
->event_field
.name
);
386 perf_field
= field
->u
.perf_counter
;
388 * This put is performed when no threads can concurrently
389 * perform a "get" concurrently, thanks to urcu-bp grace
392 cds_list_for_each_entry_safe(pos
, p
, &perf_field
->thread_field_list
,
394 lttng_destroy_perf_thread_field(pos
);
398 #ifdef __ARM_ARCH_7A__
401 int perf_get_exclude_kernel(void)
406 #else /* __ARM_ARCH_7A__ */
409 int perf_get_exclude_kernel(void)
414 #endif /* __ARM_ARCH_7A__ */
416 /* Called with UST lock held */
417 int lttng_add_perf_counter_to_ctx(uint32_t type
,
420 struct lttng_ctx
**ctx
)
422 struct lttng_ctx_field
*field
;
423 struct lttng_perf_counter_field
*perf_field
;
427 name_alloc
= strdup(name
);
430 goto name_alloc_error
;
432 perf_field
= zmalloc(sizeof(*perf_field
));
435 goto perf_field_alloc_error
;
437 field
= lttng_append_context(ctx
);
440 goto append_context_error
;
442 if (lttng_find_context(*ctx
, name_alloc
)) {
447 field
->destroy
= lttng_destroy_perf_counter_field
;
449 field
->event_field
.name
= name_alloc
;
450 field
->event_field
.type
.atype
= atype_integer
;
451 field
->event_field
.type
.u
.basic
.integer
.size
=
452 sizeof(uint64_t) * CHAR_BIT
;
453 field
->event_field
.type
.u
.basic
.integer
.alignment
=
454 lttng_alignof(uint64_t) * CHAR_BIT
;
455 field
->event_field
.type
.u
.basic
.integer
.signedness
=
456 lttng_is_signed_type(uint64_t);
457 field
->event_field
.type
.u
.basic
.integer
.reverse_byte_order
= 0;
458 field
->event_field
.type
.u
.basic
.integer
.base
= 10;
459 field
->event_field
.type
.u
.basic
.integer
.encoding
= lttng_encode_none
;
460 field
->get_size
= perf_counter_get_size
;
461 field
->record
= perf_counter_record
;
462 field
->get_value
= perf_counter_get_value
;
464 perf_field
->attr
.type
= type
;
465 perf_field
->attr
.config
= config
;
466 perf_field
->attr
.exclude_kernel
= perf_get_exclude_kernel();
467 CDS_INIT_LIST_HEAD(&perf_field
->thread_field_list
);
468 field
->u
.perf_counter
= perf_field
;
470 /* Ensure that this perf counter can be used in this process. */
471 ret
= open_perf_fd(&perf_field
->attr
);
479 * Contexts can only be added before tracing is started, so we
480 * don't have to synchronize against concurrent threads using
484 lttng_context_update(*ctx
);
489 lttng_remove_context_field(ctx
, field
);
490 append_context_error
:
492 perf_field_alloc_error
:
498 int lttng_perf_counter_init(void)
502 ret
= pthread_key_create(&perf_counter_key
,
503 lttng_destroy_perf_thread_key
);
509 void lttng_perf_counter_exit(void)
513 ret
= pthread_key_delete(perf_counter_key
);
516 PERROR("Error in pthread_key_delete");