increase memory for test nodes to 2Gb
[tests.git] / system / template-qemu / qemu-start-node
1 #!/bin/bash
2
3 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
4 # Copyright (C) 2010 INRIA 
5 #
6 # it does the following:
7 # (*) close all file descriptors and redirect output to log.txt 
8 #     this is because it is designed for use through ssh from a remote test master controller
9 # (*) initialize a disk image if it does not exist yet
10 # (*) starts a qemu instance 
11
12 # cd in this command's directory
13 COMMAND=$(basename $0)
14 cd $(dirname $0)
15
16 ########## globals
17 # 2 gigabytes ram
18 RAM=2048
19 DISK_SIZE=100G
20 DISK_FORMAT=qcow2
21 DISK_IMAGE=hdd-${DISK_FORMAT}-${DISK_SIZE}.img
22
23 SCRIPT=qemu-ifup
24
25 ####### we want this script to be invokable through ssh without the ssh client to remain hanging
26 # close stdin
27 exec <&-
28 # redirect stdout
29 exec >> log.txt
30 # redirect stderr on stdout
31 exec 2>&1
32
33 ########## from the test environment
34 # expected vars are MACADDR, NODE_ISO, HOSTNAME, IP and TARGET_ARCH
35 CONFIG=qemu.conf
36 [ -f "$CONFIG" ] || { echo "Config file for qemu $CONFIG not found in $(pwd)" ; exit 1 ; }
37 . $CONFIG
38
39 # NOTE: check if the machine supports 64bits. We'll add -no-kqemu only
40 # if it does. On 32bits host, qemu-system-x86_64 doesn't accept this
41 # parameter (although it's there in the man page)
42 function is_64bits () {
43     return $(cat /proc/cpuinfo | grep "^flags" | grep " lm " > /dev/null)
44 }
45
46
47 # the launcher, depending on target arch
48 # make sure to check qemu-kill-node for consistency
49
50 # use kvm if available
51 has_kvm=$(type -p qemu-kvm)
52 if [ -n "$has_kvm" ] ; then
53     QEMU="qemu-kvm" ; ARGS=""
54 else
55     case $TARGET_ARCH in
56         i386)           QEMU=qemu ; ARGS="" ;;
57         x86_64)         QEMU=qemu-system-x86_64 ; if is_64bits; then ARGS="-no-kqemu"; else ARGS=""; fi ;;
58         *)                      echo "Cannot handle TARGET_ARCH=$TARGET_ARCH"; exit 1 ;;
59     esac
60 fi
61
62 echo "Running $COMMAND in $(pwd)"
63 echo "Starting at $(date)"
64
65 #Creating new DISK_IMAGE if needed only
66 if [ -f $DISK_IMAGE ] ; then
67     echo "Using existing $DISK_IMAGE"
68 else
69     echo -n "Creating hard disk image (${DISK_SIZE}) as $DISK_IMAGE .. "
70     img=$(qemu-img create -f ${DISK_FORMAT} $DISK_IMAGE ${DISK_SIZE})
71     if [ -z "$img" ];then
72         echo "Failed"
73         exit 1
74     fi
75     echo "Done"
76 fi
77
78 echo 'Trying to load the kqemu module'
79 if modprobe kqemu &> /dev/null ; then
80     echo "kqemu loaded"
81 else
82     echo "WARNING : Could not modprobe kqemu"
83 fi
84
85 echo 'Checking for a loaded kqemu module'
86 lsmod | grep kqemu
87 echo 'Checking for /dev/kqemu'
88 ls -l /dev/kqemu
89
90 echo 'Cleaning up pid file'
91 rm -f qemu.pid
92
93
94
95 # qemu options
96 # basics
97 ARGS="$ARGS -m ${RAM}"
98 ARGS="$ARGS -hda ${DISK_IMAGE}"
99 ARGS="$ARGS -nographic"
100 ARGS="$ARGS -pidfile qemu.pid"
101 # boot from CD
102 ARGS="$ARGS -boot d"
103 ARGS="$ARGS -cdrom ${NODE_ISO}"
104 # set mac address
105 ARGS="$ARGS -net nic,macaddr=${MACADDR}"
106 # set init script
107 ARGS="$ARGS -net tap,script=${SCRIPT}"
108 echo "Running $QEMU $ARGS"
109 exec $QEMU $ARGS &