net: ethernet: nb8800: support fixed-link DT node
[linux-2.6/btrfs-unstable.git] / samples / bpf / sockex1_user.c
blob678ce469355152650ee055136821f4ad8b50ed85
1 #include <stdio.h>
2 #include <assert.h>
3 #include <linux/bpf.h>
4 #include "libbpf.h"
5 #include "bpf_load.h"
6 #include <unistd.h>
7 #include <arpa/inet.h>
9 int main(int ac, char **argv)
11 char filename[256];
12 FILE *f;
13 int i, sock;
15 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
17 if (load_bpf_file(filename)) {
18 printf("%s", bpf_log_buf);
19 return 1;
22 sock = open_raw_sock("lo");
24 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, prog_fd,
25 sizeof(prog_fd[0])) == 0);
27 f = popen("ping -c5 localhost", "r");
28 (void) f;
30 for (i = 0; i < 5; i++) {
31 long long tcp_cnt, udp_cnt, icmp_cnt;
32 int key;
34 key = IPPROTO_TCP;
35 assert(bpf_lookup_elem(map_fd[0], &key, &tcp_cnt) == 0);
37 key = IPPROTO_UDP;
38 assert(bpf_lookup_elem(map_fd[0], &key, &udp_cnt) == 0);
40 key = IPPROTO_ICMP;
41 assert(bpf_lookup_elem(map_fd[0], &key, &icmp_cnt) == 0);
43 printf("TCP %lld UDP %lld ICMP %lld bytes\n",
44 tcp_cnt, udp_cnt, icmp_cnt);
45 sleep(1);
48 return 0;