Commit 9e827dd0 authored by Frederic Weisbecker's avatar Frederic Weisbecker Committed by Ingo Molnar

perf tools: Bring linear set of section headers for features

Build a set of section headers for features right after the
datas. Each implemented feature will have one of such section
header that provides the offset and the size of the data
manipulated by the feature.

The trace informations have moved after the data and are
recorded on exit time.

The new layout is as follows:

 -----------------------
                             ___
 [ magic               ]      |
 [ header size         ]      |
 [ attr size           ]      |
 [ attr content offset ]      |
 [ attr content size   ]      |
 [ data offset         ]  File Headers
 [ data size           ]      |
 [ event_types offset  ]      |
 [ event_types size    ]      |
 [ feature bitmap      ]      v

 [ attr section        ]
 [ events section      ]

                             ___
 [         X           ]      |
 [         X           ]      |
 [         X           ]    Datas
 [         X           ]      |
 [         X           ]      v

                             ___
 [ Feature 1 offset    ]      |
 [ Feature 1 size      ] Features headers
 [ Feature 2 offset    ]      |
 [ Feature 2 size      ]      v

 [ Feature 1 content   ]
 [ Feature 2 content   ]
 -----------------------

We have as many feature's section headers as we have features in
use for the current file.

Say Feat 1 and Feat 3 are used by the file, but not Feat 2. Then
the feature headers will be like follows:

[ Feature 1 offset    ]      |
[ Feature 1 size      ] Features headers
[ Feature 3 offset    ]      |
[ Feature 3 size      ]      v

There is no hole to cover Feature 2 that is not in use here. We
only need to cover the needed headers in order, from the lowest
feature bit to the highest.

Currently we have two features: HEADER_TRACE_INFO and
HEADER_BUILD_ID. Both have their contents that follow the
feature headers. Putting the contents right after the feature
headers is not mandatory though. While we keep the feature
headers right after the data and in order, their offsets can
point everywhere. We have just put the two above feature
contents in the end of the file for convenience.

