test_cgrp2_attach.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* eBPF example program:
  2. *
  3. * - Creates arraymap in kernel with 4 bytes keys and 8 byte values
  4. *
  5. * - Loads eBPF program
  6. *
  7. * The eBPF program accesses the map passed in to store two pieces of
  8. * information. The number of invocations of the program, which maps
  9. * to the number of packets received, is stored to key 0. Key 1 is
  10. * incremented on each iteration by the number of bytes stored in
  11. * the skb.
  12. *
  13. * - Attaches the new program to a cgroup using BPF_PROG_ATTACH
  14. *
  15. * - Every second, reads map[0] and map[1] to see how many bytes and
  16. * packets were seen on any socket of tasks in the given cgroup.
  17. */
  18. #define _GNU_SOURCE
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <stddef.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24. #include <assert.h>
  25. #include <errno.h>
  26. #include <fcntl.h>
  27. #include <linux/bpf.h>
  28. #include "libbpf.h"
  29. enum {
  30. MAP_KEY_PACKETS,
  31. MAP_KEY_BYTES,
  32. };
  33. char bpf_log_buf[BPF_LOG_BUF_SIZE];
  34. static int prog_load(int map_fd, int verdict)
  35. {
  36. struct bpf_insn prog[] = {
  37. BPF_MOV64_REG(BPF_REG_6, BPF_REG_1), /* save r6 so it's not clobbered by BPF_CALL */
  38. /* Count packets */
  39. BPF_MOV64_IMM(BPF_REG_0, MAP_KEY_PACKETS), /* r0 = 0 */
  40. BPF_STX_MEM(BPF_W, BPF_REG_10, BPF_REG_0, -4), /* *(u32 *)(fp - 4) = r0 */
  41. BPF_MOV64_REG(BPF_REG_2, BPF_REG_10),
  42. BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -4), /* r2 = fp - 4 */
  43. BPF_LD_MAP_FD(BPF_REG_1, map_fd), /* load map fd to r1 */
  44. BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_map_lookup_elem),
  45. BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 2),
  46. BPF_MOV64_IMM(BPF_REG_1, 1), /* r1 = 1 */
  47. BPF_RAW_INSN(BPF_STX | BPF_XADD | BPF_DW, BPF_REG_0, BPF_REG_1, 0, 0), /* xadd r0 += r1 */
  48. /* Count bytes */
  49. BPF_MOV64_IMM(BPF_REG_0, MAP_KEY_BYTES), /* r0 = 1 */
  50. BPF_STX_MEM(BPF_W, BPF_REG_10, BPF_REG_0, -4), /* *(u32 *)(fp - 4) = r0 */
  51. BPF_MOV64_REG(BPF_REG_2, BPF_REG_10),
  52. BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -4), /* r2 = fp - 4 */
  53. BPF_LD_MAP_FD(BPF_REG_1, map_fd),
  54. BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_map_lookup_elem),
  55. BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 2),
  56. BPF_LDX_MEM(BPF_W, BPF_REG_1, BPF_REG_6, offsetof(struct __sk_buff, len)), /* r1 = skb->len */
  57. BPF_RAW_INSN(BPF_STX | BPF_XADD | BPF_DW, BPF_REG_0, BPF_REG_1, 0, 0), /* xadd r0 += r1 */
  58. BPF_MOV64_IMM(BPF_REG_0, verdict), /* r0 = verdict */
  59. BPF_EXIT_INSN(),
  60. };
  61. size_t insns_cnt = sizeof(prog) / sizeof(struct bpf_insn);
  62. return bpf_load_program(BPF_PROG_TYPE_CGROUP_SKB,
  63. prog, insns_cnt, "GPL", 0,
  64. bpf_log_buf, BPF_LOG_BUF_SIZE);
  65. }
  66. static int usage(const char *argv0)
  67. {
  68. printf("Usage: %s [-d] [-D] <cg-path> <egress|ingress>\n", argv0);
  69. printf(" -d Drop Traffic\n");
  70. printf(" -D Detach filter, and exit\n");
  71. return EXIT_FAILURE;
  72. }
  73. static int attach_filter(int cg_fd, int type, int verdict)
  74. {
  75. int prog_fd, map_fd, ret, key;
  76. long long pkt_cnt, byte_cnt;
  77. map_fd = bpf_create_map(BPF_MAP_TYPE_ARRAY,
  78. sizeof(key), sizeof(byte_cnt),
  79. 256, 0);
  80. if (map_fd < 0) {
  81. printf("Failed to create map: '%s'\n", strerror(errno));
  82. return EXIT_FAILURE;
  83. }
  84. prog_fd = prog_load(map_fd, verdict);
  85. printf("Output from kernel verifier:\n%s\n-------\n", bpf_log_buf);
  86. if (prog_fd < 0) {
  87. printf("Failed to load prog: '%s'\n", strerror(errno));
  88. return EXIT_FAILURE;
  89. }
  90. ret = bpf_prog_attach(prog_fd, cg_fd, type);
  91. if (ret < 0) {
  92. printf("Failed to attach prog to cgroup: '%s'\n",
  93. strerror(errno));
  94. return EXIT_FAILURE;
  95. }
  96. while (1) {
  97. key = MAP_KEY_PACKETS;
  98. assert(bpf_map_lookup_elem(map_fd, &key, &pkt_cnt) == 0);
  99. key = MAP_KEY_BYTES;
  100. assert(bpf_map_lookup_elem(map_fd, &key, &byte_cnt) == 0);
  101. printf("cgroup received %lld packets, %lld bytes\n",
  102. pkt_cnt, byte_cnt);
  103. sleep(1);
  104. }
  105. return EXIT_SUCCESS;
  106. }
  107. int main(int argc, char **argv)
  108. {
  109. int detach_only = 0, verdict = 1;
  110. enum bpf_attach_type type;
  111. int opt, cg_fd, ret;
  112. while ((opt = getopt(argc, argv, "Dd")) != -1) {
  113. switch (opt) {
  114. case 'd':
  115. verdict = 0;
  116. break;
  117. case 'D':
  118. detach_only = 1;
  119. break;
  120. default:
  121. return usage(argv[0]);
  122. }
  123. }
  124. if (argc - optind < 2)
  125. return usage(argv[0]);
  126. if (strcmp(argv[optind + 1], "ingress") == 0)
  127. type = BPF_CGROUP_INET_INGRESS;
  128. else if (strcmp(argv[optind + 1], "egress") == 0)
  129. type = BPF_CGROUP_INET_EGRESS;
  130. else
  131. return usage(argv[0]);
  132. cg_fd = open(argv[optind], O_DIRECTORY | O_RDONLY);
  133. if (cg_fd < 0) {
  134. printf("Failed to open cgroup path: '%s'\n", strerror(errno));
  135. return EXIT_FAILURE;
  136. }
  137. if (detach_only) {
  138. ret = bpf_prog_detach(cg_fd, type);
  139. printf("bpf_prog_detach() returned '%s' (%d)\n",
  140. strerror(errno), errno);
  141. } else
  142. ret = attach_filter(cg_fd, type, verdict);
  143. return ret;
  144. }