aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/bpf/prog_tests/task_under_cgroup.c
blob: 626d76fe43a210ae1d80f66211693c87bf22c310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2023 Bytedance */

#include <sys/syscall.h>
#include <test_progs.h>
#include <cgroup_helpers.h>
#include "test_task_under_cgroup.skel.h"

#define FOO	"/foo"

void test_task_under_cgroup(void)
{
	struct test_task_under_cgroup *skel;
	int ret, foo;
	pid_t pid;

	foo = test__join_cgroup(FOO);
	if (!ASSERT_OK(foo < 0, "cgroup_join_foo"))
		return;

	skel = test_task_under_cgroup__open();
	if (!ASSERT_OK_PTR(skel, "test_task_under_cgroup__open"))
		goto cleanup;

	skel->rodata->local_pid = getpid();
	skel->bss->remote_pid = getpid();
	skel->rodata->cgid = get_cgroup_id(FOO);

	ret = test_task_under_cgroup__load(skel);
	if (!ASSERT_OK(ret, "test_task_under_cgroup__load"))
		goto cleanup;

	/* First, attach the LSM program, and then it will be triggered when the
	 * TP_BTF program is attached.
	 */
	skel->links.lsm_run = bpf_program__attach_lsm(skel->progs.lsm_run);
	if (!ASSERT_OK_PTR(skel->links.lsm_run, "attach_lsm"))
		goto cleanup;

	skel->links.tp_btf_run = bpf_program__attach_trace(skel->progs.tp_btf_run);
	if (!ASSERT_OK_PTR(skel->links.tp_btf_run, "attach_tp_btf"))
		goto cleanup;

	pid = fork();
	if (pid == 0)
		exit(0);

	ret = (pid == -1);
	if (ASSERT_OK(ret, "fork process"))
		wait(NULL);

	test_task_under_cgroup__detach(skel);

	ASSERT_NEQ(skel->bss->remote_pid, skel->rodata->local_pid,
		   "test task_under_cgroup");

cleanup:
	test_task_under_cgroup__destroy(skel);
	close(foo);
}