• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

rootfs/22-Nov-2023-262140

.gitignoreD22-Nov-202324 32

Android.bpD22-Nov-20231.1 KiB4036

OWNERSD22-Nov-202335 32

READMED22-Nov-20232.6 KiB7851

all_tests.pyD22-Nov-20232.1 KiB7347

all_tests.shD22-Nov-20232.5 KiB11779

anycast_test.pyD22-Nov-20233.4 KiB12168

bpf.pyD22-Nov-20239.5 KiB365256

bpf_test.pyD22-Nov-202322 KiB601430

build_all_rootfs.shD22-Nov-2023776 277

build_rootfs.shD22-Nov-20233.8 KiB159106

csocket.pyD22-Nov-202311.1 KiB374255

csocket_test.pyD22-Nov-20232.7 KiB9558

cstruct.pyD22-Nov-20239.4 KiB279200

cstruct_test.pyD22-Nov-20237.3 KiB190138

forwarding_test.pyD22-Nov-20236.2 KiB173111

genetlink.pyD22-Nov-20233.8 KiB12471

iproute.pyD22-Nov-202326.9 KiB

leak_test.pyD22-Nov-20232.7 KiB8540

multinetwork_base.pyD22-Nov-202326 KiB764538

multinetwork_test.pyD22-Nov-202349.5 KiB

namespace.pyD22-Nov-20235.3 KiB167105

neighbour_test.pyD22-Nov-202314.1 KiB392268

net_test.pyD22-Nov-202313.5 KiB486335

net_test.shD22-Nov-20234.9 KiB17499

netlink.pyD22-Nov-20238.6 KiB

nf_test.pyD22-Nov-20232.8 KiB8642

no_testD22-Nov-202312 20

packets.pyD22-Nov-20237.2 KiB207156

parallel_tests.shD22-Nov-20231.4 KiB6344

parameterization_test.pyD22-Nov-20232.5 KiB8444

pf_key.pyD22-Nov-202310.4 KiB331244

pf_key_test.pyD22-Nov-20234 KiB10063

ping6_test.pyD22-Nov-202332 KiB877621

ping6_test.shD22-Nov-2023266 175

policy_crash_test.pyD22-Nov-20234.8 KiB13644

qtaguid_test.pyD22-Nov-20238.4 KiB229183

removed_feature_test.pyD22-Nov-20233.2 KiB9558

resilient_rs_test.pyD22-Nov-20235.5 KiB173105

run_net_test.shD22-Nov-202315.8 KiB462324

sock_diag.pyD22-Nov-202314.5 KiB434330

sock_diag_test.pyD22-Nov-202345.7 KiB1,179885

srcaddr_selection_test.pyD22-Nov-202314.9 KiB

sysctls_test.pyD22-Nov-20231.4 KiB4418

tcp_fastopen_test.pyD22-Nov-20234.5 KiB13386

tcp_metrics.pyD22-Nov-20234.4 KiB13892

tcp_nuke_addr_test.pyD22-Nov-20233.5 KiB11374

tcp_repair_test.pyD22-Nov-202311.8 KiB342245

tcp_test.pyD22-Nov-20234.6 KiB13889

tun_twister.pyD22-Nov-20237.3 KiB215159

util.pyD22-Nov-20232.7 KiB7237

vts_kernel_net_tests.xmlD22-Nov-20231.6 KiB3517

xfrm.pyD22-Nov-202327.4 KiB769552

xfrm_algorithm_test.pyD22-Nov-202315 KiB397283

xfrm_base.pyD22-Nov-202311 KiB

xfrm_test.pyD22-Nov-202336.9 KiB905610

xfrm_tunnel_test.pyD22-Nov-202342.4 KiB

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