1 // SPDX-License-Identifier: GPL-2.0
2 #include <test_progs.h>
3 #include "udp_limit.skel.h"
6 #include <sys/socket.h>
10 void test_udp_limit(void)
12 struct udp_limit
*skel
;
13 int fd1
= -1, fd2
= -1;
16 cgroup_fd
= test__join_cgroup("/udp_limit");
17 if (CHECK(cgroup_fd
< 0, "cg-join", "errno %d", errno
))
20 skel
= udp_limit__open_and_load();
21 if (CHECK(!skel
, "skel-load", "errno %d", errno
))
24 skel
->links
.sock
= bpf_program__attach_cgroup(skel
->progs
.sock
, cgroup_fd
);
25 skel
->links
.sock_release
= bpf_program__attach_cgroup(skel
->progs
.sock_release
, cgroup_fd
);
26 if (CHECK(IS_ERR(skel
->links
.sock
) || IS_ERR(skel
->links
.sock_release
),
27 "cg-attach", "sock %ld sock_release %ld",
28 PTR_ERR(skel
->links
.sock
),
29 PTR_ERR(skel
->links
.sock_release
)))
32 /* BPF program enforces a single UDP socket per cgroup,
35 fd1
= socket(AF_INET
, SOCK_DGRAM
, 0);
36 if (CHECK(fd1
< 0, "fd1", "errno %d", errno
))
39 fd2
= socket(AF_INET
, SOCK_DGRAM
, 0);
40 if (CHECK(fd2
>= 0, "fd2", "errno %d", errno
))
43 /* We can reopen again after close. */
47 fd1
= socket(AF_INET
, SOCK_DGRAM
, 0);
48 if (CHECK(fd1
< 0, "fd1-again", "errno %d", errno
))
51 /* Make sure the program was invoked the expected
53 * - open fd1 - BPF_CGROUP_INET_SOCK_CREATE
54 * - attempt to openfd2 - BPF_CGROUP_INET_SOCK_CREATE
55 * - close fd1 - BPF_CGROUP_INET_SOCK_RELEASE
56 * - open fd1 again - BPF_CGROUP_INET_SOCK_CREATE
58 if (CHECK(skel
->bss
->invocations
!= 4, "bss-invocations",
59 "invocations=%d", skel
->bss
->invocations
))
62 /* We should still have a single socket in use */
63 if (CHECK(skel
->bss
->in_use
!= 1, "bss-in_use",
64 "in_use=%d", skel
->bss
->in_use
))
72 udp_limit__destroy(skel
);