2012-01-05 00:54:20 +08:00
|
|
|
#include "../perf.h"
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
#include "util.h"
|
2014-07-15 05:46:48 +08:00
|
|
|
#include "debug.h"
|
2013-12-10 00:14:24 +08:00
|
|
|
#include <api/fs/fs.h>
|
2010-01-16 21:21:15 +08:00
|
|
|
#include <sys/mman.h>
|
2015-11-06 21:55:35 +08:00
|
|
|
#include <sys/utsname.h>
|
2017-04-18 23:26:44 +08:00
|
|
|
#include <dirent.h>
|
2017-04-18 02:23:08 +08:00
|
|
|
#include <inttypes.h>
|
2017-04-20 02:49:18 +08:00
|
|
|
#include <signal.h>
|
2012-08-08 10:32:05 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-12-03 21:09:22 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2013-12-11 20:36:23 +08:00
|
|
|
#include <limits.h>
|
2013-12-11 20:36:32 +08:00
|
|
|
#include <byteswap.h>
|
2013-11-28 18:30:15 +08:00
|
|
|
#include <linux/kernel.h>
|
2016-02-24 19:20:44 +08:00
|
|
|
#include <linux/log2.h>
|
2016-08-06 02:40:30 +08:00
|
|
|
#include <linux/time64.h>
|
2014-08-11 16:50:02 +08:00
|
|
|
#include <unistd.h>
|
2016-01-07 19:41:53 +08:00
|
|
|
#include "strlist.h"
|
2014-10-02 00:00:26 +08:00
|
|
|
|
2012-01-05 00:54:20 +08:00
|
|
|
/*
|
|
|
|
* XXX We need to find a better place for these things...
|
|
|
|
*/
|
2012-10-07 01:57:10 +08:00
|
|
|
unsigned int page_size;
|
2014-05-31 04:10:05 +08:00
|
|
|
int cacheline_size;
|
2012-10-07 01:57:10 +08:00
|
|
|
|
2016-05-17 08:16:54 +08:00
|
|
|
int sysctl_perf_event_max_stack = PERF_MAX_STACK_DEPTH;
|
|
|
|
int sysctl_perf_event_max_contexts_per_stack = PERF_MAX_CONTEXTS_PER_STACK;
|
2016-04-27 21:16:24 +08:00
|
|
|
|
2012-12-14 03:43:04 +08:00
|
|
|
bool test_attr__enabled;
|
|
|
|
|
2012-01-05 00:54:20 +08:00
|
|
|
bool perf_host = true;
|
2012-02-11 01:05:05 +08:00
|
|
|
bool perf_guest = false;
|
2012-01-05 00:54:20 +08:00
|
|
|
|
|
|
|
void event_attr_init(struct perf_event_attr *attr)
|
|
|
|
{
|
|
|
|
if (!perf_host)
|
|
|
|
attr->exclude_host = 1;
|
|
|
|
if (!perf_guest)
|
|
|
|
attr->exclude_guest = 1;
|
2012-02-09 23:12:38 +08:00
|
|
|
/* to capture ABI version */
|
|
|
|
attr->size = sizeof(*attr);
|
2012-01-05 00:54:20 +08:00
|
|
|
}
|
|
|
|
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
int mkdir_p(char *path, mode_t mode)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
int err;
|
|
|
|
char *d = path;
|
|
|
|
|
|
|
|
if (*d != '/')
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (stat(path, &st) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (*++d == '/');
|
|
|
|
|
|
|
|
while ((d = strchr(d, '/'))) {
|
|
|
|
*d = '\0';
|
|
|
|
err = stat(path, &st) && mkdir(path, mode);
|
|
|
|
*d++ = '/';
|
|
|
|
if (err)
|
|
|
|
return -1;
|
|
|
|
while (*d == '/')
|
|
|
|
++d;
|
|
|
|
}
|
|
|
|
return (stat(path, &st) && mkdir(path, mode)) ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
2017-01-27 05:19:59 +08:00
|
|
|
int rm_rf(const char *path)
|
2015-05-18 08:30:17 +08:00
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
int ret = 0;
|
|
|
|
struct dirent *d;
|
|
|
|
char namebuf[PATH_MAX];
|
|
|
|
|
|
|
|
dir = opendir(path);
|
|
|
|
if (dir == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while ((d = readdir(dir)) != NULL && !ret) {
|
|
|
|
struct stat statbuf;
|
|
|
|
|
|
|
|
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
scnprintf(namebuf, sizeof(namebuf), "%s/%s",
|
|
|
|
path, d->d_name);
|
|
|
|
|
2016-06-08 17:29:11 +08:00
|
|
|
/* We have to check symbolic link itself */
|
|
|
|
ret = lstat(namebuf, &statbuf);
|
2015-05-18 08:30:17 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
pr_debug("stat failed: %s\n", namebuf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-06-08 17:29:11 +08:00
|
|
|
if (S_ISDIR(statbuf.st_mode))
|
2015-05-18 08:30:17 +08:00
|
|
|
ret = rm_rf(namebuf);
|
2016-06-08 17:29:11 +08:00
|
|
|
else
|
|
|
|
ret = unlink(namebuf);
|
2015-05-18 08:30:17 +08:00
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return rmdir(path);
|
|
|
|
}
|
|
|
|
|
2016-04-26 17:02:42 +08:00
|
|
|
/* A filter which removes dot files */
|
|
|
|
bool lsdir_no_dot_filter(const char *name __maybe_unused, struct dirent *d)
|
|
|
|
{
|
|
|
|
return d->d_name[0] != '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lsdir reads a directory and store it in strlist */
|
|
|
|
struct strlist *lsdir(const char *name,
|
|
|
|
bool (*filter)(const char *, struct dirent *))
|
|
|
|
{
|
|
|
|
struct strlist *list = NULL;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *d;
|
|
|
|
|
|
|
|
dir = opendir(name);
|
|
|
|
if (!dir)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
list = strlist__new(NULL, NULL);
|
|
|
|
if (!list) {
|
2016-05-11 21:51:27 +08:00
|
|
|
errno = ENOMEM;
|
2016-04-26 17:02:42 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((d = readdir(dir)) != NULL) {
|
|
|
|
if (!filter || filter(name, d))
|
|
|
|
strlist__add(list, d->d_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
closedir(dir);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2015-06-08 22:50:16 +08:00
|
|
|
static int slow_copyfile(const char *from, const char *to)
|
2010-01-15 04:30:06 +08:00
|
|
|
{
|
2013-10-14 18:43:41 +08:00
|
|
|
int err = -1;
|
2010-01-15 04:30:06 +08:00
|
|
|
char *line = NULL;
|
|
|
|
size_t n;
|
|
|
|
FILE *from_fp = fopen(from, "r"), *to_fp;
|
|
|
|
|
|
|
|
if (from_fp == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
to_fp = fopen(to, "w");
|
|
|
|
if (to_fp == NULL)
|
|
|
|
goto out_fclose_from;
|
|
|
|
|
|
|
|
while (getline(&line, &n, from_fp) > 0)
|
|
|
|
if (fputs(line, to_fp) == EOF)
|
|
|
|
goto out_fclose_to;
|
|
|
|
err = 0;
|
|
|
|
out_fclose_to:
|
|
|
|
fclose(to_fp);
|
|
|
|
free(line);
|
|
|
|
out_fclose_from:
|
|
|
|
fclose(from_fp);
|
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-05-18 08:30:18 +08:00
|
|
|
int copyfile_offset(int ifd, loff_t off_in, int ofd, loff_t off_out, u64 size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
loff_t pgoff;
|
|
|
|
|
|
|
|
pgoff = off_in & ~(page_size - 1);
|
|
|
|
off_in -= pgoff;
|
|
|
|
|
|
|
|
ptr = mmap(NULL, off_in + size, PROT_READ, MAP_PRIVATE, ifd, pgoff);
|
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while (size) {
|
|
|
|
ssize_t ret = pwrite(ofd, ptr + off_in, size, off_out);
|
|
|
|
if (ret < 0 && errno == EINTR)
|
|
|
|
continue;
|
|
|
|
if (ret <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
size -= ret;
|
|
|
|
off_in += ret;
|
|
|
|
off_out -= ret;
|
|
|
|
}
|
|
|
|
munmap(ptr, off_in + size);
|
|
|
|
|
|
|
|
return size ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
2013-10-14 18:43:41 +08:00
|
|
|
int copyfile_mode(const char *from, const char *to, mode_t mode)
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
{
|
|
|
|
int fromfd, tofd;
|
|
|
|
struct stat st;
|
|
|
|
int err = -1;
|
2015-06-08 22:50:16 +08:00
|
|
|
char *tmp = NULL, *ptr = NULL;
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
|
|
|
|
if (stat(from, &st))
|
|
|
|
goto out;
|
|
|
|
|
2015-06-08 22:50:16 +08:00
|
|
|
/* extra 'x' at the end is to reserve space for '.' */
|
|
|
|
if (asprintf(&tmp, "%s.XXXXXXx", to) < 0) {
|
|
|
|
tmp = NULL;
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
goto out;
|
2015-06-08 22:50:16 +08:00
|
|
|
}
|
|
|
|
ptr = strrchr(tmp, '/');
|
|
|
|
if (!ptr)
|
|
|
|
goto out;
|
|
|
|
ptr = memmove(ptr + 1, ptr, strlen(ptr) - 1);
|
|
|
|
*ptr = '.';
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
|
2015-06-08 22:50:16 +08:00
|
|
|
tofd = mkstemp(tmp);
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
if (tofd < 0)
|
2015-06-08 22:50:16 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (fchmod(tofd, mode))
|
|
|
|
goto out_close_to;
|
|
|
|
|
|
|
|
if (st.st_size == 0) { /* /proc? do it slowly... */
|
|
|
|
err = slow_copyfile(from, tmp);
|
|
|
|
goto out_close_to;
|
|
|
|
}
|
|
|
|
|
|
|
|
fromfd = open(from, O_RDONLY);
|
|
|
|
if (fromfd < 0)
|
|
|
|
goto out_close_to;
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
|
2015-05-18 08:30:18 +08:00
|
|
|
err = copyfile_offset(fromfd, 0, tofd, 0, st.st_size);
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
|
|
|
|
close(fromfd);
|
2015-06-08 22:50:16 +08:00
|
|
|
out_close_to:
|
|
|
|
close(tofd);
|
|
|
|
if (!err)
|
|
|
|
err = link(tmp, to);
|
|
|
|
unlink(tmp);
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
out:
|
2015-06-08 22:50:16 +08:00
|
|
|
free(tmp);
|
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like
hierarchy, so that at the end of a 'perf record' session all the
binaries (with build-ids) involved get collected and indexed by
their build-ids, so that perf report can find them.
This is interesting when developing software where you want to
do a 'perf diff' with the previous build and opens avenues for
lots more interesting tools, like a 'perf diff --graph' that
takes more than two binaries into account.
Tunables for collecting just the symtabs can be added if one
doesn't want to have the full binary, but having the full binary
allows things like 'perf rerecord' or other tools that can
re-run the tests by having access to the exact binary in some
perf.data file, so it may well be interesting to keep the full
binary there.
Space consumption is minimised by trying to use hard links, a
'perf cache' tool to manage the space used, a la ccache is
required to purge older entries.
With this in place it will be possible also to introduce new
commands, 'perf archive' and 'perf restore' (or some more
suitable and future proof names) to create a cpio/tar file with
the perf data and the files in the cache that _had_ perf hits of
interest.
There are more aspects to polish, like finding the right vmlinux
file to cache, etc, but this is enough for a first step.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-28 07:37:06 +08:00
|
|
|
return err;
|
|
|
|
}
|
2010-05-15 01:19:35 +08:00
|
|
|
|
2013-10-14 18:43:41 +08:00
|
|
|
int copyfile(const char *from, const char *to)
|
|
|
|
{
|
|
|
|
return copyfile_mode(from, to, 0755);
|
|
|
|
}
|
|
|
|
|
2013-11-28 18:30:16 +08:00
|
|
|
static ssize_t ion(bool is_read, int fd, void *buf, size_t n)
|
2011-01-04 02:50:55 +08:00
|
|
|
{
|
|
|
|
void *buf_start = buf;
|
2013-11-28 18:30:15 +08:00
|
|
|
size_t left = n;
|
2011-01-04 02:50:55 +08:00
|
|
|
|
2013-11-28 18:30:15 +08:00
|
|
|
while (left) {
|
2013-11-28 18:30:16 +08:00
|
|
|
ssize_t ret = is_read ? read(fd, buf, left) :
|
|
|
|
write(fd, buf, left);
|
2011-01-04 02:50:55 +08:00
|
|
|
|
2014-04-24 21:27:32 +08:00
|
|
|
if (ret < 0 && errno == EINTR)
|
|
|
|
continue;
|
2011-01-04 02:50:55 +08:00
|
|
|
if (ret <= 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-11-28 18:30:15 +08:00
|
|
|
left -= ret;
|
|
|
|
buf += ret;
|
2011-01-04 02:50:55 +08:00
|
|
|
}
|
|
|
|
|
2013-11-28 18:30:15 +08:00
|
|
|
BUG_ON((size_t)(buf - buf_start) != n);
|
|
|
|
return n;
|
2011-01-04 02:50:55 +08:00
|
|
|
}
|
2012-04-20 00:15:24 +08:00
|
|
|
|
2013-11-28 18:30:16 +08:00
|
|
|
/*
|
|
|
|
* Read exactly 'n' bytes or return an error.
|
|
|
|
*/
|
|
|
|
ssize_t readn(int fd, void *buf, size_t n)
|
|
|
|
{
|
|
|
|
return ion(true, fd, buf, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write exactly 'n' bytes or return an error.
|
|
|
|
*/
|
|
|
|
ssize_t writen(int fd, void *buf, size_t n)
|
|
|
|
{
|
|
|
|
return ion(false, fd, buf, n);
|
|
|
|
}
|
|
|
|
|
2012-04-20 00:15:24 +08:00
|
|
|
size_t hex_width(u64 v)
|
|
|
|
{
|
|
|
|
size_t n = 1;
|
|
|
|
|
|
|
|
while ((v >>= 4))
|
|
|
|
++n;
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
2012-08-08 10:32:05 +08:00
|
|
|
|
2012-10-28 05:18:30 +08:00
|
|
|
static int hex(char ch)
|
|
|
|
{
|
|
|
|
if ((ch >= '0') && (ch <= '9'))
|
|
|
|
return ch - '0';
|
|
|
|
if ((ch >= 'a') && (ch <= 'f'))
|
|
|
|
return ch - 'a' + 10;
|
|
|
|
if ((ch >= 'A') && (ch <= 'F'))
|
|
|
|
return ch - 'A' + 10;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* While we find nice hex chars, build a long_val.
|
|
|
|
* Return number of chars processed.
|
|
|
|
*/
|
|
|
|
int hex2u64(const char *ptr, u64 *long_val)
|
|
|
|
{
|
|
|
|
const char *p = ptr;
|
|
|
|
*long_val = 0;
|
|
|
|
|
|
|
|
while (*p) {
|
|
|
|
const int hex_val = hex(*p);
|
|
|
|
|
|
|
|
if (hex_val < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
*long_val = (*long_val << 4) | hex_val;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return p - ptr;
|
|
|
|
}
|
|
|
|
|
2013-09-01 18:36:13 +08:00
|
|
|
unsigned long parse_tag_value(const char *str, struct parse_tag *tags)
|
|
|
|
{
|
|
|
|
struct parse_tag *i = tags;
|
|
|
|
|
|
|
|
while (i->tag) {
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
s = strchr(str, i->tag);
|
|
|
|
if (s) {
|
|
|
|
unsigned long int value;
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
value = strtoul(str, &endptr, 10);
|
|
|
|
if (s != endptr)
|
|
|
|
break;
|
|
|
|
|
2013-10-22 15:34:17 +08:00
|
|
|
if (value > ULONG_MAX / i->mult)
|
|
|
|
break;
|
2013-09-01 18:36:13 +08:00
|
|
|
value *= i->mult;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (unsigned long) -1;
|
|
|
|
}
|
2013-10-18 03:33:43 +08:00
|
|
|
|
2013-12-11 20:36:23 +08:00
|
|
|
int perf_event_paranoid(void)
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
|
2014-12-12 00:37:59 +08:00
|
|
|
if (sysctl__read_int("kernel/perf_event_paranoid", &value))
|
2013-12-11 20:36:23 +08:00
|
|
|
return INT_MAX;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2013-12-11 20:36:32 +08:00
|
|
|
|
|
|
|
void mem_bswap_32(void *src, int byte_size)
|
|
|
|
{
|
|
|
|
u32 *m = src;
|
|
|
|
while (byte_size > 0) {
|
|
|
|
*m = bswap_32(*m);
|
|
|
|
byte_size -= sizeof(u32);
|
|
|
|
++m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mem_bswap_64(void *src, int byte_size)
|
|
|
|
{
|
|
|
|
u64 *m = src;
|
|
|
|
|
|
|
|
while (byte_size > 0) {
|
|
|
|
*m = bswap_64(*m);
|
|
|
|
byte_size -= sizeof(u64);
|
|
|
|
++m;
|
|
|
|
}
|
|
|
|
}
|
2014-08-01 23:46:54 +08:00
|
|
|
|
|
|
|
bool find_process(const char *name)
|
|
|
|
{
|
|
|
|
size_t len = strlen(name);
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *d;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
dir = opendir(procfs__mountpoint());
|
|
|
|
if (!dir)
|
2015-09-17 18:08:53 +08:00
|
|
|
return false;
|
2014-08-01 23:46:54 +08:00
|
|
|
|
|
|
|
/* Walk through the directory. */
|
|
|
|
while (ret && (d = readdir(dir)) != NULL) {
|
|
|
|
char path[PATH_MAX];
|
|
|
|
char *data;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
if ((d->d_type != DT_DIR) ||
|
|
|
|
!strcmp(".", d->d_name) ||
|
|
|
|
!strcmp("..", d->d_name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
scnprintf(path, sizeof(path), "%s/%s/comm",
|
|
|
|
procfs__mountpoint(), d->d_name);
|
|
|
|
|
|
|
|
if (filename__read_str(path, &data, &size))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = strncmp(name, data, len);
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
return ret ? false : true;
|
|
|
|
}
|
2015-11-06 21:55:35 +08:00
|
|
|
|
2016-11-15 12:05:44 +08:00
|
|
|
static int
|
|
|
|
fetch_ubuntu_kernel_version(unsigned int *puint)
|
|
|
|
{
|
|
|
|
ssize_t len;
|
|
|
|
size_t line_len = 0;
|
|
|
|
char *ptr, *line = NULL;
|
|
|
|
int version, patchlevel, sublevel, err;
|
|
|
|
FILE *vsig = fopen("/proc/version_signature", "r");
|
|
|
|
|
|
|
|
if (!vsig) {
|
|
|
|
pr_debug("Open /proc/version_signature failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = getline(&line, &line_len, vsig);
|
|
|
|
fclose(vsig);
|
|
|
|
err = -1;
|
|
|
|
if (len <= 0) {
|
|
|
|
pr_debug("Reading from /proc/version_signature failed: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = strrchr(line, ' ');
|
|
|
|
if (!ptr) {
|
|
|
|
pr_debug("Parsing /proc/version_signature failed: %s\n", line);
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sscanf(ptr + 1, "%d.%d.%d",
|
|
|
|
&version, &patchlevel, &sublevel);
|
|
|
|
if (err != 3) {
|
|
|
|
pr_debug("Unable to get kernel version from /proc/version_signature '%s'\n",
|
|
|
|
line);
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (puint)
|
|
|
|
*puint = (version << 16) + (patchlevel << 8) + sublevel;
|
|
|
|
err = 0;
|
|
|
|
errout:
|
|
|
|
free(line);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-11-06 21:55:35 +08:00
|
|
|
int
|
|
|
|
fetch_kernel_version(unsigned int *puint, char *str,
|
|
|
|
size_t str_size)
|
|
|
|
{
|
|
|
|
struct utsname utsname;
|
|
|
|
int version, patchlevel, sublevel, err;
|
2016-11-15 12:05:44 +08:00
|
|
|
bool int_ver_ready = false;
|
|
|
|
|
|
|
|
if (access("/proc/version_signature", R_OK) == 0)
|
|
|
|
if (!fetch_ubuntu_kernel_version(puint))
|
|
|
|
int_ver_ready = true;
|
2015-11-06 21:55:35 +08:00
|
|
|
|
|
|
|
if (uname(&utsname))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (str && str_size) {
|
|
|
|
strncpy(str, utsname.release, str_size);
|
|
|
|
str[str_size - 1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sscanf(utsname.release, "%d.%d.%d",
|
|
|
|
&version, &patchlevel, &sublevel);
|
|
|
|
|
|
|
|
if (err != 3) {
|
2016-11-15 12:05:44 +08:00
|
|
|
pr_debug("Unable to get kernel version from uname '%s'\n",
|
2015-11-06 21:55:35 +08:00
|
|
|
utsname.release);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-11-15 12:05:44 +08:00
|
|
|
if (puint && !int_ver_ready)
|
2015-11-06 21:55:35 +08:00
|
|
|
*puint = (version << 16) + (patchlevel << 8) + sublevel;
|
|
|
|
return 0;
|
|
|
|
}
|
2016-01-07 19:41:53 +08:00
|
|
|
|
|
|
|
const char *perf_tip(const char *dirpath)
|
|
|
|
{
|
|
|
|
struct strlist *tips;
|
|
|
|
struct str_node *node;
|
|
|
|
char *tip = NULL;
|
|
|
|
struct strlist_config conf = {
|
2016-01-09 18:16:29 +08:00
|
|
|
.dirname = dirpath,
|
|
|
|
.file_only = true,
|
2016-01-07 19:41:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
tips = strlist__new("tips.txt", &conf);
|
2016-01-09 18:16:29 +08:00
|
|
|
if (tips == NULL)
|
2017-04-12 14:49:16 +08:00
|
|
|
return errno == ENOENT ? NULL :
|
|
|
|
"Tip: check path of tips.txt or get more memory! ;-p";
|
2016-01-09 18:16:29 +08:00
|
|
|
|
|
|
|
if (strlist__nr_entries(tips) == 0)
|
2016-01-07 19:41:53 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
node = strlist__entry(tips, random() % strlist__nr_entries(tips));
|
|
|
|
if (asprintf(&tip, "Tip: %s", node->s) < 0)
|
|
|
|
tip = (char *)"Tip: get more memory! ;-)";
|
|
|
|
|
|
|
|
out:
|
|
|
|
strlist__delete(tips);
|
|
|
|
|
|
|
|
return tip;
|
|
|
|
}
|