forked from andysan/perf_tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathperfrecord.c
458 lines (387 loc) · 11.8 KB
/
perfrecord.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
* Copyright (C) 2010-2011, Andreas Sandberg
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define _GNU_SOURCE
#include <sys/wait.h>
#include <sys/mman.h>
#include <sys/signalfd.h>
#include <sched.h>
#include <poll.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <assert.h>
#include <argp.h>
#include "perf_compat.h"
#include "perf_common.h"
#include "perf_file.h"
#include "perf_argp.h"
#include "expect.h"
#include "util.h"
#undef DEBUG
#define NO_PID -1
#define RING_BUF_NUM_PAGES 17
static long page_size;
static struct perf_event_mmap_page *perf_header = NULL;
static unsigned char *perf_buf = NULL;
static uint64_t buf_mask = 0;
static uint64_t my_head = 0;
/* Configuration options */
pid_t attach_pid = NO_PID;
char **exec_argv = NULL;
FILE *output;
char *output_name;
int force_cpu = -1;
int monitor_cpu = -1;
pid_t exec_pid = NO_PID;
static inline void
barrier()
{
__sync_synchronize();
}
static uint64_t
read_head()
{
long head;
head = perf_header->data_head;
barrier();
return head;
}
static void
write_tail(uint64_t tail)
{
barrier();
perf_header->data_tail = tail;
}
static void
dump_events()
{
uint64_t new_head = read_head();
size_t size, start;
assert(new_head >= my_head);
/* This can happen when flushing buffers when a child exits,
* i.e. this situation is completely normal */
if (new_head == my_head)
return;
size = new_head - my_head;
start = my_head & buf_mask;
#ifdef DEBUG
fprintf(stderr,
"size: 0x%" PRIx64 " start: 0x%" PRIx64 " buf_mask: 0x%" PRIx64 "\n",
size, start, buf_mask);
#endif
/* Does the data wrap, i.e. is start + size larger than the buffer size? */
if ((start + size - 1) & (~buf_mask)) {
size_t start_size = (start + size) & buf_mask;
#ifdef DEBUG
fprintf(stderr, "Buffer wrap.\n");
#endif
fwrite(perf_buf + start, size - start_size, 1, output);
start = 0;
size = start_size;
}
EXPECT(fwrite(perf_buf + start, size, 1, output) == 1);
my_head = new_head;
write_tail(new_head);
}
#ifdef DEBUG
static void
print_page_info()
{
printf("MMAP buf:\n"
" version: %" PRIu32 "\n"
" compat_version: %" PRIu32 "\n"
" lock: %" PRIu32 "\n"
" index: %" PRIu32 "\n"
" offset: %" PRIi64 "\n"
" time_enabled: %" PRIu64 "\n"
" time_running: %" PRIu64 "\n"
" data_head: %" PRIu64 "\n"
" data_tail: %" PRIu64 "\n",
perf_header->version,
perf_header->compat_version,
perf_header->lock,
perf_header->index,
perf_header->offset,
perf_header->time_enabled,
perf_header->time_running,
perf_header->data_head,
perf_header->data_tail);
}
#endif
static int
create_sig_fd()
{
sigset_t mask;
int sfd;
sigemptyset(&mask);
sigaddset(&mask, SIGCHLD);
sigaddset(&mask, SIGINT);
sigaddset(&mask, SIGUSR1);
EXPECT(sigprocmask(SIG_BLOCK, &mask, NULL) != -1);
sfd = signalfd(-1, &mask, 0);
EXPECT(sfd != -1);
return sfd;
}
static void
handle_signal(int sfd)
{
struct signalfd_siginfo fdsi;
EXPECT(read(sfd, &fdsi, sizeof(fdsi)) == sizeof(fdsi));
switch (fdsi.ssi_signo) {
case SIGINT:
dump_events();
if (exec_pid != NO_PID) {
/* Try to terminate the child, if this succeeds, we'll
* get a SIGCHLD and terminate ourselves. */
fprintf(stderr, "Sending SIGTERM to child.\n");
kill(exec_pid, SIGTERM);
} else
exit(EXIT_SUCCESS);
break;
case SIGCHLD: {
int status;
assert(attach_pid == NO_PID);
assert(exec_pid != NO_PID);
assert(exec_pid == fdsi.ssi_pid);
EXPECT_ERRNO(waitpid(fdsi.ssi_pid, &status, WNOHANG) > 0);
dump_events();
if (WIFEXITED(status)) {
fprintf(stderr, "Child exited with status '%i'.\n",
WEXITSTATUS(status));
exit(WEXITSTATUS(status) == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
} else if (WIFSIGNALED(status)) {
fprintf(stderr, "Child terminated by signal '%i'.\n",
WTERMSIG(status));
if (WCOREDUMP(status))
fprintf(stderr, "Core dumped.\n");
exit(EXIT_FAILURE);
} else
EXPECT(0);
} break;
case SIGUSR1:
#ifdef DEBUG
print_page_info();
#endif
break;
default:
fprintf(stderr, "Unhandled signal: %i\n", fdsi.ssi_signo);
break;
}
}
static void
do_attach()
{
int sfd;
sfd = create_sig_fd();
printf("Attaching to PID %i.\n", attach_pid);
if (ctrs_attach(&perf_ctrs, attach_pid, monitor_cpu, 0 /* flags */) == -1)
exit(EXIT_FAILURE);
perf_header = mmap(NULL,
page_size * RING_BUF_NUM_PAGES,
PROT_READ | PROT_WRITE,
MAP_SHARED,
perf_ctrs.head->fd, 0);
EXPECT_ERRNO(perf_header != MAP_FAILED);
perf_buf = (void *)((char *)perf_header + page_size);
while (1) {
struct pollfd pfd[] = {
{ perf_ctrs.head->fd, POLLIN, 0 },
{ sfd, POLLIN, 0 }
};
#ifdef DEBUG
print_page_info();
#endif
EXPECT_ERRNO(poll(pfd, 2, -1) != -1);
if (pfd[0].revents & POLLIN)
dump_events();
if (pfd[1].revents & POLLIN)
handle_signal(sfd);
}
}
static void
pin_process(pid_t pid, int cpu)
{
cpu_set_t cpu_set;
CPU_ZERO(&cpu_set);
CPU_SET(cpu, &cpu_set);
EXPECT_ERRNO(sched_setaffinity(pid, sizeof(cpu_set_t), &cpu_set) != -1);
}
static void
setup_child(void *data)
{
if (force_cpu != -1)
pin_process(0, force_cpu);
}
static void
do_start()
{
int sfd;
if (perf_ctrs.head) {
perf_ctrs.head->attr.disabled = 1;
perf_ctrs.head->attr.enable_on_exec = 1;
}
sfd = create_sig_fd();
exec_pid = ctrs_execvp_cb(&perf_ctrs, monitor_cpu /* cpu */, 0 /* flags */,
&setup_child, NULL,
exec_argv[0], exec_argv);
EXPECT(exec_pid != -1);
perf_header = mmap(NULL,
page_size * RING_BUF_NUM_PAGES,
PROT_READ | PROT_WRITE,
MAP_SHARED,
perf_ctrs.head->fd, 0);
EXPECT_ERRNO(perf_header != MAP_FAILED);
perf_buf = (void *)((char *)perf_header + page_size);
while (1) {
#ifdef DEBUG
print_page_info();
#endif
struct pollfd pfd[] = {
{ perf_ctrs.head->fd, POLLIN, 0 },
{ sfd, POLLIN, 0 }
};
EXPECT_ERRNO(poll(pfd, 2, -1) != -1);
if (pfd[0].revents & POLLIN)
dump_events();
if (pfd[1].revents & POLLIN)
handle_signal(sfd);
}
}
/*** argument handling ************************************************/
static error_t
parse_opt (int key, char *arg, struct argp_state *state)
{
switch (key)
{
case 'p':
attach_pid = perf_argp_parse_long("PID", arg, state);
break;
case 'o':
output_name = arg;
break;
case 'c':
force_cpu = perf_argp_parse_long("CPU", arg, state);
if (force_cpu < 0)
argp_error(state, "CPU number must be positive\n");
break;
case ARGP_KEY_ARG:
if (!state->quoted)
argp_error(state, "Illegal argument\n");
break;
case ARGP_KEY_END:
if (state->quoted && state->quoted < state->argc)
exec_argv = &state->argv[state->quoted];
if (exec_argv && attach_pid != NO_PID)
argp_error(state,
"Both a command to execute and a PID to attach have\n"
"been specified. Make up your mind!\n");
else if (!exec_argv && attach_pid == NO_PID)
argp_error(state,
"Neither a command to execute, nor a PID to attach have\n"
"been specified. Don't know what to do.\n");
if (output_name) {
output = fopen(output_name, "w");
if (!output)
argp_failure(state, EXIT_FAILURE, errno,
"Failed to open output file");
} else
output = stdout;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
const char *argp_program_version =
"perfrecord\n"
"\n"
" Copyright (C) 2010-2011, Andreas Sandberg\n"
"\n"
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms set out in the COPYING file, which is included\n"
" in the perf_tools source distribution.\n";
const char *argp_program_bug_address =
static struct argp_option arg_options[] = {
{ "output", 'o', "FILE", 0, "Output file", 0 },
{ "pid", 'p', "PID", 0, "Attach to process PID", 0 },
{ "force-cpu", 'c', "CPU", 0,
"Pin child process to CPU. This option does not work with attach.", 0 },
{ 0 }
};
static struct argp_child arg_children[] = {
{ &perf_argp, 0, "Event options:", 0 },
{ 0 }
};
static struct argp argp = {
.options = arg_options,
.parser = parse_opt,
.args_doc = "[-- command [arg ...]]",
.doc = "Simple interface for recording performance counters"
"\v"
"perfrecord dumps the output from the perf event ring buffer to STDOUT "
"or a file. If perfrecord started the target application, it will also "
"terminate the application on exit.\n"
"\n"
"NOTE: The output of perfrecord is not considered stable, files "
"produced by one version of perf tools might not work with other "
"versions.\n",
.children = arg_children,
};
int
main(int argc, char **argv)
{
perf_base_attr.sample_type =
PERF_SAMPLE_IP | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU | PERF_SAMPLE_READ;
perf_base_attr.read_format =
PERF_FORMAT_ID | PERF_FORMAT_GROUP;
argp_parse (&argp, argc, argv,
ARGP_IN_ORDER,
0,
NULL);
page_size = sysconf(_SC_PAGE_SIZE);
buf_mask = page_size * (RING_BUF_NUM_PAGES - 1) - 1;
EXPECT_ERRNO(page_size != -1);
EXPECT(ctrs_write_header(&perf_ctrs, output) == 1);
if (exec_argv)
do_start();
else
do_attach();
exit(EXIT_SUCCESS);
}
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* indent-tabs-mode: nil
* c-file-style: "k&r"
* End:
*/