WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / test_kmod.sh
blob4f6444bcd53f93bb904ef22bd53744d7d32b1e84
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
4 # Kselftest framework requirement - SKIP code is 4.
5 ksft_skip=4
7 msg="skip all tests:"
8 if [ "$(id -u)" != "0" ]; then
9 echo $msg please run this as root >&2
10 exit $ksft_skip
13 if [ "$building_out_of_srctree" ]; then
14 # We are in linux-build/kselftest/bpf
15 OUTPUT=../../
16 else
17 # We are in linux/tools/testing/selftests/bpf
18 OUTPUT=../../../../
21 test_run()
23 sysctl -w net.core.bpf_jit_enable=$1 2>&1 > /dev/null
24 sysctl -w net.core.bpf_jit_harden=$2 2>&1 > /dev/null
26 echo "[ JIT enabled:$1 hardened:$2 ]"
27 dmesg -C
28 if [ -f ${OUTPUT}/lib/test_bpf.ko ]; then
29 insmod ${OUTPUT}/lib/test_bpf.ko 2> /dev/null
30 if [ $? -ne 0 ]; then
31 rc=1
33 else
34 # Use modprobe dry run to check for missing test_bpf module
35 if ! /sbin/modprobe -q -n test_bpf; then
36 echo "test_bpf: [SKIP]"
37 elif /sbin/modprobe -q test_bpf; then
38 echo "test_bpf: ok"
39 else
40 echo "test_bpf: [FAIL]"
41 rc=1
44 rmmod test_bpf 2> /dev/null
45 dmesg | grep FAIL
48 test_save()
50 JE=`sysctl -n net.core.bpf_jit_enable`
51 JH=`sysctl -n net.core.bpf_jit_harden`
54 test_restore()
56 sysctl -w net.core.bpf_jit_enable=$JE 2>&1 > /dev/null
57 sysctl -w net.core.bpf_jit_harden=$JH 2>&1 > /dev/null
60 rc=0
61 test_save
62 test_run 0 0
63 test_run 1 0
64 test_run 1 1
65 test_run 1 2
66 test_restore
67 exit $rc