13 static void stars(char *str, long val, long max, int width)
17 for (i = 0; i < (width * val / max) - 1 && i < width - 1; i++)
35 #define SIZE sizeof(struct task)
37 static void print_hist_for_pid(int fd, void *task)
39 struct hist_key key = {}, next_key;
40 unsigned int nr_cpus = sysconf(_SC_NPROCESSORS_CONF);
42 char starstr[MAX_STARS];
44 long data[MAX_INDEX] = {};
49 while (bpf_get_next_key(fd, &key, &next_key) == 0) {
50 if (memcmp(&next_key, task, SIZE)) {
54 bpf_lookup_elem(fd, &next_key, values);
56 for (i = 0; i < nr_cpus; i++)
60 if (value && ind > max_ind)
62 if (value > max_value)
67 printf(" syscall write() stats\n");
68 printf(" byte_size : count distribution\n");
69 for (i = 1; i <= max_ind + 1; i++) {
70 stars(starstr, data[i - 1], max_value, MAX_STARS);
71 printf("%8ld -> %-8ld : %-8ld |%-*s|\n",
72 (1l << i) >> 1, (1l << i) - 1, data[i - 1],
77 static void print_hist(int fd)
79 struct hist_key key = {}, next_key;
80 static struct task tasks[1024];
84 while (bpf_get_next_key(fd, &key, &next_key) == 0) {
87 for (i = 0; i < task_cnt; i++)
88 if (memcmp(&tasks[i], &next_key, SIZE) == 0)
91 memcpy(&tasks[task_cnt++], &next_key, SIZE);
95 for (i = 0; i < task_cnt; i++) {
96 printf("\npid %d cmd %s uid %d\n",
97 (__u32) tasks[i].pid_tgid,
99 (__u32) tasks[i].uid_gid);
100 print_hist_for_pid(fd, &tasks[i]);
105 static void int_exit(int sig)
107 print_hist(map_fd[1]);
111 int main(int ac, char **argv)
114 long key, next_key, value;
118 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
120 signal(SIGINT, int_exit);
122 /* start 'ping' in the background to have some kfree_skb events */
123 f = popen("ping -c5 localhost", "r");
126 /* start 'dd' in the background to have plenty of 'write' syscalls */
127 f = popen("dd if=/dev/zero of=/dev/null count=5000000", "r");
130 if (load_bpf_file(filename)) {
131 printf("%s", bpf_log_buf);
135 for (i = 0; i < 5; i++) {
137 while (bpf_get_next_key(map_fd[0], &key, &next_key) == 0) {
138 bpf_lookup_elem(map_fd[0], &next_key, &value);
139 printf("location 0x%lx count %ld\n", next_key, value);
146 print_hist(map_fd[1]);