2009-06-02 22:59:57 +02:00
|
|
|
/*
|
2009-06-02 23:37:05 +02:00
|
|
|
* builtin-record.c
|
|
|
|
|
*
|
|
|
|
|
* Builtin record command: Record the profile of a workload
|
|
|
|
|
* (or a CPU, or a PID) into the perf.data output file - for
|
|
|
|
|
* later analysis via perf report.
|
2009-06-02 22:59:57 +02:00
|
|
|
*/
|
2010-02-03 11:53:14 +08:00
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
|
|
2009-05-27 09:10:38 +02:00
|
|
|
#include "builtin.h"
|
2009-06-02 23:37:05 +02:00
|
|
|
|
|
|
|
|
#include "perf.h"
|
|
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
#include "util/build-id.h"
|
2009-05-01 18:29:57 +02:00
|
|
|
#include "util/util.h"
|
2009-05-26 09:17:18 +02:00
|
|
|
#include "util/parse-options.h"
|
2009-05-26 11:10:09 +02:00
|
|
|
#include "util/parse-events.h"
|
2009-05-01 18:29:57 +02:00
|
|
|
|
2009-06-25 17:05:54 +02:00
|
|
|
#include "util/header.h"
|
2009-08-12 11:07:25 +02:00
|
|
|
#include "util/event.h"
|
2011-01-11 20:56:53 -02:00
|
|
|
#include "util/evlist.h"
|
2011-01-03 16:39:04 -02:00
|
|
|
#include "util/evsel.h"
|
2009-08-16 22:05:48 +02:00
|
|
|
#include "util/debug.h"
|
2009-12-11 21:24:02 -02:00
|
|
|
#include "util/session.h"
|
2009-11-04 18:50:43 -02:00
|
|
|
#include "util/symbol.h"
|
2010-03-10 20:36:09 +11:00
|
|
|
#include "util/cpumap.h"
|
2011-01-18 15:15:24 -02:00
|
|
|
#include "util/thread_map.h"
|
2009-06-25 17:05:54 +02:00
|
|
|
|
2009-06-02 15:52:24 +02:00
|
|
|
#include <unistd.h>
|
2009-04-08 15:01:31 +02:00
|
|
|
#include <sched.h>
|
2010-05-18 18:29:23 -03:00
|
|
|
#include <sys/mman.h>
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2010-04-14 19:42:07 +02:00
|
|
|
enum write_mode_t {
|
|
|
|
|
WRITE_FORCE,
|
|
|
|
|
WRITE_APPEND
|
|
|
|
|
};
|
|
|
|
|
|
2010-05-17 12:20:43 -03:00
|
|
|
static u64 user_interval = ULLONG_MAX;
|
|
|
|
|
static u64 default_interval = 0;
|
2009-06-06 09:58:57 +02:00
|
|
|
|
2009-04-08 15:01:31 +02:00
|
|
|
static unsigned int page_size;
|
2011-03-31 03:35:24 +02:00
|
|
|
static unsigned int mmap_pages = UINT_MAX;
|
2010-04-14 22:09:02 +02:00
|
|
|
static unsigned int user_freq = UINT_MAX;
|
2009-10-06 15:14:21 +02:00
|
|
|
static int freq = 1000;
|
2009-04-08 15:01:31 +02:00
|
|
|
static int output;
|
2010-04-01 23:59:16 -05:00
|
|
|
static int pipe_output = 0;
|
2011-01-16 17:14:45 +01:00
|
|
|
static const char *output_name = NULL;
|
2011-08-17 18:42:07 +08:00
|
|
|
static bool group = false;
|
2010-05-17 15:39:16 -03:00
|
|
|
static int realtime_prio = 0;
|
2011-01-12 17:59:36 +03:00
|
|
|
static bool nodelay = false;
|
2010-04-13 18:37:33 +10:00
|
|
|
static bool raw_samples = false;
|
2010-12-02 10:25:28 -02:00
|
|
|
static bool sample_id_all_avail = true;
|
2010-04-13 18:37:33 +10:00
|
|
|
static bool system_wide = false;
|
2009-10-06 15:14:21 +02:00
|
|
|
static pid_t target_pid = -1;
|
2010-03-18 11:36:05 -03:00
|
|
|
static pid_t target_tid = -1;
|
2009-10-06 15:14:21 +02:00
|
|
|
static pid_t child_pid = -1;
|
2010-05-12 10:40:01 +02:00
|
|
|
static bool no_inherit = false;
|
2010-04-14 19:42:07 +02:00
|
|
|
static enum write_mode_t write_mode = WRITE_FORCE;
|
2010-04-13 18:37:33 +10:00
|
|
|
static bool call_graph = false;
|
|
|
|
|
static bool inherit_stat = false;
|
|
|
|
|
static bool no_samples = false;
|
|
|
|
|
static bool sample_address = false;
|
2010-12-02 10:25:28 -02:00
|
|
|
static bool sample_time = false;
|
2010-06-17 11:39:01 +02:00
|
|
|
static bool no_buildid = false;
|
2010-11-26 19:39:15 -02:00
|
|
|
static bool no_buildid_cache = false;
|
2011-01-11 20:56:53 -02:00
|
|
|
static struct perf_evlist *evsel_list;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2009-10-06 15:14:21 +02:00
|
|
|
static long samples = 0;
|
|
|
|
|
static u64 bytes_written = 0;
|
2009-06-06 09:58:57 +02:00
|
|
|
|
2009-10-06 15:14:21 +02:00
|
|
|
static int file_new = 1;
|
2010-02-03 16:52:05 -02:00
|
|
|
static off_t post_processing_offset;
|
2009-06-25 17:05:54 +02:00
|
|
|
|
2009-12-11 21:24:02 -02:00
|
|
|
static struct perf_session *session;
|
2010-05-28 12:00:01 +02:00
|
|
|
static const char *cpu_list;
|
2011-09-15 14:31:40 -07:00
|
|
|
static const char *progname;
|
2009-06-18 23:22:55 +02:00
|
|
|
|
2010-04-01 23:59:21 -05:00
|
|
|
static void advance_output(size_t size)
|
|
|
|
|
{
|
|
|
|
|
bytes_written += size;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 23:22:55 +02:00
|
|
|
static void write_output(void *buf, size_t size)
|
|
|
|
|
{
|
|
|
|
|
while (size) {
|
|
|
|
|
int ret = write(output, buf, size);
|
|
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
die("failed to write");
|
|
|
|
|
|
|
|
|
|
size -= ret;
|
|
|
|
|
buf += ret;
|
|
|
|
|
|
|
|
|
|
bytes_written += ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 14:01:45 -02:00
|
|
|
static int process_synthesized_event(union perf_event *event,
|
2011-01-29 13:02:00 -02:00
|
|
|
struct perf_sample *sample __used,
|
2009-12-13 19:50:24 -02:00
|
|
|
struct perf_session *self __used)
|
2009-10-26 19:23:18 -02:00
|
|
|
{
|
2010-02-03 16:52:05 -02:00
|
|
|
write_output(event, event->header.size);
|
2009-10-26 19:23:18 -02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 17:07:28 -02:00
|
|
|
static void mmap_read(struct perf_mmap *md)
|
2009-04-08 15:01:31 +02:00
|
|
|
{
|
2011-01-12 17:07:28 -02:00
|
|
|
unsigned int head = perf_mmap__read_head(md);
|
2009-04-08 15:01:31 +02:00
|
|
|
unsigned int old = md->prev;
|
|
|
|
|
unsigned char *data = md->base + page_size;
|
|
|
|
|
unsigned long size;
|
|
|
|
|
void *buf;
|
|
|
|
|
|
2011-01-28 14:49:19 -02:00
|
|
|
if (old == head)
|
|
|
|
|
return;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2011-01-28 14:49:19 -02:00
|
|
|
samples++;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
|
|
|
|
size = head - old;
|
|
|
|
|
|
|
|
|
|
if ((old & md->mask) + size != (head & md->mask)) {
|
|
|
|
|
buf = &data[old & md->mask];
|
|
|
|
|
size = md->mask + 1 - (old & md->mask);
|
|
|
|
|
old += size;
|
2009-06-03 19:27:19 +02:00
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
write_output(buf, size);
|
2009-04-08 15:01:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buf = &data[old & md->mask];
|
|
|
|
|
size = head - old;
|
|
|
|
|
old += size;
|
2009-06-03 19:27:19 +02:00
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
write_output(buf, size);
|
2009-04-08 15:01:31 +02:00
|
|
|
|
|
|
|
|
md->prev = old;
|
2011-01-12 17:11:53 -02:00
|
|
|
perf_mmap__write_tail(md, old);
|
2009-04-08 15:01:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static volatile int done = 0;
|
2009-06-10 15:55:59 +02:00
|
|
|
static volatile int signr = -1;
|
2011-09-15 14:31:40 -07:00
|
|
|
static volatile int child_finished = 0;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2009-05-05 17:50:27 +02:00
|
|
|
static void sig_handler(int sig)
|
2009-04-08 15:01:31 +02:00
|
|
|
{
|
2011-09-15 14:31:40 -07:00
|
|
|
if (sig == SIGCHLD)
|
|
|
|
|
child_finished = 1;
|
|
|
|
|
|
2009-05-05 17:50:27 +02:00
|
|
|
done = 1;
|
2009-06-10 15:55:59 +02:00
|
|
|
signr = sig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void sig_atexit(void)
|
|
|
|
|
{
|
2011-09-15 14:31:40 -07:00
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
if (child_pid > 0) {
|
|
|
|
|
if (!child_finished)
|
|
|
|
|
kill(child_pid, SIGTERM);
|
|
|
|
|
|
|
|
|
|
wait(&status);
|
|
|
|
|
if (WIFSIGNALED(status))
|
|
|
|
|
psignal(WTERMSIG(status), progname);
|
|
|
|
|
}
|
2009-10-04 01:35:01 +01:00
|
|
|
|
2010-12-06 15:13:38 -02:00
|
|
|
if (signr == -1 || signr == SIGUSR1)
|
2009-06-10 15:55:59 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
signal(signr, SIG_DFL);
|
|
|
|
|
kill(getpid(), signr);
|
2009-04-08 15:01:31 +02:00
|
|
|
}
|
|
|
|
|
|
2011-01-12 14:28:51 -02:00
|
|
|
static void config_attr(struct perf_evsel *evsel, struct perf_evlist *evlist)
|
|
|
|
|
{
|
|
|
|
|
struct perf_event_attr *attr = &evsel->attr;
|
|
|
|
|
int track = !evsel->idx; /* only the first counter needs these */
|
2009-06-25 17:05:54 +02:00
|
|
|
|
2011-08-25 10:17:55 -06:00
|
|
|
attr->disabled = 1;
|
2011-04-14 11:20:14 -03:00
|
|
|
attr->inherit = !no_inherit;
|
2009-06-25 17:05:54 +02:00
|
|
|
attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
|
|
|
|
|
PERF_FORMAT_TOTAL_TIME_RUNNING |
|
|
|
|
|
PERF_FORMAT_ID;
|
2009-05-05 17:50:27 +02:00
|
|
|
|
2009-08-13 10:27:18 +02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
|
2009-06-14 15:04:15 +02:00
|
|
|
|
2011-01-11 20:56:53 -02:00
|
|
|
if (evlist->nr_entries > 1)
|
2010-03-05 12:51:05 -03:00
|
|
|
attr->sample_type |= PERF_SAMPLE_ID;
|
|
|
|
|
|
2010-04-14 22:09:02 +02:00
|
|
|
/*
|
|
|
|
|
* We default some events to a 1 default interval. But keep
|
|
|
|
|
* it a weak assumption overridable by the user.
|
|
|
|
|
*/
|
|
|
|
|
if (!attr->sample_period || (user_freq != UINT_MAX &&
|
2010-05-17 12:20:43 -03:00
|
|
|
user_interval != ULLONG_MAX)) {
|
2010-04-14 22:09:02 +02:00
|
|
|
if (freq) {
|
|
|
|
|
attr->sample_type |= PERF_SAMPLE_PERIOD;
|
|
|
|
|
attr->freq = 1;
|
|
|
|
|
attr->sample_freq = freq;
|
|
|
|
|
} else {
|
|
|
|
|
attr->sample_period = default_interval;
|
|
|
|
|
}
|
2009-06-05 18:37:22 +02:00
|
|
|
}
|
2009-06-14 15:04:15 +02:00
|
|
|
|
2009-06-24 21:12:48 +02:00
|
|
|
if (no_samples)
|
|
|
|
|
attr->sample_freq = 0;
|
|
|
|
|
|
|
|
|
|
if (inherit_stat)
|
|
|
|
|
attr->inherit_stat = 1;
|
|
|
|
|
|
2010-05-18 15:30:49 +01:00
|
|
|
if (sample_address) {
|
2009-07-16 15:44:29 +02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_ADDR;
|
2010-05-18 15:30:49 +01:00
|
|
|
attr->mmap_data = track;
|
|
|
|
|
}
|
2009-07-16 15:44:29 +02:00
|
|
|
|
2009-06-14 15:04:15 +02:00
|
|
|
if (call_graph)
|
|
|
|
|
attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
|
|
|
|
|
|
2010-06-04 11:27:10 -03:00
|
|
|
if (system_wide)
|
|
|
|
|
attr->sample_type |= PERF_SAMPLE_CPU;
|
|
|
|
|
|
2010-12-25 12:12:25 -02:00
|
|
|
if (sample_id_all_avail &&
|
|
|
|
|
(sample_time || system_wide || !no_inherit || cpu_list))
|
2010-12-02 10:25:28 -02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_TIME;
|
|
|
|
|
|
2009-09-02 20:20:38 +02:00
|
|
|
if (raw_samples) {
|
2009-09-03 12:00:22 +02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_TIME;
|
2009-08-13 10:27:19 +02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_RAW;
|
2009-09-02 20:20:38 +02:00
|
|
|
attr->sample_type |= PERF_SAMPLE_CPU;
|
|
|
|
|
}
|
2009-08-07 01:25:54 +02:00
|
|
|
|
2011-01-12 17:59:36 +03:00
|
|
|
if (nodelay) {
|
|
|
|
|
attr->watermark = 0;
|
|
|
|
|
attr->wakeup_events = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-06 09:58:57 +02:00
|
|
|
attr->mmap = track;
|
|
|
|
|
attr->comm = track;
|
2011-01-12 14:28:51 -02:00
|
|
|
|
2010-05-12 10:40:01 +02:00
|
|
|
if (target_pid == -1 && target_tid == -1 && !system_wide) {
|
2010-03-18 11:36:04 -03:00
|
|
|
attr->disabled = 1;
|
2010-03-15 11:46:57 -03:00
|
|
|
attr->enable_on_exec = 1;
|
2010-03-18 11:36:04 -03:00
|
|
|
}
|
2011-01-12 14:28:51 -02:00
|
|
|
}
|
|
|
|
|
|
2011-03-10 11:15:54 -03:00
|
|
|
static bool perf_evlist__equal(struct perf_evlist *evlist,
|
|
|
|
|
struct perf_evlist *other)
|
|
|
|
|
{
|
|
|
|
|
struct perf_evsel *pos, *pair;
|
|
|
|
|
|
|
|
|
|
if (evlist->nr_entries != other->nr_entries)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
pair = list_entry(other->entries.next, struct perf_evsel, node);
|
|
|
|
|
|
|
|
|
|
list_for_each_entry(pos, &evlist->entries, node) {
|
|
|
|
|
if (memcmp(&pos->attr, &pair->attr, sizeof(pos->attr) != 0))
|
|
|
|
|
return false;
|
|
|
|
|
pair = list_entry(pair->node.next, struct perf_evsel, node);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 14:28:51 -02:00
|
|
|
static void open_counters(struct perf_evlist *evlist)
|
|
|
|
|
{
|
|
|
|
|
struct perf_evsel *pos;
|
|
|
|
|
|
2011-04-14 11:20:14 -03:00
|
|
|
if (evlist->cpus->map[0] < 0)
|
|
|
|
|
no_inherit = true;
|
|
|
|
|
|
2011-01-12 14:28:51 -02:00
|
|
|
list_for_each_entry(pos, &evlist->entries, node) {
|
|
|
|
|
struct perf_event_attr *attr = &pos->attr;
|
|
|
|
|
/*
|
|
|
|
|
* Check if parse_single_tracepoint_event has already asked for
|
|
|
|
|
* PERF_SAMPLE_TIME.
|
|
|
|
|
*
|
|
|
|
|
* XXX this is kludgy but short term fix for problems introduced by
|
|
|
|
|
* eac23d1c that broke 'perf script' by having different sample_types
|
|
|
|
|
* when using multiple tracepoint events when we use a perf binary
|
|
|
|
|
* that tries to use sample_id_all on an older kernel.
|
|
|
|
|
*
|
|
|
|
|
* We need to move counter creation to perf_session, support
|
|
|
|
|
* different sample_types, etc.
|
|
|
|
|
*/
|
|
|
|
|
bool time_needed = attr->sample_type & PERF_SAMPLE_TIME;
|
|
|
|
|
|
|
|
|
|
config_attr(pos, evlist);
|
2010-12-02 10:25:28 -02:00
|
|
|
retry_sample_id:
|
2011-01-12 14:28:51 -02:00
|
|
|
attr->sample_id_all = sample_id_all_avail ? 1 : 0;
|
2009-06-07 17:39:02 +02:00
|
|
|
try_again:
|
2011-04-14 11:20:14 -03:00
|
|
|
if (perf_evsel__open(pos, evlist->cpus, evlist->threads, group) < 0) {
|
2010-03-18 11:36:05 -03:00
|
|
|
int err = errno;
|
2009-06-05 13:18:41 +02:00
|
|
|
|
2011-03-28 09:50:11 -03:00
|
|
|
if (err == EPERM || err == EACCES) {
|
|
|
|
|
ui__warning_paranoid();
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
} else if (err == ENODEV && cpu_list) {
|
2010-03-18 11:36:05 -03:00
|
|
|
die("No such device - did you specify"
|
|
|
|
|
" an out-of-range profile CPU?\n");
|
2010-12-02 10:25:28 -02:00
|
|
|
} else if (err == EINVAL && sample_id_all_avail) {
|
|
|
|
|
/*
|
|
|
|
|
* Old kernel, no attr->sample_id_type_all field
|
|
|
|
|
*/
|
|
|
|
|
sample_id_all_avail = false;
|
2010-12-25 12:12:25 -02:00
|
|
|
if (!sample_time && !raw_samples && !time_needed)
|
2010-12-09 16:33:53 +11:00
|
|
|
attr->sample_type &= ~PERF_SAMPLE_TIME;
|
|
|
|
|
|
2010-12-02 10:25:28 -02:00
|
|
|
goto retry_sample_id;
|
2010-03-18 11:36:05 -03:00
|
|
|
}
|
2009-06-07 17:39:02 +02:00
|
|
|
|
2010-03-18 11:36:05 -03:00
|
|
|
/*
|
|
|
|
|
* If it's cycles then fall back to hrtimer
|
|
|
|
|
* based cpu-clock-tick sw counter, which
|
|
|
|
|
* is always available even if no PMU support:
|
|
|
|
|
*/
|
|
|
|
|
if (attr->type == PERF_TYPE_HARDWARE
|
|
|
|
|
&& attr->config == PERF_COUNT_HW_CPU_CYCLES) {
|
2009-06-07 17:39:02 +02:00
|
|
|
|
2010-03-18 11:36:05 -03:00
|
|
|
if (verbose)
|
2011-03-25 13:11:11 -06:00
|
|
|
ui__warning("The cycles event is not supported, "
|
|
|
|
|
"trying to fall back to cpu-clock-ticks\n");
|
2010-03-18 11:36:05 -03:00
|
|
|
attr->type = PERF_TYPE_SOFTWARE;
|
|
|
|
|
attr->config = PERF_COUNT_SW_CPU_CLOCK;
|
|
|
|
|
goto try_again;
|
|
|
|
|
}
|
2011-03-25 13:11:11 -06:00
|
|
|
|
|
|
|
|
if (err == ENOENT) {
|
|
|
|
|
ui__warning("The %s event is not supported.\n",
|
|
|
|
|
event_name(pos));
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-18 11:36:05 -03:00
|
|
|
printf("\n");
|
2010-11-19 17:37:24 -08:00
|
|
|
error("sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information.\n",
|
2011-01-12 14:28:51 -02:00
|
|
|
err, strerror(err));
|
2009-11-16 15:25:53 +10:00
|
|
|
|
|
|
|
|
#if defined(__i386__) || defined(__x86_64__)
|
2010-03-18 11:36:05 -03:00
|
|
|
if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
|
|
|
|
|
die("No hardware sampling interrupt available."
|
|
|
|
|
" No APIC? If so then you can boot the kernel"
|
|
|
|
|
" with the \"lapic\" boot parameter to"
|
|
|
|
|
" force-enable it.\n");
|
2009-11-16 15:25:53 +10:00
|
|
|
#endif
|
|
|
|
|
|
2010-03-18 11:36:05 -03:00
|
|
|
die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
|
|
|
|
|
}
|
2009-10-15 11:22:07 +08:00
|
|
|
}
|
2010-12-25 12:12:25 -02:00
|
|
|
|
2011-02-26 04:51:54 +01:00
|
|
|
if (perf_evlist__set_filters(evlist)) {
|
|
|
|
|
error("failed to set filter with %d (%s)\n", errno,
|
|
|
|
|
strerror(errno));
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-30 11:59:43 -02:00
|
|
|
if (perf_evlist__mmap(evlist, mmap_pages, false) < 0)
|
2011-01-14 15:50:51 -02:00
|
|
|
die("failed to mmap with %d (%s)\n", errno, strerror(errno));
|
|
|
|
|
|
2011-03-10 11:15:54 -03:00
|
|
|
if (file_new)
|
|
|
|
|
session->evlist = evlist;
|
|
|
|
|
else {
|
|
|
|
|
if (!perf_evlist__equal(session->evlist, evlist)) {
|
|
|
|
|
fprintf(stderr, "incompatible append\n");
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
perf_session__update_sample_type(session);
|
2009-05-05 17:50:27 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
static int process_buildids(void)
|
|
|
|
|
{
|
|
|
|
|
u64 size = lseek(output, 0, SEEK_CUR);
|
|
|
|
|
|
2010-03-11 15:53:11 -03:00
|
|
|
if (size == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
session->fd = output;
|
|
|
|
|
return __perf_session__process_events(session, post_processing_offset,
|
|
|
|
|
size - post_processing_offset,
|
|
|
|
|
size, &build_id__mark_dso_hit_ops);
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 23:22:55 +02:00
|
|
|
static void atexit_header(void)
|
|
|
|
|
{
|
2010-04-01 23:59:22 -05:00
|
|
|
if (!pipe_output) {
|
|
|
|
|
session->header.data_size += bytes_written;
|
2009-06-18 23:22:55 +02:00
|
|
|
|
2010-11-26 19:39:15 -02:00
|
|
|
if (!no_buildid)
|
|
|
|
|
process_buildids();
|
2011-03-10 11:15:54 -03:00
|
|
|
perf_session__write_header(session, evsel_list, output, true);
|
2010-07-29 14:08:55 -03:00
|
|
|
perf_session__delete(session);
|
2011-01-11 20:56:53 -02:00
|
|
|
perf_evlist__delete(evsel_list);
|
2010-07-30 18:31:28 -03:00
|
|
|
symbol__exit();
|
2010-04-01 23:59:22 -05:00
|
|
|
}
|
2009-06-18 23:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
2011-01-29 14:01:45 -02:00
|
|
|
static void perf_event__synthesize_guest_os(struct machine *machine, void *data)
|
2010-04-19 13:32:50 +08:00
|
|
|
{
|
|
|
|
|
int err;
|
2010-04-27 21:17:50 -03:00
|
|
|
struct perf_session *psession = data;
|
2010-04-19 13:32:50 +08:00
|
|
|
|
2010-04-27 21:17:50 -03:00
|
|
|
if (machine__is_host(machine))
|
2010-04-19 13:32:50 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
*As for guest kernel when processing subcommand record&report,
|
|
|
|
|
*we arrange module mmap prior to guest kernel mmap and trigger
|
|
|
|
|
*a preload dso because default guest module symbols are loaded
|
|
|
|
|
*from guest kallsyms instead of /lib/modules/XXX/XXX. This
|
|
|
|
|
*method is used to avoid symbol missing when the first addr is
|
|
|
|
|
*in module instead of in guest kernel.
|
|
|
|
|
*/
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_modules(process_synthesized_event,
|
|
|
|
|
psession, machine);
|
2010-04-19 13:32:50 +08:00
|
|
|
if (err < 0)
|
|
|
|
|
pr_err("Couldn't record guest kernel [%d]'s reference"
|
2010-04-27 21:17:50 -03:00
|
|
|
" relocation symbol.\n", machine->pid);
|
2010-04-19 13:32:50 +08:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We use _stext for guest kernel because guest kernel's /proc/kallsyms
|
|
|
|
|
* have no _text sometimes.
|
|
|
|
|
*/
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_kernel_mmap(process_synthesized_event,
|
|
|
|
|
psession, machine, "_text");
|
2010-04-19 13:32:50 +08:00
|
|
|
if (err < 0)
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_kernel_mmap(process_synthesized_event,
|
|
|
|
|
psession, machine,
|
|
|
|
|
"_stext");
|
2010-04-19 13:32:50 +08:00
|
|
|
if (err < 0)
|
|
|
|
|
pr_err("Couldn't record guest kernel [%d]'s reference"
|
2010-04-27 21:17:50 -03:00
|
|
|
" relocation symbol.\n", machine->pid);
|
2010-04-19 13:32:50 +08:00
|
|
|
}
|
|
|
|
|
|
2010-05-02 22:05:29 +02:00
|
|
|
static struct perf_event_header finished_round_event = {
|
|
|
|
|
.size = sizeof(struct perf_event_header),
|
|
|
|
|
.type = PERF_RECORD_FINISHED_ROUND,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void mmap_read_all(void)
|
|
|
|
|
{
|
2010-05-20 14:45:26 +02:00
|
|
|
int i;
|
2010-05-02 22:05:29 +02:00
|
|
|
|
2011-05-15 09:39:00 -03:00
|
|
|
for (i = 0; i < evsel_list->nr_mmaps; i++) {
|
2011-01-14 15:50:51 -02:00
|
|
|
if (evsel_list->mmap[i].base)
|
|
|
|
|
mmap_read(&evsel_list->mmap[i]);
|
2010-05-02 22:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (perf_header__has_feat(&session->header, HEADER_TRACE_INFO))
|
|
|
|
|
write_output(&finished_round_event, sizeof(finished_round_event));
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-27 21:36:57 -02:00
|
|
|
static int __cmd_record(int argc, const char **argv)
|
2009-05-05 17:50:27 +02:00
|
|
|
{
|
2009-06-02 15:52:24 +02:00
|
|
|
struct stat st;
|
2009-06-02 22:59:57 +02:00
|
|
|
int flags;
|
2009-11-19 14:55:55 -02:00
|
|
|
int err;
|
2009-09-17 19:59:05 +02:00
|
|
|
unsigned long waking = 0;
|
2009-12-16 17:55:55 +01:00
|
|
|
int child_ready_pipe[2], go_pipe[2];
|
2010-03-18 11:36:04 -03:00
|
|
|
const bool forks = argc > 0;
|
2009-12-16 17:55:55 +01:00
|
|
|
char buf;
|
2010-04-27 21:17:50 -03:00
|
|
|
struct machine *machine;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2011-09-15 14:31:40 -07:00
|
|
|
progname = argv[0];
|
|
|
|
|
|
2009-04-08 15:01:31 +02:00
|
|
|
page_size = sysconf(_SC_PAGE_SIZE);
|
|
|
|
|
|
2009-06-18 23:22:55 +02:00
|
|
|
atexit(sig_atexit);
|
|
|
|
|
signal(SIGCHLD, sig_handler);
|
|
|
|
|
signal(SIGINT, sig_handler);
|
2010-12-06 15:13:38 -02:00
|
|
|
signal(SIGUSR1, sig_handler);
|
2009-06-18 23:22:55 +02:00
|
|
|
|
2009-12-27 21:36:57 -02:00
|
|
|
if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
|
2009-12-16 17:55:55 +01:00
|
|
|
perror("failed to create pipes");
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-16 17:14:45 +01:00
|
|
|
if (!output_name) {
|
|
|
|
|
if (!fstat(STDOUT_FILENO, &st) && S_ISFIFO(st.st_mode))
|
|
|
|
|
pipe_output = 1;
|
|
|
|
|
else
|
|
|
|
|
output_name = "perf.data";
|
|
|
|
|
}
|
|
|
|
|
if (output_name) {
|
|
|
|
|
if (!strcmp(output_name, "-"))
|
|
|
|
|
pipe_output = 1;
|
|
|
|
|
else if (!stat(output_name, &st) && st.st_size) {
|
|
|
|
|
if (write_mode == WRITE_FORCE) {
|
|
|
|
|
char oldname[PATH_MAX];
|
|
|
|
|
snprintf(oldname, sizeof(oldname), "%s.old",
|
|
|
|
|
output_name);
|
|
|
|
|
unlink(oldname);
|
|
|
|
|
rename(output_name, oldname);
|
|
|
|
|
}
|
|
|
|
|
} else if (write_mode == WRITE_APPEND) {
|
|
|
|
|
write_mode = WRITE_FORCE;
|
2009-08-07 14:16:01 +02:00
|
|
|
}
|
2009-06-02 15:52:24 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-04 16:46:42 +08:00
|
|
|
flags = O_CREAT|O_RDWR;
|
2010-04-14 19:42:07 +02:00
|
|
|
if (write_mode == WRITE_APPEND)
|
2009-06-18 23:22:55 +02:00
|
|
|
file_new = 0;
|
2009-06-02 22:59:57 +02:00
|
|
|
else
|
|
|
|
|
flags |= O_TRUNC;
|
|
|
|
|
|
2010-04-01 23:59:16 -05:00
|
|
|
if (pipe_output)
|
|
|
|
|
output = STDOUT_FILENO;
|
|
|
|
|
else
|
|
|
|
|
output = open(output_name, flags, S_IRUSR | S_IWUSR);
|
2009-04-08 15:01:31 +02:00
|
|
|
if (output < 0) {
|
|
|
|
|
perror("failed to create output file");
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-14 19:42:07 +02:00
|
|
|
session = perf_session__new(output_name, O_WRONLY,
|
2010-12-10 14:09:16 +11:00
|
|
|
write_mode == WRITE_FORCE, false, NULL);
|
2009-12-11 21:24:02 -02:00
|
|
|
if (session == NULL) {
|
2009-11-17 01:18:11 -02:00
|
|
|
pr_err("Not enough memory for reading perf file header\n");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-26 19:39:15 -02:00
|
|
|
if (!no_buildid)
|
|
|
|
|
perf_header__set_feat(&session->header, HEADER_BUILD_ID);
|
|
|
|
|
|
2009-11-19 14:55:55 -02:00
|
|
|
if (!file_new) {
|
2011-03-10 11:15:54 -03:00
|
|
|
err = perf_session__read_header(session, output);
|
2009-11-19 14:55:55 -02:00
|
|
|
if (err < 0)
|
2010-07-29 14:08:55 -03:00
|
|
|
goto out_delete_session;
|
2009-11-19 14:55:55 -02:00
|
|
|
}
|
|
|
|
|
|
2011-01-11 20:56:53 -02:00
|
|
|
if (have_tracepoints(&evsel_list->entries))
|
2009-12-11 21:24:02 -02:00
|
|
|
perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
|
2009-10-06 23:36:47 +02:00
|
|
|
|
2011-03-31 03:35:24 +02:00
|
|
|
/* 512 kiB: default amount of unprivileged mlocked memory */
|
|
|
|
|
if (mmap_pages == UINT_MAX)
|
|
|
|
|
mmap_pages = (512 * 1024) / page_size;
|
|
|
|
|
|
2009-12-27 21:36:57 -02:00
|
|
|
if (forks) {
|
2010-03-18 11:36:04 -03:00
|
|
|
child_pid = fork();
|
2010-05-31 23:18:18 +02:00
|
|
|
if (child_pid < 0) {
|
2009-12-16 17:55:55 +01:00
|
|
|
perror("failed to fork");
|
|
|
|
|
exit(-1);
|
2009-08-12 11:18:01 +02:00
|
|
|
}
|
2009-12-16 17:55:55 +01:00
|
|
|
|
2010-03-18 11:36:04 -03:00
|
|
|
if (!child_pid) {
|
2010-04-01 23:59:16 -05:00
|
|
|
if (pipe_output)
|
|
|
|
|
dup2(2, 1);
|
2009-12-16 17:55:55 +01:00
|
|
|
close(child_ready_pipe[0]);
|
|
|
|
|
close(go_pipe[1]);
|
|
|
|
|
fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Do a dummy execvp to get the PLT entry resolved,
|
|
|
|
|
* so we avoid the resolver overhead on the real
|
|
|
|
|
* execvp call.
|
|
|
|
|
*/
|
|
|
|
|
execvp("", (char **)argv);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Tell the parent we're ready to go
|
|
|
|
|
*/
|
|
|
|
|
close(child_ready_pipe[1]);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait until the parent tells us to go.
|
|
|
|
|
*/
|
|
|
|
|
if (read(go_pipe[0], &buf, 1) == -1)
|
|
|
|
|
perror("unable to read pipe");
|
|
|
|
|
|
|
|
|
|
execvp(argv[0], (char **)argv);
|
|
|
|
|
|
|
|
|
|
perror(argv[0]);
|
2010-12-06 15:13:38 -02:00
|
|
|
kill(getppid(), SIGUSR1);
|
2009-12-16 17:55:55 +01:00
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-18 11:36:05 -03:00
|
|
|
if (!system_wide && target_tid == -1 && target_pid == -1)
|
2011-01-30 11:59:43 -02:00
|
|
|
evsel_list->threads->map[0] = child_pid;
|
2010-03-18 11:36:05 -03:00
|
|
|
|
2009-12-16 17:55:55 +01:00
|
|
|
close(child_ready_pipe[1]);
|
|
|
|
|
close(go_pipe[0]);
|
|
|
|
|
/*
|
|
|
|
|
* wait for child to settle
|
|
|
|
|
*/
|
|
|
|
|
if (read(child_ready_pipe[0], &buf, 1) == -1) {
|
|
|
|
|
perror("unable to read pipe");
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
close(child_ready_pipe[0]);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 14:28:51 -02:00
|
|
|
open_counters(evsel_list);
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2011-02-17 12:18:42 -02:00
|
|
|
/*
|
|
|
|
|
* perf_session__delete(session) will be called at atexit_header()
|
|
|
|
|
*/
|
|
|
|
|
atexit(atexit_header);
|
|
|
|
|
|
2010-04-01 23:59:16 -05:00
|
|
|
if (pipe_output) {
|
|
|
|
|
err = perf_header__write_pipe(output);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
} else if (file_new) {
|
2011-03-10 11:15:54 -03:00
|
|
|
err = perf_session__write_header(session, evsel_list,
|
|
|
|
|
output, false);
|
2009-11-19 14:55:56 -02:00
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2010-01-05 16:50:31 -02:00
|
|
|
}
|
|
|
|
|
|
2010-02-03 16:52:05 -02:00
|
|
|
post_processing_offset = lseek(output, 0, SEEK_CUR);
|
|
|
|
|
|
2010-04-01 23:59:19 -05:00
|
|
|
if (pipe_output) {
|
2011-03-10 11:15:54 -03:00
|
|
|
err = perf_session__synthesize_attrs(session,
|
|
|
|
|
process_synthesized_event);
|
2010-04-01 23:59:19 -05:00
|
|
|
if (err < 0) {
|
|
|
|
|
pr_err("Couldn't synthesize attrs.\n");
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2010-04-01 23:59:20 -05:00
|
|
|
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_event_types(process_synthesized_event,
|
|
|
|
|
session);
|
2010-04-01 23:59:20 -05:00
|
|
|
if (err < 0) {
|
|
|
|
|
pr_err("Couldn't synthesize event_types.\n");
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2010-04-01 23:59:21 -05:00
|
|
|
|
2011-01-11 20:56:53 -02:00
|
|
|
if (have_tracepoints(&evsel_list->entries)) {
|
2010-05-03 00:14:48 -05:00
|
|
|
/*
|
|
|
|
|
* FIXME err <= 0 here actually means that
|
|
|
|
|
* there were no tracepoints so its not really
|
|
|
|
|
* an error, just that we don't need to
|
|
|
|
|
* synthesize anything. We really have to
|
|
|
|
|
* return this more properly and also
|
|
|
|
|
* propagate errors that now are calling die()
|
|
|
|
|
*/
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_tracing_data(output, evsel_list,
|
|
|
|
|
process_synthesized_event,
|
|
|
|
|
session);
|
2010-05-03 00:14:48 -05:00
|
|
|
if (err <= 0) {
|
|
|
|
|
pr_err("Couldn't record tracing data.\n");
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2010-05-02 13:37:24 -03:00
|
|
|
advance_output(err);
|
2010-05-03 00:14:48 -05:00
|
|
|
}
|
2010-04-01 23:59:19 -05:00
|
|
|
}
|
|
|
|
|
|
2010-04-27 21:17:50 -03:00
|
|
|
machine = perf_session__find_host_machine(session);
|
|
|
|
|
if (!machine) {
|
2010-04-19 13:32:50 +08:00
|
|
|
pr_err("Couldn't find native kernel information.\n");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_kernel_mmap(process_synthesized_event,
|
|
|
|
|
session, machine, "_text");
|
2010-03-30 18:27:39 -03:00
|
|
|
if (err < 0)
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_kernel_mmap(process_synthesized_event,
|
|
|
|
|
session, machine, "_stext");
|
2010-11-22 14:01:55 -02:00
|
|
|
if (err < 0)
|
|
|
|
|
pr_err("Couldn't record kernel reference relocation symbol\n"
|
|
|
|
|
"Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
|
|
|
|
|
"Check /proc/kallsyms permission or run as root.\n");
|
2010-01-13 13:22:17 -02:00
|
|
|
|
2011-01-29 14:01:45 -02:00
|
|
|
err = perf_event__synthesize_modules(process_synthesized_event,
|
|
|
|
|
session, machine);
|
2010-11-22 14:01:55 -02:00
|
|
|
if (err < 0)
|
|
|
|
|
pr_err("Couldn't record kernel module information.\n"
|
|
|
|
|
"Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
|
|
|
|
|
"Check /proc/modules permission or run as root.\n");
|
|
|
|
|
|
2010-04-19 13:32:50 +08:00
|
|
|
if (perf_guest)
|
2011-01-29 14:01:45 -02:00
|
|
|
perf_session__process_machines(session,
|
|
|
|
|
perf_event__synthesize_guest_os);
|
2009-06-25 17:05:54 +02:00
|
|
|
|
2010-06-16 20:59:01 +02:00
|
|
|
if (!system_wide)
|
2011-02-11 11:45:54 -02:00
|
|
|
perf_event__synthesize_thread_map(evsel_list->threads,
|
|
|
|
|
process_synthesized_event,
|
|
|
|
|
session);
|
2009-10-26 19:23:18 -02:00
|
|
|
else
|
2011-01-29 14:01:45 -02:00
|
|
|
perf_event__synthesize_threads(process_synthesized_event,
|
|
|
|
|
session);
|
2009-06-25 17:05:54 +02:00
|
|
|
|
2009-04-08 15:01:31 +02:00
|
|
|
if (realtime_prio) {
|
|
|
|
|
struct sched_param param;
|
|
|
|
|
|
|
|
|
|
param.sched_priority = realtime_prio;
|
|
|
|
|
if (sched_setscheduler(0, SCHED_FIFO, ¶m)) {
|
2009-10-21 17:34:06 -02:00
|
|
|
pr_err("Could not set realtime priority.\n");
|
2009-04-08 15:01:31 +02:00
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-25 10:17:55 -06:00
|
|
|
perf_evlist__enable(evsel_list);
|
|
|
|
|
|
2009-12-16 17:55:55 +01:00
|
|
|
/*
|
|
|
|
|
* Let the child rip
|
|
|
|
|
*/
|
2009-12-27 21:36:57 -02:00
|
|
|
if (forks)
|
|
|
|
|
close(go_pipe[1]);
|
2009-12-16 17:55:55 +01:00
|
|
|
|
2009-06-24 21:12:48 +02:00
|
|
|
for (;;) {
|
2009-06-05 14:29:10 +02:00
|
|
|
int hits = samples;
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2010-05-02 22:05:29 +02:00
|
|
|
mmap_read_all();
|
2009-04-08 15:01:31 +02:00
|
|
|
|
2009-06-24 21:12:48 +02:00
|
|
|
if (hits == samples) {
|
|
|
|
|
if (done)
|
|
|
|
|
break;
|
2011-01-11 22:30:02 -02:00
|
|
|
err = poll(evsel_list->pollfd, evsel_list->nr_fds, -1);
|
2009-09-17 19:59:05 +02:00
|
|
|
waking++;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 11:06:19 -03:00
|
|
|
if (done)
|
|
|
|
|
perf_evlist__disable(evsel_list);
|
2009-04-08 15:01:31 +02:00
|
|
|
}
|
|
|
|
|
|
2010-12-06 15:13:38 -02:00
|
|
|
if (quiet || signr == SIGUSR1)
|
2010-10-26 15:20:09 -02:00
|
|
|
return 0;
|
|
|
|
|
|
2009-09-17 19:59:05 +02:00
|
|
|
fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
|
|
|
|
|
|
2009-06-03 19:27:19 +02:00
|
|
|
/*
|
|
|
|
|
* Approximate RIP event size: 24 bytes.
|
|
|
|
|
*/
|
|
|
|
|
fprintf(stderr,
|
2011-01-22 20:37:02 -02:00
|
|
|
"[ perf record: Captured and wrote %.3f MB %s (~%" PRIu64 " samples) ]\n",
|
2009-06-03 19:27:19 +02:00
|
|
|
(double)bytes_written / 1024.0 / 1024.0,
|
|
|
|
|
output_name,
|
|
|
|
|
bytes_written / 24);
|
2009-06-02 23:43:11 +02:00
|
|
|
|
2009-04-08 15:01:31 +02:00
|
|
|
return 0;
|
2010-07-29 14:08:55 -03:00
|
|
|
|
|
|
|
|
out_delete_session:
|
|
|
|
|
perf_session__delete(session);
|
|
|
|
|
return err;
|
2009-04-08 15:01:31 +02:00
|
|
|
}
|
2009-05-26 09:17:18 +02:00
|
|
|
|
|
|
|
|
static const char * const record_usage[] = {
|
2009-05-28 16:25:34 +02:00
|
|
|
"perf record [<options>] [<command>]",
|
|
|
|
|
"perf record [<options>] -- <command> [<options>]",
|
2009-05-26 09:17:18 +02:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2010-04-14 19:42:07 +02:00
|
|
|
static bool force, append_file;
|
|
|
|
|
|
2010-11-10 08:11:30 -06:00
|
|
|
const struct option record_options[] = {
|
2011-01-11 20:56:53 -02:00
|
|
|
OPT_CALLBACK('e', "event", &evsel_list, "event",
|
2009-06-06 12:24:17 +02:00
|
|
|
"event selector. use 'perf list' to list available events",
|
2011-07-14 11:25:32 +02:00
|
|
|
parse_events_option),
|
2011-01-11 20:56:53 -02:00
|
|
|
OPT_CALLBACK(0, "filter", &evsel_list, "filter",
|
2009-10-15 11:22:07 +08:00
|
|
|
"event filter", parse_filter),
|
2009-05-26 09:17:18 +02:00
|
|
|
OPT_INTEGER('p', "pid", &target_pid,
|
2010-03-18 11:36:05 -03:00
|
|
|
"record events on existing process id"),
|
|
|
|
|
OPT_INTEGER('t', "tid", &target_tid,
|
|
|
|
|
"record events on existing thread id"),
|
2009-05-26 09:17:18 +02:00
|
|
|
OPT_INTEGER('r', "realtime", &realtime_prio,
|
|
|
|
|
"collect data with this RT SCHED_FIFO priority"),
|
2011-01-12 17:59:36 +03:00
|
|
|
OPT_BOOLEAN('D', "no-delay", &nodelay,
|
|
|
|
|
"collect data without buffering"),
|
2009-08-13 10:27:19 +02:00
|
|
|
OPT_BOOLEAN('R', "raw-samples", &raw_samples,
|
|
|
|
|
"collect raw sample records from all opened counters"),
|
2009-05-26 09:17:18 +02:00
|
|
|
OPT_BOOLEAN('a', "all-cpus", &system_wide,
|
|
|
|
|
"system-wide collection from all CPUs"),
|
2009-06-02 22:59:57 +02:00
|
|
|
OPT_BOOLEAN('A', "append", &append_file,
|
|
|
|
|
"append to the output file to do incremental profiling"),
|
2010-05-28 12:00:01 +02:00
|
|
|
OPT_STRING('C', "cpu", &cpu_list, "cpu",
|
|
|
|
|
"list of cpus to monitor"),
|
2009-06-02 15:52:24 +02:00
|
|
|
OPT_BOOLEAN('f', "force", &force,
|
2010-04-14 19:42:07 +02:00
|
|
|
"overwrite existing data file (deprecated)"),
|
2010-05-17 12:20:43 -03:00
|
|
|
OPT_U64('c', "count", &user_interval, "event period to sample"),
|
2009-06-02 22:59:57 +02:00
|
|
|
OPT_STRING('o', "output", &output_name, "file",
|
|
|
|
|
"output file name"),
|
2010-05-12 10:40:01 +02:00
|
|
|
OPT_BOOLEAN('i', "no-inherit", &no_inherit,
|
|
|
|
|
"child tasks do not inherit counters"),
|
2010-05-17 15:39:16 -03:00
|
|
|
OPT_UINTEGER('F', "freq", &user_freq, "profile at this frequency"),
|
|
|
|
|
OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
|
2011-08-17 18:42:07 +08:00
|
|
|
OPT_BOOLEAN(0, "group", &group,
|
|
|
|
|
"put the counters into a counter group"),
|
2009-06-14 15:04:15 +02:00
|
|
|
OPT_BOOLEAN('g', "call-graph", &call_graph,
|
|
|
|
|
"do call-graph (stack chain/backtrace) recording"),
|
2010-04-13 18:37:33 +10:00
|
|
|
OPT_INCR('v', "verbose", &verbose,
|
2009-06-07 17:39:02 +02:00
|
|
|
"be more verbose (show counter open errors, etc)"),
|
2010-10-26 15:20:09 -02:00
|
|
|
OPT_BOOLEAN('q', "quiet", &quiet, "don't print any message"),
|
2009-06-24 21:12:48 +02:00
|
|
|
OPT_BOOLEAN('s', "stat", &inherit_stat,
|
|
|
|
|
"per thread counts"),
|
2009-07-16 15:44:29 +02:00
|
|
|
OPT_BOOLEAN('d', "data", &sample_address,
|
|
|
|
|
"Sample addresses"),
|
2010-12-02 10:25:28 -02:00
|
|
|
OPT_BOOLEAN('T', "timestamp", &sample_time, "Sample timestamps"),
|
2009-06-24 21:12:48 +02:00
|
|
|
OPT_BOOLEAN('n', "no-samples", &no_samples,
|
|
|
|
|
"don't sample"),
|
2010-11-26 19:39:15 -02:00
|
|
|
OPT_BOOLEAN('N', "no-buildid-cache", &no_buildid_cache,
|
2010-06-17 11:39:01 +02:00
|
|
|
"do not update the buildid cache"),
|
2010-11-26 19:39:15 -02:00
|
|
|
OPT_BOOLEAN('B', "no-buildid", &no_buildid,
|
|
|
|
|
"do not collect buildids in perf.data"),
|
2011-02-14 11:20:01 +02:00
|
|
|
OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
|
|
|
|
|
"monitor event in cgroup name only",
|
|
|
|
|
parse_cgroups),
|
2009-05-26 09:17:18 +02:00
|
|
|
OPT_END()
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-01 12:37:06 +02:00
|
|
|
int cmd_record(int argc, const char **argv, const char *prefix __used)
|
2009-05-26 09:17:18 +02:00
|
|
|
{
|
2011-01-03 16:39:04 -02:00
|
|
|
int err = -ENOMEM;
|
|
|
|
|
struct perf_evsel *pos;
|
2009-05-26 09:17:18 +02:00
|
|
|
|
2011-01-30 11:59:43 -02:00
|
|
|
evsel_list = perf_evlist__new(NULL, NULL);
|
2011-01-11 20:56:53 -02:00
|
|
|
if (evsel_list == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
2010-11-10 08:11:30 -06:00
|
|
|
argc = parse_options(argc, argv, record_options, record_usage,
|
2009-12-15 20:04:40 -02:00
|
|
|
PARSE_OPT_STOP_AT_NON_OPTION);
|
2010-03-18 11:36:05 -03:00
|
|
|
if (!argc && target_pid == -1 && target_tid == -1 &&
|
2010-05-28 12:00:01 +02:00
|
|
|
!system_wide && !cpu_list)
|
2010-11-10 08:11:30 -06:00
|
|
|
usage_with_options(record_usage, record_options);
|
2009-05-26 09:17:18 +02:00
|
|
|
|
2010-04-14 19:42:07 +02:00
|
|
|
if (force && append_file) {
|
|
|
|
|
fprintf(stderr, "Can't overwrite and append at the same time."
|
|
|
|
|
" You need to choose between -f and -A");
|
2010-11-10 08:11:30 -06:00
|
|
|
usage_with_options(record_usage, record_options);
|
2010-04-14 19:42:07 +02:00
|
|
|
} else if (append_file) {
|
|
|
|
|
write_mode = WRITE_APPEND;
|
|
|
|
|
} else {
|
|
|
|
|
write_mode = WRITE_FORCE;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-14 11:20:01 +02:00
|
|
|
if (nr_cgroups && !system_wide) {
|
|
|
|
|
fprintf(stderr, "cgroup monitoring only available in"
|
|
|
|
|
" system-wide mode\n");
|
|
|
|
|
usage_with_options(record_usage, record_options);
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 20:04:40 -02:00
|
|
|
symbol__init();
|
2010-11-26 19:39:15 -02:00
|
|
|
|
2011-05-26 09:53:51 -03:00
|
|
|
if (symbol_conf.kptr_restrict)
|
2011-05-27 11:00:41 -03:00
|
|
|
pr_warning(
|
|
|
|
|
"WARNING: Kernel address maps (/proc/{kallsyms,modules}) are restricted,\n"
|
|
|
|
|
"check /proc/sys/kernel/kptr_restrict.\n\n"
|
|
|
|
|
"Samples in kernel functions may not be resolved if a suitable vmlinux\n"
|
|
|
|
|
"file is not found in the buildid cache or in the vmlinux path.\n\n"
|
|
|
|
|
"Samples in kernel modules won't be resolved at all.\n\n"
|
|
|
|
|
"If some relocation was applied (e.g. kexec) symbols may be misresolved\n"
|
|
|
|
|
"even with a suitable vmlinux or kallsyms file.\n\n");
|
2011-05-26 09:53:51 -03:00
|
|
|
|
2010-11-26 19:39:15 -02:00
|
|
|
if (no_buildid_cache || no_buildid)
|
2010-06-17 11:39:01 +02:00
|
|
|
disable_buildid_cache();
|
2009-12-15 20:04:40 -02:00
|
|
|
|
2011-01-11 20:56:53 -02:00
|
|
|
if (evsel_list->nr_entries == 0 &&
|
|
|
|
|
perf_evlist__add_default(evsel_list) < 0) {
|
2011-01-03 16:39:04 -02:00
|
|
|
pr_err("Not enough memory for event selector list\n");
|
|
|
|
|
goto out_symbol_exit;
|
2009-06-11 23:11:50 +02:00
|
|
|
}
|
2009-05-26 09:17:18 +02:00
|
|
|
|
2011-01-03 17:53:33 -02:00
|
|
|
if (target_pid != -1)
|
2010-03-18 11:36:05 -03:00
|
|
|
target_tid = target_pid;
|
|
|
|
|
|
2011-01-30 11:59:43 -02:00
|
|
|
if (perf_evlist__create_maps(evsel_list, target_pid,
|
|
|
|
|
target_tid, cpu_list) < 0)
|
2011-01-12 14:28:51 -02:00
|
|
|
usage_with_options(record_usage, record_options);
|
2011-01-03 16:39:04 -02:00
|
|
|
|
2011-01-11 20:56:53 -02:00
|
|
|
list_for_each_entry(pos, &evsel_list->entries, node) {
|
2011-01-30 11:59:43 -02:00
|
|
|
if (perf_evsel__alloc_fd(pos, evsel_list->cpus->nr,
|
|
|
|
|
evsel_list->threads->nr) < 0)
|
2011-01-03 16:39:04 -02:00
|
|
|
goto out_free_fd;
|
2011-01-17 18:28:13 -02:00
|
|
|
if (perf_header__push_event(pos->attr.config, event_name(pos)))
|
|
|
|
|
goto out_free_fd;
|
2010-03-18 11:36:05 -03:00
|
|
|
}
|
2011-01-11 22:30:02 -02:00
|
|
|
|
2011-01-30 11:59:43 -02:00
|
|
|
if (perf_evlist__alloc_pollfd(evsel_list) < 0)
|
2010-07-29 14:08:55 -03:00
|
|
|
goto out_free_fd;
|
2010-03-18 11:36:05 -03:00
|
|
|
|
2010-05-17 12:20:43 -03:00
|
|
|
if (user_interval != ULLONG_MAX)
|
2010-04-14 22:09:02 +02:00
|
|
|
default_interval = user_interval;
|
|
|
|
|
if (user_freq != UINT_MAX)
|
|
|
|
|
freq = user_freq;
|
|
|
|
|
|
2009-10-12 07:56:03 +02:00
|
|
|
/*
|
|
|
|
|
* User specified count overrides default frequency.
|
|
|
|
|
*/
|
|
|
|
|
if (default_interval)
|
|
|
|
|
freq = 0;
|
|
|
|
|
else if (freq) {
|
|
|
|
|
default_interval = freq;
|
|
|
|
|
} else {
|
|
|
|
|
fprintf(stderr, "frequency and count are zero, aborting\n");
|
2010-07-29 14:08:55 -03:00
|
|
|
err = -EINVAL;
|
2011-01-11 22:30:02 -02:00
|
|
|
goto out_free_fd;
|
2009-10-12 07:56:03 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-29 14:08:55 -03:00
|
|
|
err = __cmd_record(argc, argv);
|
|
|
|
|
out_free_fd:
|
2011-01-30 11:59:43 -02:00
|
|
|
perf_evlist__delete_maps(evsel_list);
|
2010-07-30 18:31:28 -03:00
|
|
|
out_symbol_exit:
|
|
|
|
|
symbol__exit();
|
2010-07-29 14:08:55 -03:00
|
|
|
return err;
|
2009-05-26 09:17:18 +02:00
|
|
|
}
|