224 lines
5.6 KiB
C
224 lines
5.6 KiB
C
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
|
|
// Copyright (c) 2020 Wenbo Zhang
|
|
//
|
|
// Based on biostacks(8) from BPF-Perf-Tools-Book by Brendan Gregg.
|
|
// 10-Aug-2020 Wenbo Zhang Created this.
|
|
#include <argp.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <bpf/libbpf.h>
|
|
#include <bpf/bpf.h>
|
|
#include "biostacks.h"
|
|
#include "biostacks.skel.h"
|
|
#include "trace_helpers.h"
|
|
|
|
static struct env {
|
|
char *disk;
|
|
int duration;
|
|
bool milliseconds;
|
|
bool verbose;
|
|
} env = {
|
|
.duration = -1,
|
|
};
|
|
|
|
const char *argp_program_version = "biostacks 0.1";
|
|
const char *argp_program_bug_address =
|
|
"https://github.com/iovisor/bcc/tree/master/libbpf-tools";
|
|
const char argp_program_doc[] =
|
|
"Tracing block I/O with init stacks.\n"
|
|
"\n"
|
|
"USAGE: biostacks [--help] [-d DISK] [-m] [duration]\n"
|
|
"\n"
|
|
"EXAMPLES:\n"
|
|
" biostacks # trace block I/O with init stacks.\n"
|
|
" biostacks 1 # trace for 1 seconds only\n"
|
|
" biostacks -d sdc # trace sdc only\n";
|
|
|
|
static const struct argp_option opts[] = {
|
|
{ "disk", 'd', "DISK", 0, "Trace this disk only" },
|
|
{ "milliseconds", 'm', NULL, 0, "Millisecond histogram" },
|
|
{ "verbose", 'v', NULL, 0, "Verbose debug output" },
|
|
{ NULL, 'h', NULL, OPTION_HIDDEN, "Show the full help" },
|
|
{},
|
|
};
|
|
|
|
static error_t parse_arg(int key, char *arg, struct argp_state *state)
|
|
{
|
|
static int pos_args;
|
|
|
|
switch (key) {
|
|
case 'h':
|
|
argp_state_help(state, stderr, ARGP_HELP_STD_HELP);
|
|
break;
|
|
case 'v':
|
|
env.verbose = true;
|
|
break;
|
|
case 'd':
|
|
env.disk = arg;
|
|
if (strlen(arg) + 1 > DISK_NAME_LEN) {
|
|
fprintf(stderr, "invaild disk name: too long\n");
|
|
argp_usage(state);
|
|
}
|
|
break;
|
|
case 'm':
|
|
env.milliseconds = true;
|
|
break;
|
|
case ARGP_KEY_ARG:
|
|
if (pos_args++) {
|
|
fprintf(stderr,
|
|
"unrecognized positional argument: %s\n", arg);
|
|
argp_usage(state);
|
|
}
|
|
errno = 0;
|
|
env.duration = strtoll(arg, NULL, 10);
|
|
if (errno || env.duration <= 0) {
|
|
fprintf(stderr, "invalid delay (in us): %s\n", arg);
|
|
argp_usage(state);
|
|
}
|
|
break;
|
|
default:
|
|
return ARGP_ERR_UNKNOWN;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int libbpf_print_fn(enum libbpf_print_level level, const char *format, va_list args)
|
|
{
|
|
if (level == LIBBPF_DEBUG && !env.verbose)
|
|
return 0;
|
|
return vfprintf(stderr, format, args);
|
|
}
|
|
|
|
static void sig_handler(int sig)
|
|
{
|
|
}
|
|
|
|
static
|
|
void print_map(struct ksyms *ksyms, struct partitions *partitions, int fd)
|
|
{
|
|
const char *units = env.milliseconds ? "msecs" : "usecs";
|
|
struct rqinfo lookup_key = {}, next_key;
|
|
const struct partition *partition;
|
|
const struct ksym *ksym;
|
|
int num_stack, i, err;
|
|
struct hist hist;
|
|
|
|
while (!bpf_map_get_next_key(fd, &lookup_key, &next_key)) {
|
|
err = bpf_map_lookup_elem(fd, &next_key, &hist);
|
|
if (err < 0) {
|
|
fprintf(stderr, "failed to lookup hist: %d\n", err);
|
|
return;
|
|
}
|
|
partition = partitions__get_by_dev(partitions, next_key.dev);
|
|
printf("%-14.14s %-6d %-7s\n",
|
|
next_key.comm, next_key.pid,
|
|
partition ? partition->name : "Unknown");
|
|
num_stack = next_key.kern_stack_size /
|
|
sizeof(next_key.kern_stack[0]);
|
|
for (i = 0; i < num_stack; i++) {
|
|
ksym = ksyms__map_addr(ksyms, next_key.kern_stack[i]);
|
|
printf("%s\n", ksym ? ksym->name : "Unknown");
|
|
}
|
|
print_log2_hist(hist.slots, MAX_SLOTS, units);
|
|
printf("\n");
|
|
lookup_key = next_key;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct partitions *partitions = NULL;
|
|
const struct partition *partition;
|
|
static const struct argp argp = {
|
|
.options = opts,
|
|
.parser = parse_arg,
|
|
.doc = argp_program_doc,
|
|
};
|
|
struct ksyms *ksyms = NULL;
|
|
struct biostacks_bpf *obj;
|
|
int err;
|
|
|
|
err = argp_parse(&argp, argc, argv, 0, NULL, NULL);
|
|
if (err)
|
|
return err;
|
|
|
|
libbpf_set_strict_mode(LIBBPF_STRICT_ALL);
|
|
libbpf_set_print(libbpf_print_fn);
|
|
|
|
obj = biostacks_bpf__open();
|
|
if (!obj) {
|
|
fprintf(stderr, "failed to open BPF object\n");
|
|
return 1;
|
|
}
|
|
|
|
partitions = partitions__load();
|
|
if (!partitions) {
|
|
fprintf(stderr, "failed to load partitions info\n");
|
|
goto cleanup;
|
|
}
|
|
|
|
/* initialize global data (filtering options) */
|
|
if (env.disk) {
|
|
partition = partitions__get_by_name(partitions, env.disk);
|
|
if (!partition) {
|
|
fprintf(stderr, "invaild partition name: not exist\n");
|
|
goto cleanup;
|
|
}
|
|
obj->rodata->filter_dev = true;
|
|
obj->rodata->targ_dev = partition->dev;
|
|
}
|
|
|
|
obj->rodata->targ_ms = env.milliseconds;
|
|
|
|
err = biostacks_bpf__load(obj);
|
|
if (err) {
|
|
fprintf(stderr, "failed to load BPF object: %d\n", err);
|
|
goto cleanup;
|
|
}
|
|
|
|
obj->links.blk_account_io_start = bpf_program__attach(obj->progs.blk_account_io_start);
|
|
if (!obj->links.blk_account_io_start) {
|
|
err = -errno;
|
|
fprintf(stderr, "failed to attach blk_account_io_start: %s\n", strerror(-err));
|
|
goto cleanup;
|
|
}
|
|
ksyms = ksyms__load();
|
|
if (!ksyms) {
|
|
fprintf(stderr, "failed to load kallsyms\n");
|
|
goto cleanup;
|
|
}
|
|
if (ksyms__get_symbol(ksyms, "blk_account_io_merge_bio")) {
|
|
obj->links.blk_account_io_merge_bio =
|
|
bpf_program__attach(obj->progs.blk_account_io_merge_bio);
|
|
if (!obj->links.blk_account_io_merge_bio) {
|
|
err = -errno;
|
|
fprintf(stderr, "failed to attach blk_account_io_merge_bio: %s\n",
|
|
strerror(-err));
|
|
goto cleanup;
|
|
}
|
|
}
|
|
obj->links.blk_account_io_done = bpf_program__attach(obj->progs.blk_account_io_done);
|
|
if (!obj->links.blk_account_io_done) {
|
|
err = -errno;
|
|
fprintf(stderr, "failed to attach blk_account_io_done: %s\n",
|
|
strerror(-err));
|
|
goto cleanup;
|
|
}
|
|
|
|
signal(SIGINT, sig_handler);
|
|
|
|
printf("Tracing block I/O with init stacks. Hit Ctrl-C to end.\n");
|
|
sleep(env.duration);
|
|
print_map(ksyms, partitions, bpf_map__fd(obj->maps.hists));
|
|
|
|
cleanup:
|
|
biostacks_bpf__destroy(obj);
|
|
ksyms__free(ksyms);
|
|
partitions__free(partitions);
|
|
|
|
return err != 0;
|
|
}
|