Skip to content

Commit

Permalink
selftests/bpf: Add selftests for set_mempolicy with a lsm prog
Browse files Browse the repository at this point in the history
The result as follows,
  torvalds#261/1   set_mempolicy/MPOL_BIND_with_lsm:OK
  torvalds#261/2   set_mempolicy/MPOL_DEFAULT_with_lsm:OK
  torvalds#261/3   set_mempolicy/MPOL_BIND_without_lsm:OK
  torvalds#261/4   set_mempolicy/MPOL_DEFAULT_without_lsm:OK
  torvalds#261     set_mempolicy:OK
  Summary: 1/4 PASSED, 0 SKIPPED, 0 FAILED

Signed-off-by: Yafang Shao <[email protected]>
  • Loading branch information
laoar authored and intel-lab-lkp committed Nov 22, 2023
1 parent 8f27068 commit 87a07e1
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tools/testing/selftests/bpf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CFLAGS += -g $(OPT_FLAGS) -rdynamic \
-I$(CURDIR) -I$(INCLUDE_DIR) -I$(GENDIR) -I$(LIBDIR) \
-I$(TOOLSINCDIR) -I$(APIDIR) -I$(OUTPUT)
LDFLAGS += $(SAN_LDFLAGS)
LDLIBS += -lelf -lz -lrt -lpthread
LDLIBS += -lelf -lz -lrt -lpthread -lnuma

ifneq ($(LLVM),)
# Silence some warnings when compiled with clang
Expand Down
79 changes: 79 additions & 0 deletions tools/testing/selftests/bpf/prog_tests/set_mempolicy.c
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 <[email protected]> */

#include <sys/types.h>
#include <unistd.h>
#include <sys/mman.h>
#include <numaif.h>
#include <test_progs.h>
#include "test_set_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_set_mempolicy(void)
{
struct test_set_mempolicy *skel;
int err;

skel = test_set_mempolicy__open();
if (!ASSERT_OK_PTR(skel, "open"))
return;

skel->bss->target_pid = getpid();

err = test_set_mempolicy__load(skel);
if (!ASSERT_OK(err, "load"))
goto destroy;

/* Attach LSM prog first */
err = test_set_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_set_mempolicy__destroy(skel);

if (test__start_subtest("MPOL_BIND_without_lsm"))
mempolicy_bind(true);
if (test__start_subtest("MPOL_DEFAULT_without_lsm"))
mempolicy_default();
}
29 changes: 29 additions & 0 deletions tools/testing/selftests/bpf/progs/test_set_mempolicy.c
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 <[email protected]> */

#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/set_mempolicy")
int BPF_PROG(setmempolicy, u64 mode, u16 mode_flags, nodemask_t *nmask, u32 flags)
{
return mem_policy_adjustment(mode);
}

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

0 comments on commit 87a07e1

Please sign in to comment.