Compare commits
16 commits
0da83df0a0
...
9cd6634528
Author | SHA1 | Date | |
---|---|---|---|
9cd6634528 | |||
0f6582be0a | |||
8dfc9bdf8c | |||
c86c7a2e01 | |||
29fc93c188 | |||
db2b517194 | |||
42734333b0 | |||
2fb08080bb | |||
54fb0f7929 | |||
69e5bf4a4e | |||
ad284ca57b | |||
f2f038d24b | |||
c86cbbf089 | |||
b9b96f6467 | |||
d1d579fcd2 | |||
11fa69c866 |
1 changed files with 63 additions and 43 deletions
106
bin/qemush
106
bin/qemush
|
@ -1,19 +1,19 @@
|
|||
#!/usr/bin/env bash
|
||||
# version=0.7.0
|
||||
# version=0.8.0
|
||||
|
||||
# Re-exec the script as qemu via sudo (only if needed)
|
||||
[ "$(whoami)" != qemu ] && exec sudo -E -H -u qemu -- "$0" "$@"
|
||||
|
||||
# Environment
|
||||
PATH="${HOME}/launchers:${HOME}/bin:${PATH}"
|
||||
EDITOR="${EDITOR:-nvim}"
|
||||
export QEMUSH_NAME
|
||||
|
||||
# Aliases
|
||||
ls='ls --color=auto'
|
||||
alias ls='ls --color=auto'
|
||||
alias exec='exec '
|
||||
shopt -s expand_aliases
|
||||
|
||||
# Set a restrictive umask to make sure qemu user files are private
|
||||
umask 027
|
||||
umask 7027
|
||||
|
||||
# Function to print a colored error
|
||||
perror() {
|
||||
|
@ -22,7 +22,6 @@ perror() {
|
|||
|
||||
# Function to show the usage
|
||||
public_help() {
|
||||
local name
|
||||
name=$(basename "$0")
|
||||
|
||||
exec cat << EOF
|
||||
|
@ -46,19 +45,21 @@ EOF
|
|||
|
||||
# Function to throw an invalid usage error (skill issue)
|
||||
error_usage() {
|
||||
perror "Invalid usage"
|
||||
perror "invalid usage"
|
||||
>&2 public_help
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
# Function to start a virtual machine
|
||||
public_start() {
|
||||
QEMUSH_NAME="$1"
|
||||
export QEMUSH_NAME="$1"
|
||||
|
||||
set -- "$@" \
|
||||
-name "$QEMUSH_NAME" \
|
||||
-monitor "unix:$(pathof socket),server,nowait" \
|
||||
-daemonize
|
||||
|
||||
if ! "$@"; then
|
||||
perror "error launching virtual machine \"${QEMUSH_NAME}\""
|
||||
return 2
|
||||
|
@ -68,8 +69,7 @@ public_start() {
|
|||
# Attach to a running virtual machine output, the latest opened if no
|
||||
# argument is provided
|
||||
public_attach() {
|
||||
QEMUSH_NAME="$1"
|
||||
shift
|
||||
export QEMUSH_NAME="$1"
|
||||
|
||||
exec socat -,rawer,escape=15 "UNIX-CONNECT:$(pathof socket)"
|
||||
}
|
||||
|
@ -77,30 +77,31 @@ public_attach() {
|
|||
# List running virtual machines
|
||||
public_running() {
|
||||
cd || return
|
||||
|
||||
echo "Running machines:"
|
||||
set -- $ls -t sockets/monitors "$@"
|
||||
exec "$@"
|
||||
exec ls -t sockets/monitors
|
||||
}
|
||||
|
||||
# List available virtual machines entrypoints
|
||||
public_ls() {
|
||||
cd || return
|
||||
|
||||
echo "Available machines:"
|
||||
set -- $ls launchers "$@"
|
||||
exec "$@"
|
||||
exec ls launchers
|
||||
}
|
||||
|
||||
# Create a copy-on-write disk for a virtual machine
|
||||
public_diskadd() {
|
||||
QEMUSH_NAME="$1"
|
||||
shift
|
||||
exec qemu-img create -f qcow2 "$(pathof disk)" "$1"
|
||||
export QEMUSH_NAME="$1"
|
||||
|
||||
exec qemu-img create -f qcow2 "$(pathof disk)" "$2"
|
||||
}
|
||||
|
||||
# Delete a disk
|
||||
public_diskrm() {
|
||||
for disk in "$@"; do
|
||||
QEMUSH_NAME="$disk"
|
||||
export QEMUSH_NAME="$disk"
|
||||
|
||||
rm -vi -- "$(pathof disk)"
|
||||
done
|
||||
}
|
||||
|
@ -108,55 +109,66 @@ public_diskrm() {
|
|||
# List available disks
|
||||
public_diskls() {
|
||||
cd || return
|
||||
|
||||
echo "Available disks:"
|
||||
set -- $ls disks "$@"
|
||||
exec "$@"
|
||||
exec ls disks
|
||||
}
|
||||
|
||||
# Edit a virtual machine entrypoint with a text editor
|
||||
public_edit() {
|
||||
cd || return
|
||||
local file="launchers/${1}"
|
||||
file="launchers/${1}"
|
||||
# I don't even know why shellcheck gives me this warning
|
||||
# shellcheck disable=2209
|
||||
[ -z "$EDITOR" ] && EDITOR=vi
|
||||
|
||||
"$EDITOR" "$file"
|
||||
[ -f "$file" ] && exec chmod u+x "$file"
|
||||
set -e
|
||||
cd
|
||||
touch -- "$file"
|
||||
chmod u+x -- "$file"
|
||||
exec "$EDITOR" -- "$file"
|
||||
}
|
||||
|
||||
# Delete a virtual machine entrypoint
|
||||
public_rm() {
|
||||
cd ~/launchers || return
|
||||
|
||||
exec rm -vi -- "$@"
|
||||
}
|
||||
|
||||
# Invoke bash as qemu user in its home directory
|
||||
public_shell() {
|
||||
cd || return
|
||||
set -- bash -i "$@"
|
||||
exec "$@"
|
||||
|
||||
exec bash -i
|
||||
}
|
||||
|
||||
# Output the content of an entrypoint, with coloration if on a virtual
|
||||
# terminal
|
||||
public_cat() {
|
||||
cd ~/launchers || return
|
||||
cat -- "$@"
|
||||
|
||||
exec cat -- "$@"
|
||||
}
|
||||
|
||||
# Copy a file in entrypoints folder
|
||||
public_add() {
|
||||
if [ -z "$1" ]; then
|
||||
perror "specify the path of a launching script you want to add"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
destination="$2"
|
||||
else
|
||||
destination=$(basename "$1")
|
||||
fi
|
||||
destination="${HOME}/launchers/${destination}"
|
||||
|
||||
trap return EXIT
|
||||
set -e
|
||||
|
||||
local name
|
||||
if [ -n "$2" ]; then
|
||||
name="$2"
|
||||
else
|
||||
name=$(basename "$1")
|
||||
fi
|
||||
name="${HOME}/launchers/${name}"
|
||||
|
||||
cp -vi -- "$1" "$name"
|
||||
chmod 740 "$name"
|
||||
cp -vi -- "$1" "$destination"
|
||||
chmod 0740 -- "$destination"
|
||||
|
||||
set +e
|
||||
trap - EXIT
|
||||
|
@ -169,7 +181,8 @@ public_do() {
|
|||
|
||||
# Expose SPICE via TCP
|
||||
public_spice() {
|
||||
QEMUSH_NAME="$1"
|
||||
export QEMUSH_NAME="$1"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
port=$2
|
||||
else
|
||||
|
@ -180,15 +193,22 @@ public_spice() {
|
|||
socat TCP-LISTEN:"${port},reuseaddr,fork" UNIX-CLIENT:"$(pathof spice)"
|
||||
}
|
||||
|
||||
# Retrieve user requested function
|
||||
function="$1"
|
||||
shift
|
||||
function_exists() {
|
||||
declare -F \
|
||||
| cut -d \ -f 3- \
|
||||
| grep '^public_' \
|
||||
| sed 's/^public_//' \
|
||||
| grep -q "^${1}\$"
|
||||
}
|
||||
|
||||
# Defauts to `active` if no function is supplied; else checks for a public
|
||||
# function named after the argument; else fails
|
||||
if [ -z "$function" ]; then
|
||||
if [ -z "$1" ]; then
|
||||
public_running
|
||||
elif declare -F | cut -d \ -f 3- | grep '^public_' | sed 's/^public_//' | grep -q "^${function}$"; then
|
||||
elif function_exists "$1"; then
|
||||
function=$1
|
||||
shift
|
||||
|
||||
"public_${function}" "$@"
|
||||
else
|
||||
error_usage
|
||||
|
|
Loading…
Reference in a new issue