6 #include <sys/utsname.h>
7 #ifdef HAVE_BACKTRACE_SUPPORT
16 #include <linux/kernel.h>
17 #include <linux/log2.h>
19 #include "callchain.h"
22 struct callchain_param callchain_param
= {
23 .mode
= CHAIN_GRAPH_ABS
,
25 .order
= ORDER_CALLEE
,
26 .key
= CCKEY_FUNCTION
,
27 .value
= CCVAL_PERCENT
,
31 * XXX We need to find a better place for these things...
33 unsigned int page_size
;
36 bool test_attr__enabled
;
38 bool perf_host
= true;
39 bool perf_guest
= false;
41 void event_attr_init(struct perf_event_attr
*attr
)
44 attr
->exclude_host
= 1;
46 attr
->exclude_guest
= 1;
47 /* to capture ABI version */
48 attr
->size
= sizeof(*attr
);
51 int mkdir_p(char *path
, mode_t mode
)
60 if (stat(path
, &st
) == 0)
65 while ((d
= strchr(d
, '/'))) {
67 err
= stat(path
, &st
) && mkdir(path
, mode
);
74 return (stat(path
, &st
) && mkdir(path
, mode
)) ? -1 : 0;
82 char namebuf
[PATH_MAX
];
88 while ((d
= readdir(dir
)) != NULL
&& !ret
) {
91 if (!strcmp(d
->d_name
, ".") || !strcmp(d
->d_name
, ".."))
94 scnprintf(namebuf
, sizeof(namebuf
), "%s/%s",
97 ret
= stat(namebuf
, &statbuf
);
99 pr_debug("stat failed: %s\n", namebuf
);
103 if (S_ISREG(statbuf
.st_mode
))
104 ret
= unlink(namebuf
);
105 else if (S_ISDIR(statbuf
.st_mode
))
106 ret
= rm_rf(namebuf
);
108 pr_debug("unknown file: %s\n", namebuf
);
120 static int slow_copyfile(const char *from
, const char *to
)
125 FILE *from_fp
= fopen(from
, "r"), *to_fp
;
130 to_fp
= fopen(to
, "w");
132 goto out_fclose_from
;
134 while (getline(&line
, &n
, from_fp
) > 0)
135 if (fputs(line
, to_fp
) == EOF
)
147 int copyfile_offset(int ifd
, loff_t off_in
, int ofd
, loff_t off_out
, u64 size
)
152 pgoff
= off_in
& ~(page_size
- 1);
155 ptr
= mmap(NULL
, off_in
+ size
, PROT_READ
, MAP_PRIVATE
, ifd
, pgoff
);
156 if (ptr
== MAP_FAILED
)
160 ssize_t ret
= pwrite(ofd
, ptr
+ off_in
, size
, off_out
);
161 if (ret
< 0 && errno
== EINTR
)
170 munmap(ptr
, off_in
+ size
);
172 return size
? -1 : 0;
175 int copyfile_mode(const char *from
, const char *to
, mode_t mode
)
180 char *tmp
= NULL
, *ptr
= NULL
;
185 /* extra 'x' at the end is to reserve space for '.' */
186 if (asprintf(&tmp
, "%s.XXXXXXx", to
) < 0) {
190 ptr
= strrchr(tmp
, '/');
193 ptr
= memmove(ptr
+ 1, ptr
, strlen(ptr
) - 1);
200 if (fchmod(tofd
, mode
))
203 if (st
.st_size
== 0) { /* /proc? do it slowly... */
204 err
= slow_copyfile(from
, tmp
);
208 fromfd
= open(from
, O_RDONLY
);
212 err
= copyfile_offset(fromfd
, 0, tofd
, 0, st
.st_size
);
225 int copyfile(const char *from
, const char *to
)
227 return copyfile_mode(from
, to
, 0755);
230 unsigned long convert_unit(unsigned long value
, char *unit
)
252 static ssize_t
ion(bool is_read
, int fd
, void *buf
, size_t n
)
254 void *buf_start
= buf
;
258 ssize_t ret
= is_read
? read(fd
, buf
, left
) :
259 write(fd
, buf
, left
);
261 if (ret
< 0 && errno
== EINTR
)
270 BUG_ON((size_t)(buf
- buf_start
) != n
);
275 * Read exactly 'n' bytes or return an error.
277 ssize_t
readn(int fd
, void *buf
, size_t n
)
279 return ion(true, fd
, buf
, n
);
283 * Write exactly 'n' bytes or return an error.
285 ssize_t
writen(int fd
, void *buf
, size_t n
)
287 return ion(false, fd
, buf
, n
);
290 size_t hex_width(u64 v
)
300 static int hex(char ch
)
302 if ((ch
>= '0') && (ch
<= '9'))
304 if ((ch
>= 'a') && (ch
<= 'f'))
305 return ch
- 'a' + 10;
306 if ((ch
>= 'A') && (ch
<= 'F'))
307 return ch
- 'A' + 10;
312 * While we find nice hex chars, build a long_val.
313 * Return number of chars processed.
315 int hex2u64(const char *ptr
, u64
*long_val
)
321 const int hex_val
= hex(*p
);
326 *long_val
= (*long_val
<< 4) | hex_val
;
333 /* Obtain a backtrace and print it to stdout. */
334 #ifdef HAVE_BACKTRACE_SUPPORT
335 void dump_stack(void)
338 size_t size
= backtrace(array
, ARRAY_SIZE(array
));
339 char **strings
= backtrace_symbols(array
, size
);
342 printf("Obtained %zd stack frames.\n", size
);
344 for (i
= 0; i
< size
; i
++)
345 printf("%s\n", strings
[i
]);
350 void dump_stack(void) {}
353 void sighandler_dump_stack(int sig
)
355 psignal(sig
, "perf");
357 signal(sig
, SIG_DFL
);
361 int parse_nsec_time(const char *str
, u64
*ptime
)
363 u64 time_sec
, time_nsec
;
366 time_sec
= strtoul(str
, &end
, 10);
367 if (*end
!= '.' && *end
!= '\0')
374 if (strlen(++end
) > 9)
377 strncpy(nsec_buf
, end
, 9);
380 /* make it nsec precision */
381 for (i
= strlen(nsec_buf
); i
< 9; i
++)
384 time_nsec
= strtoul(nsec_buf
, &end
, 10);
390 *ptime
= time_sec
* NSEC_PER_SEC
+ time_nsec
;
394 unsigned long parse_tag_value(const char *str
, struct parse_tag
*tags
)
396 struct parse_tag
*i
= tags
;
401 s
= strchr(str
, i
->tag
);
403 unsigned long int value
;
406 value
= strtoul(str
, &endptr
, 10);
410 if (value
> ULONG_MAX
/ i
->mult
)
418 return (unsigned long) -1;
421 int get_stack_size(const char *str
, unsigned long *_size
)
425 unsigned long max_size
= round_down(USHRT_MAX
, sizeof(u64
));
427 size
= strtoul(str
, &endptr
, 0);
433 size
= round_up(size
, sizeof(u64
));
434 if (!size
|| size
> max_size
)
442 pr_err("callchain: Incorrect stack dump size (max %ld): %s\n",
447 int parse_callchain_record(const char *arg
, struct callchain_param
*param
)
449 char *tok
, *name
, *saveptr
= NULL
;
453 /* We need buffer that we know we can write to. */
454 buf
= malloc(strlen(arg
) + 1);
460 tok
= strtok_r((char *)buf
, ",", &saveptr
);
461 name
= tok
? : (char *)buf
;
464 /* Framepointer style */
465 if (!strncmp(name
, "fp", sizeof("fp"))) {
466 if (!strtok_r(NULL
, ",", &saveptr
)) {
467 param
->record_mode
= CALLCHAIN_FP
;
470 pr_err("callchain: No more arguments "
471 "needed for --call-graph fp\n");
474 #ifdef HAVE_DWARF_UNWIND_SUPPORT
476 } else if (!strncmp(name
, "dwarf", sizeof("dwarf"))) {
477 const unsigned long default_stack_dump_size
= 8192;
480 param
->record_mode
= CALLCHAIN_DWARF
;
481 param
->dump_size
= default_stack_dump_size
;
483 tok
= strtok_r(NULL
, ",", &saveptr
);
485 unsigned long size
= 0;
487 ret
= get_stack_size(tok
, &size
);
488 param
->dump_size
= size
;
490 #endif /* HAVE_DWARF_UNWIND_SUPPORT */
491 } else if (!strncmp(name
, "lbr", sizeof("lbr"))) {
492 if (!strtok_r(NULL
, ",", &saveptr
)) {
493 param
->record_mode
= CALLCHAIN_LBR
;
496 pr_err("callchain: No more arguments "
497 "needed for --call-graph lbr\n");
500 pr_err("callchain: Unknown --call-graph option "
511 const char *get_filename_for_perf_kvm(void)
513 const char *filename
;
515 if (perf_host
&& !perf_guest
)
516 filename
= strdup("perf.data.host");
517 else if (!perf_host
&& perf_guest
)
518 filename
= strdup("perf.data.guest");
520 filename
= strdup("perf.data.kvm");
525 int perf_event_paranoid(void)
529 if (sysctl__read_int("kernel/perf_event_paranoid", &value
))
535 void mem_bswap_32(void *src
, int byte_size
)
538 while (byte_size
> 0) {
540 byte_size
-= sizeof(u32
);
545 void mem_bswap_64(void *src
, int byte_size
)
549 while (byte_size
> 0) {
551 byte_size
-= sizeof(u64
);
556 bool find_process(const char *name
)
558 size_t len
= strlen(name
);
563 dir
= opendir(procfs__mountpoint());
567 /* Walk through the directory. */
568 while (ret
&& (d
= readdir(dir
)) != NULL
) {
573 if ((d
->d_type
!= DT_DIR
) ||
574 !strcmp(".", d
->d_name
) ||
575 !strcmp("..", d
->d_name
))
578 scnprintf(path
, sizeof(path
), "%s/%s/comm",
579 procfs__mountpoint(), d
->d_name
);
581 if (filename__read_str(path
, &data
, &size
))
584 ret
= strncmp(name
, data
, len
);
589 return ret
? false : true;
593 fetch_kernel_version(unsigned int *puint
, char *str
,
596 struct utsname utsname
;
597 int version
, patchlevel
, sublevel
, err
;
602 if (str
&& str_size
) {
603 strncpy(str
, utsname
.release
, str_size
);
604 str
[str_size
- 1] = '\0';
607 err
= sscanf(utsname
.release
, "%d.%d.%d",
608 &version
, &patchlevel
, &sublevel
);
611 pr_debug("Unablt to get kernel version from uname '%s'\n",
617 *puint
= (version
<< 16) + (patchlevel
<< 8) + sublevel
;
621 const char *perf_tip(const char *dirpath
)
623 struct strlist
*tips
;
624 struct str_node
*node
;
626 struct strlist_config conf
= {
631 tips
= strlist__new("tips.txt", &conf
);
633 return errno
== ENOENT
? NULL
: "Tip: get more memory! ;-p";
635 if (strlist__nr_entries(tips
) == 0)
638 node
= strlist__entry(tips
, random() % strlist__nr_entries(tips
));
639 if (asprintf(&tip
, "Tip: %s", node
->s
) < 0)
640 tip
= (char *)"Tip: get more memory! ;-)";
643 strlist__delete(tips
);
648 bool is_regular_file(const char *file
)
655 return S_ISREG(st
.st_mode
);
658 int fetch_current_timestamp(char *buf
, size_t sz
)
664 if (gettimeofday(&tv
, NULL
) || !localtime_r(&tv
.tv_sec
, &tm
))
667 if (!strftime(dt
, sizeof(dt
), "%Y%m%d%H%M%S", &tm
))
670 scnprintf(buf
, sz
, "%s%02u", dt
, (unsigned)tv
.tv_usec
/ 10000);
675 void print_binary(unsigned char *data
, size_t len
,
676 size_t bytes_per_line
, print_binary_t printer
,
684 bytes_per_line
= roundup_pow_of_two(bytes_per_line
);
685 mask
= bytes_per_line
- 1;
687 printer(BINARY_PRINT_DATA_BEGIN
, 0, extra
);
688 for (i
= 0; i
< len
; i
++) {
689 if ((i
& mask
) == 0) {
690 printer(BINARY_PRINT_LINE_BEGIN
, -1, extra
);
691 printer(BINARY_PRINT_ADDR
, i
, extra
);
694 printer(BINARY_PRINT_NUM_DATA
, data
[i
], extra
);
696 if (((i
& mask
) == mask
) || i
== len
- 1) {
697 for (j
= 0; j
< mask
-(i
& mask
); j
++)
698 printer(BINARY_PRINT_NUM_PAD
, -1, extra
);
700 printer(BINARY_PRINT_SEP
, i
, extra
);
701 for (j
= i
& ~mask
; j
<= i
; j
++)
702 printer(BINARY_PRINT_CHAR_DATA
, data
[j
], extra
);
703 for (j
= 0; j
< mask
-(i
& mask
); j
++)
704 printer(BINARY_PRINT_CHAR_PAD
, i
, extra
);
705 printer(BINARY_PRINT_LINE_END
, -1, extra
);
708 printer(BINARY_PRINT_DATA_END
, -1, extra
);