Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * The struct perf_event_attr test support. |
| 3 | * |
| 4 | * This test is embedded inside into perf directly and is governed |
| 5 | * by the PERF_TEST_ATTR environment variable and hook inside |
| 6 | * sys_perf_event_open function. |
| 7 | * |
| 8 | * The general idea is to store 'struct perf_event_attr' details for |
| 9 | * each event created within single perf command. Each event details |
| 10 | * are stored into separate text file. Once perf command is finished |
| 11 | * these files can be checked for values we expect for command. |
| 12 | * |
| 13 | * Besides 'struct perf_event_attr' values we also store 'fd' and |
| 14 | * 'group_fd' values to allow checking for groups created. |
| 15 | * |
| 16 | * This all is triggered by setting PERF_TEST_ATTR environment variable. |
| 17 | * It must contain name of existing directory with access and write |
| 18 | * permissions. All the event text files are stored there. |
| 19 | */ |
| 20 | |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 21 | #include <errno.h> |
Arnaldo Carvalho de Melo | fd20e81 | 2017-04-17 15:23:08 -0300 | [diff] [blame] | 22 | #include <inttypes.h> |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 23 | #include <stdlib.h> |
| 24 | #include <stdio.h> |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 25 | #include <linux/types.h> |
| 26 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | 391e420 | 2017-04-19 18:51:14 -0300 | [diff] [blame^] | 27 | #include <sys/param.h> |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 28 | #include "../perf.h" |
| 29 | #include "util.h" |
Josh Poimboeuf | 4b6ab94 | 2015-12-15 09:39:39 -0600 | [diff] [blame] | 30 | #include <subcmd/exec-cmd.h> |
Jiri Olsa | c81251e | 2012-11-10 01:46:51 +0100 | [diff] [blame] | 31 | #include "tests.h" |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 32 | |
| 33 | #define ENV "PERF_TEST_ATTR" |
| 34 | |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 35 | extern int verbose; |
| 36 | |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 37 | static char *dir; |
| 38 | |
| 39 | void test_attr__init(void) |
| 40 | { |
| 41 | dir = getenv(ENV); |
| 42 | test_attr__enabled = (dir != NULL); |
| 43 | } |
| 44 | |
| 45 | #define BUFSIZE 1024 |
| 46 | |
Jiri Olsa | 89f552d | 2012-11-05 16:49:37 +0100 | [diff] [blame] | 47 | #define __WRITE_ASS(str, fmt, data) \ |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 48 | do { \ |
| 49 | char buf[BUFSIZE]; \ |
| 50 | size_t size; \ |
| 51 | \ |
| 52 | size = snprintf(buf, BUFSIZE, #str "=%"fmt "\n", data); \ |
| 53 | if (1 != fwrite(buf, size, 1, file)) { \ |
| 54 | perror("test attr - failed to write event file"); \ |
| 55 | fclose(file); \ |
| 56 | return -1; \ |
| 57 | } \ |
| 58 | \ |
| 59 | } while (0) |
| 60 | |
Jiri Olsa | 89f552d | 2012-11-05 16:49:37 +0100 | [diff] [blame] | 61 | #define WRITE_ASS(field, fmt) __WRITE_ASS(field, fmt, attr->field) |
| 62 | |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 63 | static int store_event(struct perf_event_attr *attr, pid_t pid, int cpu, |
| 64 | int fd, int group_fd, unsigned long flags) |
| 65 | { |
| 66 | FILE *file; |
| 67 | char path[PATH_MAX]; |
| 68 | |
| 69 | snprintf(path, PATH_MAX, "%s/event-%d-%llu-%d", dir, |
| 70 | attr->type, attr->config, fd); |
| 71 | |
| 72 | file = fopen(path, "w+"); |
| 73 | if (!file) { |
| 74 | perror("test attr - failed to open event file"); |
| 75 | return -1; |
| 76 | } |
| 77 | |
| 78 | if (fprintf(file, "[event-%d-%llu-%d]\n", |
| 79 | attr->type, attr->config, fd) < 0) { |
| 80 | perror("test attr - failed to write event file"); |
| 81 | fclose(file); |
| 82 | return -1; |
| 83 | } |
| 84 | |
| 85 | /* syscall arguments */ |
Jiri Olsa | 89f552d | 2012-11-05 16:49:37 +0100 | [diff] [blame] | 86 | __WRITE_ASS(fd, "d", fd); |
| 87 | __WRITE_ASS(group_fd, "d", group_fd); |
| 88 | __WRITE_ASS(cpu, "d", cpu); |
| 89 | __WRITE_ASS(pid, "d", pid); |
| 90 | __WRITE_ASS(flags, "lu", flags); |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 91 | |
| 92 | /* struct perf_event_attr */ |
Jiri Olsa | 89f552d | 2012-11-05 16:49:37 +0100 | [diff] [blame] | 93 | WRITE_ASS(type, PRIu32); |
| 94 | WRITE_ASS(size, PRIu32); |
| 95 | WRITE_ASS(config, "llu"); |
| 96 | WRITE_ASS(sample_period, "llu"); |
| 97 | WRITE_ASS(sample_type, "llu"); |
| 98 | WRITE_ASS(read_format, "llu"); |
| 99 | WRITE_ASS(disabled, "d"); |
| 100 | WRITE_ASS(inherit, "d"); |
| 101 | WRITE_ASS(pinned, "d"); |
| 102 | WRITE_ASS(exclusive, "d"); |
| 103 | WRITE_ASS(exclude_user, "d"); |
| 104 | WRITE_ASS(exclude_kernel, "d"); |
| 105 | WRITE_ASS(exclude_hv, "d"); |
| 106 | WRITE_ASS(exclude_idle, "d"); |
| 107 | WRITE_ASS(mmap, "d"); |
| 108 | WRITE_ASS(comm, "d"); |
| 109 | WRITE_ASS(freq, "d"); |
| 110 | WRITE_ASS(inherit_stat, "d"); |
| 111 | WRITE_ASS(enable_on_exec, "d"); |
| 112 | WRITE_ASS(task, "d"); |
Jiri Olsa | 45e4089 | 2012-11-05 16:49:38 +0100 | [diff] [blame] | 113 | WRITE_ASS(watermark, "d"); |
Jiri Olsa | 89f552d | 2012-11-05 16:49:37 +0100 | [diff] [blame] | 114 | WRITE_ASS(precise_ip, "d"); |
| 115 | WRITE_ASS(mmap_data, "d"); |
| 116 | WRITE_ASS(sample_id_all, "d"); |
| 117 | WRITE_ASS(exclude_host, "d"); |
| 118 | WRITE_ASS(exclude_guest, "d"); |
| 119 | WRITE_ASS(exclude_callchain_kernel, "d"); |
| 120 | WRITE_ASS(exclude_callchain_user, "d"); |
| 121 | WRITE_ASS(wakeup_events, PRIu32); |
| 122 | WRITE_ASS(bp_type, PRIu32); |
| 123 | WRITE_ASS(config1, "llu"); |
| 124 | WRITE_ASS(config2, "llu"); |
| 125 | WRITE_ASS(branch_sample_type, "llu"); |
| 126 | WRITE_ASS(sample_regs_user, "llu"); |
| 127 | WRITE_ASS(sample_stack_user, PRIu32); |
| 128 | |
Jiri Olsa | 52502bf | 2012-10-31 15:52:47 +0100 | [diff] [blame] | 129 | fclose(file); |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, |
| 134 | int fd, int group_fd, unsigned long flags) |
| 135 | { |
| 136 | int errno_saved = errno; |
| 137 | |
| 138 | if (store_event(attr, pid, cpu, fd, group_fd, flags)) |
| 139 | die("test attr FAILED"); |
| 140 | |
| 141 | errno = errno_saved; |
| 142 | } |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 143 | |
| 144 | static int run_dir(const char *d, const char *perf) |
| 145 | { |
Jiri Olsa | 097c875 | 2013-02-25 10:52:49 +0100 | [diff] [blame] | 146 | char v[] = "-vvvvv"; |
| 147 | int vcnt = min(verbose, (int) sizeof(v) - 1); |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 148 | char cmd[3*PATH_MAX]; |
| 149 | |
Namhyung Kim | bb963e1 | 2017-02-17 17:17:38 +0900 | [diff] [blame] | 150 | if (verbose > 0) |
Jiri Olsa | 097c875 | 2013-02-25 10:52:49 +0100 | [diff] [blame] | 151 | vcnt++; |
| 152 | |
| 153 | snprintf(cmd, 3*PATH_MAX, PYTHON " %s/attr.py -d %s/attr/ -p %s %.*s", |
| 154 | d, d, perf, vcnt, v); |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 155 | |
| 156 | return system(cmd); |
| 157 | } |
| 158 | |
Arnaldo Carvalho de Melo | 721a1f5 | 2015-11-19 12:01:48 -0300 | [diff] [blame] | 159 | int test__attr(int subtest __maybe_unused) |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 160 | { |
| 161 | struct stat st; |
| 162 | char path_perf[PATH_MAX]; |
| 163 | char path_dir[PATH_MAX]; |
| 164 | |
| 165 | /* First try developement tree tests. */ |
| 166 | if (!lstat("./tests", &st)) |
| 167 | return run_dir("./tests", "./perf"); |
| 168 | |
| 169 | /* Then installed path. */ |
Josh Poimboeuf | 46113a5 | 2015-12-15 09:39:37 -0600 | [diff] [blame] | 170 | snprintf(path_dir, PATH_MAX, "%s/tests", get_argv_exec_path()); |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 171 | snprintf(path_perf, PATH_MAX, "%s/perf", BINDIR); |
| 172 | |
| 173 | if (!lstat(path_dir, &st) && |
| 174 | !lstat(path_perf, &st)) |
| 175 | return run_dir(path_dir, path_perf); |
| 176 | |
Wang Nan | 597bdeb | 2015-11-03 10:44:42 +0000 | [diff] [blame] | 177 | return TEST_SKIP; |
Jiri Olsa | d898b24 | 2012-10-30 23:02:05 +0100 | [diff] [blame] | 178 | } |