Skip to content

Commit

Permalink
selftests/bpf: Add selftest for sleepable bpf_task_under_cgroup()
Browse files Browse the repository at this point in the history
The result as follows,

  $ tools/testing/selftests/bpf/test_progs --name=task_under_cgroup
  torvalds#237     task_under_cgroup:OK
  Summary: 1/0 PASSED, 0 SKIPPED, 0 FAILED

And no error messages in dmesg.

Without the prev patch, there will be RCU warnings in dmesg.

Signed-off-by: Yafang Shao <[email protected]>
  • Loading branch information
laoar authored and intel-lab-lkp committed Oct 5, 2023
1 parent 46f228d commit ceb6828
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
8 changes: 6 additions & 2 deletions tools/testing/selftests/bpf/prog_tests/task_under_cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ void test_task_under_cgroup(void)
if (!ASSERT_OK(ret, "test_task_under_cgroup__load"))
goto cleanup;

ret = test_task_under_cgroup__attach(skel);
if (!ASSERT_OK(ret, "test_task_under_cgroup__attach"))
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();
Expand Down
28 changes: 27 additions & 1 deletion tools/testing/selftests/bpf/progs/test_task_under_cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const volatile __u64 cgid;
int remote_pid;

SEC("tp_btf/task_newtask")
int BPF_PROG(handle__task_newtask, struct task_struct *task, u64 clone_flags)
int BPF_PROG(tp_btf_run, struct task_struct *task, u64 clone_flags)
{
struct cgroup *cgrp = NULL;
struct task_struct *acquired;
Expand Down Expand Up @@ -48,4 +48,30 @@ int BPF_PROG(handle__task_newtask, struct task_struct *task, u64 clone_flags)
return 0;
}

SEC("lsm.s/bpf")
int BPF_PROG(lsm_run, int cmd, union bpf_attr *attr, unsigned int size)
{
struct cgroup *cgrp = NULL;
struct task_struct *task;
int ret = 0;

task = bpf_get_current_task_btf();
if (local_pid != task->pid)
return 0;

if (cmd != BPF_LINK_CREATE)
return 0;

/* 1 is the root cgroup */
cgrp = bpf_cgroup_from_id(1);
if (!cgrp)
goto out;
if (!bpf_task_under_cgroup(task, cgrp))
ret = -1;
bpf_cgroup_release(cgrp);

out:
return ret;
}

char _license[] SEC("license") = "GPL";

0 comments on commit ceb6828

Please sign in to comment.