mirror of
https://github.com/89luca89/distrobox.git
synced 2026-08-19 01:14:49 -05:00
421 lines
13 KiB
Bash
Executable File
421 lines
13 KiB
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# This file is part of the distrobox project:
|
|
# https://github.com/89luca89/distrobox
|
|
#
|
|
# Copyright (C) 2021 distrobox contributors
|
|
#
|
|
# distrobox is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 3
|
|
# as published by the Free Software Foundation.
|
|
#
|
|
# distrobox is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with distrobox; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# POSIX
|
|
# Expected env variables:
|
|
# HOME
|
|
# USER
|
|
# SHELL
|
|
# Optional env variables:
|
|
# DBX_CONTAINER_NAME
|
|
# DBX_CONTAINER_MANAGER
|
|
|
|
trap '[ "$?" -ne 0 ] && printf "\nAn error occurred\n"' EXIT
|
|
|
|
# Dont' run this command as sudo.
|
|
if [ "$(id -u)" -eq 0 ]; then
|
|
printf >&2 "Running %s as sudo is not supported.\n" "${0}"
|
|
printf >&2 "Please check the documentation on:\n"
|
|
printf >&2 "\tman distrobox-compatibility\t"
|
|
printf >&2 "or consult the documentation page on:\n"
|
|
printf >&2 "\thttps://github.com/89luca89/distrobox/blob/main/docs/compatibility.md\n"
|
|
exit 1
|
|
fi
|
|
|
|
# Defaults
|
|
container_command=""
|
|
container_shell="${SHELL:-"bash"}"
|
|
# Work around for shells that are not in the container's file system, nor PATH.
|
|
# For example in hosts that do not follow FHS, like NixOS or for shells in custom
|
|
# exotic paths.
|
|
container_shell="$(basename "${container_shell}")l"
|
|
container_manager="autodetect"
|
|
container_name="fedora-toolbox-35"
|
|
container_manager_additional_flags=""
|
|
|
|
# Use cd + dirname + pwd so that we do not have relative paths in mount points
|
|
# We're not using "realpath" here so that symlinks are not resolved this way
|
|
# "realpath" would break situations like Nix or similar symlink based package
|
|
# management.
|
|
distrobox_enter_path="$(cd "$(dirname "$0")" && pwd)/distrobox-enter"
|
|
dryrun=0
|
|
headless=0
|
|
verbose=0
|
|
version="1.2.16"
|
|
|
|
# Source configuration files, this is done in an hierarchy so local files have
|
|
# priority over system defaults
|
|
# leave priority to environment variables.
|
|
config_files="
|
|
/usr/share/distrobox/distrobox.conf
|
|
/etc/distrobox/distrobox.conf
|
|
${HOME}/.config/distrobox/distrobox.conf
|
|
${HOME}/.distroboxrc
|
|
"
|
|
for config_file in ${config_files}; do
|
|
# shellcheck disable=SC1090
|
|
[ -e "${config_file}" ] && . "${config_file}"
|
|
done
|
|
[ -n "${DBX_CONTAINER_MANAGER}" ] && container_manager="${DBX_CONTAINER_MANAGER}"
|
|
[ -n "${DBX_CONTAINER_NAME}" ] && container_name="${DBX_CONTAINER_NAME}"
|
|
|
|
# Print usage to stdout.
|
|
# Arguments:
|
|
# None
|
|
# Outputs:
|
|
# print usage with examples.
|
|
show_help() {
|
|
cat << EOF
|
|
distrobox version: ${version}
|
|
|
|
Usage:
|
|
|
|
distrobox-enter --name fedora-toolbox-35 -- bash -l
|
|
distrobox-enter my-alpine-container -- sh -l
|
|
distrobox-enter --additional-flags "--preserve-fds" --name test -- bash -l
|
|
distrobox-enter --additional-flags "--env MY_VAR=value" --name test -- bash -l
|
|
MY_VAR=value distrobox-enter --additional-flags "--preserve-fds" --name test -- bash -l
|
|
|
|
Options:
|
|
|
|
--name/-n: name for the distrobox default: fedora-toolbox-35
|
|
--/-e: end arguments execute the rest as command to execute at login default: bash -l
|
|
--no-tty/-T: do not instantiate a tty
|
|
--additional-flags/-a: additional flags to pass to the container manager command
|
|
--help/-h: show this message
|
|
--dry-run/-d: only print the container manager command generated
|
|
--verbose/-v: show more verbosity
|
|
--version/-V: show version
|
|
EOF
|
|
}
|
|
|
|
# Parse arguments
|
|
while :; do
|
|
case $1 in
|
|
-h | --help)
|
|
# Call a "show_help" function to display a synopsis, then exit.
|
|
show_help
|
|
exit 0
|
|
;;
|
|
-v | --verbose)
|
|
shift
|
|
verbose=1
|
|
;;
|
|
-T | -H | --no-tty)
|
|
shift
|
|
headless=1
|
|
;;
|
|
-V | --version)
|
|
printf "distrobox: %s\n" "${version}"
|
|
exit 0
|
|
;;
|
|
-d | --dry-run)
|
|
shift
|
|
dryrun=1
|
|
;;
|
|
-n | --name)
|
|
if [ -n "$2" ]; then
|
|
container_name="$2"
|
|
shift
|
|
shift
|
|
fi
|
|
;;
|
|
-a | --additional-flags)
|
|
if [ -n "$2" ]; then
|
|
container_manager_additional_flags="${container_manager_additional_flags} ${2}"
|
|
shift
|
|
shift
|
|
fi
|
|
;;
|
|
-e | --exec | --)
|
|
shift
|
|
container_command=$*
|
|
break
|
|
;;
|
|
*) # Default case: If no more options then break out of the loop.
|
|
# If we have a flagless option and container_name is not specified
|
|
# then let's accept argument as container_name
|
|
if [ -n "$1" ]; then
|
|
container_name="$1"
|
|
shift
|
|
else
|
|
break
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
# set verbosity
|
|
if [ "${verbose}" -ne 0 ]; then
|
|
set -o xtrace
|
|
fi
|
|
|
|
# We depend on a container manager let's be sure we have it
|
|
# First we use podman, else docker
|
|
case "${container_manager}" in
|
|
autodetect)
|
|
if command -v podman > /dev/null; then
|
|
container_manager="podman"
|
|
elif command -v docker > /dev/null; then
|
|
container_manager="docker"
|
|
else
|
|
container_manager="not_found"
|
|
fi
|
|
;;
|
|
podman)
|
|
container_manager="podman"
|
|
;;
|
|
docker)
|
|
container_manager="docker"
|
|
;;
|
|
*)
|
|
printf >&2 "Invalid input %s.\n" "${container_manager}"
|
|
printf >&2 "The available choices are: 'autodetect', 'podman', 'docker'\n"
|
|
container_manager="not_found"
|
|
;;
|
|
esac
|
|
|
|
# Be sure we have a container manager to work with.
|
|
if ! command -v "${container_manager}" > /dev/null; then
|
|
# Error: we need at least one between docker or podman.
|
|
if [ "${dryrun}" -eq 0 ]; then
|
|
printf >&2 "Missing dependency: we need a container manager.\n"
|
|
printf >&2 "Please install one of podman or docker.\n"
|
|
printf >&2 "You can follow the documentation on:\n"
|
|
printf >&2 "\tman distrobox-compatibility\n"
|
|
printf >&2 "or:\n"
|
|
printf >&2 "\thttps://github.com/89luca89/distrobox/blob/main/docs/compatibility.md\n"
|
|
exit 127
|
|
fi
|
|
fi
|
|
# Small performance optimization, using podman socket shaves
|
|
# about half the time to access informations.
|
|
#
|
|
# Accessed file is /run/user/USER_ID/podman/podman.sock
|
|
#
|
|
# This is not necessary on docker as it is already handled
|
|
# in this way.
|
|
if [ -z "${container_manager#*podman*}" ] &&
|
|
[ -S "/run/user/$(id -ru)/podman/podman.sock" ] &&
|
|
systemctl --user status podman.socket > /dev/null; then
|
|
|
|
container_manager="${container_manager} --remote"
|
|
fi
|
|
# add verbose if -v is specified
|
|
if [ "${verbose}" -ne 0 ]; then
|
|
container_manager="${container_manager} --log-level debug"
|
|
fi
|
|
|
|
# Generate Podman or Docker command to execute.
|
|
# Arguments:
|
|
# None
|
|
# Outputs:
|
|
# prints the podman or docker command to enter the distrobox container
|
|
generate_command() {
|
|
result_command="${container_manager} exec"
|
|
result_command="${result_command}
|
|
--interactive
|
|
--user=\"${USER}\""
|
|
|
|
# For some usage, like use in service, or launched by non-terminal
|
|
# eg. from desktop files, TTY can fail to instantiate, and fail to enter
|
|
# the container.
|
|
# To work around this, --headless let's you skip these 2 flags and make it
|
|
# work in tty-less situations.
|
|
# Disable tty also if we're NOT in a tty (test -t 0).
|
|
if [ "${headless}" -eq 0 ] && [ -t 0 ]; then
|
|
result_command="${result_command}
|
|
--tty"
|
|
fi
|
|
|
|
# Entering container using our user and workdir.
|
|
# Start container from working directory. Else default to home. Else do /.
|
|
# Since we are entering from host, drop at workdir through '/run/host'
|
|
# which represents host's root inside container. Any directory on host
|
|
# even if not explicitly mounted is bound to exist under /run/host.
|
|
# Since user $HOME is very likely present in container, enter there directly
|
|
# to avoid confusing the user about shifted paths.
|
|
# pass distrobox-enter path, it will be used in the distrobox-export tool.
|
|
workdir="$(echo "${PWD:-${HOME:-"/"}}" | sed -e 's/"/\\\"/g')"
|
|
if [ -n "${workdir##*"${HOME}"*}" ]; then
|
|
workdir="/run/host/${workdir}"
|
|
fi
|
|
result_command="${result_command}
|
|
--workdir=\"${workdir}\"
|
|
--env=\"DISTROBOX_ENTER_PATH=${distrobox_enter_path}\""
|
|
|
|
# Loop through all the environment vars
|
|
# and export them to the container.
|
|
set +o xtrace
|
|
# disable logging fot this snippet, or it will be too talkative.
|
|
for i in $(printenv | grep '=' | grep -Ev ' |"' |
|
|
grep -Ev '^(HOST|HOSTNAME|HOME|PATH|SHELL|USER|XDG_.*_DIRS|_)'); do
|
|
# We filter the environment so that we do not have strange variables,
|
|
# multiline or containing spaces.
|
|
# We also NEED to ignore the HOME variable, as this is set at create time
|
|
# and needs to stay that way to use custom home dirs.
|
|
result_command="${result_command} --env=\"${i}\""
|
|
done
|
|
|
|
# Start with the $PATH set in the container's config
|
|
container_paths="${container_path:-""}"
|
|
# Ensure the standard FHS program paths are in PATH environment
|
|
standard_paths="/usr/local/sbin /usr/local/bin /usr/sbin /usr/bin /sbin /bin"
|
|
# add to the PATH after the existing paths, and only if not already present
|
|
for standard_path in ${standard_paths}; do
|
|
if [ -n "${container_paths##*:"${standard_path}"*}" ]; then
|
|
container_paths="${container_paths}:${standard_path}"
|
|
fi
|
|
done
|
|
# Ensure the $PATH entries from the host are appended as well
|
|
for standard_path in $(
|
|
IFS=:
|
|
for p in ${PATH}; do echo "${p}"; done
|
|
); do
|
|
if [ -n "${container_paths##*:"${standard_path}"*}" ]; then
|
|
container_paths="${container_paths}:${standard_path}"
|
|
fi
|
|
done
|
|
result_command="${result_command} --env=\"PATH=${container_paths}\""
|
|
|
|
# Ensure the standard FHS program paths are in XDG_DATA_DIRS environment
|
|
standard_paths="/usr/local/share /usr/share"
|
|
container_paths="${XDG_DATA_DIRS:=}"
|
|
# add to the XDG_DATA_DIRS only after the host's paths, and only if not already present.
|
|
for standard_path in ${standard_paths}; do
|
|
if [ -n "${container_paths##*:"${standard_path}"*}" ]; then
|
|
container_paths="${container_paths}:${standard_path}"
|
|
fi
|
|
done
|
|
result_command="${result_command} --env=\"XDG_DATA_DIRS=${container_paths}\""
|
|
|
|
# Ensure the standard FHS program paths are in XDG_CONFIG_DIRS environment
|
|
standard_paths="/etc/xdg"
|
|
container_paths="${XDG_CONFIG_DIRS:=}"
|
|
# add to the XDG_CONFIG_DIRS only after the host's paths, and only if not already present.
|
|
for standard_path in ${standard_paths}; do
|
|
if [ -n "${container_paths##*:"${standard_path}"*}" ]; then
|
|
container_paths="${container_paths}:${standard_path}"
|
|
fi
|
|
done
|
|
result_command="${result_command} --env=\"XDG_CONFIG_DIRS=${container_paths}\""
|
|
|
|
# re-enable logging if it was enabled previously.
|
|
if [ "${verbose}" -ne 0 ]; then
|
|
set -o xtrace
|
|
fi
|
|
|
|
# Add additional flags
|
|
result_command="${result_command} ${container_manager_additional_flags}"
|
|
|
|
# Run selected container with specified command.
|
|
result_command="${result_command} ${container_name} ${container_command:-${container_shell}}"
|
|
|
|
# Return generated command.
|
|
printf "%s" "${result_command}"
|
|
}
|
|
|
|
container_path="${PATH}"
|
|
# dry run mode, just generate the command and print it. No execution.
|
|
if [ "${dryrun}" -ne 0 ]; then
|
|
cmd="$(generate_command)"
|
|
cmd="$(echo "${cmd}" | tr '[:blank:]\n' ' ' | tr -s ' ')"
|
|
printf "%s\n" "${cmd}"
|
|
exit 0
|
|
fi
|
|
|
|
# Inspect the container we're working with.
|
|
container_status="unknown"
|
|
eval "$(${container_manager} inspect --type container "${container_name}" --format \
|
|
'container_status={{.State.Status}};
|
|
{{range .Config.Env}}{{if slice . 0 6 | eq "SHELL="}}container_shell={{slice . 6 | printf "%q"}}{{end}}{{end}};
|
|
{{range .Config.Env}}{{if slice . 0 5 | eq "PATH="}}container_path={{slice . 5 | printf "%q"}}{{end}}{{end}}')"
|
|
container_exists="$?"
|
|
# Set SHELL as a login shell
|
|
container_shell="${container_shell} -l"
|
|
# Does the container exists? check if inspect reported errors
|
|
if [ "${container_exists}" -gt 0 ]; then
|
|
# If not, prompt to create it first
|
|
printf >&2 "Cannot find container %s, does it exist?\n" "${container_name}"
|
|
printf >&2 "\nTry running first:\n"
|
|
printf >&2 "\tdistrobox-create <name-of-container> --image <remote>/<docker>:<tag>\n"
|
|
exit 1
|
|
fi
|
|
|
|
# If the container is not already running, we need to start if first
|
|
if [ "${container_status}" != "running" ]; then
|
|
# If container is not running, start it first
|
|
# Here, we save the timestamp before launching the start command, so we can
|
|
# be sure we're working with this very same session of logs later.
|
|
log_timestamp="$(date +%FT%T.%N%:z)"
|
|
${container_manager} start "${container_name}" > /dev/null
|
|
|
|
printf >&2 "Starting container %s\n" "${container_name}"
|
|
printf >&2 "run this command to follow along:\n"
|
|
printf >&2 "\t%s logs -f %s\n" "${container_manager}" "${container_name}"
|
|
|
|
# Wait for container to start successfully.
|
|
# We will probe the container logs every 1s to check if we have either:
|
|
# Error or container_setup_done
|
|
#
|
|
# In the end, print eventual Warnings that occurred.
|
|
while :; do
|
|
|
|
# Check if the container is going in error status at any time during the first init
|
|
if [ "$(${container_manager} inspect \
|
|
--type container "${container_name}" \
|
|
--format "{{.State.Status}}")" != "running" ]; then
|
|
|
|
container_manager_log="$(${container_manager} logs "${container_name}")"
|
|
printf >&2 "%s\n" "${container_manager_log}"
|
|
exit 1
|
|
fi
|
|
|
|
container_manager_log="$(${container_manager} logs -t \
|
|
--since "${log_timestamp}" \
|
|
"${container_name}" 2> /dev/null)"
|
|
case "${container_manager_log}" in
|
|
*"Error"*)
|
|
printf >&2 "%s\n" "${container_manager_log}"
|
|
exit 1
|
|
;;
|
|
*"container_setup_done"*)
|
|
break
|
|
;;
|
|
*)
|
|
printf >&2 "."
|
|
sleep 1
|
|
;;
|
|
esac
|
|
done
|
|
printf >&2 "\ndone!\n"
|
|
# Print eventual warnings in the log.
|
|
${container_manager} logs -t \
|
|
--since "${log_timestamp}" \
|
|
"${container_name}" 2> /dev/null | grep "Warning" >&2 || :
|
|
fi
|
|
|
|
# Generate the exec command and run it
|
|
cmd="$(generate_command)"
|
|
# shellcheck disable=SC2086
|
|
eval ${cmd}
|