sock_example.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* eBPF example program:
  2. * - creates arraymap in kernel with key 4 bytes and value 8 bytes
  3. *
  4. * - loads eBPF program:
  5. * r0 = skb->data[ETH_HLEN + offsetof(struct iphdr, protocol)];
  6. * *(u32*)(fp - 4) = r0;
  7. * // assuming packet is IPv4, lookup ip->proto in a map
  8. * value = bpf_map_lookup_elem(map_fd, fp - 4);
  9. * if (value)
  10. * (*(u64*)value) += 1;
  11. *
  12. * - attaches this program to eth0 raw socket
  13. *
  14. * - every second user space reads map[tcp], map[udp], map[icmp] to see
  15. * how many packets of given protocol were seen on eth0
  16. */
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #include <assert.h>
  20. #include <linux/bpf.h>
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #include <errno.h>
  24. #include <sys/socket.h>
  25. #include <arpa/inet.h>
  26. #include <linux/if_ether.h>
  27. #include <linux/ip.h>
  28. #include <stddef.h>
  29. #include "libbpf.h"
  30. #include "sock_example.h"
  31. char bpf_log_buf[BPF_LOG_BUF_SIZE];
  32. static int test_sock(void)
  33. {
  34. int sock = -1, map_fd, prog_fd, i, key;
  35. long long value = 0, tcp_cnt, udp_cnt, icmp_cnt;
  36. map_fd = bpf_create_map(BPF_MAP_TYPE_ARRAY, sizeof(key), sizeof(value),
  37. 256, 0);
  38. if (map_fd < 0) {
  39. printf("failed to create map '%s'\n", strerror(errno));
  40. goto cleanup;
  41. }
  42. struct bpf_insn prog[] = {
  43. BPF_MOV64_REG(BPF_REG_6, BPF_REG_1),
  44. BPF_LD_ABS(BPF_B, ETH_HLEN + offsetof(struct iphdr, protocol) /* R0 = ip->proto */),
  45. BPF_STX_MEM(BPF_W, BPF_REG_10, BPF_REG_0, -4), /* *(u32 *)(fp - 4) = r0 */
  46. BPF_MOV64_REG(BPF_REG_2, BPF_REG_10),
  47. BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -4), /* r2 = fp - 4 */
  48. BPF_LD_MAP_FD(BPF_REG_1, map_fd),
  49. BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_map_lookup_elem),
  50. BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 2),
  51. BPF_MOV64_IMM(BPF_REG_1, 1), /* r1 = 1 */
  52. BPF_RAW_INSN(BPF_STX | BPF_XADD | BPF_DW, BPF_REG_0, BPF_REG_1, 0, 0), /* xadd r0 += r1 */
  53. BPF_MOV64_IMM(BPF_REG_0, 0), /* r0 = 0 */
  54. BPF_EXIT_INSN(),
  55. };
  56. size_t insns_cnt = sizeof(prog) / sizeof(struct bpf_insn);
  57. prog_fd = bpf_load_program(BPF_PROG_TYPE_SOCKET_FILTER, prog, insns_cnt,
  58. "GPL", 0, bpf_log_buf, BPF_LOG_BUF_SIZE);
  59. if (prog_fd < 0) {
  60. printf("failed to load prog '%s'\n", strerror(errno));
  61. goto cleanup;
  62. }
  63. sock = open_raw_sock("lo");
  64. if (setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, &prog_fd,
  65. sizeof(prog_fd)) < 0) {
  66. printf("setsockopt %s\n", strerror(errno));
  67. goto cleanup;
  68. }
  69. for (i = 0; i < 10; i++) {
  70. key = IPPROTO_TCP;
  71. assert(bpf_map_lookup_elem(map_fd, &key, &tcp_cnt) == 0);
  72. key = IPPROTO_UDP;
  73. assert(bpf_map_lookup_elem(map_fd, &key, &udp_cnt) == 0);
  74. key = IPPROTO_ICMP;
  75. assert(bpf_map_lookup_elem(map_fd, &key, &icmp_cnt) == 0);
  76. printf("TCP %lld UDP %lld ICMP %lld packets\n",
  77. tcp_cnt, udp_cnt, icmp_cnt);
  78. sleep(1);
  79. }
  80. cleanup:
  81. /* maps, programs, raw sockets will auto cleanup on process exit */
  82. return 0;
  83. }
  84. int main(void)
  85. {
  86. FILE *f;
  87. f = popen("ping -c5 localhost", "r");
  88. (void)f;
  89. return test_sock();
  90. }