blob: 7793f6a6ae7ecbf3e480c1d34e637258497dfeb5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexei Starovoitov530b2c82015-05-19 16:59:06 -07002#include <stdio.h>
3#include <assert.h>
Jakub Kicinski2bf3e2e2018-05-14 22:35:02 -07004#include <bpf/bpf.h>
Daniel T. Leebc1a8592020-05-16 13:06:06 +09005#include <bpf/libbpf.h>
Joe Stringer98996942016-12-08 18:46:20 -08006#include "sock_example.h"
Alexei Starovoitov530b2c82015-05-19 16:59:06 -07007#include <unistd.h>
8#include <arpa/inet.h>
William Tueb88d582016-06-21 21:05:58 -07009#include <sys/resource.h>
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070010
Prashant Bhole32c00972018-09-20 16:52:03 +090011struct flow_key_record {
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070012 __be32 src;
13 __be32 dst;
14 union {
15 __be32 ports;
16 __be16 port16[2];
17 };
18 __u32 ip_proto;
19};
20
21struct pair {
22 __u64 packets;
23 __u64 bytes;
24};
25
26int main(int argc, char **argv)
27{
Daniel T. Leebc1a8592020-05-16 13:06:06 +090028 int i, sock, key, fd, main_prog_fd, jmp_table_fd, hash_map_fd;
William Tueb88d582016-06-21 21:05:58 -070029 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Daniel T. Leebc1a8592020-05-16 13:06:06 +090030 struct bpf_program *prog;
31 struct bpf_object *obj;
Daniel T. Lee698584d2020-09-04 15:34:33 +090032 const char *section;
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070033 char filename[256];
34 FILE *f;
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070035
36 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
William Tueb88d582016-06-21 21:05:58 -070037 setrlimit(RLIMIT_MEMLOCK, &r);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070038
Daniel T. Leebc1a8592020-05-16 13:06:06 +090039 obj = bpf_object__open_file(filename, NULL);
40 if (libbpf_get_error(obj)) {
41 fprintf(stderr, "ERROR: opening BPF object file failed\n");
42 return 0;
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070043 }
44
Daniel T. Leebc1a8592020-05-16 13:06:06 +090045 /* load BPF program */
46 if (bpf_object__load(obj)) {
47 fprintf(stderr, "ERROR: loading BPF object file failed\n");
48 goto cleanup;
49 }
50
51 jmp_table_fd = bpf_object__find_map_fd_by_name(obj, "jmp_table");
52 hash_map_fd = bpf_object__find_map_fd_by_name(obj, "hash_map");
53 if (jmp_table_fd < 0 || hash_map_fd < 0) {
54 fprintf(stderr, "ERROR: finding a map in obj file failed\n");
55 goto cleanup;
56 }
57
58 bpf_object__for_each_program(prog, obj) {
59 fd = bpf_program__fd(prog);
60
Daniel T. Lee698584d2020-09-04 15:34:33 +090061 section = bpf_program__section_name(prog);
62 if (sscanf(section, "socket/%d", &key) != 1) {
Daniel T. Leebc1a8592020-05-16 13:06:06 +090063 fprintf(stderr, "ERROR: finding prog failed\n");
64 goto cleanup;
65 }
66
67 if (key == 0)
68 main_prog_fd = fd;
69 else
70 bpf_map_update_elem(jmp_table_fd, &key, &fd, BPF_ANY);
71 }
Martin KaFai Laua8744f22017-06-27 23:08:35 -070072
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070073 sock = open_raw_sock("lo");
74
Daniel T. Leebc1a8592020-05-16 13:06:06 +090075 /* attach BPF program to socket */
76 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, &main_prog_fd,
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070077 sizeof(__u32)) == 0);
78
79 if (argc > 1)
Jakub Kicinski5c3cf872019-02-27 19:04:10 -080080 f = popen("ping -4 -c5 localhost", "r");
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070081 else
82 f = popen("netperf -l 4 localhost", "r");
83 (void) f;
84
85 for (i = 0; i < 5; i++) {
Prashant Bhole32c00972018-09-20 16:52:03 +090086 struct flow_key_record key = {}, next_key;
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070087 struct pair value;
88
89 sleep(1);
90 printf("IP src.port -> dst.port bytes packets\n");
Daniel T. Leebc1a8592020-05-16 13:06:06 +090091 while (bpf_map_get_next_key(hash_map_fd, &key, &next_key) == 0) {
92 bpf_map_lookup_elem(hash_map_fd, &next_key, &value);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070093 printf("%s.%05d -> %s.%05d %12lld %12lld\n",
94 inet_ntoa((struct in_addr){htonl(next_key.src)}),
95 next_key.port16[0],
96 inet_ntoa((struct in_addr){htonl(next_key.dst)}),
97 next_key.port16[1],
98 value.bytes, value.packets);
99 key = next_key;
100 }
101 }
Daniel T. Leebc1a8592020-05-16 13:06:06 +0900102
103cleanup:
104 bpf_object__close(obj);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -0700105 return 0;
106}