test_cgrp2_attach2.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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 <assert.h>
  22. #include <unistd.h>
  23. #include <linux/bpf.h>
  24. #include "libbpf.h"
  25. #include "cgroup_helpers.h"
  26. #define FOO "/foo"
  27. #define BAR "/foo/bar/"
  28. #define PING_CMD "ping -c1 -w1 127.0.0.1"
  29. char bpf_log_buf[BPF_LOG_BUF_SIZE];
  30. static int prog_load(int verdict)
  31. {
  32. int ret;
  33. struct bpf_insn prog[] = {
  34. BPF_MOV64_IMM(BPF_REG_0, verdict), /* r0 = verdict */
  35. BPF_EXIT_INSN(),
  36. };
  37. size_t insns_cnt = sizeof(prog) / sizeof(struct bpf_insn);
  38. ret = bpf_load_program(BPF_PROG_TYPE_CGROUP_SKB,
  39. prog, insns_cnt, "GPL", 0,
  40. bpf_log_buf, BPF_LOG_BUF_SIZE);
  41. if (ret < 0) {
  42. log_err("Loading program");
  43. printf("Output from verifier:\n%s\n-------\n", bpf_log_buf);
  44. return 0;
  45. }
  46. return ret;
  47. }
  48. int main(int argc, char **argv)
  49. {
  50. int drop_prog, allow_prog, foo = 0, bar = 0, rc = 0;
  51. allow_prog = prog_load(1);
  52. if (!allow_prog)
  53. goto err;
  54. drop_prog = prog_load(0);
  55. if (!drop_prog)
  56. goto err;
  57. if (setup_cgroup_environment())
  58. goto err;
  59. /* Create cgroup /foo, get fd, and join it */
  60. foo = create_and_get_cgroup(FOO);
  61. if (!foo)
  62. goto err;
  63. if (join_cgroup(FOO))
  64. goto err;
  65. if (bpf_prog_attach(drop_prog, foo, BPF_CGROUP_INET_EGRESS)) {
  66. log_err("Attaching prog to /foo");
  67. goto err;
  68. }
  69. assert(system(PING_CMD) != 0);
  70. /* Create cgroup /foo/bar, get fd, and join it */
  71. bar = create_and_get_cgroup(BAR);
  72. if (!bar)
  73. goto err;
  74. if (join_cgroup(BAR))
  75. goto err;
  76. assert(system(PING_CMD) != 0);
  77. if (bpf_prog_attach(allow_prog, bar, BPF_CGROUP_INET_EGRESS)) {
  78. log_err("Attaching prog to /foo/bar");
  79. goto err;
  80. }
  81. assert(system(PING_CMD) == 0);
  82. if (bpf_prog_detach(bar, BPF_CGROUP_INET_EGRESS)) {
  83. log_err("Detaching program from /foo/bar");
  84. goto err;
  85. }
  86. assert(system(PING_CMD) != 0);
  87. if (bpf_prog_attach(allow_prog, bar, BPF_CGROUP_INET_EGRESS)) {
  88. log_err("Attaching prog to /foo/bar");
  89. goto err;
  90. }
  91. if (bpf_prog_detach(foo, BPF_CGROUP_INET_EGRESS)) {
  92. log_err("Detaching program from /foo");
  93. goto err;
  94. }
  95. assert(system(PING_CMD) == 0);
  96. goto out;
  97. err:
  98. rc = 1;
  99. out:
  100. close(foo);
  101. close(bar);
  102. cleanup_cgroup_environment();
  103. return rc;
  104. }