Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338938
b: refs/heads/master
c: 52502bf
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Olsa authored and Arnaldo Carvalho de Melo committed Oct 31, 2012
1 parent b66debe commit 6cfda02
Show file tree
Hide file tree
Showing 6 changed files with 471 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 945aea220bb8f4bb37950549cc0b93bbec24c460
refs/heads/master: 52502bf201a85b5b51a384037a002d0b39093df0
1 change: 1 addition & 0 deletions trunk/tools/perf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ LIB_OBJS += $(OUTPUT)arch/common.o

LIB_OBJS += $(OUTPUT)tests/parse-events.o
LIB_OBJS += $(OUTPUT)tests/dso-data.o
LIB_OBJS += $(OUTPUT)tests/attr.o

BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o
BUILTIN_OBJS += $(OUTPUT)builtin-bench.o
Expand Down
2 changes: 2 additions & 0 deletions trunk/tools/perf/perf.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,8 @@ int main(int argc, const char **argv)
}
cmd = argv[0];

test_attr__init();

/*
* We use PATH to find perf commands, but we prepend some higher
* precedence paths: the "--exec-path" option, the PERF_EXEC_PATH
Expand Down
16 changes: 14 additions & 2 deletions trunk/tools/perf/perf.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,25 @@ static inline unsigned long long rdclock(void)
(void) (&_min1 == &_min2); \
_min1 < _min2 ? _min1 : _min2; })

extern bool test_attr__enabled;
void test_attr__init(void);
void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu,
int fd, int group_fd, unsigned long flags);

static inline int
sys_perf_event_open(struct perf_event_attr *attr,
pid_t pid, int cpu, int group_fd,
unsigned long flags)
{
return syscall(__NR_perf_event_open, attr, pid, cpu,
group_fd, flags);
int fd;

fd = syscall(__NR_perf_event_open, attr, pid, cpu,
group_fd, flags);

if (unlikely(test_attr__enabled))
test_attr__open(attr, pid, cpu, fd, group_fd, flags);

return fd;
}

#define MAX_COUNTERS 256
Expand Down
140 changes: 140 additions & 0 deletions trunk/tools/perf/tests/attr.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@

/*
* The struct perf_event_attr test support.
*
* This test is embedded inside into perf directly and is governed
* by the PERF_TEST_ATTR environment variable and hook inside
* sys_perf_event_open function.
*
* The general idea is to store 'struct perf_event_attr' details for
* each event created within single perf command. Each event details
* are stored into separate text file. Once perf command is finished
* these files can be checked for values we expect for command.
*
* Besides 'struct perf_event_attr' values we also store 'fd' and
* 'group_fd' values to allow checking for groups created.
*
* This all is triggered by setting PERF_TEST_ATTR environment variable.
* It must contain name of existing directory with access and write
* permissions. All the event text files are stored there.
*/

#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include "../perf.h"
#include "util.h"

#define ENV "PERF_TEST_ATTR"

bool test_attr__enabled;

static char *dir;

void test_attr__init(void)
{
dir = getenv(ENV);
test_attr__enabled = (dir != NULL);
}

#define BUFSIZE 1024

#define WRITE_ASS(str, fmt, data) \
do { \
char buf[BUFSIZE]; \
size_t size; \
\
size = snprintf(buf, BUFSIZE, #str "=%"fmt "\n", data); \
if (1 != fwrite(buf, size, 1, file)) { \
perror("test attr - failed to write event file"); \
fclose(file); \
return -1; \
} \
\
} while (0)

static int store_event(struct perf_event_attr *attr, pid_t pid, int cpu,
int fd, int group_fd, unsigned long flags)
{
FILE *file;
char path[PATH_MAX];

snprintf(path, PATH_MAX, "%s/event-%d-%llu-%d", dir,
attr->type, attr->config, fd);

file = fopen(path, "w+");
if (!file) {
perror("test attr - failed to open event file");
return -1;
}

if (fprintf(file, "[event-%d-%llu-%d]\n",
attr->type, attr->config, fd) < 0) {
perror("test attr - failed to write event file");
fclose(file);
return -1;
}

/* syscall arguments */
WRITE_ASS(fd, "d", fd);
WRITE_ASS(group_fd, "d", group_fd);
WRITE_ASS(cpu, "d", cpu);
WRITE_ASS(pid, "d", pid);
WRITE_ASS(flags, "lu", flags);

/* struct perf_event_attr */
WRITE_ASS(type, PRIu32, attr->type);
WRITE_ASS(size, PRIu32, attr->size);
WRITE_ASS(config, "llu", attr->config);
WRITE_ASS(sample_period, "llu", attr->sample_period);
WRITE_ASS(sample_type, "llu", attr->sample_type);
WRITE_ASS(read_format, "llu", attr->read_format);
WRITE_ASS(disabled, "d", attr->disabled);
WRITE_ASS(inherit, "d", attr->inherit);
WRITE_ASS(pinned, "d", attr->pinned);
WRITE_ASS(exclusive, "d", attr->exclusive);
WRITE_ASS(exclude_user, "d", attr->exclude_user);
WRITE_ASS(exclude_kernel, "d", attr->exclude_kernel);
WRITE_ASS(exclude_hv, "d", attr->exclude_hv);
WRITE_ASS(exclude_idle, "d", attr->exclude_idle);
WRITE_ASS(mmap, "d", attr->mmap);
WRITE_ASS(comm, "d", attr->comm);
WRITE_ASS(freq, "d", attr->freq);
WRITE_ASS(inherit_stat, "d", attr->inherit_stat);
WRITE_ASS(enable_on_exec, "d", attr->enable_on_exec);
WRITE_ASS(task, "d", attr->task);
WRITE_ASS(watermask, "d", attr->watermark);
WRITE_ASS(precise_ip, "d", attr->precise_ip);
WRITE_ASS(mmap_data, "d", attr->mmap_data);
WRITE_ASS(sample_id_all, "d", attr->sample_id_all);
WRITE_ASS(exclude_host, "d", attr->exclude_host);
WRITE_ASS(exclude_guest, "d", attr->exclude_guest);
WRITE_ASS(exclude_callchain_kernel, "d",
attr->exclude_callchain_kernel);
WRITE_ASS(exclude_callchain_user, "d",
attr->exclude_callchain_user);
WRITE_ASS(wakeup_events, PRIu32, attr->wakeup_events);
WRITE_ASS(bp_type, PRIu32, attr->bp_type);
WRITE_ASS(config1, "llu", attr->config1);
WRITE_ASS(config2, "llu", attr->config2);
WRITE_ASS(branch_sample_type, "llu", attr->branch_sample_type);
WRITE_ASS(sample_regs_user, "llu", attr->sample_regs_user);
WRITE_ASS(sample_stack_user, PRIu32, attr->sample_stack_user);
WRITE_ASS(optional, "d", 0);

fclose(file);
return 0;
}

void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu,
int fd, int group_fd, unsigned long flags)
{
int errno_saved = errno;

if (store_event(attr, pid, cpu, fd, group_fd, flags))
die("test attr FAILED");

errno = errno_saved;
}
Loading

0 comments on commit 6cfda02

Please sign in to comment.