2 * sampleip: sample instruction pointer and frequency count in a BPF map.
4 * Copyright 2016 Netflix, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
18 #include <linux/perf_event.h>
19 #include <linux/ptrace.h>
20 #include <linux/bpf.h>
21 #include <sys/ioctl.h>
26 #define DEFAULT_FREQ 99
27 #define DEFAULT_SECS 5
29 #define PAGE_OFFSET 0xffff880000000000
33 static void usage(void)
35 printf("USAGE: sampleip [-F freq] [duration]\n");
36 printf(" -F freq # sample frequency (Hertz), default 99\n");
37 printf(" duration # sampling duration (seconds), default 5\n");
40 static int sampling_start(int *pmu_fd
, int freq
)
44 struct perf_event_attr pe_sample_attr
= {
45 .type
= PERF_TYPE_SOFTWARE
,
47 .sample_period
= freq
,
48 .config
= PERF_COUNT_SW_CPU_CLOCK
,
52 for (i
= 0; i
< nr_cpus
; i
++) {
53 pmu_fd
[i
] = sys_perf_event_open(&pe_sample_attr
, -1 /* pid */, i
,
54 -1 /* group_fd */, 0 /* flags */);
56 fprintf(stderr
, "ERROR: Initializing perf sampling\n");
59 assert(ioctl(pmu_fd
[i
], PERF_EVENT_IOC_SET_BPF
,
61 assert(ioctl(pmu_fd
[i
], PERF_EVENT_IOC_ENABLE
, 0) == 0);
67 static void sampling_end(int *pmu_fd
)
71 for (i
= 0; i
< nr_cpus
; i
++)
80 /* used for sorting */
81 struct ipcount counts
[MAX_IPS
];
83 static int count_cmp(const void *p1
, const void *p2
)
85 return ((struct ipcount
*)p1
)->count
- ((struct ipcount
*)p2
)->count
;
88 static void print_ip_map(int fd
)
95 printf("%-19s %-32s %s\n", "ADDR", "KSYM", "COUNT");
97 /* fetch IPs and counts */
99 while (bpf_map_get_next_key(fd
, &key
, &next_key
) == 0) {
100 bpf_map_lookup_elem(fd
, &next_key
, &value
);
101 counts
[i
].ip
= next_key
;
102 counts
[i
++].count
= value
;
108 qsort(counts
, max
, sizeof(struct ipcount
), count_cmp
);
109 for (i
= 0; i
< max
; i
++) {
110 if (counts
[i
].ip
> PAGE_OFFSET
) {
111 sym
= ksym_search(counts
[i
].ip
);
112 printf("0x%-17llx %-32s %u\n", counts
[i
].ip
, sym
->name
,
115 printf("0x%-17llx %-32s %u\n", counts
[i
].ip
, "(user)",
120 if (max
== MAX_IPS
) {
121 printf("WARNING: IP hash was full (max %d entries); ", max
);
122 printf("may have dropped samples\n");
126 static void int_exit(int sig
)
129 print_ip_map(map_fd
[0]);
133 int main(int argc
, char **argv
)
136 int *pmu_fd
, opt
, freq
= DEFAULT_FREQ
, secs
= DEFAULT_SECS
;
138 /* process arguments */
139 while ((opt
= getopt(argc
, argv
, "F:h")) != -1) {
150 if (argc
- optind
== 1)
151 secs
= atoi(argv
[optind
]);
152 if (freq
== 0 || secs
== 0) {
157 /* initialize kernel symbol translation */
158 if (load_kallsyms()) {
159 fprintf(stderr
, "ERROR: loading /proc/kallsyms\n");
163 /* create perf FDs for each CPU */
164 nr_cpus
= sysconf(_SC_NPROCESSORS_CONF
);
165 pmu_fd
= malloc(nr_cpus
* sizeof(int));
166 if (pmu_fd
== NULL
) {
167 fprintf(stderr
, "ERROR: malloc of pmu_fd\n");
171 /* load BPF program */
172 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
173 if (load_bpf_file(filename
)) {
174 fprintf(stderr
, "ERROR: loading BPF program (errno %d):\n",
176 if (strcmp(bpf_log_buf
, "") == 0)
177 fprintf(stderr
, "Try: ulimit -l unlimited\n");
179 fprintf(stderr
, "%s", bpf_log_buf
);
182 signal(SIGINT
, int_exit
);
185 printf("Sampling at %d Hertz for %d seconds. Ctrl-C also ends.\n",
187 if (sampling_start(pmu_fd
, freq
) != 0)
190 sampling_end(pmu_fd
);
193 /* output sample counts */
194 print_ip_map(map_fd
[0]);