1 // SPDX-License-Identifier: GPL-2.0
3 #include <test_progs.h>
5 #include "cgroup_helpers.h"
7 #define PING_CMD "ping -q -c1 -w1 127.0.0.1 > /dev/null"
9 static char bpf_log_buf
[BPF_LOG_BUF_SIZE
];
11 static int map_fd
= -1;
13 static int prog_load_cnt(int verdict
, int val
)
15 int cgroup_storage_fd
, percpu_cgroup_storage_fd
;
18 map_fd
= bpf_create_map(BPF_MAP_TYPE_ARRAY
, 4, 8, 1, 0);
20 printf("failed to create map '%s'\n", strerror(errno
));
24 cgroup_storage_fd
= bpf_create_map(BPF_MAP_TYPE_CGROUP_STORAGE
,
25 sizeof(struct bpf_cgroup_storage_key
), 8, 0, 0);
26 if (cgroup_storage_fd
< 0) {
27 printf("failed to create map '%s'\n", strerror(errno
));
31 percpu_cgroup_storage_fd
= bpf_create_map(
32 BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE
,
33 sizeof(struct bpf_cgroup_storage_key
), 8, 0, 0);
34 if (percpu_cgroup_storage_fd
< 0) {
35 printf("failed to create map '%s'\n", strerror(errno
));
39 struct bpf_insn prog
[] = {
40 BPF_MOV32_IMM(BPF_REG_0
, 0),
41 BPF_STX_MEM(BPF_W
, BPF_REG_10
, BPF_REG_0
, -4), /* *(u32 *)(fp - 4) = r0 */
42 BPF_MOV64_REG(BPF_REG_2
, BPF_REG_10
),
43 BPF_ALU64_IMM(BPF_ADD
, BPF_REG_2
, -4), /* r2 = fp - 4 */
44 BPF_LD_MAP_FD(BPF_REG_1
, map_fd
),
45 BPF_RAW_INSN(BPF_JMP
| BPF_CALL
, 0, 0, 0, BPF_FUNC_map_lookup_elem
),
46 BPF_JMP_IMM(BPF_JEQ
, BPF_REG_0
, 0, 2),
47 BPF_MOV64_IMM(BPF_REG_1
, val
), /* r1 = 1 */
48 BPF_RAW_INSN(BPF_STX
| BPF_XADD
| BPF_DW
, BPF_REG_0
, BPF_REG_1
, 0, 0), /* xadd r0 += r1 */
50 BPF_LD_MAP_FD(BPF_REG_1
, cgroup_storage_fd
),
51 BPF_MOV64_IMM(BPF_REG_2
, 0),
52 BPF_RAW_INSN(BPF_JMP
| BPF_CALL
, 0, 0, 0, BPF_FUNC_get_local_storage
),
53 BPF_MOV64_IMM(BPF_REG_1
, val
),
54 BPF_RAW_INSN(BPF_STX
| BPF_XADD
| BPF_W
, BPF_REG_0
, BPF_REG_1
, 0, 0),
56 BPF_LD_MAP_FD(BPF_REG_1
, percpu_cgroup_storage_fd
),
57 BPF_MOV64_IMM(BPF_REG_2
, 0),
58 BPF_RAW_INSN(BPF_JMP
| BPF_CALL
, 0, 0, 0, BPF_FUNC_get_local_storage
),
59 BPF_LDX_MEM(BPF_W
, BPF_REG_3
, BPF_REG_0
, 0),
60 BPF_ALU64_IMM(BPF_ADD
, BPF_REG_3
, 0x1),
61 BPF_STX_MEM(BPF_W
, BPF_REG_0
, BPF_REG_3
, 0),
63 BPF_MOV64_IMM(BPF_REG_0
, verdict
), /* r0 = verdict */
66 size_t insns_cnt
= sizeof(prog
) / sizeof(struct bpf_insn
);
69 ret
= bpf_load_program(BPF_PROG_TYPE_CGROUP_SKB
,
70 prog
, insns_cnt
, "GPL", 0,
71 bpf_log_buf
, BPF_LOG_BUF_SIZE
);
73 close(cgroup_storage_fd
);
77 void test_cgroup_attach_multi(void)
79 __u32 prog_ids
[4], prog_cnt
= 0, attach_flags
, saved_prog_id
;
80 int cg1
= 0, cg2
= 0, cg3
= 0, cg4
= 0, cg5
= 0, key
= 0;
81 DECLARE_LIBBPF_OPTS(bpf_prog_attach_opts
, attach_opts
);
82 int allow_prog
[7] = {-1};
83 unsigned long long value
;
87 for (i
= 0; i
< ARRAY_SIZE(allow_prog
); i
++) {
88 allow_prog
[i
] = prog_load_cnt(1, 1 << i
);
89 if (CHECK(allow_prog
[i
] < 0, "prog_load",
90 "verifier output:\n%s\n-------\n", bpf_log_buf
))
94 if (CHECK_FAIL(setup_cgroup_environment()))
97 cg1
= create_and_get_cgroup("/cg1");
98 if (CHECK_FAIL(cg1
< 0))
100 cg2
= create_and_get_cgroup("/cg1/cg2");
101 if (CHECK_FAIL(cg2
< 0))
103 cg3
= create_and_get_cgroup("/cg1/cg2/cg3");
104 if (CHECK_FAIL(cg3
< 0))
106 cg4
= create_and_get_cgroup("/cg1/cg2/cg3/cg4");
107 if (CHECK_FAIL(cg4
< 0))
109 cg5
= create_and_get_cgroup("/cg1/cg2/cg3/cg4/cg5");
110 if (CHECK_FAIL(cg5
< 0))
113 if (CHECK_FAIL(join_cgroup("/cg1/cg2/cg3/cg4/cg5")))
116 if (CHECK(bpf_prog_attach(allow_prog
[0], cg1
, BPF_CGROUP_INET_EGRESS
,
118 "prog0_attach_to_cg1_multi", "errno=%d\n", errno
))
121 if (CHECK(!bpf_prog_attach(allow_prog
[0], cg1
, BPF_CGROUP_INET_EGRESS
,
123 "fail_same_prog_attach_to_cg1", "unexpected success\n"))
126 if (CHECK(bpf_prog_attach(allow_prog
[1], cg1
, BPF_CGROUP_INET_EGRESS
,
128 "prog1_attach_to_cg1_multi", "errno=%d\n", errno
))
131 if (CHECK(bpf_prog_attach(allow_prog
[2], cg2
, BPF_CGROUP_INET_EGRESS
,
132 BPF_F_ALLOW_OVERRIDE
),
133 "prog2_attach_to_cg2_override", "errno=%d\n", errno
))
136 if (CHECK(bpf_prog_attach(allow_prog
[3], cg3
, BPF_CGROUP_INET_EGRESS
,
138 "prog3_attach_to_cg3_multi", "errno=%d\n", errno
))
141 if (CHECK(bpf_prog_attach(allow_prog
[4], cg4
, BPF_CGROUP_INET_EGRESS
,
142 BPF_F_ALLOW_OVERRIDE
),
143 "prog4_attach_to_cg4_override", "errno=%d\n", errno
))
146 if (CHECK(bpf_prog_attach(allow_prog
[5], cg5
, BPF_CGROUP_INET_EGRESS
, 0),
147 "prog5_attach_to_cg5_none", "errno=%d\n", errno
))
150 CHECK_FAIL(system(PING_CMD
));
151 CHECK_FAIL(bpf_map_lookup_elem(map_fd
, &key
, &value
));
152 CHECK_FAIL(value
!= 1 + 2 + 8 + 32);
154 /* query the number of effective progs in cg5 */
155 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
,
156 BPF_F_QUERY_EFFECTIVE
, NULL
, NULL
, &prog_cnt
));
157 CHECK_FAIL(prog_cnt
!= 4);
158 /* retrieve prog_ids of effective progs in cg5 */
159 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
,
160 BPF_F_QUERY_EFFECTIVE
, &attach_flags
,
161 prog_ids
, &prog_cnt
));
162 CHECK_FAIL(prog_cnt
!= 4);
163 CHECK_FAIL(attach_flags
!= 0);
164 saved_prog_id
= prog_ids
[0];
165 /* check enospc handling */
168 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
,
169 BPF_F_QUERY_EFFECTIVE
, &attach_flags
,
170 prog_ids
, &prog_cnt
) != -1);
171 CHECK_FAIL(errno
!= ENOSPC
);
172 CHECK_FAIL(prog_cnt
!= 4);
173 /* check that prog_ids are returned even when buffer is too small */
174 CHECK_FAIL(prog_ids
[0] != saved_prog_id
);
175 /* retrieve prog_id of single attached prog in cg5 */
177 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
, 0, NULL
,
178 prog_ids
, &prog_cnt
));
179 CHECK_FAIL(prog_cnt
!= 1);
180 CHECK_FAIL(prog_ids
[0] != saved_prog_id
);
182 /* detach bottom program and ping again */
183 if (CHECK(bpf_prog_detach2(-1, cg5
, BPF_CGROUP_INET_EGRESS
),
184 "prog_detach_from_cg5", "errno=%d\n", errno
))
188 CHECK_FAIL(bpf_map_update_elem(map_fd
, &key
, &value
, 0));
189 CHECK_FAIL(system(PING_CMD
));
190 CHECK_FAIL(bpf_map_lookup_elem(map_fd
, &key
, &value
));
191 CHECK_FAIL(value
!= 1 + 2 + 8 + 16);
195 attach_opts
.flags
= BPF_F_ALLOW_OVERRIDE
| BPF_F_REPLACE
;
196 attach_opts
.replace_prog_fd
= allow_prog
[0];
197 if (CHECK(!bpf_prog_attach_xattr(allow_prog
[6], cg1
,
198 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
199 "fail_prog_replace_override", "unexpected success\n"))
201 CHECK_FAIL(errno
!= EINVAL
);
203 attach_opts
.flags
= BPF_F_REPLACE
;
204 if (CHECK(!bpf_prog_attach_xattr(allow_prog
[6], cg1
,
205 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
206 "fail_prog_replace_no_multi", "unexpected success\n"))
208 CHECK_FAIL(errno
!= EINVAL
);
210 attach_opts
.flags
= BPF_F_ALLOW_MULTI
| BPF_F_REPLACE
;
211 attach_opts
.replace_prog_fd
= -1;
212 if (CHECK(!bpf_prog_attach_xattr(allow_prog
[6], cg1
,
213 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
214 "fail_prog_replace_bad_fd", "unexpected success\n"))
216 CHECK_FAIL(errno
!= EBADF
);
218 /* replacing a program that is not attached to cgroup should fail */
219 attach_opts
.replace_prog_fd
= allow_prog
[3];
220 if (CHECK(!bpf_prog_attach_xattr(allow_prog
[6], cg1
,
221 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
222 "fail_prog_replace_no_ent", "unexpected success\n"))
224 CHECK_FAIL(errno
!= ENOENT
);
226 /* replace 1st from the top program */
227 attach_opts
.replace_prog_fd
= allow_prog
[0];
228 if (CHECK(bpf_prog_attach_xattr(allow_prog
[6], cg1
,
229 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
230 "prog_replace", "errno=%d\n", errno
))
233 /* replace program with itself */
234 attach_opts
.replace_prog_fd
= allow_prog
[6];
235 if (CHECK(bpf_prog_attach_xattr(allow_prog
[6], cg1
,
236 BPF_CGROUP_INET_EGRESS
, &attach_opts
),
237 "prog_replace", "errno=%d\n", errno
))
241 CHECK_FAIL(bpf_map_update_elem(map_fd
, &key
, &value
, 0));
242 CHECK_FAIL(system(PING_CMD
));
243 CHECK_FAIL(bpf_map_lookup_elem(map_fd
, &key
, &value
));
244 CHECK_FAIL(value
!= 64 + 2 + 8 + 16);
246 /* detach 3rd from bottom program and ping again */
247 if (CHECK(!bpf_prog_detach2(0, cg3
, BPF_CGROUP_INET_EGRESS
),
248 "fail_prog_detach_from_cg3", "unexpected success\n"))
251 if (CHECK(bpf_prog_detach2(allow_prog
[3], cg3
, BPF_CGROUP_INET_EGRESS
),
252 "prog3_detach_from_cg3", "errno=%d\n", errno
))
256 CHECK_FAIL(bpf_map_update_elem(map_fd
, &key
, &value
, 0));
257 CHECK_FAIL(system(PING_CMD
));
258 CHECK_FAIL(bpf_map_lookup_elem(map_fd
, &key
, &value
));
259 CHECK_FAIL(value
!= 64 + 2 + 16);
261 /* detach 2nd from bottom program and ping again */
262 if (CHECK(bpf_prog_detach2(-1, cg4
, BPF_CGROUP_INET_EGRESS
),
263 "prog_detach_from_cg4", "errno=%d\n", errno
))
267 CHECK_FAIL(bpf_map_update_elem(map_fd
, &key
, &value
, 0));
268 CHECK_FAIL(system(PING_CMD
));
269 CHECK_FAIL(bpf_map_lookup_elem(map_fd
, &key
, &value
));
270 CHECK_FAIL(value
!= 64 + 2 + 4);
273 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
,
274 BPF_F_QUERY_EFFECTIVE
, &attach_flags
,
275 prog_ids
, &prog_cnt
));
276 CHECK_FAIL(prog_cnt
!= 3);
277 CHECK_FAIL(attach_flags
!= 0);
278 CHECK_FAIL(bpf_prog_query(cg5
, BPF_CGROUP_INET_EGRESS
, 0, NULL
,
279 prog_ids
, &prog_cnt
));
280 CHECK_FAIL(prog_cnt
!= 0);
283 for (i
= 0; i
< ARRAY_SIZE(allow_prog
); i
++)
284 if (allow_prog
[i
] >= 0)
285 close(allow_prog
[i
]);
291 cleanup_cgroup_environment();