Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1 | #include "builtin.h" |
| 2 | |
Andrea Gelmini | b7eead8 | 2010-08-05 15:51:38 +0200 | [diff] [blame] | 3 | #include "perf.h" |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 4 | #include "util/cache.h" |
Andrea Gelmini | b7eead8 | 2010-08-05 15:51:38 +0200 | [diff] [blame] | 5 | #include "util/debug.h" |
| 6 | #include "util/exec_cmd.h" |
| 7 | #include "util/header.h" |
| 8 | #include "util/parse-options.h" |
| 9 | #include "util/session.h" |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 10 | #include "util/symbol.h" |
| 11 | #include "util/thread.h" |
Ingo Molnar | cf72344 | 2009-11-28 10:11:00 +0100 | [diff] [blame] | 12 | #include "util/trace-event.h" |
Andrea Gelmini | b7eead8 | 2010-08-05 15:51:38 +0200 | [diff] [blame] | 13 | #include "util/util.h" |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 14 | #include "util/evlist.h" |
| 15 | #include "util/evsel.h" |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 16 | #include <linux/bitmap.h> |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 17 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 18 | static char const *script_name; |
| 19 | static char const *generate_script_lang; |
Frederic Weisbecker | ffabd99 | 2010-05-27 16:27:47 +0200 | [diff] [blame] | 20 | static bool debug_mode; |
Frederic Weisbecker | e1889d7 | 2010-04-24 01:55:09 +0200 | [diff] [blame] | 21 | static u64 last_timestamp; |
Frederic Weisbecker | 6fcf7dd | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 22 | static u64 nr_unordered; |
Tom Zanussi | 34c86ea | 2010-11-10 08:15:43 -0600 | [diff] [blame] | 23 | extern const struct option record_options[]; |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 24 | static bool no_callchain; |
Stephane Eranian | fbe96f2 | 2011-09-30 15:40:40 +0200 | [diff] [blame] | 25 | static bool show_full_info; |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 26 | static const char *cpu_list; |
| 27 | static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 28 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 29 | enum perf_output_field { |
| 30 | PERF_OUTPUT_COMM = 1U << 0, |
| 31 | PERF_OUTPUT_TID = 1U << 1, |
| 32 | PERF_OUTPUT_PID = 1U << 2, |
| 33 | PERF_OUTPUT_TIME = 1U << 3, |
| 34 | PERF_OUTPUT_CPU = 1U << 4, |
| 35 | PERF_OUTPUT_EVNAME = 1U << 5, |
| 36 | PERF_OUTPUT_TRACE = 1U << 6, |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 37 | PERF_OUTPUT_IP = 1U << 7, |
| 38 | PERF_OUTPUT_SYM = 1U << 8, |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 39 | PERF_OUTPUT_DSO = 1U << 9, |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 40 | PERF_OUTPUT_ADDR = 1U << 10, |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | struct output_option { |
| 44 | const char *str; |
| 45 | enum perf_output_field field; |
| 46 | } all_output_options[] = { |
| 47 | {.str = "comm", .field = PERF_OUTPUT_COMM}, |
| 48 | {.str = "tid", .field = PERF_OUTPUT_TID}, |
| 49 | {.str = "pid", .field = PERF_OUTPUT_PID}, |
| 50 | {.str = "time", .field = PERF_OUTPUT_TIME}, |
| 51 | {.str = "cpu", .field = PERF_OUTPUT_CPU}, |
| 52 | {.str = "event", .field = PERF_OUTPUT_EVNAME}, |
| 53 | {.str = "trace", .field = PERF_OUTPUT_TRACE}, |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 54 | {.str = "ip", .field = PERF_OUTPUT_IP}, |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 55 | {.str = "sym", .field = PERF_OUTPUT_SYM}, |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 56 | {.str = "dso", .field = PERF_OUTPUT_DSO}, |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 57 | {.str = "addr", .field = PERF_OUTPUT_ADDR}, |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | /* default set to maintain compatibility with current format */ |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 61 | static struct { |
| 62 | bool user_set; |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 63 | bool wildcard_set; |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 64 | u64 fields; |
| 65 | u64 invalid_fields; |
| 66 | } output[PERF_TYPE_MAX] = { |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 67 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 68 | [PERF_TYPE_HARDWARE] = { |
| 69 | .user_set = false, |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 70 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 71 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | |
| 72 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 73 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 74 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 75 | |
| 76 | .invalid_fields = PERF_OUTPUT_TRACE, |
| 77 | }, |
| 78 | |
| 79 | [PERF_TYPE_SOFTWARE] = { |
| 80 | .user_set = false, |
| 81 | |
| 82 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | |
| 83 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 84 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 85 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 86 | |
| 87 | .invalid_fields = PERF_OUTPUT_TRACE, |
| 88 | }, |
| 89 | |
| 90 | [PERF_TYPE_TRACEPOINT] = { |
| 91 | .user_set = false, |
| 92 | |
| 93 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | |
| 94 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | |
| 95 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE, |
| 96 | }, |
Arun Sharma | 0817a6a | 2011-04-14 10:38:18 -0700 | [diff] [blame] | 97 | |
| 98 | [PERF_TYPE_RAW] = { |
| 99 | .user_set = false, |
| 100 | |
| 101 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | |
| 102 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 103 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 104 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
Arun Sharma | 0817a6a | 2011-04-14 10:38:18 -0700 | [diff] [blame] | 105 | |
| 106 | .invalid_fields = PERF_OUTPUT_TRACE, |
| 107 | }, |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 108 | }; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 109 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 110 | static bool output_set_by_user(void) |
| 111 | { |
| 112 | int j; |
| 113 | for (j = 0; j < PERF_TYPE_MAX; ++j) { |
| 114 | if (output[j].user_set) |
| 115 | return true; |
| 116 | } |
| 117 | return false; |
| 118 | } |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 119 | |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 120 | static const char *output_field2str(enum perf_output_field field) |
| 121 | { |
| 122 | int i, imax = ARRAY_SIZE(all_output_options); |
| 123 | const char *str = ""; |
| 124 | |
| 125 | for (i = 0; i < imax; ++i) { |
| 126 | if (all_output_options[i].field == field) { |
| 127 | str = all_output_options[i].str; |
| 128 | break; |
| 129 | } |
| 130 | } |
| 131 | return str; |
| 132 | } |
| 133 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 134 | #define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 135 | |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 136 | static int perf_event_attr__check_stype(struct perf_event_attr *attr, |
| 137 | u64 sample_type, const char *sample_msg, |
| 138 | enum perf_output_field field) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 139 | { |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 140 | int type = attr->type; |
| 141 | const char *evname; |
| 142 | |
| 143 | if (attr->sample_type & sample_type) |
| 144 | return 0; |
| 145 | |
| 146 | if (output[type].user_set) { |
| 147 | evname = __event_name(attr->type, attr->config); |
| 148 | pr_err("Samples for '%s' event do not have %s attribute set. " |
| 149 | "Cannot print '%s' field.\n", |
| 150 | evname, sample_msg, output_field2str(field)); |
| 151 | return -1; |
| 152 | } |
| 153 | |
| 154 | /* user did not ask for it explicitly so remove from the default list */ |
| 155 | output[type].fields &= ~field; |
| 156 | evname = __event_name(attr->type, attr->config); |
| 157 | pr_debug("Samples for '%s' event do not have %s attribute set. " |
| 158 | "Skipping '%s' field.\n", |
| 159 | evname, sample_msg, output_field2str(field)); |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | static int perf_evsel__check_attr(struct perf_evsel *evsel, |
| 165 | struct perf_session *session) |
| 166 | { |
| 167 | struct perf_event_attr *attr = &evsel->attr; |
| 168 | |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 169 | if (PRINT_FIELD(TRACE) && |
| 170 | !perf_session__has_traces(session, "record -R")) |
| 171 | return -EINVAL; |
| 172 | |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 173 | if (PRINT_FIELD(IP)) { |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 174 | if (perf_event_attr__check_stype(attr, PERF_SAMPLE_IP, "IP", |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 175 | PERF_OUTPUT_IP)) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 176 | return -EINVAL; |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 177 | |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 178 | if (!no_callchain && |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 179 | !(attr->sample_type & PERF_SAMPLE_CALLCHAIN)) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 180 | symbol_conf.use_callchain = false; |
| 181 | } |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 182 | |
| 183 | if (PRINT_FIELD(ADDR) && |
| 184 | perf_event_attr__check_stype(attr, PERF_SAMPLE_ADDR, "ADDR", |
| 185 | PERF_OUTPUT_ADDR)) |
| 186 | return -EINVAL; |
| 187 | |
| 188 | if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) { |
| 189 | pr_err("Display of symbols requested but neither sample IP nor " |
| 190 | "sample address\nis selected. Hence, no addresses to convert " |
| 191 | "to symbols.\n"); |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 192 | return -EINVAL; |
| 193 | } |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 194 | if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) { |
| 195 | pr_err("Display of DSO requested but neither sample IP nor " |
| 196 | "sample address\nis selected. Hence, no addresses to convert " |
| 197 | "to DSO.\n"); |
David Ahern | 610723f | 2011-05-27 14:28:44 -0600 | [diff] [blame] | 198 | return -EINVAL; |
| 199 | } |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 200 | |
| 201 | if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) && |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 202 | perf_event_attr__check_stype(attr, PERF_SAMPLE_TID, "TID", |
| 203 | PERF_OUTPUT_TID|PERF_OUTPUT_PID)) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 204 | return -EINVAL; |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 205 | |
| 206 | if (PRINT_FIELD(TIME) && |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 207 | perf_event_attr__check_stype(attr, PERF_SAMPLE_TIME, "TIME", |
| 208 | PERF_OUTPUT_TIME)) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 209 | return -EINVAL; |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 210 | |
| 211 | if (PRINT_FIELD(CPU) && |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 212 | perf_event_attr__check_stype(attr, PERF_SAMPLE_CPU, "CPU", |
| 213 | PERF_OUTPUT_CPU)) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 214 | return -EINVAL; |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 215 | |
| 216 | return 0; |
| 217 | } |
| 218 | |
| 219 | /* |
| 220 | * verify all user requested events exist and the samples |
| 221 | * have the expected data |
| 222 | */ |
| 223 | static int perf_session__check_output_opt(struct perf_session *session) |
| 224 | { |
| 225 | int j; |
| 226 | struct perf_evsel *evsel; |
| 227 | |
| 228 | for (j = 0; j < PERF_TYPE_MAX; ++j) { |
| 229 | evsel = perf_session__find_first_evtype(session, j); |
| 230 | |
| 231 | /* |
| 232 | * even if fields is set to 0 (ie., show nothing) event must |
| 233 | * exist if user explicitly includes it on the command line |
| 234 | */ |
| 235 | if (!evsel && output[j].user_set && !output[j].wildcard_set) { |
| 236 | pr_err("%s events do not exist. " |
| 237 | "Remove corresponding -f option to proceed.\n", |
| 238 | event_type(j)); |
| 239 | return -1; |
| 240 | } |
| 241 | |
| 242 | if (evsel && output[j].fields && |
| 243 | perf_evsel__check_attr(evsel, session)) |
| 244 | return -1; |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | return 0; |
| 248 | } |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 249 | |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 250 | static void print_sample_start(struct perf_sample *sample, |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 251 | struct thread *thread, |
| 252 | struct perf_event_attr *attr) |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 253 | { |
| 254 | int type; |
| 255 | struct event *event; |
| 256 | const char *evname = NULL; |
| 257 | unsigned long secs; |
| 258 | unsigned long usecs; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 259 | unsigned long long nsecs; |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 260 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 261 | if (PRINT_FIELD(COMM)) { |
| 262 | if (latency_format) |
| 263 | printf("%8.8s ", thread->comm); |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 264 | else if (PRINT_FIELD(IP) && symbol_conf.use_callchain) |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 265 | printf("%s ", thread->comm); |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 266 | else |
| 267 | printf("%16s ", thread->comm); |
| 268 | } |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 269 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 270 | if (PRINT_FIELD(PID) && PRINT_FIELD(TID)) |
| 271 | printf("%5d/%-5d ", sample->pid, sample->tid); |
| 272 | else if (PRINT_FIELD(PID)) |
| 273 | printf("%5d ", sample->pid); |
| 274 | else if (PRINT_FIELD(TID)) |
| 275 | printf("%5d ", sample->tid); |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 276 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 277 | if (PRINT_FIELD(CPU)) { |
| 278 | if (latency_format) |
| 279 | printf("%3d ", sample->cpu); |
| 280 | else |
| 281 | printf("[%03d] ", sample->cpu); |
| 282 | } |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 283 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 284 | if (PRINT_FIELD(TIME)) { |
| 285 | nsecs = sample->time; |
| 286 | secs = nsecs / NSECS_PER_SEC; |
| 287 | nsecs -= secs * NSECS_PER_SEC; |
| 288 | usecs = nsecs / NSECS_PER_USEC; |
| 289 | printf("%5lu.%06lu: ", secs, usecs); |
| 290 | } |
| 291 | |
| 292 | if (PRINT_FIELD(EVNAME)) { |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 293 | if (attr->type == PERF_TYPE_TRACEPOINT) { |
| 294 | type = trace_parse_common_type(sample->raw_data); |
| 295 | event = trace_find_event(type); |
| 296 | if (event) |
| 297 | evname = event->name; |
| 298 | } else |
| 299 | evname = __event_name(attr->type, attr->config); |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 300 | |
| 301 | printf("%s: ", evname ? evname : "(unknown)"); |
| 302 | } |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 303 | } |
| 304 | |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 305 | static bool sample_addr_correlates_sym(struct perf_event_attr *attr) |
| 306 | { |
| 307 | if ((attr->type == PERF_TYPE_SOFTWARE) && |
| 308 | ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) || |
| 309 | (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) || |
| 310 | (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ))) |
| 311 | return true; |
| 312 | |
| 313 | return false; |
| 314 | } |
| 315 | |
| 316 | static void print_sample_addr(union perf_event *event, |
| 317 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 318 | struct machine *machine, |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 319 | struct thread *thread, |
| 320 | struct perf_event_attr *attr) |
| 321 | { |
| 322 | struct addr_location al; |
| 323 | u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |
| 324 | const char *symname, *dsoname; |
| 325 | |
| 326 | printf("%16" PRIx64, sample->addr); |
| 327 | |
| 328 | if (!sample_addr_correlates_sym(attr)) |
| 329 | return; |
| 330 | |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 331 | thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, |
| 332 | sample->addr, &al); |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 333 | if (!al.map) |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 334 | thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE, |
| 335 | sample->addr, &al); |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 336 | |
| 337 | al.cpu = sample->cpu; |
| 338 | al.sym = NULL; |
| 339 | |
| 340 | if (al.map) |
| 341 | al.sym = map__find_symbol(al.map, al.addr, NULL); |
| 342 | |
| 343 | if (PRINT_FIELD(SYM)) { |
| 344 | if (al.sym && al.sym->name) |
| 345 | symname = al.sym->name; |
| 346 | else |
| 347 | symname = ""; |
| 348 | |
| 349 | printf(" %16s", symname); |
| 350 | } |
| 351 | |
| 352 | if (PRINT_FIELD(DSO)) { |
| 353 | if (al.map && al.map->dso && al.map->dso->name) |
| 354 | dsoname = al.map->dso->name; |
| 355 | else |
| 356 | dsoname = ""; |
| 357 | |
| 358 | printf(" (%s)", dsoname); |
| 359 | } |
| 360 | } |
| 361 | |
David Ahern | be6d842 | 2011-03-09 22:23:23 -0700 | [diff] [blame] | 362 | static void process_event(union perf_event *event __unused, |
| 363 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 9e69c21 | 2011-03-15 15:44:01 -0300 | [diff] [blame] | 364 | struct perf_evsel *evsel, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 365 | struct machine *machine, |
David Ahern | be6d842 | 2011-03-09 22:23:23 -0700 | [diff] [blame] | 366 | struct thread *thread) |
| 367 | { |
Arnaldo Carvalho de Melo | 9e69c21 | 2011-03-15 15:44:01 -0300 | [diff] [blame] | 368 | struct perf_event_attr *attr = &evsel->attr; |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 369 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 370 | if (output[attr->type].fields == 0) |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 371 | return; |
| 372 | |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 373 | print_sample_start(sample, thread, attr); |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 374 | |
| 375 | if (PRINT_FIELD(TRACE)) |
| 376 | print_trace_event(sample->cpu, sample->raw_data, |
| 377 | sample->raw_size); |
| 378 | |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 379 | if (PRINT_FIELD(ADDR)) |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 380 | print_sample_addr(event, sample, machine, thread, attr); |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 381 | |
David Ahern | 787bef1 | 2011-05-27 14:28:43 -0600 | [diff] [blame] | 382 | if (PRINT_FIELD(IP)) { |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 383 | if (!symbol_conf.use_callchain) |
| 384 | printf(" "); |
| 385 | else |
| 386 | printf("\n"); |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 387 | perf_event__print_ip(event, sample, machine, evsel, |
| 388 | PRINT_FIELD(SYM), PRINT_FIELD(DSO)); |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 389 | } |
| 390 | |
David Ahern | c70c94b | 2011-03-09 22:23:25 -0700 | [diff] [blame] | 391 | printf("\n"); |
David Ahern | be6d842 | 2011-03-09 22:23:23 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Tom Zanussi | 586bc5c | 2009-12-15 02:53:35 -0600 | [diff] [blame] | 394 | static int default_start_script(const char *script __unused, |
| 395 | int argc __unused, |
| 396 | const char **argv __unused) |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 397 | { |
| 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | static int default_stop_script(void) |
| 402 | { |
| 403 | return 0; |
| 404 | } |
| 405 | |
Tom Zanussi | 586bc5c | 2009-12-15 02:53:35 -0600 | [diff] [blame] | 406 | static int default_generate_script(const char *outfile __unused) |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 407 | { |
| 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | static struct scripting_ops default_scripting_ops = { |
| 412 | .start_script = default_start_script, |
| 413 | .stop_script = default_stop_script, |
David Ahern | be6d842 | 2011-03-09 22:23:23 -0700 | [diff] [blame] | 414 | .process_event = process_event, |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 415 | .generate_script = default_generate_script, |
| 416 | }; |
| 417 | |
| 418 | static struct scripting_ops *scripting_ops; |
| 419 | |
| 420 | static void setup_scripting(void) |
| 421 | { |
Tom Zanussi | 16c632d | 2009-11-25 01:15:48 -0600 | [diff] [blame] | 422 | setup_perl_scripting(); |
Tom Zanussi | 7e4b21b | 2010-01-27 02:27:57 -0600 | [diff] [blame] | 423 | setup_python_scripting(); |
Tom Zanussi | 16c632d | 2009-11-25 01:15:48 -0600 | [diff] [blame] | 424 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 425 | scripting_ops = &default_scripting_ops; |
| 426 | } |
| 427 | |
| 428 | static int cleanup_scripting(void) |
| 429 | { |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 430 | pr_debug("\nperf script stopped\n"); |
Tom Zanussi | 3824a4e | 2010-05-09 23:46:57 -0500 | [diff] [blame] | 431 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 432 | return scripting_ops->stop_script(); |
| 433 | } |
| 434 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 435 | static char const *input_name = "perf.data"; |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 436 | |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 437 | static int process_sample_event(struct perf_event_ops *ops __used, |
| 438 | union perf_event *event, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 439 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 9e69c21 | 2011-03-15 15:44:01 -0300 | [diff] [blame] | 440 | struct perf_evsel *evsel, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 441 | struct machine *machine) |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 442 | { |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 443 | struct thread *thread = machine__findnew_thread(machine, event->ip.pid); |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 444 | |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 445 | if (thread == NULL) { |
Arnaldo Carvalho de Melo | 6beba7a | 2009-10-21 17:34:06 -0200 | [diff] [blame] | 446 | pr_debug("problem processing %d event, skipping it.\n", |
| 447 | event->header.type); |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 448 | return -1; |
| 449 | } |
| 450 | |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 451 | if (debug_mode) { |
| 452 | if (sample->time < last_timestamp) { |
| 453 | pr_err("Samples misordered, previous: %" PRIu64 |
| 454 | " this: %" PRIu64 "\n", last_timestamp, |
| 455 | sample->time); |
| 456 | nr_unordered++; |
Frederic Weisbecker | e1889d7 | 2010-04-24 01:55:09 +0200 | [diff] [blame] | 457 | } |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 458 | last_timestamp = sample->time; |
| 459 | return 0; |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 460 | } |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 461 | |
| 462 | if (cpu_list && !test_bit(sample->cpu, cpu_bitmap)) |
| 463 | return 0; |
| 464 | |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 465 | scripting_ops->process_event(event, sample, evsel, machine, thread); |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 466 | |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame^] | 467 | evsel->hists.stats.total_period += sample->period; |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 468 | return 0; |
| 469 | } |
| 470 | |
Arnaldo Carvalho de Melo | 301a0b0 | 2009-12-13 19:50:25 -0200 | [diff] [blame] | 471 | static struct perf_event_ops event_ops = { |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 472 | .sample = process_sample_event, |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 473 | .mmap = perf_event__process_mmap, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 474 | .comm = perf_event__process_comm, |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 475 | .exit = perf_event__process_task, |
| 476 | .fork = perf_event__process_task, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 477 | .attr = perf_event__process_attr, |
| 478 | .event_type = perf_event__process_event_type, |
| 479 | .tracing_data = perf_event__process_tracing_data, |
| 480 | .build_id = perf_event__process_build_id, |
Frederic Weisbecker | e0a808c | 2010-04-24 00:38:33 +0200 | [diff] [blame] | 481 | .ordered_samples = true, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 482 | .ordering_requires_timestamps = true, |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 483 | }; |
| 484 | |
Tom Zanussi | c239da3 | 2010-04-01 23:59:18 -0500 | [diff] [blame] | 485 | extern volatile int session_done; |
| 486 | |
| 487 | static void sig_handler(int sig __unused) |
| 488 | { |
| 489 | session_done = 1; |
| 490 | } |
| 491 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 492 | static int __cmd_script(struct perf_session *session) |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 493 | { |
Frederic Weisbecker | 6fcf7dd | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 494 | int ret; |
| 495 | |
Tom Zanussi | c239da3 | 2010-04-01 23:59:18 -0500 | [diff] [blame] | 496 | signal(SIGINT, sig_handler); |
| 497 | |
Frederic Weisbecker | 6fcf7dd | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 498 | ret = perf_session__process_events(session, &event_ops); |
| 499 | |
Arnaldo Carvalho de Melo | 6d8afb5 | 2011-01-04 16:27:30 -0200 | [diff] [blame] | 500 | if (debug_mode) |
Arnaldo Carvalho de Melo | 9486aa3 | 2011-01-22 20:37:02 -0200 | [diff] [blame] | 501 | pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered); |
Frederic Weisbecker | 6fcf7dd | 2010-05-27 15:46:25 +0200 | [diff] [blame] | 502 | |
| 503 | return ret; |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 504 | } |
| 505 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 506 | struct script_spec { |
| 507 | struct list_head node; |
| 508 | struct scripting_ops *ops; |
| 509 | char spec[0]; |
| 510 | }; |
| 511 | |
Arnaldo Carvalho de Melo | eccdfe2 | 2011-01-04 16:32:52 -0200 | [diff] [blame] | 512 | static LIST_HEAD(script_specs); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 513 | |
| 514 | static struct script_spec *script_spec__new(const char *spec, |
| 515 | struct scripting_ops *ops) |
| 516 | { |
| 517 | struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1); |
| 518 | |
| 519 | if (s != NULL) { |
| 520 | strcpy(s->spec, spec); |
| 521 | s->ops = ops; |
| 522 | } |
| 523 | |
| 524 | return s; |
| 525 | } |
| 526 | |
| 527 | static void script_spec__delete(struct script_spec *s) |
| 528 | { |
| 529 | free(s->spec); |
| 530 | free(s); |
| 531 | } |
| 532 | |
| 533 | static void script_spec__add(struct script_spec *s) |
| 534 | { |
| 535 | list_add_tail(&s->node, &script_specs); |
| 536 | } |
| 537 | |
| 538 | static struct script_spec *script_spec__find(const char *spec) |
| 539 | { |
| 540 | struct script_spec *s; |
| 541 | |
| 542 | list_for_each_entry(s, &script_specs, node) |
| 543 | if (strcasecmp(s->spec, spec) == 0) |
| 544 | return s; |
| 545 | return NULL; |
| 546 | } |
| 547 | |
| 548 | static struct script_spec *script_spec__findnew(const char *spec, |
| 549 | struct scripting_ops *ops) |
| 550 | { |
| 551 | struct script_spec *s = script_spec__find(spec); |
| 552 | |
| 553 | if (s) |
| 554 | return s; |
| 555 | |
| 556 | s = script_spec__new(spec, ops); |
| 557 | if (!s) |
| 558 | goto out_delete_spec; |
| 559 | |
| 560 | script_spec__add(s); |
| 561 | |
| 562 | return s; |
| 563 | |
| 564 | out_delete_spec: |
| 565 | script_spec__delete(s); |
| 566 | |
| 567 | return NULL; |
| 568 | } |
| 569 | |
| 570 | int script_spec_register(const char *spec, struct scripting_ops *ops) |
| 571 | { |
| 572 | struct script_spec *s; |
| 573 | |
| 574 | s = script_spec__find(spec); |
| 575 | if (s) |
| 576 | return -1; |
| 577 | |
| 578 | s = script_spec__findnew(spec, ops); |
| 579 | if (!s) |
| 580 | return -1; |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | static struct scripting_ops *script_spec__lookup(const char *spec) |
| 586 | { |
| 587 | struct script_spec *s = script_spec__find(spec); |
| 588 | if (!s) |
| 589 | return NULL; |
| 590 | |
| 591 | return s->ops; |
| 592 | } |
| 593 | |
| 594 | static void list_available_languages(void) |
| 595 | { |
| 596 | struct script_spec *s; |
| 597 | |
| 598 | fprintf(stderr, "\n"); |
| 599 | fprintf(stderr, "Scripting language extensions (used in " |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 600 | "perf script -s [spec:]script.[spec]):\n\n"); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 601 | |
| 602 | list_for_each_entry(s, &script_specs, node) |
| 603 | fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name); |
| 604 | |
| 605 | fprintf(stderr, "\n"); |
| 606 | } |
| 607 | |
| 608 | static int parse_scriptname(const struct option *opt __used, |
| 609 | const char *str, int unset __used) |
| 610 | { |
| 611 | char spec[PATH_MAX]; |
| 612 | const char *script, *ext; |
| 613 | int len; |
| 614 | |
Tom Zanussi | f526d68 | 2010-01-27 02:27:52 -0600 | [diff] [blame] | 615 | if (strcmp(str, "lang") == 0) { |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 616 | list_available_languages(); |
Tom Zanussi | f526d68 | 2010-01-27 02:27:52 -0600 | [diff] [blame] | 617 | exit(0); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | script = strchr(str, ':'); |
| 621 | if (script) { |
| 622 | len = script - str; |
| 623 | if (len >= PATH_MAX) { |
| 624 | fprintf(stderr, "invalid language specifier"); |
| 625 | return -1; |
| 626 | } |
| 627 | strncpy(spec, str, len); |
| 628 | spec[len] = '\0'; |
| 629 | scripting_ops = script_spec__lookup(spec); |
| 630 | if (!scripting_ops) { |
| 631 | fprintf(stderr, "invalid language specifier"); |
| 632 | return -1; |
| 633 | } |
| 634 | script++; |
| 635 | } else { |
| 636 | script = str; |
Ben Hutchings | d1e95bb | 2010-10-10 16:11:02 +0100 | [diff] [blame] | 637 | ext = strrchr(script, '.'); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 638 | if (!ext) { |
| 639 | fprintf(stderr, "invalid script extension"); |
| 640 | return -1; |
| 641 | } |
| 642 | scripting_ops = script_spec__lookup(++ext); |
| 643 | if (!scripting_ops) { |
| 644 | fprintf(stderr, "invalid script extension"); |
| 645 | return -1; |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | script_name = strdup(script); |
| 650 | |
| 651 | return 0; |
| 652 | } |
| 653 | |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 654 | static int parse_output_fields(const struct option *opt __used, |
| 655 | const char *arg, int unset __used) |
| 656 | { |
| 657 | char *tok; |
| 658 | int i, imax = sizeof(all_output_options) / sizeof(struct output_option); |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 659 | int j; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 660 | int rc = 0; |
| 661 | char *str = strdup(arg); |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 662 | int type = -1; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 663 | |
| 664 | if (!str) |
| 665 | return -ENOMEM; |
| 666 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 667 | /* first word can state for which event type the user is specifying |
| 668 | * the fields. If no type exists, the specified fields apply to all |
| 669 | * event types found in the file minus the invalid fields for a type. |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 670 | */ |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 671 | tok = strchr(str, ':'); |
| 672 | if (tok) { |
| 673 | *tok = '\0'; |
| 674 | tok++; |
| 675 | if (!strcmp(str, "hw")) |
| 676 | type = PERF_TYPE_HARDWARE; |
| 677 | else if (!strcmp(str, "sw")) |
| 678 | type = PERF_TYPE_SOFTWARE; |
| 679 | else if (!strcmp(str, "trace")) |
| 680 | type = PERF_TYPE_TRACEPOINT; |
Arun Sharma | 0817a6a | 2011-04-14 10:38:18 -0700 | [diff] [blame] | 681 | else if (!strcmp(str, "raw")) |
| 682 | type = PERF_TYPE_RAW; |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 683 | else { |
| 684 | fprintf(stderr, "Invalid event type in field string.\n"); |
| 685 | return -EINVAL; |
| 686 | } |
| 687 | |
| 688 | if (output[type].user_set) |
| 689 | pr_warning("Overriding previous field request for %s events.\n", |
| 690 | event_type(type)); |
| 691 | |
| 692 | output[type].fields = 0; |
| 693 | output[type].user_set = true; |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 694 | output[type].wildcard_set = false; |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 695 | |
| 696 | } else { |
| 697 | tok = str; |
| 698 | if (strlen(str) == 0) { |
| 699 | fprintf(stderr, |
| 700 | "Cannot set fields to 'none' for all event types.\n"); |
| 701 | rc = -EINVAL; |
| 702 | goto out; |
| 703 | } |
| 704 | |
| 705 | if (output_set_by_user()) |
| 706 | pr_warning("Overriding previous field request for all events.\n"); |
| 707 | |
| 708 | for (j = 0; j < PERF_TYPE_MAX; ++j) { |
| 709 | output[j].fields = 0; |
| 710 | output[j].user_set = true; |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 711 | output[j].wildcard_set = true; |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 712 | } |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 713 | } |
| 714 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 715 | tok = strtok(tok, ","); |
| 716 | while (tok) { |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 717 | for (i = 0; i < imax; ++i) { |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 718 | if (strcmp(tok, all_output_options[i].str) == 0) |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 719 | break; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 720 | } |
| 721 | if (i == imax) { |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 722 | fprintf(stderr, "Invalid field requested.\n"); |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 723 | rc = -EINVAL; |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 724 | goto out; |
| 725 | } |
| 726 | |
| 727 | if (type == -1) { |
| 728 | /* add user option to all events types for |
| 729 | * which it is valid |
| 730 | */ |
| 731 | for (j = 0; j < PERF_TYPE_MAX; ++j) { |
| 732 | if (output[j].invalid_fields & all_output_options[i].field) { |
| 733 | pr_warning("\'%s\' not valid for %s events. Ignoring.\n", |
| 734 | all_output_options[i].str, event_type(j)); |
| 735 | } else |
| 736 | output[j].fields |= all_output_options[i].field; |
| 737 | } |
| 738 | } else { |
| 739 | if (output[type].invalid_fields & all_output_options[i].field) { |
| 740 | fprintf(stderr, "\'%s\' not valid for %s events.\n", |
| 741 | all_output_options[i].str, event_type(type)); |
| 742 | |
| 743 | rc = -EINVAL; |
| 744 | goto out; |
| 745 | } |
| 746 | output[type].fields |= all_output_options[i].field; |
| 747 | } |
| 748 | |
| 749 | tok = strtok(NULL, ","); |
| 750 | } |
| 751 | |
| 752 | if (type >= 0) { |
| 753 | if (output[type].fields == 0) { |
| 754 | pr_debug("No fields requested for %s type. " |
| 755 | "Events will not be displayed.\n", event_type(type)); |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 756 | } |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 757 | } |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 758 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 759 | out: |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 760 | free(str); |
| 761 | return rc; |
| 762 | } |
| 763 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 764 | /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */ |
| 765 | static int is_directory(const char *base_path, const struct dirent *dent) |
| 766 | { |
| 767 | char path[PATH_MAX]; |
| 768 | struct stat st; |
| 769 | |
| 770 | sprintf(path, "%s/%s", base_path, dent->d_name); |
| 771 | if (stat(path, &st)) |
| 772 | return 0; |
| 773 | |
| 774 | return S_ISDIR(st.st_mode); |
| 775 | } |
| 776 | |
| 777 | #define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\ |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 778 | while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \ |
| 779 | lang_next) \ |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 780 | if ((lang_dirent.d_type == DT_DIR || \ |
| 781 | (lang_dirent.d_type == DT_UNKNOWN && \ |
| 782 | is_directory(scripts_path, &lang_dirent))) && \ |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 783 | (strcmp(lang_dirent.d_name, ".")) && \ |
| 784 | (strcmp(lang_dirent.d_name, ".."))) |
| 785 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 786 | #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\ |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 787 | while (!readdir_r(lang_dir, &script_dirent, &script_next) && \ |
| 788 | script_next) \ |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 789 | if (script_dirent.d_type != DT_DIR && \ |
| 790 | (script_dirent.d_type != DT_UNKNOWN || \ |
| 791 | !is_directory(lang_path, &script_dirent))) |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 792 | |
| 793 | |
| 794 | #define RECORD_SUFFIX "-record" |
| 795 | #define REPORT_SUFFIX "-report" |
| 796 | |
| 797 | struct script_desc { |
| 798 | struct list_head node; |
| 799 | char *name; |
| 800 | char *half_liner; |
| 801 | char *args; |
| 802 | }; |
| 803 | |
Arnaldo Carvalho de Melo | eccdfe2 | 2011-01-04 16:32:52 -0200 | [diff] [blame] | 804 | static LIST_HEAD(script_descs); |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 805 | |
| 806 | static struct script_desc *script_desc__new(const char *name) |
| 807 | { |
| 808 | struct script_desc *s = zalloc(sizeof(*s)); |
| 809 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 810 | if (s != NULL && name) |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 811 | s->name = strdup(name); |
| 812 | |
| 813 | return s; |
| 814 | } |
| 815 | |
| 816 | static void script_desc__delete(struct script_desc *s) |
| 817 | { |
| 818 | free(s->name); |
Tom Zanussi | e8719ad | 2010-11-10 07:52:32 -0600 | [diff] [blame] | 819 | free(s->half_liner); |
| 820 | free(s->args); |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 821 | free(s); |
| 822 | } |
| 823 | |
| 824 | static void script_desc__add(struct script_desc *s) |
| 825 | { |
| 826 | list_add_tail(&s->node, &script_descs); |
| 827 | } |
| 828 | |
| 829 | static struct script_desc *script_desc__find(const char *name) |
| 830 | { |
| 831 | struct script_desc *s; |
| 832 | |
| 833 | list_for_each_entry(s, &script_descs, node) |
| 834 | if (strcasecmp(s->name, name) == 0) |
| 835 | return s; |
| 836 | return NULL; |
| 837 | } |
| 838 | |
| 839 | static struct script_desc *script_desc__findnew(const char *name) |
| 840 | { |
| 841 | struct script_desc *s = script_desc__find(name); |
| 842 | |
| 843 | if (s) |
| 844 | return s; |
| 845 | |
| 846 | s = script_desc__new(name); |
| 847 | if (!s) |
| 848 | goto out_delete_desc; |
| 849 | |
| 850 | script_desc__add(s); |
| 851 | |
| 852 | return s; |
| 853 | |
| 854 | out_delete_desc: |
| 855 | script_desc__delete(s); |
| 856 | |
| 857 | return NULL; |
| 858 | } |
| 859 | |
Stephane Eranian | 965bb6b | 2010-12-03 17:52:01 +0200 | [diff] [blame] | 860 | static const char *ends_with(const char *str, const char *suffix) |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 861 | { |
| 862 | size_t suffix_len = strlen(suffix); |
Stephane Eranian | 965bb6b | 2010-12-03 17:52:01 +0200 | [diff] [blame] | 863 | const char *p = str; |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 864 | |
| 865 | if (strlen(str) > suffix_len) { |
| 866 | p = str + strlen(str) - suffix_len; |
| 867 | if (!strncmp(p, suffix, suffix_len)) |
| 868 | return p; |
| 869 | } |
| 870 | |
| 871 | return NULL; |
| 872 | } |
| 873 | |
| 874 | static char *ltrim(char *str) |
| 875 | { |
| 876 | int len = strlen(str); |
| 877 | |
| 878 | while (len && isspace(*str)) { |
| 879 | len--; |
| 880 | str++; |
| 881 | } |
| 882 | |
| 883 | return str; |
| 884 | } |
| 885 | |
| 886 | static int read_script_info(struct script_desc *desc, const char *filename) |
| 887 | { |
| 888 | char line[BUFSIZ], *p; |
| 889 | FILE *fp; |
| 890 | |
| 891 | fp = fopen(filename, "r"); |
| 892 | if (!fp) |
| 893 | return -1; |
| 894 | |
| 895 | while (fgets(line, sizeof(line), fp)) { |
| 896 | p = ltrim(line); |
| 897 | if (strlen(p) == 0) |
| 898 | continue; |
| 899 | if (*p != '#') |
| 900 | continue; |
| 901 | p++; |
| 902 | if (strlen(p) && *p == '!') |
| 903 | continue; |
| 904 | |
| 905 | p = ltrim(p); |
| 906 | if (strlen(p) && p[strlen(p) - 1] == '\n') |
| 907 | p[strlen(p) - 1] = '\0'; |
| 908 | |
| 909 | if (!strncmp(p, "description:", strlen("description:"))) { |
| 910 | p += strlen("description:"); |
| 911 | desc->half_liner = strdup(ltrim(p)); |
| 912 | continue; |
| 913 | } |
| 914 | |
| 915 | if (!strncmp(p, "args:", strlen("args:"))) { |
| 916 | p += strlen("args:"); |
| 917 | desc->args = strdup(ltrim(p)); |
| 918 | continue; |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | fclose(fp); |
| 923 | |
| 924 | return 0; |
| 925 | } |
| 926 | |
| 927 | static int list_available_scripts(const struct option *opt __used, |
| 928 | const char *s __used, int unset __used) |
| 929 | { |
| 930 | struct dirent *script_next, *lang_next, script_dirent, lang_dirent; |
| 931 | char scripts_path[MAXPATHLEN]; |
| 932 | DIR *scripts_dir, *lang_dir; |
| 933 | char script_path[MAXPATHLEN]; |
| 934 | char lang_path[MAXPATHLEN]; |
| 935 | struct script_desc *desc; |
| 936 | char first_half[BUFSIZ]; |
| 937 | char *script_root; |
| 938 | char *str; |
| 939 | |
| 940 | snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path()); |
| 941 | |
| 942 | scripts_dir = opendir(scripts_path); |
| 943 | if (!scripts_dir) |
| 944 | return -1; |
| 945 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 946 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 947 | snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, |
| 948 | lang_dirent.d_name); |
| 949 | lang_dir = opendir(lang_path); |
| 950 | if (!lang_dir) |
| 951 | continue; |
| 952 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 953 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 954 | script_root = strdup(script_dirent.d_name); |
Stephane Eranian | 965bb6b | 2010-12-03 17:52:01 +0200 | [diff] [blame] | 955 | str = (char *)ends_with(script_root, REPORT_SUFFIX); |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 956 | if (str) { |
| 957 | *str = '\0'; |
| 958 | desc = script_desc__findnew(script_root); |
| 959 | snprintf(script_path, MAXPATHLEN, "%s/%s", |
| 960 | lang_path, script_dirent.d_name); |
| 961 | read_script_info(desc, script_path); |
| 962 | } |
| 963 | free(script_root); |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | fprintf(stdout, "List of available trace scripts:\n"); |
| 968 | list_for_each_entry(desc, &script_descs, node) { |
| 969 | sprintf(first_half, "%s %s", desc->name, |
| 970 | desc->args ? desc->args : ""); |
| 971 | fprintf(stdout, " %-36s %s\n", first_half, |
| 972 | desc->half_liner ? desc->half_liner : ""); |
| 973 | } |
| 974 | |
| 975 | exit(0); |
| 976 | } |
| 977 | |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 978 | static char *get_script_path(const char *script_root, const char *suffix) |
| 979 | { |
| 980 | struct dirent *script_next, *lang_next, script_dirent, lang_dirent; |
| 981 | char scripts_path[MAXPATHLEN]; |
| 982 | char script_path[MAXPATHLEN]; |
| 983 | DIR *scripts_dir, *lang_dir; |
| 984 | char lang_path[MAXPATHLEN]; |
| 985 | char *str, *__script_root; |
| 986 | char *path = NULL; |
| 987 | |
| 988 | snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path()); |
| 989 | |
| 990 | scripts_dir = opendir(scripts_path); |
| 991 | if (!scripts_dir) |
| 992 | return NULL; |
| 993 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 994 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 995 | snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, |
| 996 | lang_dirent.d_name); |
| 997 | lang_dir = opendir(lang_path); |
| 998 | if (!lang_dir) |
| 999 | continue; |
| 1000 | |
Shawn Bohrer | 008f29d | 2010-11-21 10:09:39 -0600 | [diff] [blame] | 1001 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1002 | __script_root = strdup(script_dirent.d_name); |
Stephane Eranian | 965bb6b | 2010-12-03 17:52:01 +0200 | [diff] [blame] | 1003 | str = (char *)ends_with(__script_root, suffix); |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1004 | if (str) { |
| 1005 | *str = '\0'; |
| 1006 | if (strcmp(__script_root, script_root)) |
| 1007 | continue; |
| 1008 | snprintf(script_path, MAXPATHLEN, "%s/%s", |
| 1009 | lang_path, script_dirent.d_name); |
| 1010 | path = strdup(script_path); |
| 1011 | free(__script_root); |
| 1012 | break; |
| 1013 | } |
| 1014 | free(__script_root); |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | return path; |
| 1019 | } |
| 1020 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1021 | static bool is_top_script(const char *script_path) |
| 1022 | { |
Stephane Eranian | 965bb6b | 2010-12-03 17:52:01 +0200 | [diff] [blame] | 1023 | return ends_with(script_path, "top") == NULL ? false : true; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | static int has_required_arg(char *script_path) |
| 1027 | { |
| 1028 | struct script_desc *desc; |
| 1029 | int n_args = 0; |
| 1030 | char *p; |
| 1031 | |
| 1032 | desc = script_desc__new(NULL); |
| 1033 | |
| 1034 | if (read_script_info(desc, script_path)) |
| 1035 | goto out; |
| 1036 | |
| 1037 | if (!desc->args) |
| 1038 | goto out; |
| 1039 | |
| 1040 | for (p = desc->args; *p; p++) |
| 1041 | if (*p == '<') |
| 1042 | n_args++; |
| 1043 | out: |
| 1044 | script_desc__delete(desc); |
| 1045 | |
| 1046 | return n_args; |
| 1047 | } |
| 1048 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1049 | static const char * const script_usage[] = { |
| 1050 | "perf script [<options>]", |
| 1051 | "perf script [<options>] record <script> [<record-options>] <command>", |
| 1052 | "perf script [<options>] report <script> [script-args]", |
| 1053 | "perf script [<options>] <script> [<record-options>] <command>", |
| 1054 | "perf script [<options>] <top-script> [script-args]", |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1055 | NULL |
| 1056 | }; |
| 1057 | |
| 1058 | static const struct option options[] = { |
| 1059 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
| 1060 | "dump raw trace in ASCII"), |
Ian Munsie | c055564 | 2010-04-13 18:37:33 +1000 | [diff] [blame] | 1061 | OPT_INCR('v', "verbose", &verbose, |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1062 | "be more verbose (show symbol address, etc)"), |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 1063 | OPT_BOOLEAN('L', "Latency", &latency_format, |
Steven Rostedt | cda4846 | 2009-10-14 15:43:42 -0400 | [diff] [blame] | 1064 | "show latency attributes (irqs/preemption disabled, etc)"), |
Tom Zanussi | 4b9c0c5 | 2009-12-15 02:53:38 -0600 | [diff] [blame] | 1065 | OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts", |
| 1066 | list_available_scripts), |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1067 | OPT_CALLBACK('s', "script", NULL, "name", |
| 1068 | "script file name (lang:script name, script name, or *)", |
| 1069 | parse_scriptname), |
| 1070 | OPT_STRING('g', "gen-script", &generate_script_lang, "lang", |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1071 | "generate perf-script.xx script in specified language"), |
Hitoshi Mitake | 408f0d1 | 2010-01-22 22:45:29 +0900 | [diff] [blame] | 1072 | OPT_STRING('i', "input", &input_name, "file", |
| 1073 | "input file name"), |
Frederic Weisbecker | ffabd99 | 2010-05-27 16:27:47 +0200 | [diff] [blame] | 1074 | OPT_BOOLEAN('d', "debug-mode", &debug_mode, |
| 1075 | "do various checks like samples ordering and lost events"), |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 1076 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
| 1077 | "file", "vmlinux pathname"), |
| 1078 | OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, |
| 1079 | "file", "kallsyms pathname"), |
| 1080 | OPT_BOOLEAN('G', "hide-call-graph", &no_callchain, |
| 1081 | "When printing symbols do not display call chain"), |
| 1082 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", |
| 1083 | "Look for files with symbols relative to this directory"), |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 1084 | OPT_CALLBACK('f', "fields", NULL, "str", |
David Ahern | 7cec092 | 2011-05-30 13:08:23 -0600 | [diff] [blame] | 1085 | "comma separated output fields prepend with 'type:'. Valid types: hw,sw,trace,raw. Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,addr", |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 1086 | parse_output_fields), |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 1087 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), |
Stephane Eranian | fbe96f2 | 2011-09-30 15:40:40 +0200 | [diff] [blame] | 1088 | OPT_BOOLEAN('I', "show-info", &show_full_info, |
| 1089 | "display extended information from perf.data file"), |
Masami Hiramatsu | 1909629 | 2009-08-21 14:56:03 -0400 | [diff] [blame] | 1090 | OPT_END() |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1091 | }; |
| 1092 | |
Tom Zanussi | 34c86ea | 2010-11-10 08:15:43 -0600 | [diff] [blame] | 1093 | static bool have_cmd(int argc, const char **argv) |
| 1094 | { |
| 1095 | char **__argv = malloc(sizeof(const char *) * argc); |
| 1096 | |
| 1097 | if (!__argv) |
| 1098 | die("malloc"); |
| 1099 | memcpy(__argv, argv, sizeof(const char *) * argc); |
| 1100 | argc = parse_options(argc, (const char **)__argv, record_options, |
| 1101 | NULL, PARSE_OPT_STOP_AT_NON_OPTION); |
| 1102 | free(__argv); |
| 1103 | |
| 1104 | return argc != 0; |
| 1105 | } |
| 1106 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1107 | int cmd_script(int argc, const char **argv, const char *prefix __used) |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1108 | { |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1109 | char *rec_script_path = NULL; |
| 1110 | char *rep_script_path = NULL; |
Arnaldo Carvalho de Melo | d8f6624 | 2009-12-13 19:50:24 -0200 | [diff] [blame] | 1111 | struct perf_session *session; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1112 | char *script_path = NULL; |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1113 | const char **__argv; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1114 | bool system_wide; |
| 1115 | int i, j, err; |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1116 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1117 | setup_scripting(); |
| 1118 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1119 | argc = parse_options(argc, argv, options, script_usage, |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1120 | PARSE_OPT_STOP_AT_NON_OPTION); |
| 1121 | |
| 1122 | if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) { |
| 1123 | rec_script_path = get_script_path(argv[1], RECORD_SUFFIX); |
| 1124 | if (!rec_script_path) |
| 1125 | return cmd_record(argc, argv, NULL); |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1126 | } |
| 1127 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1128 | if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) { |
| 1129 | rep_script_path = get_script_path(argv[1], REPORT_SUFFIX); |
| 1130 | if (!rep_script_path) { |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1131 | fprintf(stderr, |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1132 | "Please specify a valid report script" |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1133 | "(see 'perf script -l' for listing)\n"); |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1134 | return -1; |
| 1135 | } |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1136 | } |
| 1137 | |
Ben Hutchings | 44e668c | 2010-10-10 16:10:03 +0100 | [diff] [blame] | 1138 | /* make sure PERF_EXEC_PATH is set for scripts */ |
| 1139 | perf_set_argv_exec_path(perf_exec_path()); |
| 1140 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1141 | if (argc && !script_name && !rec_script_path && !rep_script_path) { |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1142 | int live_pipe[2]; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1143 | int rep_args; |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1144 | pid_t pid; |
| 1145 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1146 | rec_script_path = get_script_path(argv[0], RECORD_SUFFIX); |
| 1147 | rep_script_path = get_script_path(argv[0], REPORT_SUFFIX); |
| 1148 | |
| 1149 | if (!rec_script_path && !rep_script_path) { |
| 1150 | fprintf(stderr, " Couldn't find script %s\n\n See perf" |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1151 | " script -l for available scripts.\n", argv[0]); |
| 1152 | usage_with_options(script_usage, options); |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1153 | } |
| 1154 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1155 | if (is_top_script(argv[0])) { |
| 1156 | rep_args = argc - 1; |
| 1157 | } else { |
| 1158 | int rec_args; |
| 1159 | |
| 1160 | rep_args = has_required_arg(rep_script_path); |
| 1161 | rec_args = (argc - 1) - rep_args; |
| 1162 | if (rec_args < 0) { |
| 1163 | fprintf(stderr, " %s script requires options." |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1164 | "\n\n See perf script -l for available " |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1165 | "scripts and options.\n", argv[0]); |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1166 | usage_with_options(script_usage, options); |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1167 | } |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | if (pipe(live_pipe) < 0) { |
| 1171 | perror("failed to create pipe"); |
| 1172 | exit(-1); |
| 1173 | } |
| 1174 | |
| 1175 | pid = fork(); |
| 1176 | if (pid < 0) { |
| 1177 | perror("failed to fork"); |
| 1178 | exit(-1); |
| 1179 | } |
| 1180 | |
| 1181 | if (!pid) { |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1182 | system_wide = true; |
| 1183 | j = 0; |
| 1184 | |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1185 | dup2(live_pipe[1], 1); |
| 1186 | close(live_pipe[0]); |
| 1187 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1188 | if (!is_top_script(argv[0])) |
| 1189 | system_wide = !have_cmd(argc - rep_args, |
| 1190 | &argv[rep_args]); |
| 1191 | |
| 1192 | __argv = malloc((argc + 6) * sizeof(const char *)); |
Tom Zanussi | e8719ad | 2010-11-10 07:52:32 -0600 | [diff] [blame] | 1193 | if (!__argv) |
| 1194 | die("malloc"); |
| 1195 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1196 | __argv[j++] = "/bin/sh"; |
| 1197 | __argv[j++] = rec_script_path; |
| 1198 | if (system_wide) |
| 1199 | __argv[j++] = "-a"; |
| 1200 | __argv[j++] = "-q"; |
| 1201 | __argv[j++] = "-o"; |
| 1202 | __argv[j++] = "-"; |
| 1203 | for (i = rep_args + 1; i < argc; i++) |
| 1204 | __argv[j++] = argv[i]; |
| 1205 | __argv[j++] = NULL; |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1206 | |
| 1207 | execvp("/bin/sh", (char **)__argv); |
Tom Zanussi | e8719ad | 2010-11-10 07:52:32 -0600 | [diff] [blame] | 1208 | free(__argv); |
Tom Zanussi | a0cccc2 | 2010-04-01 23:59:25 -0500 | [diff] [blame] | 1209 | exit(-1); |
| 1210 | } |
| 1211 | |
| 1212 | dup2(live_pipe[0], 0); |
| 1213 | close(live_pipe[1]); |
| 1214 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1215 | __argv = malloc((argc + 4) * sizeof(const char *)); |
Tom Zanussi | e8719ad | 2010-11-10 07:52:32 -0600 | [diff] [blame] | 1216 | if (!__argv) |
| 1217 | die("malloc"); |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1218 | j = 0; |
Tom Zanussi | 34c86ea | 2010-11-10 08:15:43 -0600 | [diff] [blame] | 1219 | __argv[j++] = "/bin/sh"; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1220 | __argv[j++] = rep_script_path; |
| 1221 | for (i = 1; i < rep_args + 1; i++) |
Tom Zanussi | 34c86ea | 2010-11-10 08:15:43 -0600 | [diff] [blame] | 1222 | __argv[j++] = argv[i]; |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1223 | __argv[j++] = "-i"; |
| 1224 | __argv[j++] = "-"; |
Tom Zanussi | 34c86ea | 2010-11-10 08:15:43 -0600 | [diff] [blame] | 1225 | __argv[j++] = NULL; |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1226 | |
| 1227 | execvp("/bin/sh", (char **)__argv); |
Tom Zanussi | e8719ad | 2010-11-10 07:52:32 -0600 | [diff] [blame] | 1228 | free(__argv); |
Tom Zanussi | 3875294 | 2009-12-15 02:53:39 -0600 | [diff] [blame] | 1229 | exit(-1); |
| 1230 | } |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1231 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1232 | if (rec_script_path) |
| 1233 | script_path = rec_script_path; |
| 1234 | if (rep_script_path) |
| 1235 | script_path = rep_script_path; |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1236 | |
Tom Zanussi | b5b8731 | 2010-11-10 08:16:51 -0600 | [diff] [blame] | 1237 | if (script_path) { |
| 1238 | system_wide = false; |
| 1239 | j = 0; |
| 1240 | |
| 1241 | if (rec_script_path) |
| 1242 | system_wide = !have_cmd(argc - 1, &argv[1]); |
| 1243 | |
| 1244 | __argv = malloc((argc + 2) * sizeof(const char *)); |
| 1245 | if (!__argv) |
| 1246 | die("malloc"); |
| 1247 | __argv[j++] = "/bin/sh"; |
| 1248 | __argv[j++] = script_path; |
| 1249 | if (system_wide) |
| 1250 | __argv[j++] = "-a"; |
| 1251 | for (i = 2; i < argc; i++) |
| 1252 | __argv[j++] = argv[i]; |
| 1253 | __argv[j++] = NULL; |
| 1254 | |
| 1255 | execvp("/bin/sh", (char **)__argv); |
| 1256 | free(__argv); |
| 1257 | exit(-1); |
| 1258 | } |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1259 | |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 1260 | if (symbol__init() < 0) |
| 1261 | return -1; |
Tom Zanussi | cf4fee5 | 2010-03-03 01:04:33 -0600 | [diff] [blame] | 1262 | if (!script_name) |
| 1263 | setup_pager(); |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1264 | |
Ian Munsie | 21ef97f | 2010-12-10 14:09:16 +1100 | [diff] [blame] | 1265 | session = perf_session__new(input_name, O_RDONLY, 0, false, &event_ops); |
Arnaldo Carvalho de Melo | d8f6624 | 2009-12-13 19:50:24 -0200 | [diff] [blame] | 1266 | if (session == NULL) |
| 1267 | return -ENOMEM; |
| 1268 | |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 1269 | if (cpu_list) { |
| 1270 | if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap)) |
| 1271 | return -1; |
| 1272 | } |
| 1273 | |
Stephane Eranian | fbe96f2 | 2011-09-30 15:40:40 +0200 | [diff] [blame] | 1274 | perf_session__fprintf_info(session, stdout, show_full_info); |
| 1275 | |
David Ahern | 1424dc9 | 2011-03-09 22:23:28 -0700 | [diff] [blame] | 1276 | if (!no_callchain) |
David Ahern | c0230b2 | 2011-03-09 22:23:27 -0700 | [diff] [blame] | 1277 | symbol_conf.use_callchain = true; |
| 1278 | else |
| 1279 | symbol_conf.use_callchain = false; |
| 1280 | |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1281 | if (generate_script_lang) { |
| 1282 | struct stat perf_stat; |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 1283 | int input; |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1284 | |
David Ahern | 2c9e45f7 | 2011-03-17 10:03:21 -0600 | [diff] [blame] | 1285 | if (output_set_by_user()) { |
David Ahern | 745f43e | 2011-03-09 22:23:26 -0700 | [diff] [blame] | 1286 | fprintf(stderr, |
| 1287 | "custom fields not supported for generated scripts"); |
| 1288 | return -1; |
| 1289 | } |
| 1290 | |
| 1291 | input = open(input_name, O_RDONLY); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1292 | if (input < 0) { |
| 1293 | perror("failed to open file"); |
| 1294 | exit(-1); |
| 1295 | } |
| 1296 | |
| 1297 | err = fstat(input, &perf_stat); |
| 1298 | if (err < 0) { |
| 1299 | perror("failed to stat file"); |
| 1300 | exit(-1); |
| 1301 | } |
| 1302 | |
| 1303 | if (!perf_stat.st_size) { |
| 1304 | fprintf(stderr, "zero-sized file, nothing to do!\n"); |
| 1305 | exit(0); |
| 1306 | } |
| 1307 | |
| 1308 | scripting_ops = script_spec__lookup(generate_script_lang); |
| 1309 | if (!scripting_ops) { |
| 1310 | fprintf(stderr, "invalid language specifier"); |
| 1311 | return -1; |
| 1312 | } |
| 1313 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1314 | err = scripting_ops->generate_script("perf-script"); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1315 | goto out; |
| 1316 | } |
| 1317 | |
| 1318 | if (script_name) { |
Tom Zanussi | 586bc5c | 2009-12-15 02:53:35 -0600 | [diff] [blame] | 1319 | err = scripting_ops->start_script(script_name, argc, argv); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1320 | if (err) |
| 1321 | goto out; |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1322 | pr_debug("perf script started with script %s\n\n", script_name); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1323 | } |
| 1324 | |
David Ahern | 9cbdb70 | 2011-04-06 21:54:20 -0600 | [diff] [blame] | 1325 | |
| 1326 | err = perf_session__check_output_opt(session); |
| 1327 | if (err < 0) |
| 1328 | goto out; |
| 1329 | |
Ingo Molnar | 133dc4c | 2010-11-16 18:45:39 +0100 | [diff] [blame] | 1330 | err = __cmd_script(session); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1331 | |
Arnaldo Carvalho de Melo | d8f6624 | 2009-12-13 19:50:24 -0200 | [diff] [blame] | 1332 | perf_session__delete(session); |
Tom Zanussi | 956ffd0 | 2009-11-25 01:15:46 -0600 | [diff] [blame] | 1333 | cleanup_scripting(); |
| 1334 | out: |
| 1335 | return err; |
Frederic Weisbecker | 5f9c39d | 2009-08-17 16:18:08 +0200 | [diff] [blame] | 1336 | } |