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 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
// Copyright (c) 2020 Anton Protopopov
//
// Based on syscount(8) from BCC by Sasha Goldshtein
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <time.h>
#include <argp.h>
#include <bpf/bpf.h>
#include "syscount.h"
#include "syscount.skel.h"
#include "errno_helpers.h"
#include "syscall_helpers.h"
#include "trace_helpers.h"
/* This structure extends data_t by adding a key item which should be sorted
* together with the count and total_ns fields */
struct data_ext_t {
__u64 count;
__u64 total_ns;
char comm[TASK_COMM_LEN];
__u32 key;
};
#define warn(...) fprintf(stderr, __VA_ARGS__)
const char *argp_program_version = "syscount 0.1";
const char *argp_program_bug_address = "<bpf@vger.kernel.org>";
static const char argp_program_doc[] =
"\nsyscount: summarize syscall counts and latencies\n"
"\n"
"EXAMPLES:\n"
" syscount # print top 10 syscalls by count every second\n"
" syscount -p $(pidof dd) # look only at a particular process\n"
" syscount -L # measure and sort output by latency\n"
" syscount -P # group statistics by pid, not by syscall\n"
" syscount -x -i 5 # count only failed syscalls\n"
" syscount -e ENOENT -i 5 # count only syscalls failed with a given errno"
;
static const struct argp_option opts[] = {
{ "verbose", 'v', NULL, 0, "Verbose debug output" },
{ "pid", 'p', "PID", 0, "Process PID to trace" },
{ "interval", 'i', "INTERVAL", 0, "Print summary at this interval"
" (seconds), 0 for infinite wait (default)" },
{ "duration", 'd', "DURATION", 0, "Total tracing duration (seconds)" },
{ "top", 'T', "TOP", 0, "Print only the top syscalls (default 10)" },
{ "failures", 'x', NULL, 0, "Trace only failed syscalls" },
{ "latency", 'L', NULL, 0, "Collect syscall latency" },
{ "milliseconds", 'm', NULL, 0, "Display latency in milliseconds"
" (default: microseconds)" },
{ "process", 'P', NULL, 0, "Count by process and not by syscall" },
{ "errno", 'e', "ERRNO", 0, "Trace only syscalls that return this error"
"(numeric or EPERM, etc.)" },
{ "list", 'l', NULL, 0, "Print list of recognized syscalls and exit" },
{},
};
static struct env {
bool list_syscalls;
bool milliseconds;
bool failures;
bool verbose;
bool latency;
bool process;
int filter_errno;
int interval;
int duration;
int top;
pid_t pid;
} env = {
.top = 10,
};
static int get_int(const char *arg, int *ret, int min, int max)
{
char *end;
long val;
errno = 0;
val = strtol(arg, &end, 10);
if (errno) {
warn("strtol: %s: %s\n", arg, strerror(errno));
return -1;
} else if (end == arg || val < min || val > max) {
return -1;
}
if (ret)
*ret = val;
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 int compar_count(const void *dx, const void *dy)
{
__u64 x = ((struct data_ext_t *) dx)->count;
__u64 y = ((struct data_ext_t *) dy)->count;
return x > y ? -1 : !(x == y);
}
static int compar_latency(const void *dx, const void *dy)
{
__u64 x = ((struct data_ext_t *) dx)->total_ns;
__u64 y = ((struct data_ext_t *) dy)->total_ns;
return x > y ? -1 : !(x == y);
}
static const char *agg_col(struct data_ext_t *val, char *buf, size_t size)
{
if (env.process) {
snprintf(buf, size, "%-6u %-15s", val->key, val->comm);
} else {
syscall_name(val->key, buf, size);
}
return buf;
}
static const char *agg_colname(void)
{
return (env.process) ? "PID COMM" : "SYSCALL";
}
static const char *time_colname(void)
{
return (env.milliseconds) ? "TIME (ms)" : "TIME (us)";
}
static void print_latency_header(void)
{
printf("%-22s %8s %16s\n", agg_colname(), "COUNT", time_colname());
}
static void print_count_header(void)
{
printf("%-22s %8s\n", agg_colname(), "COUNT");
}
static void print_latency(struct data_ext_t *vals, size_t count)
{
double div = env.milliseconds ? 1000000.0 : 1000.0;
char buf[2 * TASK_COMM_LEN];
print_latency_header();
for (int i = 0; i < count && i < env.top; i++)
printf("%-22s %8llu %16.3lf\n",
agg_col(&vals[i], buf, sizeof(buf)),
vals[i].count, vals[i].total_ns / div);
printf("\n");
}
static void print_count(struct data_ext_t *vals, size_t count)
{
char buf[2 * TASK_COMM_LEN];
print_count_header();
for (int i = 0; i < count && i < env.top; i++)
printf("%-22s %8llu\n",
agg_col(&vals[i], buf, sizeof(buf)), vals[i].count);
printf("\n");
}
static void print_timestamp()
{
time_t now = time(NULL);
struct tm tm;
if (localtime_r(&now, &tm))
printf("[%02d:%02d:%02d]\n", tm.tm_hour, tm.tm_min, tm.tm_sec);
else
warn("localtime_r: %s", strerror(errno));
}
static bool batch_map_ops = true; /* hope for the best */
static bool read_vals_batch(int fd, struct data_ext_t *vals, __u32 *count)
{
struct data_t orig_vals[*count];
void *in = NULL, *out;
__u32 n, n_read = 0;
__u32 keys[*count];
int err = 0;
while (n_read < *count && !err) {
n = *count - n_read;
err = bpf_map_lookup_and_delete_batch(fd, &in, &out,
keys + n_read, orig_vals + n_read, &n, NULL);
if (err && errno != ENOENT) {
/* we want to propagate EINVAL upper, so that
* the batch_map_ops flag is set to false */
if (errno != EINVAL)
warn("bpf_map_lookup_and_delete_batch: %s\n",
strerror(-err));
return false;
}
n_read += n;
in = out;
}
for (__u32 i = 0; i < n_read; i++) {
vals[i].count = orig_vals[i].count;
vals[i].total_ns = orig_vals[i].total_ns;
vals[i].key = keys[i];
strncpy(vals[i].comm, orig_vals[i].comm, TASK_COMM_LEN);
}
*count = n_read;
return true;
}
static bool read_vals(int fd, struct data_ext_t *vals, __u32 *count)
{
__u32 keys[MAX_ENTRIES];
struct data_t val;
__u32 key = -1;
__u32 next_key;
int i = 0;
int err;
if (batch_map_ops) {
bool ok = read_vals_batch(fd, vals, count);
if (!ok && errno == EINVAL) {
/* fall back to a racy variant */
batch_map_ops = false;
} else {
return ok;
}
}
if (!vals || !count || !*count)
return true;
for (key = -1; i < *count; ) {
err = bpf_map_get_next_key(fd, &key, &next_key);
if (err && errno != ENOENT) {
warn("failed to get next key: %s\n", strerror(errno));
return false;
} else if (err) {
break;
}
key = keys[i++] = next_key;
}
for (int j = 0; j < i; j++) {
err = bpf_map_lookup_elem(fd, &keys[j], &val);
if (err && errno != ENOENT) {
warn("failed to lookup element: %s\n", strerror(errno));
return false;
}
vals[j].count = val.count;
vals[j].total_ns = val.total_ns;
vals[j].key = keys[j];
memcpy(vals[j].comm, val.comm, TASK_COMM_LEN);
}
/* There is a race here: system calls which are represented by keys
* above and happened between lookup and delete will be ignored. This
* will be fixed in future by using bpf_map_lookup_and_delete_batch,
* but this function is too fresh to use it in bcc. */
for (int j = 0; j < i; j++) {
err = bpf_map_delete_elem(fd, &keys[j]);
if (err) {
warn("failed to delete element: %s\n", strerror(errno));
return false;
}
}
*count = i;
return true;
}
static error_t parse_arg(int key, char *arg, struct argp_state *state)
{
int number;
int err;
switch (key) {
case 'v':
env.verbose = true;
break;
case 'x':
env.failures = true;
break;
case 'L':
env.latency = true;
break;
case 'm':
env.milliseconds = true;
break;
case 'P':
env.process = true;
break;
case 'p':
err = get_int(arg, &env.pid, 1, INT_MAX);
if (err) {
warn("invalid PID: %s\n", arg);
argp_usage(state);
}
break;
case 'i':
err = get_int(arg, &env.interval, 0, INT_MAX);
if (err) {
warn("invalid INTERVAL: %s\n", arg);
argp_usage(state);
}
break;
case 'd':
err = get_int(arg, &env.duration, 1, INT_MAX);
if (err) {
warn("invalid DURATION: %s\n", arg);
argp_usage(state);
}
break;
case 'T':
err = get_int(arg, &env.top, 1, INT_MAX);
if (err) {
warn("invalid TOP: %s\n", arg);
argp_usage(state);
}
break;
case 'e':
err = get_int(arg, &number, 1, INT_MAX);
if (err) {
number = errno_by_name(arg);
if (number < 0) {
warn("invalid errno: %s (bad, or can't "
"parse dynamically; consider using "
"numeric value and/or installing the "
"errno program from moreutils)\n", arg);
argp_usage(state);
}
}
env.filter_errno = number;
break;
case 'l':
env.list_syscalls = true;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static volatile sig_atomic_t hang_on = 1;
void sig_int(int signo)
{
hang_on = 0;
}
int main(int argc, char **argv)
{
void (*print)(struct data_ext_t *, size_t);
int (*compar)(const void *, const void *);
static const struct argp argp = {
.options = opts,
.parser = parse_arg,
.doc = argp_program_doc,
};
struct data_ext_t vals[MAX_ENTRIES];
struct syscount_bpf *obj;
int seconds = 0;
__u32 count;
int err;
init_syscall_names();
err = argp_parse(&argp, argc, argv, 0, NULL, NULL);
if (err)
goto free_names;
if (env.list_syscalls) {
list_syscalls();
goto free_names;
}
libbpf_set_print(libbpf_print_fn);
err = bump_memlock_rlimit();
if (err) {
warn("failed to increase rlimit: %s\n", strerror(errno));
goto free_names;
}
obj = syscount_bpf__open();
if (!obj) {
warn("failed to open and/or load BPF object\n");
err = 1;
goto free_names;
}
if (env.pid)
obj->rodata->filter_pid = env.pid;
if (env.failures)
obj->rodata->filter_failed = true;
if (env.latency)
obj->rodata->measure_latency = true;
if (env.process)
obj->rodata->count_by_process = true;
if (env.filter_errno)
obj->rodata->filter_errno = env.filter_errno;
err = syscount_bpf__load(obj);
if (err) {
warn("failed to load BPF object: %s\n", strerror(-err));
goto cleanup_obj;
}
obj->links.sys_exit = bpf_program__attach(obj->progs.sys_exit);
err = libbpf_get_error(obj->links.sys_exit);
if (err) {
warn("failed to attach sys_exit program: %s\n",
strerror(-err));
goto cleanup_obj;
}
if (env.latency) {
obj->links.sys_enter = bpf_program__attach(obj->progs.sys_enter);
err = libbpf_get_error(obj->links.sys_enter);
if (err) {
warn("failed to attach sys_enter programs: %s\n",
strerror(-err));
goto cleanup_obj;
}
}
if (signal(SIGINT, sig_int) == SIG_ERR) {
warn("can't set signal handler: %s\n", strerror(errno));
goto cleanup_obj;
}
compar = env.latency ? compar_latency : compar_count;
print = env.latency ? print_latency : print_count;
printf("Tracing syscalls, printing top %d... Ctrl+C to quit.\n", env.top);
while (hang_on) {
sleep(env.interval ?: 1);
if (env.duration) {
seconds += env.interval ?: 1;
if (seconds >= env.duration)
hang_on = 0;
}
if (hang_on && !env.interval)
continue;
count = MAX_ENTRIES;
if (!read_vals(bpf_map__fd(obj->maps.data), vals, &count))
break;
if (!count)
continue;
qsort(vals, count, sizeof(vals[0]), compar);
print_timestamp();
print(vals, count);
}
cleanup_obj:
syscount_bpf__destroy(obj);
free_names:
free_syscall_names();
return err != 0;
}
|