b610d58f69e1f442b8e1e7efc9af0c64fae1618f
[mech_eap.git] / tests / hwsim / vm / inside.sh
1 #!/bin/sh
2
3 # mount all kinds of things
4 mount tmpfs -t tmpfs /etc
5 # we need our own /dev/rfkill, and don't want device access
6 mount tmpfs -t tmpfs /dev
7 mount tmpfs -t tmpfs /tmp
8 # some sockets go into /var/run, and / is read-only
9 mount tmpfs -t tmpfs /var/run
10 mount proc -t proc /proc
11 mount sysfs -t sysfs /sys
12 # needed for tracing
13 mount debugfs -t debugfs /sys/kernel/debug
14
15 # reboot on any sort of crash
16 sysctl kernel.panic_on_oops=1
17 sysctl kernel.panic=1
18
19 # get extra command line variables from /proc/cmdline
20 TESTDIR=$(sed 's/.*testdir=\([^ ]*\) .*/\1/' /proc/cmdline)
21 TIMEWARP=$(sed 's/.*timewarp=\([^ ]*\) .*/\1/' /proc/cmdline)
22 EPATH=$(sed 's/.*EPATH=\([^ ]*\) .*/\1/' /proc/cmdline)
23 ARGS=$(sed 's/.*ARGS=//' /proc/cmdline)
24
25 # create /dev entries we need
26 mknod -m 660 /dev/ttyS0 c 4 64
27 mknod -m 660 /dev/random c 1 8
28 mknod -m 660 /dev/urandom c 1 9
29 mknod -m 666 /dev/null c 1 3
30 test -f /sys/class/misc/rfkill/dev && \
31         mknod -m 660 /dev/rfkill c $(cat /sys/class/misc/rfkill/dev | tr ':' ' ')
32 ln -s /proc/self/fd/0 /dev/stdin
33 ln -s /proc/self/fd/1 /dev/stdout
34 ln -s /proc/self/fd/2 /dev/stderr
35
36 # create dummy sudo - everything runs as uid 0
37 mkdir /tmp/bin
38 cat > /tmp/bin/sudo << EOF
39 #!/bin/bash
40
41 exec "\$@"
42 EOF
43 chmod +x /tmp/bin/sudo
44 # and put it into $PATH, as well as our extra-$PATH
45 export PATH=/tmp/bin:$EPATH:$PATH
46
47 # some tests assume adm/admin group(s) exist(s)
48 echo 'adm:x:0:' > /etc/group
49 echo 'admin:x:0:' >> /etc/group
50 # root should exist
51 echo 'root:x:0:0:root:/tmp:/bin/bash' > /etc/passwd
52 cat > /etc/ethertypes <<EOF
53 IPv4            0800    ip ip4
54 ARP             0806    ether-arp
55 IPv6            86DD    ip6
56 EOF
57 cat > /etc/protocols <<EOF
58 ip      0       IP
59 icmp    1       ICMP
60 tcp     6       TCP
61 udp     17      UDP
62 ipv6-icmp 58    IPv6-ICMP
63 EOF
64
65 # local network is needed for some tests
66 ip link set lo up
67
68 # create logs mountpoint and mount the logshare
69 mkdir /tmp/logs
70 mount -t 9p -o trans=virtio,rw logshare /tmp/logs
71
72 if [ "$TIMEWARP" = "1" ] ; then
73     (
74         while sleep 1 ; do
75             date --set "@$(($(date +%s) + 19))"
76         done
77     ) &
78 fi
79
80 # check if we're rebooting due to a kernel panic ...
81 if grep -q 'Kernel panic' /tmp/logs/console ; then
82         echo "KERNEL CRASHED!" >/dev/ttyS0
83 else
84         # finally run the tests
85         export USER=0
86         export LOGDIR=/tmp/logs
87         export DBFILE=$LOGDIR/results.db
88         export PREFILL_DB=y
89
90         # some tests need CRDA, install a simple uevent helper
91         # and preload the 00 domain it will have asked for already
92         echo $TESTDIR/vm/uevent.sh > /sys/kernel/uevent_helper
93         COUNTRY=00 crda
94
95         cd $TESTDIR
96         ./run-all.sh $ARGS </dev/ttyS0 >/dev/ttyS0 2>&1
97         if test -d /sys/kernel/debug/gcov ; then
98                 cp -ar /sys/kernel/debug/gcov /tmp/logs/
99                 # these are broken as they're updated while being read ...
100                 find /tmp/logs/gcov/ -wholename '*kernel/gcov/*' -print0 | xargs -0 rm
101         fi
102         #bash </dev/ttyS0 >/dev/ttyS0 2>&1
103 fi
104
105 # and shut down the machine again
106 halt -f -p