The purpose of this layout change is to have a file format that
scales while keeping it simple: having such linear feature
headers is less error prone wrt forward/backward compatibility
as the content of a feature can be put anywhere, its location
can even change by the time, it's fine because its headers will
tell where it is. And we know how to find these headers,
following the above rules.
Signed-off-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
LKML-Reference: <1257911467-28276-6-git-send-email-fweisbec@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 3e13ab2d
...@@ -70,18 +70,15 @@ process_event(event_t *event, unsigned long offset, unsigned long head) ...@@ -70,18 +70,15 @@ process_event(event_t *event, unsigned long offset, unsigned long head)
} }
} }
int perf_header__read_build_ids(const struct perf_header *self, int perf_header__read_build_ids(int input, off_t size)
int input, off_t file_size)
{ {
off_t offset = self->data_offset + self->data_size;
struct build_id_event bev; struct build_id_event bev;
char filename[PATH_MAX]; char filename[PATH_MAX];
off_t offset = lseek(input, 0, SEEK_CUR);
off_t limit = offset + size;
int err = -1; int err = -1;
if (lseek(input, offset, SEEK_SET) < 0) while (offset < limit) {
return -1;
while (offset < file_size) {
struct dso *dso; struct dso *dso;
ssize_t len; ssize_t len;
......
...@@ -27,7 +27,6 @@ int mmap_dispatch_perf_file(struct perf_header **pheader, ...@@ -27,7 +27,6 @@ int mmap_dispatch_perf_file(struct perf_header **pheader,
int full_paths, int full_paths,
int *cwdlen, int *cwdlen,
char **cwd); char **cwd);
int perf_header__read_build_ids(const struct perf_header *self, int perf_header__read_build_ids(int input, off_t file_size);
int input, off_t file_size);
#endif #endif
...@@ -186,41 +186,58 @@ static void write_buildid_table(int fd, struct list_head *id_head) ...@@ -186,41 +186,58 @@ static void write_buildid_table(int fd, struct list_head *id_head)
} }
static void static void
perf_header__adds_write(struct perf_header *self, int fd, bool at_exit) perf_header__adds_write(struct perf_header *self, int fd)
{ {
struct perf_file_section trace_sec; LIST_HEAD(id_list);
u64 cur_offset = lseek(fd, 0, SEEK_CUR); int nr_sections;
struct perf_file_section *feat_sec;
int sec_size;
u64 sec_start;
int idx = 0;
if (fetch_build_id_table(&id_list))
perf_header__set_feat(self, HEADER_BUILD_ID);
nr_sections = bitmap_weight(self->adds_features, HEADER_FEAT_BITS);
if (!nr_sections)
return;
feat_sec = calloc(sizeof(*feat_sec), nr_sections);
if (!feat_sec)
die("No memory");
sec_size = sizeof(*feat_sec) * nr_sections;
sec_start = self->data_offset + self->data_size;
lseek(fd, sec_start + sec_size, SEEK_SET);
if (perf_header__has_feat(self, HEADER_TRACE_INFO)) { if (perf_header__has_feat(self, HEADER_TRACE_INFO)) {
struct perf_file_section *trace_sec;
trace_sec = &feat_sec[idx++];
/* Write trace info */ /* Write trace info */
trace_sec.offset = lseek(fd, sizeof(trace_sec), SEEK_CUR); trace_sec->offset = lseek(fd, 0, SEEK_CUR);
read_tracing_data(fd, attrs, nr_counters); read_tracing_data(fd, attrs, nr_counters);
trace_sec.size = lseek(fd, 0, SEEK_CUR) - trace_sec.offset; trace_sec->size = lseek(fd, 0, SEEK_CUR) - trace_sec->offset;
}
/* Write trace info headers */
lseek(fd, cur_offset, SEEK_SET);
do_write(fd, &trace_sec, sizeof(trace_sec));
/* if (perf_header__has_feat(self, HEADER_BUILD_ID)) {
* Update cur_offset. So that other (future) struct perf_file_section *buildid_sec;
* features can set their own infos in this place. But if we are
* the only feature, at least that seeks to the place the data
* should begin.
*/
cur_offset = lseek(fd, trace_sec.offset + trace_sec.size, SEEK_SET);
}
if (at_exit) { buildid_sec = &feat_sec[idx++];
LIST_HEAD(id_list);
if (fetch_build_id_table(&id_list)) { /* Write build-ids */
lseek(fd, self->data_offset + self->data_size, SEEK_SET); buildid_sec->offset = lseek(fd, 0, SEEK_CUR);
perf_header__set_feat(self, HEADER_BUILD_ID);
write_buildid_table(fd, &id_list); write_buildid_table(fd, &id_list);
lseek(fd, cur_offset, SEEK_SET); buildid_sec->size = lseek(fd, 0, SEEK_CUR) - buildid_sec->offset;
} }
}
}; lseek(fd, sec_start, SEEK_SET);
do_write(fd, feat_sec, sec_size);
free(feat_sec);
}
void perf_header__write(struct perf_header *self, int fd, bool at_exit) void perf_header__write(struct perf_header *self, int fd, bool at_exit)
{ {
...@@ -260,10 +277,11 @@ void perf_header__write(struct perf_header *self, int fd, bool at_exit) ...@@ -260,10 +277,11 @@ void perf_header__write(struct perf_header *self, int fd, bool at_exit)
if (events) if (events)
do_write(fd, events, self->event_size); do_write(fd, events, self->event_size);
perf_header__adds_write(self, fd, at_exit);
self->data_offset = lseek(fd, 0, SEEK_CUR); self->data_offset = lseek(fd, 0, SEEK_CUR);
if (at_exit)
perf_header__adds_write(self, fd);
f_header = (struct perf_file_header){ f_header = (struct perf_file_header){
.magic = PERF_MAGIC, .magic = PERF_MAGIC,
.size = sizeof(f_header), .size = sizeof(f_header),
...@@ -308,22 +326,44 @@ static void do_read(int fd, void *buf, size_t size) ...@@ -308,22 +326,44 @@ static void do_read(int fd, void *buf, size_t size)
static void perf_header__adds_read(struct perf_header *self, int fd) static void perf_header__adds_read(struct perf_header *self, int fd)
{ {
struct perf_file_section *feat_sec;
int nr_sections;
int sec_size;
int idx = 0;
nr_sections = bitmap_weight(self->adds_features, HEADER_FEAT_BITS);
if (!nr_sections)
return;
feat_sec = calloc(sizeof(*feat_sec), nr_sections);
if (!feat_sec)
die("No memory");
sec_size = sizeof(*feat_sec) * nr_sections;
lseek(fd, self->data_offset + self->data_size, SEEK_SET);
do_read(fd, feat_sec, sec_size);
if (perf_header__has_feat(self, HEADER_TRACE_INFO)) { if (perf_header__has_feat(self, HEADER_TRACE_INFO)) {
struct perf_file_section trace_sec; struct perf_file_section *trace_sec;
do_read(fd, &trace_sec, sizeof(trace_sec)); trace_sec = &feat_sec[idx++];
lseek(fd, trace_sec.offset, SEEK_SET); lseek(fd, trace_sec->offset, SEEK_SET);
trace_report(fd); trace_report(fd);
lseek(fd, trace_sec.offset + trace_sec.size, SEEK_SET);
} }
if (perf_header__has_feat(self, HEADER_BUILD_ID)) { if (perf_header__has_feat(self, HEADER_BUILD_ID)) {
struct stat input_stat; struct perf_file_section *buildid_sec;
fstat(fd, &input_stat); buildid_sec = &feat_sec[idx++];
if (perf_header__read_build_ids(self, fd, input_stat.st_size)) lseek(fd, buildid_sec->offset, SEEK_SET);
if (perf_header__read_build_ids(fd, buildid_sec->size))
pr_debug("failed to read buildids, continuing...\n"); pr_debug("failed to read buildids, continuing...\n");
} }
free(feat_sec);
}; };
struct perf_header *perf_header__read(int fd) struct perf_header *perf_header__read(int fd)
......
#include "../../../../include/linux/bitmap.h" #include "../../../../include/linux/bitmap.h"
#include "../../../../include/asm-generic/bitops/find.h" #include "../../../../include/asm-generic/bitops/find.h"
#include <linux/errno.h>
#include "../../../../include/linux/ctype.h" #include "../util.h"
...@@ -306,6 +306,7 @@ static inline int has_extension(const char *filename, const char *ext) ...@@ -306,6 +306,7 @@ static inline int has_extension(const char *filename, const char *ext)
#undef isascii #undef isascii
#undef isspace #undef isspace
#undef isdigit #undef isdigit
#undef isxdigit
#undef isalpha #undef isalpha
#undef isprint #undef isprint
#undef isalnum #undef isalnum
...@@ -323,6 +324,8 @@ extern unsigned char sane_ctype[256]; ...@@ -323,6 +324,8 @@ extern unsigned char sane_ctype[256];
#define isascii(x) (((x) & ~0x7f) == 0) #define isascii(x) (((x) & ~0x7f) == 0)
#define isspace(x) sane_istest(x,GIT_SPACE) #define isspace(x) sane_istest(x,GIT_SPACE)
#define isdigit(x) sane_istest(x,GIT_DIGIT) #define isdigit(x) sane_istest(x,GIT_DIGIT)
#define isxdigit(x) \
(sane_istest(toupper(x), GIT_ALPHA | GIT_DIGIT) && toupper(x) < 'G')
#define isalpha(x) sane_istest(x,GIT_ALPHA) #define isalpha(x) sane_istest(x,GIT_ALPHA)
#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT) #define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
#define isprint(x) sane_istest(x,GIT_PRINT) #define isprint(x) sane_istest(x,GIT_PRINT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment