sock_example.h 793 B

123456789101112131415161718192021222324252627282930313233343536
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <linux/unistd.h>
  4. #include <unistd.h>
  5. #include <string.h>
  6. #include <errno.h>
  7. #include <net/ethernet.h>
  8. #include <net/if.h>
  9. #include <linux/if_packet.h>
  10. #include <arpa/inet.h>
  11. #include "libbpf.h"
  12. static inline int open_raw_sock(const char *name)
  13. {
  14. struct sockaddr_ll sll;
  15. int sock;
  16. sock = socket(PF_PACKET, SOCK_RAW | SOCK_NONBLOCK | SOCK_CLOEXEC, htons(ETH_P_ALL));
  17. if (sock < 0) {
  18. printf("cannot create raw socket\n");
  19. return -1;
  20. }
  21. memset(&sll, 0, sizeof(sll));
  22. sll.sll_family = AF_PACKET;
  23. sll.sll_ifindex = if_nametoindex(name);
  24. sll.sll_protocol = htons(ETH_P_ALL);
  25. if (bind(sock, (struct sockaddr *)&sll, sizeof(sll)) < 0) {
  26. printf("bind to %s: %s\n", name, strerror(errno));
  27. close(sock);
  28. return -1;
  29. }
  30. return sock;
  31. }