Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2016 PLUMgrid
3 */
4#include <linux/bpf.h>
5#include <linux/if_link.h>
6#include <assert.h>
7#include <errno.h>
8#include <signal.h>
9#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
12#include <unistd.h>
13#include <libgen.h>
14#include <sys/resource.h>
15#include <net/if.h>
16
17#include "bpf_util.h"
18#include <bpf/bpf.h>
19#include <bpf/libbpf.h>
20
21static int ifindex;
22static __u32 xdp_flags = XDP_FLAGS_UPDATE_IF_NOEXIST;
23static __u32 prog_id;
24
25static void int_exit(int sig)
26{
27 __u32 curr_prog_id = 0;
28
29 if (bpf_get_link_xdp_id(ifindex, &curr_prog_id, xdp_flags)) {
30 printf("bpf_get_link_xdp_id failed\n");
31 exit(1);
32 }
33 if (prog_id == curr_prog_id)
34 bpf_set_link_xdp_fd(ifindex, -1, xdp_flags);
35 else if (!curr_prog_id)
36 printf("couldn't find a prog id on a given interface\n");
37 else
38 printf("program on interface changed, not removing\n");
39 exit(0);
40}
41
42/* simple per-protocol drop counter
43 */
44static void poll_stats(int map_fd, int interval)
45{
46 unsigned int nr_cpus = bpf_num_possible_cpus();
47 __u64 values[nr_cpus], prev[UINT8_MAX] = { 0 };
48 int i;
49
50 while (1) {
51 __u32 key = UINT32_MAX;
52
53 sleep(interval);
54
55 while (bpf_map_get_next_key(map_fd, &key, &key) != -1) {
56 __u64 sum = 0;
57
58 assert(bpf_map_lookup_elem(map_fd, &key, values) == 0);
59 for (i = 0; i < nr_cpus; i++)
60 sum += values[i];
61 if (sum > prev[key])
62 printf("proto %u: %10llu pkt/s\n",
63 key, (sum - prev[key]) / interval);
64 prev[key] = sum;
65 }
66 }
67}
68
69static void usage(const char *prog)
70{
71 fprintf(stderr,
72 "usage: %s [OPTS] IFACE\n\n"
73 "OPTS:\n"
74 " -S use skb-mode\n"
75 " -N enforce native mode\n"
76 " -F force loading prog\n",
77 prog);
78}
79
80int main(int argc, char **argv)
81{
82 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
83 struct bpf_prog_load_attr prog_load_attr = {
84 .prog_type = BPF_PROG_TYPE_XDP,
85 };
86 struct bpf_prog_info info = {};
87 __u32 info_len = sizeof(info);
88 const char *optstr = "FSN";
89 int prog_fd, map_fd, opt;
90 struct bpf_object *obj;
91 struct bpf_map *map;
92 char filename[256];
93 int err;
94
95 while ((opt = getopt(argc, argv, optstr)) != -1) {
96 switch (opt) {
97 case 'S':
98 xdp_flags |= XDP_FLAGS_SKB_MODE;
99 break;
100 case 'N':
101 /* default, set below */
102 break;
103 case 'F':
104 xdp_flags &= ~XDP_FLAGS_UPDATE_IF_NOEXIST;
105 break;
106 default:
107 usage(basename(argv[0]));
108 return 1;
109 }
110 }
111
112 if (!(xdp_flags & XDP_FLAGS_SKB_MODE))
113 xdp_flags |= XDP_FLAGS_DRV_MODE;
114
115 if (optind == argc) {
116 usage(basename(argv[0]));
117 return 1;
118 }
119
120 if (setrlimit(RLIMIT_MEMLOCK, &r)) {
121 perror("setrlimit(RLIMIT_MEMLOCK)");
122 return 1;
123 }
124
125 ifindex = if_nametoindex(argv[optind]);
126 if (!ifindex) {
127 perror("if_nametoindex");
128 return 1;
129 }
130
131 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
132 prog_load_attr.file = filename;
133
134 if (bpf_prog_load_xattr(&prog_load_attr, &obj, &prog_fd))
135 return 1;
136
137 map = bpf_map__next(NULL, obj);
138 if (!map) {
139 printf("finding a map in obj file failed\n");
140 return 1;
141 }
142 map_fd = bpf_map__fd(map);
143
144 if (!prog_fd) {
145 printf("bpf_prog_load_xattr: %s\n", strerror(errno));
146 return 1;
147 }
148
149 signal(SIGINT, int_exit);
150 signal(SIGTERM, int_exit);
151
152 if (bpf_set_link_xdp_fd(ifindex, prog_fd, xdp_flags) < 0) {
153 printf("link set xdp fd failed\n");
154 return 1;
155 }
156
157 err = bpf_obj_get_info_by_fd(prog_fd, &info, &info_len);
158 if (err) {
159 printf("can't get prog info - %s\n", strerror(errno));
160 return err;
161 }
162 prog_id = info.id;
163
164 poll_stats(map_fd, 2);
165
166 return 0;
167}
1/* Copyright (c) 2016 PLUMgrid
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 */
7#include <linux/bpf.h>
8#include <linux/if_link.h>
9#include <assert.h>
10#include <errno.h>
11#include <signal.h>
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
15#include <unistd.h>
16#include <libgen.h>
17#include <sys/resource.h>
18
19#include "bpf_load.h"
20#include "bpf_util.h"
21#include "libbpf.h"
22
23static int ifindex;
24static __u32 xdp_flags;
25
26static void int_exit(int sig)
27{
28 bpf_set_link_xdp_fd(ifindex, -1, xdp_flags);
29 exit(0);
30}
31
32/* simple per-protocol drop counter
33 */
34static void poll_stats(int interval)
35{
36 unsigned int nr_cpus = bpf_num_possible_cpus();
37 const unsigned int nr_keys = 256;
38 __u64 values[nr_cpus], prev[nr_keys][nr_cpus];
39 __u32 key;
40 int i;
41
42 memset(prev, 0, sizeof(prev));
43
44 while (1) {
45 sleep(interval);
46
47 for (key = 0; key < nr_keys; key++) {
48 __u64 sum = 0;
49
50 assert(bpf_map_lookup_elem(map_fd[0], &key, values) == 0);
51 for (i = 0; i < nr_cpus; i++)
52 sum += (values[i] - prev[key][i]);
53 if (sum)
54 printf("proto %u: %10llu pkt/s\n",
55 key, sum / interval);
56 memcpy(prev[key], values, sizeof(values));
57 }
58 }
59}
60
61static void usage(const char *prog)
62{
63 fprintf(stderr,
64 "usage: %s [OPTS] IFINDEX\n\n"
65 "OPTS:\n"
66 " -S use skb-mode\n"
67 " -N enforce native mode\n",
68 prog);
69}
70
71int main(int argc, char **argv)
72{
73 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
74 const char *optstr = "SN";
75 char filename[256];
76 int opt;
77
78 while ((opt = getopt(argc, argv, optstr)) != -1) {
79 switch (opt) {
80 case 'S':
81 xdp_flags |= XDP_FLAGS_SKB_MODE;
82 break;
83 case 'N':
84 xdp_flags |= XDP_FLAGS_DRV_MODE;
85 break;
86 default:
87 usage(basename(argv[0]));
88 return 1;
89 }
90 }
91
92 if (optind == argc) {
93 usage(basename(argv[0]));
94 return 1;
95 }
96
97 if (setrlimit(RLIMIT_MEMLOCK, &r)) {
98 perror("setrlimit(RLIMIT_MEMLOCK)");
99 return 1;
100 }
101
102 ifindex = strtoul(argv[optind], NULL, 0);
103
104 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
105
106 if (load_bpf_file(filename)) {
107 printf("%s", bpf_log_buf);
108 return 1;
109 }
110
111 if (!prog_fd[0]) {
112 printf("load_bpf_file: %s\n", strerror(errno));
113 return 1;
114 }
115
116 signal(SIGINT, int_exit);
117 signal(SIGTERM, int_exit);
118
119 if (bpf_set_link_xdp_fd(ifindex, prog_fd[0], xdp_flags) < 0) {
120 printf("link set xdp fd failed\n");
121 return 1;
122 }
123
124 poll_stats(2);
125
126 return 0;
127}