Compare commits

...

16 commits

Author SHA1 Message Date
9cd6634528 qemush : suppression de la variable function, suppression d'un shift inutile 2024-03-24 23:37:14 +01:00
0f6582be0a qemush : oups, ça aurait du être dans un commit précédent 2024-03-24 23:30:26 +01:00
8dfc9bdf8c qemush : fonction add, garde contre un premier argument absent 2024-03-24 23:29:50 +01:00
c86c7a2e01 qemush : fonction add, déplacement du trap après le bloc conditionnel 2024-03-24 23:28:52 +01:00
29fc93c188 qemush : suppression set inutiles 2024-03-24 23:28:17 +01:00
db2b517194 qemush : suppression shift inutile 2024-03-24 23:27:56 +01:00
42734333b0 qemush : ajout de jolis retours à la ligne 2024-03-24 23:27:07 +01:00
2fb08080bb qemush : majuscule dans un message d'erreur :( 2024-03-24 23:26:08 +01:00
54fb0f7929 qemush : POSIXage (suppression des mots clé local) 2024-03-24 23:25:05 +01:00
69e5bf4a4e qemush : umask plus restrictif 2024-03-24 23:23:31 +01:00
ad284ca57b qemush : variable ls -> alias ls 2024-03-24 23:23:09 +01:00
f2f038d24b qemush : exec devant une commande terminale 2024-03-24 22:53:11 +01:00
c86cbbf089 qemush : modification du flot d'exécution de la commande edit 2024-03-24 22:52:57 +01:00
b9b96f6467 qemush : n'exporter QEMUSH_NAME que quand on en a besoin 2024-03-24 22:52:37 +01:00
d1d579fcd2 qemush : n'initialiser EDITOR qu'à l'endroit où on en a besoin 2024-03-24 22:51:42 +01:00
11fa69c866 qemush : manière POSIX d'initialiser une variable si elle est vide 2024-03-24 22:46:25 +01:00

View file

@ -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