Alexei Starovoitov | 3c731eb | 2014-09-26 00:17:07 -0700 | [diff] [blame] | 1 | #include <stdlib.h> |
| 2 | #include <stdio.h> |
| 3 | #include <linux/unistd.h> |
| 4 | #include <unistd.h> |
| 5 | #include <string.h> |
Alexei Starovoitov | 3c731eb | 2014-09-26 00:17:07 -0700 | [diff] [blame] | 6 | #include <errno.h> |
Arnaldo Carvalho de Melo | ee12996 | 2016-12-27 21:49:17 -0300 | [diff] [blame] | 7 | #include <linux/if_ether.h> |
Alexei Starovoitov | 03f4723 | 2014-12-01 15:06:36 -0800 | [diff] [blame] | 8 | #include <net/if.h> |
| 9 | #include <linux/if_packet.h> |
| 10 | #include <arpa/inet.h> |
Alexei Starovoitov | 3c731eb | 2014-09-26 00:17:07 -0700 | [diff] [blame] | 11 | #include "libbpf.h" |
| 12 | |
Joe Stringer | 9899694 | 2016-12-08 18:46:20 -0800 | [diff] [blame] | 13 | static inline int open_raw_sock(const char *name) |
Alexei Starovoitov | 03f4723 | 2014-12-01 15:06:36 -0800 | [diff] [blame] | 14 | { |
| 15 | struct sockaddr_ll sll; |
| 16 | int sock; |
| 17 | |
| 18 | sock = socket(PF_PACKET, SOCK_RAW | SOCK_NONBLOCK | SOCK_CLOEXEC, htons(ETH_P_ALL)); |
| 19 | if (sock < 0) { |
| 20 | printf("cannot create raw socket\n"); |
| 21 | return -1; |
| 22 | } |
| 23 | |
| 24 | memset(&sll, 0, sizeof(sll)); |
| 25 | sll.sll_family = AF_PACKET; |
| 26 | sll.sll_ifindex = if_nametoindex(name); |
| 27 | sll.sll_protocol = htons(ETH_P_ALL); |
| 28 | if (bind(sock, (struct sockaddr *)&sll, sizeof(sll)) < 0) { |
| 29 | printf("bind to %s: %s\n", name, strerror(errno)); |
| 30 | close(sock); |
| 31 | return -1; |
| 32 | } |
| 33 | |
| 34 | return sock; |
| 35 | } |