2009-03-20 03:26:15 +08:00
|
|
|
/*
|
2010-03-05 12:35:37 +08:00
|
|
|
* trace event based perf event profiling/tracing
|
2009-03-20 03:26:15 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc, Peter Zijlstra <pzijlstr@redhat.com>
|
2010-03-03 14:16:16 +08:00
|
|
|
* Copyright (C) 2009-2010 Frederic Weisbecker <fweisbec@gmail.com>
|
2009-03-20 03:26:15 +08:00
|
|
|
*/
|
|
|
|
|
2009-08-24 12:19:47 +08:00
|
|
|
#include <linux/module.h>
|
2010-01-28 09:32:29 +08:00
|
|
|
#include <linux/kprobes.h>
|
2009-03-20 03:26:15 +08:00
|
|
|
#include "trace.h"
|
|
|
|
|
2010-03-16 08:05:02 +08:00
|
|
|
EXPORT_SYMBOL_GPL(perf_arch_fetch_caller_regs);
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
static char *perf_trace_buf[4];
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-03-23 07:08:59 +08:00
|
|
|
/*
|
|
|
|
* Force it to be aligned to unsigned long to avoid misaligned accesses
|
|
|
|
* suprises
|
|
|
|
*/
|
|
|
|
typedef typeof(unsigned long [PERF_MAX_TRACE_SIZE / sizeof(unsigned long)])
|
|
|
|
perf_trace_t;
|
2009-11-22 12:26:55 +08:00
|
|
|
|
2009-09-18 12:10:28 +08:00
|
|
|
/* Count the events in use (per event id, not per instance) */
|
2010-03-05 12:35:37 +08:00
|
|
|
static int total_ref_count;
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 00:08:32 +08:00
|
|
|
static int perf_trace_event_enable(struct ftrace_event_call *event, void *data)
|
2009-09-18 06:54:43 +08:00
|
|
|
{
|
2009-09-18 12:10:28 +08:00
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
2010-05-19 00:08:32 +08:00
|
|
|
if (event->perf_refcount++ > 0) {
|
|
|
|
event->perf_data = NULL;
|
2009-09-18 06:54:43 +08:00
|
|
|
return 0;
|
2010-05-19 00:08:32 +08:00
|
|
|
}
|
2009-09-18 06:54:43 +08:00
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
if (!total_ref_count) {
|
2010-05-19 16:52:27 +08:00
|
|
|
char *buf;
|
|
|
|
int i;
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
buf = (char *)alloc_percpu(perf_trace_t);
|
|
|
|
if (!buf)
|
|
|
|
goto fail_buf;
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
rcu_assign_pointer(perf_trace_buf[i], buf);
|
|
|
|
}
|
2009-09-18 12:10:28 +08:00
|
|
|
}
|
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
ret = event->perf_event_enable(event);
|
2009-10-03 20:55:18 +08:00
|
|
|
if (!ret) {
|
2010-05-19 00:08:32 +08:00
|
|
|
event->perf_data = data;
|
2010-03-05 12:35:37 +08:00
|
|
|
total_ref_count++;
|
2009-09-18 12:10:28 +08:00
|
|
|
return 0;
|
2009-10-03 20:55:18 +08:00
|
|
|
}
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
fail_buf:
|
2010-03-05 12:35:37 +08:00
|
|
|
if (!total_ref_count) {
|
2010-05-19 16:52:27 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
free_percpu(perf_trace_buf[i]);
|
|
|
|
perf_trace_buf[i] = NULL;
|
|
|
|
}
|
2009-10-03 20:55:18 +08:00
|
|
|
}
|
2010-03-05 12:35:37 +08:00
|
|
|
event->perf_refcount--;
|
2009-09-18 12:10:28 +08:00
|
|
|
|
|
|
|
return ret;
|
2009-09-18 06:54:43 +08:00
|
|
|
}
|
|
|
|
|
2010-05-19 00:08:32 +08:00
|
|
|
int perf_trace_enable(int event_id, void *data)
|
2009-03-20 03:26:15 +08:00
|
|
|
{
|
|
|
|
struct ftrace_event_call *event;
|
2009-05-06 10:33:45 +08:00
|
|
|
int ret = -EINVAL;
|
2009-03-20 03:26:15 +08:00
|
|
|
|
2009-05-06 10:33:45 +08:00
|
|
|
mutex_lock(&event_mutex);
|
2009-04-11 01:52:20 +08:00
|
|
|
list_for_each_entry(event, &ftrace_events, list) {
|
2010-03-05 12:35:37 +08:00
|
|
|
if (event->id == event_id && event->perf_event_enable &&
|
2009-08-24 12:19:47 +08:00
|
|
|
try_module_get(event->mod)) {
|
2010-05-19 00:08:32 +08:00
|
|
|
ret = perf_trace_event_enable(event, data);
|
2009-05-06 10:33:45 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-03-20 03:26:15 +08:00
|
|
|
}
|
2009-05-06 10:33:45 +08:00
|
|
|
mutex_unlock(&event_mutex);
|
2009-03-20 03:26:15 +08:00
|
|
|
|
2009-05-06 10:33:45 +08:00
|
|
|
return ret;
|
2009-03-20 03:26:15 +08:00
|
|
|
}
|
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
static void perf_trace_event_disable(struct ftrace_event_call *event)
|
2009-09-18 06:54:43 +08:00
|
|
|
{
|
2010-03-05 12:35:37 +08:00
|
|
|
if (--event->perf_refcount > 0)
|
2009-09-18 06:54:43 +08:00
|
|
|
return;
|
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
event->perf_event_disable(event);
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
if (!--total_ref_count) {
|
2010-05-19 16:52:27 +08:00
|
|
|
char *buf[4];
|
|
|
|
int i;
|
2009-09-18 12:10:28 +08:00
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
buf[i] = perf_trace_buf[i];
|
|
|
|
rcu_assign_pointer(perf_trace_buf[i], NULL);
|
|
|
|
}
|
2009-09-18 12:10:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensure every events in profiling have finished before
|
|
|
|
* releasing the buffers
|
|
|
|
*/
|
|
|
|
synchronize_sched();
|
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
free_percpu(buf[i]);
|
2009-09-18 12:10:28 +08:00
|
|
|
}
|
2009-09-18 06:54:43 +08:00
|
|
|
}
|
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
void perf_trace_disable(int event_id)
|
2009-03-20 03:26:15 +08:00
|
|
|
{
|
|
|
|
struct ftrace_event_call *event;
|
|
|
|
|
2009-05-06 10:33:45 +08:00
|
|
|
mutex_lock(&event_mutex);
|
2009-04-11 01:52:20 +08:00
|
|
|
list_for_each_entry(event, &ftrace_events, list) {
|
2009-05-06 10:33:45 +08:00
|
|
|
if (event->id == event_id) {
|
2010-03-05 12:35:37 +08:00
|
|
|
perf_trace_event_disable(event);
|
2009-08-24 12:19:47 +08:00
|
|
|
module_put(event->mod);
|
2009-05-06 10:33:45 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-03-20 03:26:15 +08:00
|
|
|
}
|
2009-05-06 10:33:45 +08:00
|
|
|
mutex_unlock(&event_mutex);
|
2009-03-20 03:26:15 +08:00
|
|
|
}
|
2010-01-28 09:32:29 +08:00
|
|
|
|
2010-03-05 12:35:37 +08:00
|
|
|
__kprobes void *perf_trace_buf_prepare(int size, unsigned short type,
|
2010-05-19 16:52:27 +08:00
|
|
|
struct pt_regs *regs, int *rctxp)
|
2010-01-28 09:32:29 +08:00
|
|
|
{
|
|
|
|
struct trace_entry *entry;
|
|
|
|
char *trace_buf, *raw_data;
|
2010-05-19 16:52:27 +08:00
|
|
|
int pc;
|
2010-01-28 09:32:29 +08:00
|
|
|
|
2010-03-23 07:08:59 +08:00
|
|
|
BUILD_BUG_ON(PERF_MAX_TRACE_SIZE % sizeof(unsigned long));
|
|
|
|
|
2010-01-28 09:32:29 +08:00
|
|
|
pc = preempt_count();
|
|
|
|
|
|
|
|
*rctxp = perf_swevent_get_recursion_context();
|
|
|
|
if (*rctxp < 0)
|
|
|
|
goto err_recursion;
|
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
trace_buf = rcu_dereference_sched(perf_trace_buf[*rctxp]);
|
2010-01-28 09:32:29 +08:00
|
|
|
if (!trace_buf)
|
|
|
|
goto err;
|
|
|
|
|
2010-05-19 16:52:27 +08:00
|
|
|
raw_data = per_cpu_ptr(trace_buf, smp_processor_id());
|
2010-01-28 09:32:29 +08:00
|
|
|
|
|
|
|
/* zero the dead bytes from align to not leak stack to user */
|
2010-03-23 07:08:59 +08:00
|
|
|
memset(&raw_data[size - sizeof(u64)], 0, sizeof(u64));
|
2010-01-28 09:32:29 +08:00
|
|
|
|
|
|
|
entry = (struct trace_entry *)raw_data;
|
2010-05-19 16:52:27 +08:00
|
|
|
tracing_generic_entry_update(entry, regs->flags, pc);
|
2010-01-28 09:32:29 +08:00
|
|
|
entry->type = type;
|
|
|
|
|
|
|
|
return raw_data;
|
|
|
|
err:
|
|
|
|
perf_swevent_put_recursion_context(*rctxp);
|
|
|
|
err_recursion:
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-03-05 12:35:37 +08:00
|
|
|
EXPORT_SYMBOL_GPL(perf_trace_buf_prepare);
|