forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests/bpf: Add selftests for mbind(2) with lsm prog
The result as follows, torvalds#142/1 mempolicy/MPOL_BIND_with_lsm:OK torvalds#142/2 mempolicy/MPOL_DEFAULT_with_lsm:OK torvalds#142/3 mempolicy/MPOL_BIND_without_lsm:OK torvalds#142/4 mempolicy/MPOL_DEFAULT_without_lsm:OK torvalds#142 mempolicy:OK Signed-off-by: Yafang Shao <laoar.shao@gmail.com>
- Loading branch information
1 parent
9dcbf34
commit ffaf2e5
Showing
2 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Copyright (C) 2023 Yafang Shao <laoar.shao@gmail.com> */ | ||
|
||
#include <sys/types.h> | ||
#include <unistd.h> | ||
#include <sys/mman.h> | ||
#include <numaif.h> | ||
#include <test_progs.h> | ||
#include "test_mempolicy.skel.h" | ||
|
||
#define SIZE 4096 | ||
|
||
static void mempolicy_bind(bool success) | ||
{ | ||
unsigned long mask = 1; | ||
char *addr; | ||
int err; | ||
|
||
addr = mmap(NULL, SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); | ||
if (!ASSERT_OK_PTR(addr, "mmap")) | ||
return; | ||
|
||
err = mbind(addr, SIZE, MPOL_BIND, &mask, sizeof(mask), 0); | ||
if (success) | ||
ASSERT_OK(err, "mbind_success"); | ||
else | ||
ASSERT_ERR(err, "mbind_fail"); | ||
|
||
munmap(addr, SIZE); | ||
} | ||
|
||
static void mempolicy_default(void) | ||
{ | ||
char *addr; | ||
int err; | ||
|
||
addr = mmap(NULL, SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); | ||
if (!ASSERT_OK_PTR(addr, "mmap")) | ||
return; | ||
|
||
err = mbind(addr, SIZE, MPOL_DEFAULT, NULL, 0, 0); | ||
ASSERT_OK(err, "mbind_success"); | ||
|
||
munmap(addr, SIZE); | ||
} | ||
void test_mempolicy(void) | ||
{ | ||
struct test_mempolicy *skel; | ||
int err; | ||
|
||
skel = test_mempolicy__open(); | ||
if (!ASSERT_OK_PTR(skel, "open")) | ||
return; | ||
|
||
skel->bss->target_pid = getpid(); | ||
|
||
err = test_mempolicy__load(skel); | ||
if (!ASSERT_OK(err, "load")) | ||
goto destroy; | ||
|
||
/* Attach LSM prog first */ | ||
err = test_mempolicy__attach(skel); | ||
if (!ASSERT_OK(err, "attach")) | ||
goto destroy; | ||
|
||
/* syscall to adjust memory policy */ | ||
if (test__start_subtest("MPOL_BIND_with_lsm")) | ||
mempolicy_bind(false); | ||
if (test__start_subtest("MPOL_DEFAULT_with_lsm")) | ||
mempolicy_default(); | ||
|
||
destroy: | ||
test_mempolicy__destroy(skel); | ||
|
||
if (test__start_subtest("MPOL_BIND_without_lsm")) | ||
mempolicy_bind(true); | ||
if (test__start_subtest("MPOL_DEFAULT_without_lsm")) | ||
mempolicy_default(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Copyright (C) 2023 Yafang Shao <laoar.shao@gmail.com> */ | ||
|
||
#include "vmlinux.h" | ||
#include <bpf/bpf_helpers.h> | ||
#include <bpf/bpf_tracing.h> | ||
#include <bpf/bpf_core_read.h> | ||
|
||
int target_pid; | ||
|
||
static int mem_policy_adjustment(u64 mode) | ||
{ | ||
struct task_struct *task = bpf_get_current_task_btf(); | ||
|
||
if (task->pid != target_pid) | ||
return 0; | ||
|
||
if (mode != MPOL_BIND) | ||
return 0; | ||
return -1; | ||
} | ||
|
||
SEC("lsm/mbind") | ||
int BPF_PROG(mbind_run, u64 start, u64 len, u64 mode, const u64 *nmask, u64 maxnode, u32 flags) | ||
{ | ||
return mem_policy_adjustment(mode); | ||
} | ||
|
||
char _license[] SEC("license") = "GPL"; |