qemush/bin/bababooey

239 lines
5.3 KiB
Text
Raw Normal View History

2024-03-25 14:40:52 +01:00
#!/usr/bin/env sh
2024-03-26 20:16:45 +01:00
version=0.11.0
2023-12-04 12:00:53 +01:00
2024-03-12 11:20:11 +01:00
# Re-exec the script as qemu via sudo (only if needed)
[ "$(whoami)" != qemu ] && exec sudo -E -H -u qemu -- "$0" "$@"
2023-12-04 12:00:53 +01:00
# Environment
PATH="${HOME}/launchers:${HOME}/bin:${PATH}"
# Aliases
2024-03-24 23:23:09 +01:00
alias ls='ls --color=auto'
alias exec='exec '
# Set a restrictive umask to make sure qemu user files are private
2024-03-24 23:23:31 +01:00
umask 7027
2023-12-04 12:00:53 +01:00
# Function to print a colored error
2023-12-04 12:00:53 +01:00
perror() {
>&2 printf '\033[1;31mKO:\033[0m \033[1m%s\033[0m\n' "$*"
2023-12-04 12:00:53 +01:00
}
# Function to show the usage
2023-12-04 12:00:53 +01:00
public_help() {
name=$(basename "$0")
cat << EOF
2023-12-04 12:00:53 +01:00
${name}: usage:
2024-01-25 14:41:20 +01:00
${name} running - (default behaviour) list running VMs
${name} ls - list available VMs
${name} add <path to script> [<VM name>] - add a launching script
${name} edit <VM name> - edit VM launching script
${name} cat <VM name> - print the content of a launching script
${name} start <VM name> - start a VM
${name} attach <VM name> - attach to the VM monitor socket
${name} rm <VM name> - delete launch script
${name} diskls - list available disk images
${name} diskadd <disk name> <size> - create a disk image
${name} diskrm <disk name> - delete disk image
${name} shell - start a shell as user qemu
${name} do <shell code> - run shell input as user qemu
2024-03-12 11:55:50 +01:00
${name} spice <running VM> [<TCP port>] - expose a SPICE socket to TCP
${name} help - show this help
2023-12-04 12:00:53 +01:00
EOF
}
# Function to throw an invalid usage error (skill issue)
2023-12-04 12:00:53 +01:00
error_usage() {
perror "invalid usage"
2023-12-04 12:00:53 +01:00
>&2 public_help
2023-12-04 12:00:53 +01:00
return 1
}
2024-01-21 01:51:07 +01:00
# Function to start a virtual machine
2023-12-04 12:00:53 +01:00
public_start() {
if [ "$1" = -f ] || [ "$1" = --foreground ]; then
daemonize=
else
daemonize=-daemonize
fi
while echo "$1" | grep -q '^-'; do shift; done;
export QEMUSH_NAME="$1"
2023-12-04 12:00:53 +01:00
set -- "$@" \
-name "$QEMUSH_NAME" \
-monitor "unix:$(pathof socket),server,nowait" \
$daemonize
if ! "$@"; then
perror "error launching virtual machine \"${QEMUSH_NAME}\""
return 2
fi
2023-12-04 12:00:53 +01:00
}
# Attach to a running virtual machine output, the latest opened if no
# argument is provided
2024-01-25 14:42:59 +01:00
public_attach() {
export QEMUSH_NAME
if [ -n "$1" ]; then
QEMUSH_NAME=$1
socket_path=$(pathof socket)
else
socket_path=$(find ~/sockets/monitors -type s -printf '%T@ %p\n' | sort -r -n | head -1 | cut -d \ -f 2-)
QEMUSH_NAME=$(basename "$socket_path")
fi
2024-01-21 00:23:33 +01:00
printf 'Attaching to \033[1m%s\033[0m, escape with C-d (EOF)\n' "$QEMUSH_NAME"
socat -,rawer,escape=4 "UNIX-CONNECT:${socket_path}"
echo
2023-12-04 12:00:53 +01:00
}
# List running virtual machines
2024-01-25 14:41:20 +01:00
public_running() {
cd || return
2024-01-21 01:51:07 +01:00
echo "Running machines:"
2024-03-24 23:23:09 +01:00
exec ls -t sockets/monitors
2023-12-04 12:00:53 +01:00
}
# List available virtual machines entrypoints
2023-12-04 12:00:53 +01:00
public_ls() {
cd || return
2023-12-04 12:00:53 +01:00
echo "Available machines:"
2024-03-24 23:23:09 +01:00
exec ls launchers
2023-12-04 12:00:53 +01:00
}
# Create a copy-on-write disk for a virtual machine
2023-12-04 12:00:53 +01:00
public_diskadd() {
export QEMUSH_NAME="$1"
2024-03-24 23:27:56 +01:00
exec qemu-img create -f qcow2 "$(pathof disk)" "$2"
2023-12-04 12:00:53 +01:00
}
# Delete a disk
2023-12-04 12:00:53 +01:00
public_diskrm() {
for disk in "$@"; do
export QEMUSH_NAME="$disk"
rm -vi -- "$(pathof disk)"
done
2023-12-04 12:00:53 +01:00
}
# List available disks
2023-12-04 12:00:53 +01:00
public_diskls() {
cd || return
2023-12-04 12:00:53 +01:00
echo "Available disks:"
2024-03-24 23:23:09 +01:00
exec ls disks
2023-12-04 12:00:53 +01:00
}
# Edit a virtual machine entrypoint with a text editor
2023-12-04 12:00:53 +01:00
public_edit() {
file="launchers/${1}"
# I don't even know why shellcheck gives me this warning
# shellcheck disable=2209
[ -z "$EDITOR" ] && EDITOR=vi
set -e
cd
touch -- "$file"
chmod u+x -- "$file"
exec "$EDITOR" -- "$file"
2023-12-04 12:00:53 +01:00
}
# Delete a virtual machine entrypoint
2023-12-04 12:00:53 +01:00
public_rm() {
cd ~/launchers || return
exec rm -vi -- "$@"
2023-12-04 12:00:53 +01:00
}
# Invoke a shell as qemu user in its home directory
2023-12-04 12:00:53 +01:00
public_shell() {
cd || return
2024-03-24 23:28:17 +01:00
# Again...
# shellcheck disable=2209
[ -z "$SHELL" ] && SHELL=sh
set -- "$SHELL"
case "$SHELL" in
sh|bash|zsh|ksh|mksh|oksh)
set -- "$@" -i
;;
esac
exec "$@"
2023-12-04 12:00:53 +01:00
}
# Output the content of an entrypoint, with coloration if on a virtual
# terminal
2023-12-04 12:00:53 +01:00
public_cat() {
cd ~/launchers || return
exec cat -- "$@"
2023-12-04 12:00:53 +01:00
}
# Copy a file in entrypoints folder
2023-12-04 23:19:24 +01:00
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
cp -vi -- "$1" "$destination"
chmod 0740 -- "$destination"
2023-12-04 23:19:24 +01:00
set +e
trap - EXIT
}
# Run shell commands as qemu
2023-12-08 11:49:32 +01:00
public_do() {
2023-12-08 11:01:33 +01:00
exec sh -c "$*"
}
2024-03-12 11:55:50 +01:00
# Expose SPICE via TCP
public_spice() {
export QEMUSH_NAME="$1"
2024-03-12 11:55:50 +01:00
if [ -n "$2" ]; then
port=$2
else
port=$(first-free-port 5900)
fi
exec tmux new -d -s "TCP port ${port} -> ${QEMUSH_NAME}" \
socat TCP-LISTEN:"${port},reuseaddr,fork" UNIX-CLIENT:"$(pathof spice)"
}
case "$1" in
"")
public_running
;;
running|ls|add|edit|cat|start|attach|rm|diskls|diskadd|diskrm|shell|do|spice|help)
function=$1
shift
"public_${function}" "$@"
;;
*)
error_usage
;;
esac