This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-qemu
executable file
·278 lines (249 loc) · 6.36 KB
/
run-qemu
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#! /bin/bash
function die () {
echo -e "$@" 1>&2
exit 1
}
function singlequote () {
echo "$@" | sed -e "s/'/"'"'"'"'"/g
s/"/'"'"'"'"'/g"
}
function find_readable_dir() {
suffix="$1"
shift
for i in "$@"; do
[ -n "$i" -a -r "$i/$suffix" ] && echo "$i" && return 0
done
return 1
}
function mywhich() {
which "$1" 2>&1 | grep -v '^\(which: \)*no' >/dev/null && which "$1" 2>/dev/null | grep . >/dev/null
}
make=make
if mywhich gmake; then
make=gmake
fi
tmpdir=/tmp
if uname | grep -i cygwin >/dev/null 2>&1; then
labdir=`pwd`
tmpdir=${labdir:0:12}/tmp
if ! [ -d "$tmpdir" ] ; then
[ -f "$tmpdir" ] && die "${tmpdir} exists and is a regular file!"
mkdir "$tmpdir"
fi
else
tmpdir="${tmpdir}/cs111_$LOGNAME$$"
mkdir "$tmpdir" || exit 1
fi
verbose=n
loadvm="-loadvm osp"
clean=y
method=n
hda=
hdb=
hdc=
hdd=
fda="-fda /dev/null"
fdax=
fdb=
qopt=""
grabqopt="X"
kqopt=" -k en-us"
m=128
while expr "$1" : "-.*" >/dev/null 2>&1; do
if [ "$1" = "--help" ]; then
echo "Usage: ./run-qemu [--verbose] [cs111.iso location]" 1>&2
exit 0
elif [ "$1" = "-V" -o "$1" = "--verbose" ]; then
verbose=y
shift
elif [ "$1" = "--no-loadvm" ]; then
loadvm=""
shift
elif [ "$1" = "--no-clean" ]; then
clean=n
shift
elif [ "$1" = "--no-grab" -o "$1" = "-no-grab" ]; then
grabqopt="-no-grab "
shift
elif [ "$1" = "--grab" -o "$1" = "-grab" ]; then
grabqopt=""
shift
elif [ "$1" = "--use-tftp" -o "$1" = "--use-net" ]; then
method=n
shift
elif [ "$1" = "--use-iso" -o "$1" = "--use-floppy" -o "$1" = "--use-fd" ]; then
method=i
shift
elif [ "$1" = "-hda" ]; then
x=`singlequote "$2"`
hda="-hda $x"
shift 2
elif [ "$1" = "-hdb" ]; then
x=`singlequote "$2"`
hdb="-hdb $x"
shift 2
elif [ "$1" = "-hdc" ]; then
x=`singlequote "$2"`
hdc="-hdc $x"
shift 2
elif [ "$1" = "-cdrom" ]; then
x=`singlequote "$2"`
hdc="-cdrom $x"
shift 2
elif [ "$1" = "-hdd" ]; then
x=`singlequote "$2"`
hdd="-hdd $x"
shift 2
elif [ "$1" = "-fda" ]; then
x=`singlequote "$2"`
fda="-fda $x"
fdax=1
shift 2
elif [ "$1" = "-fdb" ]; then
x=`singlequote "$2"`
fdb="-fdb $x"
shift 2
elif [ "$1" = "-m" ]; then
x=`singlequote "$2"`
m="$x"
shift 2
elif [ "$1" = "-vnc" ]; then
x=`singlequote "$2"`
qopt="$qopt -vnc $x"
shift 2
elif [ "$1" = "-rvnc" ]; then
x=`singlequote "$2"`
qopt="$qopt -vnc localhost:$x,reverse"
shift 2
elif [ "$1" = "-k" ]; then
x=`singlequote "$2"`
if [ "$x" = none -o -z "$x" ]; then
kqopt=""
else
kquot=" -k $x"
fi
else
break
fi
done
qopt="$qopt$kqopt -m $m"
function myclean () {
rm -rf $tmpdir
echo Cleaning up image in $tmpdir
}
if [ $clean = y ]; then
trap myclean EXIT
fi
function myrun() {
test $verbose = y && echo '+' "$@" 1>&2
"$@"
}
function myrunbg() {
test $verbose = y && echo '+' "$@" "&" 1>&2
"$@" &
echo "$!"
}
function myrunquiet() {
if [ $verbose = y ]; then
echo '+' "$@" 1>&2
"$@"
else
"$@" >/dev/null 2>&1
fi
}
function fix_qopt() {
qemu_bin="$1"
if [ "$grabqopt" = X ]; then
if "$qemu_bin" --help | grep no-grab >/dev/null 2>&1; then
grabqopt="-no-grab "
else
grabqopt=""
fi
fi
qopt="$grabqopt$qopt"
}
function run_iso() {
qemu_bin="$1"
biosdir="$2"
bsw=
[ -n "$biosdir" ] && bsw=-L
fix_qopt "$qemu_bin"
echo "Building image in $tmpdir"
TMPFILE="$tmpdir/lab.iso"
( uname | grep -i cygwin >/dev/null 2>&1 ) && TMPFILE=`cygpath -w $TMPFILE`
$make tarball-nocheck || exit 1
mv lab3-${USER}.tar.gz labstuff.tgz
mkisofsarg=
if [ -r .mkisofs ]; then
mkisofsarg=`cat .mkisofs`
fi
myrunquiet mkisofs -R -iso-level 3 -o $TMPFILE $mkisofsarg labstuff.tgz setup-in-qemu
[ -z "$fdax" ] && fda="-fda $TMPFILE"
"$qemu_bin" -help | grep -e -no-kqemu >/dev/null 2>&1 && qopt="$qopt -no-kqemu"
myrun "$qemu_bin" $qopt $bsw $biosdir $hda $hdb $hdc $hdd $fda $fdb $loadvm -tftp "$tmpdir" -redir tcp:2222::22
exit $?
}
function mk_tmp_tarball() {
$make tarball-nocheck || exit 1
mv lab3-${USER}.tar.gz "$tmpdir/lab.tar.gz"
}
function reloader() {
if [ -t 0 ]; then
sleep 2
while read -p "Enter 'r' here to rebuild code for qemu: " line; do
if expr "$line" : "[Rr].*" >/dev/null 2>&1; then
mk_tmp_tarball
echo "*** Code rebuilt." 1>&2
echo "*** Now type 'reload' in the qemu shell." 1>&2
echo 1>&2
elif expr "$line" : "[Qq].*" >/dev/null 2>&1; then
exit 1
fi
done
fi
}
function run_net() {
qemu_bin="$1"
biosdir="$2"
bsw=
[ -n "$biosdir" ] && bsw=-L
fix_qopt "$qemu_bin"
mk_tmp_tarball
"$qemu_bin" -help | grep -e -no-kqemu >/dev/null 2>&1 && qopt="$qopt -no-kqemu"
reloader | myrun "$qemu_bin" $qopt $bsw $biosdir $hda $hdb $hdc $hdd $fda $fdb $loadvm -tftp "$tmpdir" -redir tcp:2222::22
exit $?
}
expected_qemu=qemu
if mywhich qemu; then
qemudir=`which qemu | sed 's;/qemu$;/;' | sed 's;/bin/$;/;'`
elif [ -x "/Applications/Q.app/Contents/MacOS/i386-softmmu.app/Contents/MacOS/i386-softmmu" ]; then
expected_qemu="/Applications/Q.app/Contents/MacOS/i386-softmmu.app/Contents/MacOS/i386-softmmu"
qemudir="/doesnotexist/"
else
die 'Can'"'"'t find a qemu executable! Fix your $PATH environment variable.
If using the lab machines or lnxsrv, verify that /u/cs/class/cs111/cbin/bin
is in your $PATH.
Current PATH='"$PATH"
fi
if [ -z "$hda$hdc" ]; then
cs111d=`find_readable_dir cs111.iso "$1" "$HOME" "$HOME/Documents/QEMU" "${qemudir}share/qemu" "${qemudir}share" "${qemudir}" "/u/cs/class/cs111/cbin/share" "." ".."`
[ -n "$cs111d" -a -r "$cs111d/cs111.iso" -a -z "$hdc" ] && hdc="-cdrom $cs111d/cs111.iso"
[ -n "$cs111d" -a -r "$cs111d/cs111snap.qcow2" -a -z "$hda" ] && hda="-hda $cs111d/cs111snap.qcow2"
[ -z "$hdc" -a -n "$1" -a -r "$1" ] && hdc="-cdrom $1"
[ -z "$hda" -a -n "$2" -a -r "$2" ] && hda="-hda $2"
[ -z "$hda$hdc" ] && die "Can't find cs111.iso! Please run me as follows: './run-qemu DIR',
where DIR is the location of the directory containing cs111.iso."
fi
[ -f ospfsmod.c ] || die "Not a Lab 3 directory!"
biosdir=
if uname | grep -i cygwin >/dev/null 2>&1; then
qemudir=`cygpath -w $qemudir`
debospimg=`cygpath -w $debospimg`
biosdir="$qemudir"
fi
if mywhich mkisofs; then
if echo "$method" | grep i >/dev/null 2>&1; then
run_iso "$expected_qemu" "$biosdir"
fi
fi
run_net "$expected_qemu" "$biosdir"