blob: 8be22b6774d0c2c300233f0b06636085267e6df0 (
plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
name: Run tests with ASAN and UBSAN
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
Test-in-GH-ASAN-UBSAN:
strategy:
fail-fast: false
matrix:
include:
- distro: "ubuntu-latest"
sanitizer: "address"
env_name: "ASAN_OPTIONS"
env_value: "abort_on_error=1:detect_leaks=1:print_stacktrace=1"
- distro: "ubuntu-latest"
sanitizer: "undefined"
env_name: "UBSAN_OPTIONS"
env_value: "print_stacktrace=1"
runs-on: ${{ matrix.distro }}
steps:
- name: Install build tools (using apt)
run: >
sudo apt update &&
NEEDRESTART_SUSPEND=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true sudo -E apt -y install
git build-essential cmake gcc linux-headers-`uname -r`
libpcre2-dev libssl-dev liblua5.1-0-dev kmod python3-pip
iproute2 ppp pppoe isc-dhcp-client
- name: Install testing tools (using pip)
run: >
sudo apt -y install python3-pytest python3-pytest-dependency python3-pytest-order ||
sudo pip3 install pytest pytest-dependency pytest-order ||
sudo pip3 install --break-system-packages pytest pytest-dependency pytest-order
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: mkdir build
run: mkdir build
- name: cmake (with ${{ matrix.sanitizer }})
working-directory: ./build
run: >
CFLAGS="-fsanitize=${{ matrix.sanitizer }} -fno-sanitize-recover=all -fno-omit-frame-pointer -O2 -g"
LDFLAGS="-fsanitize=${{ matrix.sanitizer }}"
cmake -DBUILD_IPOE_DRIVER=TRUE -DBUILD_VLAN_MON_DRIVER=TRUE -DCMAKE_INSTALL_PREFIX=/usr
-DKDIR=/usr/src/linux-headers-`uname -r`
-DLUA=TRUE -DSHAPER=TRUE -DRADIUS=TRUE ..
- name: make && make install
working-directory: ./build
run: make && sudo make install
- name: Insert and check kernel modules (ipoe and vlan-mon)
# if: ${{ false }}
run: |
sudo insmod build/drivers/vlan_mon/driver/vlan_mon.ko
sudo insmod build/drivers/ipoe/driver/ipoe.ko
lsmod | grep ipoe
lsmod | grep vlan_mon
- name: Run tests
timeout-minutes: 5
working-directory: ./tests
env:
${{ matrix.env_name }}: ${{ matrix.env_value }}
run: sudo -E python3 -m pytest -Wall --order-dependencies -v
- name: Check dmesg for kernel issues
if: ${{ always() }}
run: |
sudo dmesg | tee /tmp/dmesg.log
if grep -E 'WARNING: CPU:|BUG:|Oops:|kernel panic|general protection fault|KASAN|UBSAN:|soft lockup|hard LOCKUP|INFO: task .+ blocked|Bad page state|invalid opcode' /tmp/dmesg.log; then
echo "::error::Kernel issues detected in dmesg"
exit 1
fi
|