3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 02:05:54 +00:00
Brooklyn/samples/bpf/xdp_monitor_user.c

120 lines
2.8 KiB
C
Raw Normal View History

2021-10-02 21:09:28 +05:00
// SPDX-License-Identifier: GPL-2.0
/* Copyright(c) 2017 Jesper Dangaard Brouer, Red Hat, Inc. */
2021-05-27 00:09:36 +05:00
static const char *__doc__=
2021-10-02 21:09:28 +05:00
"XDP monitor tool, based on tracepoints\n";
2021-05-27 00:09:36 +05:00
static const char *__doc_err_only__=
2021-10-02 21:09:28 +05:00
" NOTICE: Only tracking XDP redirect errors\n"
" Enable redirect success stats via '-s/--stats'\n"
" (which comes with a per packet processing overhead)\n";
2021-05-27 00:09:36 +05:00
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <locale.h>
#include <sys/resource.h>
#include <getopt.h>
#include <net/if.h>
#include <time.h>
#include <signal.h>
#include <bpf/bpf.h>
#include <bpf/libbpf.h>
#include "bpf_util.h"
2021-10-02 21:09:28 +05:00
#include "xdp_sample_user.h"
#include "xdp_monitor.skel.h"
2021-05-27 00:09:36 +05:00
2021-10-02 21:09:28 +05:00
static int mask = SAMPLE_REDIRECT_ERR_CNT | SAMPLE_CPUMAP_ENQUEUE_CNT |
SAMPLE_CPUMAP_KTHREAD_CNT | SAMPLE_EXCEPTION_CNT |
SAMPLE_DEVMAP_XMIT_CNT | SAMPLE_DEVMAP_XMIT_CNT_MULTI;
2021-05-27 00:09:36 +05:00
2021-10-02 21:09:28 +05:00
DEFINE_SAMPLE_INIT(xdp_monitor);
2021-05-27 00:09:36 +05:00
static const struct option long_options[] = {
2021-10-02 21:09:28 +05:00
{ "help", no_argument, NULL, 'h' },
{ "stats", no_argument, NULL, 's' },
{ "interval", required_argument, NULL, 'i' },
{ "verbose", no_argument, NULL, 'v' },
{}
2021-05-27 00:09:36 +05:00
};
int main(int argc, char **argv)
{
2021-10-02 21:09:28 +05:00
unsigned long interval = 2;
int ret = EXIT_FAIL_OPTION;
struct xdp_monitor *skel;
2021-05-27 00:09:36 +05:00
bool errors_only = true;
2021-10-02 21:09:28 +05:00
int longindex = 0, opt;
bool error = true;
2021-05-27 00:09:36 +05:00
/* Parse commands line args */
2021-10-02 21:09:28 +05:00
while ((opt = getopt_long(argc, argv, "si:vh",
2021-05-27 00:09:36 +05:00
long_options, &longindex)) != -1) {
switch (opt) {
2021-10-02 21:09:28 +05:00
case 's':
2021-05-27 00:09:36 +05:00
errors_only = false;
2021-10-02 21:09:28 +05:00
mask |= SAMPLE_REDIRECT_CNT;
2021-05-27 00:09:36 +05:00
break;
2021-10-02 21:09:28 +05:00
case 'i':
interval = strtoul(optarg, NULL, 0);
break;
case 'v':
sample_switch_mode();
2021-05-27 00:09:36 +05:00
break;
case 'h':
2021-10-02 21:09:28 +05:00
error = false;
2021-05-27 00:09:36 +05:00
default:
2021-10-02 21:09:28 +05:00
sample_usage(argv, long_options, __doc__, mask, error);
2021-05-27 00:09:36 +05:00
return ret;
}
}
2021-10-02 21:09:28 +05:00
skel = xdp_monitor__open();
if (!skel) {
fprintf(stderr, "Failed to xdp_monitor__open: %s\n",
strerror(errno));
ret = EXIT_FAIL_BPF;
goto end;
2021-09-23 21:59:15 +05:00
}
2021-05-27 00:09:36 +05:00
2021-10-02 21:09:28 +05:00
ret = sample_init_pre_load(skel);
if (ret < 0) {
fprintf(stderr, "Failed to sample_init_pre_load: %s\n", strerror(-ret));
ret = EXIT_FAIL_BPF;
goto end_destroy;
2021-05-27 00:09:36 +05:00
}
2021-10-02 21:09:28 +05:00
ret = xdp_monitor__load(skel);
if (ret < 0) {
fprintf(stderr, "Failed to xdp_monitor__load: %s\n", strerror(errno));
ret = EXIT_FAIL_BPF;
goto end_destroy;
2021-05-27 00:09:36 +05:00
}
2021-10-02 21:09:28 +05:00
ret = sample_init(skel, mask);
if (ret < 0) {
fprintf(stderr, "Failed to initialize sample: %s\n", strerror(-ret));
ret = EXIT_FAIL_BPF;
goto end_destroy;
2021-05-27 00:09:36 +05:00
}
2021-10-02 21:09:28 +05:00
if (errors_only)
printf("%s", __doc_err_only__);
2021-05-27 00:09:36 +05:00
2021-10-02 21:09:28 +05:00
ret = sample_run(interval, NULL, NULL);
if (ret < 0) {
fprintf(stderr, "Failed during sample run: %s\n", strerror(-ret));
ret = EXIT_FAIL;
goto end_destroy;
2021-05-27 00:09:36 +05:00
}
2021-10-02 21:09:28 +05:00
ret = EXIT_OK;
end_destroy:
xdp_monitor__destroy(skel);
end:
sample_exit(ret);
2021-05-27 00:09:36 +05:00
}