diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-11-03 20:14:27 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-11-04 08:15:53 -0500 |
commit | c00c48fc6e6ef63d83a7417923a06b08089bb34b (patch) | |
tree | 08908b7bc276599a2f25550995040112c18dc78c /tools/perf/util/symbol-elf.c | |
parent | 758008b262f70be41104e4e33ba99181ac03775d (diff) |
perf symbols: Preparation for compressed kernel module support
This patch adds basic support to handle compressed kernel module as some
distro (such as Archlinux) carries on it now. The actual work using
compression library will be added later.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1415063674-17206-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/symbol-elf.c')
-rw-r--r-- | tools/perf/util/symbol-elf.c | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/tools/perf/util/symbol-elf.c b/tools/perf/util/symbol-elf.c index 1e23a5bfb044..efc7eb6b8f0f 100644 --- a/tools/perf/util/symbol-elf.c +++ b/tools/perf/util/symbol-elf.c | |||
@@ -546,6 +546,35 @@ static int dso__swap_init(struct dso *dso, unsigned char eidata) | |||
546 | return 0; | 546 | return 0; |
547 | } | 547 | } |
548 | 548 | ||
549 | static int decompress_kmodule(struct dso *dso, const char *name, | ||
550 | enum dso_binary_type type) | ||
551 | { | ||
552 | int fd; | ||
553 | const char *ext = strrchr(name, '.'); | ||
554 | char tmpbuf[] = "/tmp/perf-kmod-XXXXXX"; | ||
555 | |||
556 | if ((type != DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP && | ||
557 | type != DSO_BINARY_TYPE__GUEST_KMODULE_COMP) || | ||
558 | type != dso->symtab_type) | ||
559 | return -1; | ||
560 | |||
561 | if (!ext || !is_supported_compression(ext + 1)) | ||
562 | return -1; | ||
563 | |||
564 | fd = mkstemp(tmpbuf); | ||
565 | if (fd < 0) | ||
566 | return -1; | ||
567 | |||
568 | if (!decompress_to_file(ext + 1, name, fd)) { | ||
569 | close(fd); | ||
570 | fd = -1; | ||
571 | } | ||
572 | |||
573 | unlink(tmpbuf); | ||
574 | |||
575 | return fd; | ||
576 | } | ||
577 | |||
549 | bool symsrc__possibly_runtime(struct symsrc *ss) | 578 | bool symsrc__possibly_runtime(struct symsrc *ss) |
550 | { | 579 | { |
551 | return ss->dynsym || ss->opdsec; | 580 | return ss->dynsym || ss->opdsec; |
@@ -571,7 +600,11 @@ int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name, | |||
571 | Elf *elf; | 600 | Elf *elf; |
572 | int fd; | 601 | int fd; |
573 | 602 | ||
574 | fd = open(name, O_RDONLY); | 603 | if (dso__needs_decompress(dso)) |
604 | fd = decompress_kmodule(dso, name, type); | ||
605 | else | ||
606 | fd = open(name, O_RDONLY); | ||
607 | |||
575 | if (fd < 0) | 608 | if (fd < 0) |
576 | return -1; | 609 | return -1; |
577 | 610 | ||