blob: bbb1cd0666a9bf8e50f0d416afbdbaddf6da814c [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>
4#include <linux/bpf.h>
Jakub Kicinski2bf3e2e2018-05-14 22:35:02 -07005#include <bpf/bpf.h>
Alexei Starovoitov530b2c82015-05-19 16:59:06 -07006#include "bpf_load.h"
Joe Stringer98996942016-12-08 18:46:20 -08007#include "sock_example.h"
Alexei Starovoitov530b2c82015-05-19 16:59:06 -07008#include <unistd.h>
9#include <arpa/inet.h>
William Tueb88d582016-06-21 21:05:58 -070010#include <sys/resource.h>
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070011
Martin KaFai Laua8744f22017-06-27 23:08:35 -070012#define PARSE_IP 3
13#define PARSE_IP_PROG_FD (prog_fd[0])
14#define PROG_ARRAY_FD (map_fd[0])
15
Prashant Bhole32c00972018-09-20 16:52:03 +090016struct flow_key_record {
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070017 __be32 src;
18 __be32 dst;
19 union {
20 __be32 ports;
21 __be16 port16[2];
22 };
23 __u32 ip_proto;
24};
25
26struct pair {
27 __u64 packets;
28 __u64 bytes;
29};
30
31int main(int argc, char **argv)
32{
William Tueb88d582016-06-21 21:05:58 -070033 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070034 char filename[256];
35 FILE *f;
Martin KaFai Laua8744f22017-06-27 23:08:35 -070036 int i, sock, err, id, key = PARSE_IP;
37 struct bpf_prog_info info = {};
38 uint32_t info_len = sizeof(info);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070039
40 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
William Tueb88d582016-06-21 21:05:58 -070041 setrlimit(RLIMIT_MEMLOCK, &r);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070042
43 if (load_bpf_file(filename)) {
44 printf("%s", bpf_log_buf);
45 return 1;
46 }
47
Martin KaFai Laua8744f22017-06-27 23:08:35 -070048 /* Test fd array lookup which returns the id of the bpf_prog */
49 err = bpf_obj_get_info_by_fd(PARSE_IP_PROG_FD, &info, &info_len);
50 assert(!err);
51 err = bpf_map_lookup_elem(PROG_ARRAY_FD, &key, &id);
52 assert(!err);
53 assert(id == info.id);
54
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070055 sock = open_raw_sock("lo");
56
57 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, &prog_fd[4],
58 sizeof(__u32)) == 0);
59
60 if (argc > 1)
Jakub Kicinski5c3cf872019-02-27 19:04:10 -080061 f = popen("ping -4 -c5 localhost", "r");
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070062 else
63 f = popen("netperf -l 4 localhost", "r");
64 (void) f;
65
66 for (i = 0; i < 5; i++) {
Prashant Bhole32c00972018-09-20 16:52:03 +090067 struct flow_key_record key = {}, next_key;
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070068 struct pair value;
69
70 sleep(1);
71 printf("IP src.port -> dst.port bytes packets\n");
Joe Stringerd40fc182016-12-14 14:43:38 -080072 while (bpf_map_get_next_key(map_fd[2], &key, &next_key) == 0) {
73 bpf_map_lookup_elem(map_fd[2], &next_key, &value);
Alexei Starovoitov530b2c82015-05-19 16:59:06 -070074 printf("%s.%05d -> %s.%05d %12lld %12lld\n",
75 inet_ntoa((struct in_addr){htonl(next_key.src)}),
76 next_key.port16[0],
77 inet_ntoa((struct in_addr){htonl(next_key.dst)}),
78 next_key.port16[1],
79 value.bytes, value.packets);
80 key = next_key;
81 }
82 }
83 return 0;
84}