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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
|
# QEMU support lib
die()
{
echo "$*" >&2
exit 1
}
# $1=text
tolower()
{
local str="$1"
echo -n "$str" | tr '[:upper:]' '[:lower:]'
}
# $1=value
parse_bool()
{
local str="$1"
str="$(tolower "$str")"
! [ "$str" = "0" -o \
"$str" = "off" -o \
"$str" = "false" -o \
"$str" = "no" ]
}
# $1=value
bool_to_1_0()
{
parse_bool "$1" && echo -n 1 || echo -n 0
}
# $1=value
bool_to_on_off()
{
parse_bool "$1" && echo -n on || echo -n off
}
get_ports_db_file()
{
local dbfile="/tmp/qemu-lib-ports.db"
touch "$dbfile"
chmod 666 "$dbfile"
echo "$dbfile"
}
random_port()
{
local dbfile="$(get_ports_db_file)"
local port=
while true; do
port="$(expr "$(hexdump -n2 -e'/2 "%u"' /dev/urandom)" '%' 16384 '+' 1024)"
grep -qEe "^${port}\$" "$dbfile" || break
done
echo "$port" >> "$dbfile"
echo "$port"
}
# $1=portnumber
release_port()
{
local port="$1"
local dbfile="$(get_ports_db_file)"
sed -ie '/^'"$port"'$/d' "$dbfile"
}
run_qemu()
{
local bin="$qemu_binary"
echo "Running QEMU..."
"$bin" --version
echo ""
echo "$bin $*"
[ $opt_dryrun -eq 0 ] || return
if [ $opt_spice -eq 0 ]; then
exec "$bin" "$@"
else
"$bin" "$@" &
qemu_pid=$!
echo "Forked qemu (pid ${qemu_pid})"
fi
}
run_spice_client()
{
[ $opt_spice -eq 0 ] && return
echo "Running spice client on ${spice_host}:${spice_port}..."
[ $opt_dryrun -eq 0 ] && {
sleep 1
spicy -h "$spice_host" -p "$spice_port"
echo "Killing qemu..."
kill "$qemu_pid"
wait
}
release_port "$spice_port"
}
share_init()
{
sharedir="$basedir/share"
mkdir -p "$sharedir" || die "Failed to create $sharedir"
}
serial_init()
{
local serialdir="$basedir/serial"
local from=0
local to=0
mkdir -p "$serialdir" || die "Failed to create $serialdir"
for i in $(seq $from $to); do
[ -p "$serialdir/$i" ] || {
mkfifo "$serialdir/$i" || die "Failed to create fifo $i"
}
serial_opt="$serial_opt -serial pipe:$serialdir/0"
done
}
kvm_init()
{
modprobe kvm >/dev/null 2>&1
modprobe kvm-amd >/dev/null 2>&1
modprobe kvm-intel >/dev/null 2>&1
if [ -w /dev/kvm ]; then
kvm_opt="-enable-kvm"
else
echo "===> WARNING: /dev/kvm not writable"
fi
}
# Convert vendor:device to bus:dev
usb_vendor_to_dev()
{
local ids="$1"
local lsusb_string="$(lsusb | grep -e "$ids" | head -n1)"
if [ -n "$lsusb_string" ]; then
local busnr="$(echo "$lsusb_string" | awk '{print $2;}')"
local devnr="$(echo "$lsusb_string" | awk '{print $4;}' | cut -d':' -f1)"
printf '%s:%s' "$busnr" "$devnr"
fi
}
# $1="vendor:device"
host_usb_id_prepare()
{
local ids="$1"
local bus_dev="$(usb_vendor_to_dev "$ids")"
[ -n "$bus_dev" ] || die "USB device $ids not found"
local busnr="$(printf '%s' "$bus_dev" | cut -f1 -d:)"
local devnr="$(printf '%s' "$bus_dev" | cut -f2 -d:)"
echo "Found USB device $ids on $busnr:$devnr"
echo "Changing device permissions..."
sudo chmod o+w "/dev/bus/usb/$busnr/$devnr" ||\
die "Failed to set usb device permissions"
}
# $1="vendor:device"
host_pci_find_by_ids()
{
local ids="$1"
lspci -vn | grep -e "$ids" | awk '{print $1;}'
}
# $1="00:00.0"
host_pci_prepare()
{
local dev="$1"
echo "Assigning PCI device $dev ..."
# Find the vendor and device IDs
local lspci_string="$(lspci -mmn | grep -e "^$dev" | head -n1)"
[ -n "$lspci_string" ] || die "PCI device $dev not found"
dev="0000:$dev"
local vendorid="$(echo "$lspci_string" | cut -d' ' -f 3 | tr -d \")"
local deviceid="$(echo "$lspci_string" | cut -d' ' -f 4 | tr -d \")"
echo "Found PCI device $dev with IDs $vendorid:$deviceid"
# Find out which driver currently runs the device.
local orig_drvdir="$(find /sys/bus/pci/drivers -type l -name "$dev")"
orig_drvdir="$(dirname "$orig_drvdir")"
if [ -n "$orig_drvdir" -a "$orig_drvdir" != "." ]; then
echo "Original driver for $dev is '$orig_drvdir'"
else
echo "WARNING: Did not find attached kernel driver for PCI device $dev"
orig_drvdir=
fi
# Register the device to VFIO
modprobe vfio-pci || die "Failed to load 'vfio-pci' kernel module"
echo "$vendorid $deviceid" > /sys/bus/pci/drivers/vfio-pci/new_id ||\
die "Failed to register PCI-id to vfio-pci driver"
if [ -n "$orig_drvdir" ]; then
echo "$dev" > "$orig_drvdir/unbind" ||\
die "Failed to unbind PCI kernel driver"
fi
echo "$dev" > /sys/bus/pci/drivers/vfio-pci/bind ||\
die "Failed to bind vfio-pci kernel driver"
echo "$vendorid $deviceid" > /sys/bus/pci/drivers/vfio-pci/remove_id ||\
die "Failed to remove PCI-id from vfio-pci driver"
# Remember the pci dev for cleanup
if [ -n "$orig_drvdir" ]; then
assigned_pci_devs="$assigned_pci_devs $dev/$orig_drvdir"
fi
}
host_pci_restore_all()
{
for assigned_dev in $assigned_pci_devs; do
local dev="$(echo "$assigned_dev" | cut -d'/' -f1)"
local orig_drvdir="/$(echo "$assigned_dev" | cut -d '/' -f2-)"
echo "Unbinding PCI device $dev from VFIO..."
echo "$dev" > /sys/bus/pci/drivers/vfio-pci/unbind
if [ -e "$orig_drvdir"/bind ]; then
echo "Rebinding PCI device $dev to original driver '$orig_drvdir'..."
echo "$dev" > "$orig_drvdir"/bind
fi
done
}
usage()
{
echo "qemu-script.sh [OPTIONS] [--] [QEMU-OPTIONS]"
echo
echo "Options:"
echo " --dry-run Do not run qemu/spice. (But do (de)allocate ressources)"
echo " -m|--ram RAM Amount of RAM. Default: 1024M"
echo " -n|--net-restrict 1|0 Turn net restrict on/off. Default: 1"
echo " -s|--spice 1|0 Use spice client. Default: 1"
echo " -M|--mouse MOUSETYPE Select the mouse type:"
echo " -M not specified: usbtablet"
echo " default: Use qemu default"
echo " usbmouse: Use USB mouse"
echo " usbtablet: Use USB tablet"
echo " -u|--usb-id ABCD:1234 Use host USB device with ID ABCD:1234"
echo " -p|--pci-id ABCD:1234 Forward PCI device with ID ABCD:1234"
echo " -P|--pci-device 00:00.0 Forward PCI device at 00:00.0"
echo " -T|--tap Set up a tap to the default host bridge"
echo " -S|--screens 1|2 Number of screens. Default: 1"
echo " -j|--cores 1 Number of CPU cores. Default: 1"
echo " -H|--host-cpu Host CPU feature passthrough (for nested virt)."
echo " -F|--vvfat DIR Enable virtual VFAT drive."
}
# Global variables:
# basedir, image, qemu_opts, rtc, qemu_binary, spice_host, spice_port,
# opt_ram, opt_netrestrict, opt_...
run()
{
[ -n "$basedir" ] || die "No basedir specified"
[ -n "$image" ] || die "No image specified"
# Canonicalize paths
basedir="$(readlink -m "$basedir")"
image="$(readlink -m "$image")"
# Set variable-defaults
[ -n "$image_format" ] || image_format="raw"
[ -n "$qemu_binary" ] || qemu_binary="qemu-system-i386"
[ -n "$spice_host" ] || spice_host="127.0.0.1"
[ -n "$spice_port" ] || spice_port="$(random_port)"
[ -n "$rtc" ] || rtc="-rtc base=localtime,clock=host"
# Set option-defaults
[ -n "$opt_nokvm" ] || opt_nokvm=0
[ -n "$opt_ram" ] || opt_ram="1024M"
[ -n "$opt_vga" ] || opt_vga="qxl"
[ -n "$opt_netrestrict" ] || opt_netrestrict=1
[ -n "$opt_netdevice" ] || opt_netdevice=rtl8139
[ -n "$opt_dryrun" ] || opt_dryrun=0
[ -n "$opt_spice" ] || opt_spice=1
[ -n "$opt_mouse" ] || opt_mouse=usbtablet
[ -n "$opt_usetap" ] || opt_usetap=0
[ -n "$opt_screens" ] || opt_screens=1
[ -n "$opt_cores" ] || opt_cores=1
[ -n "$opt_hostcpu" ] || opt_hostcpu=0
[ -n "$opt_vvfat" ] || opt_vvfat=
# Variable defaults
local spice_opt=
local usbdevice_opt=
local pcidevice_opt=
local net0_conf=
local net1_conf=
local screen_opt=
kvm_opt=
serial_opt=
# Basic initialization
share_init
# serial_init
# Parse command line options
local end=0
while [ $# -gt 0 -a $end -eq 0 ]; do
case "$1" in
-h|--help)
usage
exit 0
;;
-V|--vga)
shift
opt_vga="$1"
;;
-K|--nokvm)
opt_nokvm=1
;;
-m|--ram)
shift
opt_ram="$1"
;;
-n|--net-restrict)
shift
opt_netrestrict="$(bool_to_on_off "$1")"
;;
-N|--net-device)
shift
opt_netdevice="$1"
;;
--dry-run)
opt_dryrun=1
;;
-s|--spice)
shift
opt_spice="$(bool_to_1_0 "$1")"
;;
-M|--mouse)
shift
opt_mouse="$1"
;;
-u|--usb-id)
shift
local ids="$1"
host_usb_id_prepare "$ids"
local bus_dev="$(usb_vendor_to_dev "$ids")"
[ -n "$bus_dev" ] || die "USB device $ids not found"
local busnr="$(printf '%s' "$bus_dev" | cut -f1 -d: | sed 's/^[0]*//')"
local devnr="$(printf '%s' "$bus_dev" | cut -f2 -d: | sed 's/^[0]*//')"
usbdevice_opt="$usbdevice_opt -device usb-host,hostbus=$busnr,hostaddr=$devnr"
;;
-p|--pci-id)
shift
local ids="$1"
local dev="$(host_pci_find_by_ids "$ids")"
[ -n "$dev" ] || die "Did not find PCI device with IDs '$ids'"
host_pci_prepare "$dev"
pcidevice_opt="$pcidevice_opt -device vfio-pci,host=$dev"
;;
-P|--pci-device)
shift
local dev="$1"
host_pci_prepare "$dev"
pcidevice_opt="$pcidevice_opt -device vfio-pci,host=$dev"
;;
-T|--tap)
opt_usetap=1
;;
-S|--screens)
shift
opt_screens="$1"
;;
-j|--cores)
shift
opt_cores="$1"
;;
-H|--host-cpu)
opt_hostcpu=1
;;
-F|--vvfat)
shift
opt_vvfat="$1"
;;
--)
end=1
;;
*)
die "Unknown option: $1"
;;
esac
shift
done
[ $opt_nokvm -eq 0 ] && kvm_init
[ $opt_spice -ne 0 ] && {
spice_opt="-spice addr=${spice_host},port=${spice_port},"
spice_opt="${spice_opt}disable-ticketing=on,"
spice_opt="${spice_opt}agent-mouse=off,"
spice_opt="${spice_opt}disable-copy-paste=on,"
spice_opt="${spice_opt}seamless-migration=on,"
spice_opt="${spice_opt}plaintext-channel=main,plaintext-channel=display,"
spice_opt="${spice_opt}plaintext-channel=cursor,plaintext-channel=inputs,"
spice_opt="${spice_opt}plaintext-channel=record,plaintext-channel=playback"
}
if [ "$opt_mouse" = "default" ]; then
true # do nothing
elif [ "$opt_mouse" = "usbtablet" ]; then
usbdevice_opt="$usbdevice_opt -device usb-tablet"
elif [ "$opt_mouse" = "usbmouse" ]; then
usbdevice_opt="$usbdevice_opt -device usb-mouse"
else
die "Invalid mouse selection"
fi
net0_conf="-netdev user,id=net0,restrict=$(bool_to_on_off "$opt_netrestrict"),net=192.168.5.1/24,smb=${sharedir},smbserver=192.168.5.4"
net0_conf="$net0_conf -device $opt_netdevice,netdev=net0,mac=00:11:22:AA:BB:CC"
if [ "$opt_usetap" -ne 0 ]; then
net1_conf="-netdev tap,id=net1"
net1_conf="$net1_conf -device $opt_netdevice,netdev=net1,mac=00:11:22:AA:BB:CD"
fi
local vga_opt="-vga $opt_vga"
if [ "$opt_screens" = "1" ]; then
local screen_opt=
elif [ "$opt_screens" = "2" ]; then
local screen_opt="-device qxl"
else
die "Invalid screen selection"
fi
if [ "$opt_hostcpu" = "1" ]; then
local cpu_opt="-cpu host"
else
local cpu_opt=
fi
if [ "$opt_cores" = "1" ]; then
local smp_opt=
else
local smp_opt="-smp cores=$opt_cores"
fi
if [ -n "$opt_vvfat" ]; then
local vvfat_opt="-drive file=fat:rw:$opt_vvfat,format=raw"
else
local vvfat_opt=
fi
run_qemu \
-name "$(basename "$image")" \
$kvm_opt \
$cpu_opt \
$spice_opt \
-m "$opt_ram" \
-drive file="$image",index=0,format="$image_format",discard=on,media=disk \
-boot c \
$net0_conf \
$net1_conf \
$vvfat_opt \
-usb \
$usbdevice_opt \
$serial_opt \
$pcidevice_opt \
$vga_opt \
$screen_opt \
$rtc \
$smp_opt \
$qemu_opts \
"$@"
run_spice_client
host_pci_restore_all
}
|