blob: 1d5c6e9a6d2756343ac7261790c46c0769d03df0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexei Starovoitovfbe33102014-12-01 15:06:39 -08002#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 Starovoitovfbe33102014-12-01 15:06:39 -08006#include "bpf_load.h"
Joe Stringer98996942016-12-08 18:46:20 -08007#include "sock_example.h"
Alexei Starovoitovfbe33102014-12-01 15:06:39 -08008#include <unistd.h>
9#include <arpa/inet.h>
William Tueb88d582016-06-21 21:05:58 -070010#include <sys/resource.h>
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080011
Alexei Starovoitov614cd3b2015-03-13 11:57:43 -070012struct pair {
13 __u64 packets;
14 __u64 bytes;
15};
16
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080017int main(int ac, char **argv)
18{
William Tueb88d582016-06-21 21:05:58 -070019 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080020 char filename[256];
21 FILE *f;
22 int i, sock;
23
24 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
William Tueb88d582016-06-21 21:05:58 -070025 setrlimit(RLIMIT_MEMLOCK, &r);
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080026
27 if (load_bpf_file(filename)) {
28 printf("%s", bpf_log_buf);
29 return 1;
30 }
31
32 sock = open_raw_sock("lo");
33
34 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, prog_fd,
35 sizeof(prog_fd[0])) == 0);
36
37 f = popen("ping -c5 localhost", "r");
38 (void) f;
39
40 for (i = 0; i < 5; i++) {
41 int key = 0, next_key;
Alexei Starovoitov614cd3b2015-03-13 11:57:43 -070042 struct pair value;
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080043
Joe Stringerd40fc182016-12-14 14:43:38 -080044 while (bpf_map_get_next_key(map_fd[0], &key, &next_key) == 0) {
45 bpf_map_lookup_elem(map_fd[0], &next_key, &value);
Alexei Starovoitov614cd3b2015-03-13 11:57:43 -070046 printf("ip %s bytes %lld packets %lld\n",
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080047 inet_ntoa((struct in_addr){htonl(next_key)}),
Alexei Starovoitov614cd3b2015-03-13 11:57:43 -070048 value.bytes, value.packets);
Alexei Starovoitovfbe33102014-12-01 15:06:39 -080049 key = next_key;
50 }
51 sleep(1);
52 }
53 return 0;
54}