• Home
Name Date Size #Lines LOC

..--

.gitignoreD03-May-202424 32

READMED03-May-20242.6 KiB7851

all_tests.shD03-May-20241.5 KiB6837

anycast_test.pyD03-May-20243 KiB11468

bpf.pyD03-May-20247.7 KiB307221

bpf_test.pyD03-May-202413.1 KiB358267

csocket.pyD03-May-202410 KiB339228

csocket_test.pyD03-May-20242.5 KiB8753

cstruct.pyD03-May-20249 KiB270194

cstruct_test.pyD03-May-20246.4 KiB169121

forwarding_test.pyD03-May-20244 KiB11873

iproute.pyD03-May-202418.3 KiB545405

leak_test.pyD03-May-20241.5 KiB5222

multinetwork_base.pyD03-May-202423.1 KiB678474

multinetwork_test.pyD03-May-202446.8 KiB1,257879

neighbour_test.pyD03-May-202410.3 KiB298202

net_test.pyD03-May-202412.8 KiB460312

net_test.shD03-May-2024793 2811

netlink.pyD03-May-20247.9 KiB260166

packets.pyD03-May-20246.9 KiB199151

parallel_tests.shD03-May-20241.3 KiB5537

pf_key.pyD03-May-202410.3 KiB328242

pf_key_test.pyD03-May-20244 KiB10063

ping6_test.pyD03-May-202431.4 KiB861610

ping6_test.shD03-May-2024266 175

qtaguid_test.pyD03-May-20245.5 KiB157117

removed_feature_test.pyD03-May-20242.1 KiB7239

resilient_rs_test.pyD03-May-20245.6 KiB173105

run_net_test.shD03-May-20246.9 KiB216152

sock_diag.pyD03-May-202414.5 KiB435330

sock_diag_test.pyD03-May-202435.4 KiB921695

srcaddr_selection_test.pyD03-May-202414.5 KiB355204

tcp_nuke_addr_test.pyD03-May-20243.5 KiB11374

tcp_test.pyD03-May-20244 KiB12781

xfrm.pyD03-May-20249.7 KiB326233

xfrm_test.pyD03-May-202415.6 KiB371240

README

1                                net_test v0.1
2                                =============
3
4A simple framework for blackbox testing of kernel networking code.
5
6
7Why use it?
8===========
9
10- Fast test / boot cycle.
11- Access to host filesystem and networking via L2 bridging.
12- Full Linux userland including Python, etc.
13- Kernel bugs don't crash the system.
14
15
16How to use it
17=============
18
19cd <kerneldir>
20path/to/net_test/run_net_test.sh <test>
21
22where <test> is the name of a test binary in the net_test directory. This can
23be an x86 binary, a shell script, a Python script. etc.
24
25
26How it works
27============
28
29net_test compiles the kernel to a user-mode linux binary, which runs as a
30process on the host machine. It runs the binary to start a Linux "virtual
31machine" whose root filesystem is the supplied Debian disk image. The machine
32boots, mounts the root filesystem read-only, runs the specified test from init, and then drops to a shell.
33
34
35Access to host filesystem
36=========================
37
38The VM mounts the host filesystem at /host, so the test can be modified and
39re-run without rebooting the VM.
40
41
42Access to host networking
43=========================
44
45Access to host networking is provided by tap interfaces. On the host, the
46interfaces are named <user>TAP0, <user>TAP1, etc., where <user> is the first
4710 characters of the username running net_test. (10 characters because
48IFNAMSIZ = 16). On the guest, they are named eth0, eth1, etc.
49
50net_test does not do any networking setup beyond creating the tap interfaces.
51IP connectivity can be provided on the host side by setting up a DHCP server
52and NAT, sending IPv6 router advertisements, etc. By default, the VM has IPv6
53privacy addresses disabled, so its IPv6 addresses can be predicted using a tool
54such as ipv6calc.
55
56The provided filesystem contains a DHCPv4 client and simple networking
57utilities such as ping[6], traceroute[6], and wget.
58
59The number of tap interfaces is currently hardcoded to two. To change this
60number, modify run_net_test.sh.
61
62
63Logging into the VM, installing packages, etc.
64==============================================
65
66net_test mounts the root filesystem read-only, and runs the test from init, but
67since the filesystem contains a full Linux userland, it's possible to boot into
68userland and modify the filesystem, for example to install packages using
69apt-get install. Log in as root with no password. By default, the filesystem is
70configured to perform DHCPv4 on eth0 and listen to RAs.
71
72
73Bugs
74====
75
76Since the test mounts the filesystem read-only, tests cannot modify
77/etc/resolv.conf and the system resolver is hardcoded to 8.8.8.8.
78