2020-01-29 11:48:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
# Copyright © 2020 Intel Corporation
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
CLI_NAME="Cloud Hypervisor"
|
|
|
|
|
|
|
|
CTR_IMAGE_TAG="cloudhypervisor/dev"
|
2020-09-23 16:41:08 +00:00
|
|
|
CTR_IMAGE_VERSION="latest"
|
2020-01-29 11:48:46 +00:00
|
|
|
CTR_IMAGE="${CTR_IMAGE_TAG}:${CTR_IMAGE_VERSION}"
|
|
|
|
|
|
|
|
DOCKER_RUNTIME="docker"
|
|
|
|
|
|
|
|
# Host paths
|
|
|
|
CLH_SCRIPTS_DIR=$(cd "$(dirname "$0")" && pwd)
|
|
|
|
CLH_ROOT_DIR=$(cd "${CLH_SCRIPTS_DIR}/.." && pwd)
|
|
|
|
CLH_BUILD_DIR="${CLH_ROOT_DIR}/build"
|
|
|
|
CLH_CARGO_TARGET="${CLH_BUILD_DIR}/cargo_target"
|
|
|
|
CLH_DOCKERFILE="${CLH_SCRIPTS_DIR}/../resources/Dockerfile"
|
|
|
|
CLH_CTR_BUILD_DIR="/tmp/cloud-hypervisor/ctr-build"
|
|
|
|
CLH_INTEGRATION_WORKLOADS="${HOME}/workloads"
|
|
|
|
|
|
|
|
# Container paths
|
|
|
|
CTR_CLH_ROOT_DIR="/cloud-hypervisor"
|
2020-02-07 20:25:10 +00:00
|
|
|
CTR_CLH_CARGO_BUILT_DIR="${CTR_CLH_ROOT_DIR}/build"
|
|
|
|
CTR_CLH_CARGO_TARGET="${CTR_CLH_CARGO_BUILT_DIR}/cargo_target"
|
2020-01-29 11:48:46 +00:00
|
|
|
CTR_CLH_INTEGRATION_WORKLOADS="/root/workloads"
|
|
|
|
|
2020-07-29 00:10:13 +00:00
|
|
|
# Container networking option
|
2021-01-11 10:36:42 +00:00
|
|
|
CTR_CLH_NET="bridge"
|
2020-07-29 00:10:13 +00:00
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
# Cargo paths
|
|
|
|
# Full path to the cargo registry dir on the host. This appears on the host
|
|
|
|
# because we want to persist the cargo registry across container invocations.
|
|
|
|
# Otherwise, any rust crates from crates.io would be downloaded again each time
|
|
|
|
# we build or test.
|
|
|
|
CARGO_REGISTRY_DIR="${CLH_BUILD_DIR}/cargo_registry"
|
|
|
|
|
|
|
|
# Full path to the cargo git registry on the host. This serves the same purpose
|
|
|
|
# as CARGO_REGISTRY_DIR, for crates downloaded from GitHub repos instead of
|
|
|
|
# crates.io.
|
|
|
|
CARGO_GIT_REGISTRY_DIR="${CLH_BUILD_DIR}/cargo_git_registry"
|
|
|
|
|
|
|
|
# Full path to the cargo target dir on the host.
|
|
|
|
CARGO_TARGET_DIR="${CLH_BUILD_DIR}/cargo_target"
|
|
|
|
|
|
|
|
# Send a decorated message to stdout, followed by a new line
|
|
|
|
#
|
|
|
|
say() {
|
|
|
|
[ -t 1 ] && [ -n "$TERM" ] \
|
|
|
|
&& echo "$(tput setaf 2)[$CLI_NAME]$(tput sgr0) $*" \
|
|
|
|
|| echo "[$CLI_NAME] $*"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Send a decorated message to stdout, without a trailing new line
|
|
|
|
#
|
|
|
|
say_noln() {
|
|
|
|
[ -t 1 ] && [ -n "$TERM" ] \
|
|
|
|
&& echo -n "$(tput setaf 2)[$CLI_NAME]$(tput sgr0) $*" \
|
|
|
|
|| echo "[$CLI_NAME] $*"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Send a text message to stderr
|
|
|
|
#
|
|
|
|
say_err() {
|
|
|
|
[ -t 2 ] && [ -n "$TERM" ] \
|
|
|
|
&& echo "$(tput setaf 1)[$CLI_NAME] $*$(tput sgr0)" 1>&2 \
|
|
|
|
|| echo "[$CLI_NAME] $*" 1>&2
|
|
|
|
}
|
|
|
|
|
|
|
|
# Send a warning-highlighted text to stdout
|
|
|
|
say_warn() {
|
|
|
|
[ -t 1 ] && [ -n "$TERM" ] \
|
|
|
|
&& echo "$(tput setaf 3)[$CLI_NAME] $*$(tput sgr0)" \
|
|
|
|
|| echo "[$CLI_NAME] $*"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Exit with an error message and (optional) code
|
|
|
|
# Usage: die [-c <error code>] <error message>
|
|
|
|
#
|
|
|
|
die() {
|
|
|
|
code=1
|
|
|
|
[[ "$1" = "-c" ]] && {
|
|
|
|
code="$2"
|
|
|
|
shift 2
|
|
|
|
}
|
|
|
|
say_err "$@"
|
|
|
|
exit $code
|
|
|
|
}
|
|
|
|
|
|
|
|
# Exit with an error message if the last exit code is not 0
|
|
|
|
#
|
|
|
|
ok_or_die() {
|
|
|
|
code=$?
|
|
|
|
[[ $code -eq 0 ]] || die -c $code "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Make sure the build/ dirs are available. Exit if we can't create them.
|
|
|
|
# Upon returning from this call, the caller can be certain the build/ dirs exist.
|
|
|
|
#
|
|
|
|
ensure_build_dir() {
|
|
|
|
for dir in "$CLH_BUILD_DIR" \
|
|
|
|
"$CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
"$CLH_CTR_BUILD_DIR" \
|
|
|
|
"$CARGO_TARGET_DIR" \
|
|
|
|
"$CARGO_REGISTRY_DIR" \
|
|
|
|
"$CARGO_GIT_REGISTRY_DIR"; do
|
|
|
|
mkdir -p "$dir" || die "Error: cannot create dir $dir"
|
|
|
|
[ -x "$dir" ] && [ -w "$dir" ] || \
|
|
|
|
{
|
|
|
|
say "Wrong permissions for $dir. Attempting to fix them ..."
|
|
|
|
chmod +x+w "$dir"
|
|
|
|
} || \
|
|
|
|
die "Error: wrong permissions for $dir. Should be +x+w"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-03-23 18:13:49 +00:00
|
|
|
# Make sure we're using the latest dev container, by just pulling it.
|
|
|
|
ensure_latest_ctr() {
|
|
|
|
$DOCKER_RUNTIME pull "$CTR_IMAGE"
|
|
|
|
|
|
|
|
ok_or_die "Error pulling container image. Aborting."
|
|
|
|
}
|
|
|
|
|
2020-02-13 15:40:10 +00:00
|
|
|
# Fix main directory permissions after a container ran as root.
|
2020-02-07 20:25:10 +00:00
|
|
|
# Since the container ran as root, any files it creates will be owned by root.
|
2020-02-13 15:40:10 +00:00
|
|
|
# This fixes that by recursively changing the ownership of /cloud-hypervisor to the
|
2020-02-07 20:25:10 +00:00
|
|
|
# current user.
|
|
|
|
#
|
2020-02-13 15:40:10 +00:00
|
|
|
fix_dir_perms() {
|
2020-02-07 20:25:10 +00:00
|
|
|
# Yes, running Docker to get elevated privileges, just to chown some files
|
|
|
|
# is a dirty hack.
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--volume /dev:/dev \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-02-07 20:25:10 +00:00
|
|
|
"$CTR_IMAGE" \
|
2020-02-13 15:40:10 +00:00
|
|
|
chown -R "$(id -u):$(id -g)" "$CTR_CLH_ROOT_DIR"
|
2020-02-07 20:25:10 +00:00
|
|
|
|
|
|
|
return $1
|
|
|
|
}
|
2020-10-23 19:09:44 +00:00
|
|
|
# Process exported volumes argument, separate the volumes and make docker compatible
|
|
|
|
# Sample input: --volumes /a:/a#/b:/b
|
|
|
|
# Sample output: --volume /a:/a --volume /b:/b
|
|
|
|
#
|
|
|
|
process_volumes_args() {
|
|
|
|
if [ -z "$arg_vols" ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
exported_volumes=""
|
|
|
|
arr_vols=(${arg_vols//#/ })
|
|
|
|
for var in "${arr_vols[@]}"
|
|
|
|
do
|
|
|
|
parts=(${var//:/ })
|
|
|
|
if [[ ! -e "${parts[0]}" ]]; then
|
|
|
|
echo "The volume ${parts[0]} does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
exported_volumes="$exported_volumes --volume $var"
|
|
|
|
done
|
|
|
|
}
|
2020-01-29 11:48:46 +00:00
|
|
|
cmd_help() {
|
|
|
|
echo ""
|
|
|
|
echo "Cloud Hypervisor $(basename $0)"
|
|
|
|
echo "Usage: $(basename $0) <command> [<command args>]"
|
|
|
|
echo ""
|
|
|
|
echo "Available commands:"
|
|
|
|
echo ""
|
2020-04-28 11:26:01 +00:00
|
|
|
echo " build [--debug|--release] [--libc musl|gnu] [-- [<cargo args>]]"
|
2020-01-29 11:48:46 +00:00
|
|
|
echo " Build the Cloud Hypervisor binaries."
|
|
|
|
echo " --debug Build the debug binaries. This is the default."
|
|
|
|
echo " --release Build the release binaries."
|
2020-04-28 11:26:01 +00:00
|
|
|
echo " --libc Select the C library Cloud Hypervisor will be built against. Default is gnu"
|
2020-10-23 19:09:44 +00:00
|
|
|
echo " --volumes Hash separated volumes to be exported. Example --volumes /mnt:/mnt#/myvol:/myvol"
|
2020-11-18 00:37:27 +00:00
|
|
|
echo " --hypervisor Underlying hypervisor. Options kvm, mshv"
|
2020-01-29 11:48:46 +00:00
|
|
|
echo ""
|
2020-04-28 11:26:01 +00:00
|
|
|
echo " tests [--unit|--cargo|--all] [--libc musl|gnu] [-- [<cargo test args>]]"
|
2020-01-29 11:48:46 +00:00
|
|
|
echo " Run the Cloud Hypervisor tests."
|
2021-08-27 22:30:28 +00:00
|
|
|
echo " --unit Run the unit tests."
|
|
|
|
echo " --cargo Run the cargo tests."
|
|
|
|
echo " --integration Run the integration tests."
|
|
|
|
echo " --integration-sgx Run the SGX integration tests."
|
|
|
|
echo " --integration-vfio Run the VFIO integration tests."
|
|
|
|
echo " --integration-windows Run the Windows guest integration tests."
|
|
|
|
echo " --integration-live-migration Run the live-migration integration tests."
|
|
|
|
echo " --libc Select the C library Cloud Hypervisor will be built against. Default is gnu"
|
2022-02-05 00:14:40 +00:00
|
|
|
echo " --metrics Generate performance metrics"
|
2021-08-27 22:30:28 +00:00
|
|
|
echo " --volumes Hash separated volumes to be exported. Example --volumes /mnt:/mnt#/myvol:/myvol"
|
|
|
|
echo " --hypervisor Underlying hypervisor. Options kvm, mshv"
|
|
|
|
echo " --all Run all tests."
|
2020-01-29 11:48:46 +00:00
|
|
|
echo ""
|
|
|
|
echo " build-container [--type]"
|
|
|
|
echo " Build the Cloud Hypervisor container."
|
|
|
|
echo " --dev Build dev container. This is the default."
|
|
|
|
echo ""
|
2020-01-30 23:40:25 +00:00
|
|
|
echo " clean [<cargo args>]]"
|
|
|
|
echo " Remove the Cloud Hypervisor artifacts."
|
|
|
|
echo ""
|
2020-06-25 17:16:01 +00:00
|
|
|
echo " shell"
|
|
|
|
echo " Run the development container into an interactive, privileged BASH shell."
|
2021-07-14 18:29:02 +00:00
|
|
|
echo " --volumes Hash separated volumes to be exported. Example --volumes /mnt:/mnt#/myvol:/myvol"
|
2020-06-25 17:16:01 +00:00
|
|
|
echo ""
|
2020-01-29 11:48:46 +00:00
|
|
|
echo " help"
|
|
|
|
echo " Display this help message."
|
|
|
|
echo ""
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd_build() {
|
|
|
|
build="debug"
|
2020-04-28 11:26:01 +00:00
|
|
|
libc="gnu"
|
2020-11-18 00:37:27 +00:00
|
|
|
hypervisor="kvm"
|
|
|
|
features_build=""
|
2021-01-11 23:09:02 +00:00
|
|
|
exported_device="/dev/kvm"
|
2020-01-29 11:48:46 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2020-12-02 20:46:02 +00:00
|
|
|
"-h"|"--help") { cmd_help; exit 1; } ;;
|
|
|
|
"--debug") { build="debug"; } ;;
|
|
|
|
"--release") { build="release"; } ;;
|
2020-04-28 11:26:01 +00:00
|
|
|
"--libc")
|
|
|
|
shift
|
|
|
|
[[ "$1" =~ ^(musl|gnu)$ ]] || \
|
|
|
|
die "Invalid libc: $1. Valid options are \"musl\" and \"gnu\"."
|
|
|
|
libc="$1"
|
|
|
|
;;
|
2020-10-23 19:09:44 +00:00
|
|
|
"--volumes")
|
|
|
|
shift
|
|
|
|
arg_vols="$1"
|
|
|
|
;;
|
2020-11-18 00:37:27 +00:00
|
|
|
"--hypervisor")
|
|
|
|
shift
|
|
|
|
hypervisor="$1"
|
|
|
|
;;
|
2020-12-02 20:46:02 +00:00
|
|
|
"--") { shift; break; } ;;
|
2020-01-29 11:48:46 +00:00
|
|
|
*)
|
|
|
|
die "Unknown build argument: $1. Please use --help for help."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-01-26 11:15:24 +00:00
|
|
|
|
|
|
|
ensure_build_dir
|
2021-08-26 11:40:52 +00:00
|
|
|
ensure_latest_ctr
|
2021-01-26 11:15:24 +00:00
|
|
|
|
2020-10-23 19:09:44 +00:00
|
|
|
process_volumes_args
|
2021-09-23 21:50:26 +00:00
|
|
|
if [[ ! ("$hypervisor" = "kvm" || "$hypervisor" = "mshv") ]]; then
|
|
|
|
die "Hypervisor value must be kvm or mshv"
|
2020-11-18 00:37:27 +00:00
|
|
|
fi
|
2021-01-11 23:09:02 +00:00
|
|
|
if [[ "$hypervisor" = "mshv" ]]; then
|
|
|
|
exported_device="/dev/mshv"
|
|
|
|
fi
|
2020-04-28 11:26:01 +00:00
|
|
|
target="$(uname -m)-unknown-linux-${libc}"
|
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
cargo_args=("$@")
|
|
|
|
[ $build = "release" ] && cargo_args+=("--release")
|
2020-04-28 11:26:01 +00:00
|
|
|
cargo_args+=(--target "$target")
|
2020-04-16 02:02:42 +00:00
|
|
|
[ $(uname -m) = "aarch64" ] && cargo_args+=("--no-default-features")
|
2021-01-12 00:09:44 +00:00
|
|
|
[ $(uname -m) = "aarch64" ] && cargo_args+=(--features $hypervisor)
|
2020-04-16 02:02:42 +00:00
|
|
|
|
|
|
|
rustflags=""
|
|
|
|
if [ $(uname -m) = "aarch64" ] && [ $libc = "musl" ] ; then
|
2020-07-10 03:47:30 +00:00
|
|
|
rustflags="-C link-arg=-lgcc -C link_arg=-specs -C link_arg=/usr/lib/aarch64-linux-musl/musl-gcc.specs"
|
2020-04-16 02:02:42 +00:00
|
|
|
fi
|
2020-01-29 11:48:46 +00:00
|
|
|
|
|
|
|
$DOCKER_RUNTIME run \
|
2020-02-07 20:17:00 +00:00
|
|
|
--user "$(id -u):$(id -g)" \
|
2020-01-29 11:48:46 +00:00
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
2021-01-11 23:09:02 +00:00
|
|
|
--volume $exported_device \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-04-16 02:02:42 +00:00
|
|
|
--env RUSTFLAGS="$rustflags" \
|
2020-01-29 11:48:46 +00:00
|
|
|
"$CTR_IMAGE" \
|
2020-11-18 00:37:27 +00:00
|
|
|
cargo build --all $features_build \
|
2020-01-29 11:48:46 +00:00
|
|
|
--target-dir "$CTR_CLH_CARGO_TARGET" \
|
2020-04-28 11:26:01 +00:00
|
|
|
"${cargo_args[@]}" && say "Binaries placed under $CLH_CARGO_TARGET/$target/$build"
|
2020-01-29 11:48:46 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 23:40:25 +00:00
|
|
|
cmd_clean() {
|
|
|
|
cargo_args=("$@")
|
|
|
|
|
2021-01-26 11:15:24 +00:00
|
|
|
ensure_build_dir
|
2021-08-26 11:40:52 +00:00
|
|
|
ensure_latest_ctr
|
2021-01-26 11:15:24 +00:00
|
|
|
|
2020-01-30 23:40:25 +00:00
|
|
|
$DOCKER_RUNTIME run \
|
2020-02-07 20:17:00 +00:00
|
|
|
--user "$(id -u):$(id -g)" \
|
2020-01-30 23:40:25 +00:00
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-01-30 23:40:25 +00:00
|
|
|
"$CTR_IMAGE" \
|
|
|
|
cargo clean \
|
|
|
|
--target-dir "$CTR_CLH_CARGO_TARGET" \
|
|
|
|
"${cargo_args[@]}"
|
|
|
|
}
|
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
cmd_tests() {
|
|
|
|
unit=false
|
|
|
|
cargo=false
|
|
|
|
integration=false
|
2020-09-08 12:20:26 +00:00
|
|
|
integration_sgx=false
|
2021-03-16 15:11:00 +00:00
|
|
|
integration_vfio=false
|
2020-10-07 14:34:18 +00:00
|
|
|
integration_windows=false
|
2021-08-27 22:30:28 +00:00
|
|
|
integration_live_migration=false
|
2022-02-05 00:14:40 +00:00
|
|
|
metrics=false
|
2020-04-28 11:26:01 +00:00
|
|
|
libc="gnu"
|
2020-10-23 19:09:44 +00:00
|
|
|
arg_vols=""
|
2020-11-18 00:37:27 +00:00
|
|
|
hypervisor="kvm"
|
2021-01-11 23:09:02 +00:00
|
|
|
exported_device="/dev/kvm"
|
2020-01-29 11:48:46 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2021-08-27 22:30:28 +00:00
|
|
|
"-h"|"--help") { cmd_help; exit 1; } ;;
|
|
|
|
"--unit") { unit=true; } ;;
|
|
|
|
"--cargo") { cargo=true; } ;;
|
|
|
|
"--integration") { integration=true; } ;;
|
|
|
|
"--integration-sgx") { integration_sgx=true; } ;;
|
|
|
|
"--integration-vfio") { integration_vfio=true; } ;;
|
|
|
|
"--integration-windows") { integration_windows=true; } ;;
|
|
|
|
"--integration-live-migration") { integration_live_migration=true; } ;;
|
2022-02-05 00:14:40 +00:00
|
|
|
"--metrics") { metrics=true; } ;;
|
2020-04-28 11:26:01 +00:00
|
|
|
"--libc")
|
|
|
|
shift
|
|
|
|
[[ "$1" =~ ^(musl|gnu)$ ]] || \
|
|
|
|
die "Invalid libc: $1. Valid options are \"musl\" and \"gnu\"."
|
|
|
|
libc="$1"
|
|
|
|
;;
|
2020-10-23 19:09:44 +00:00
|
|
|
"--volumes")
|
|
|
|
shift
|
|
|
|
arg_vols="$1"
|
|
|
|
;;
|
2020-11-18 00:37:27 +00:00
|
|
|
"--hypervisor")
|
|
|
|
shift
|
|
|
|
hypervisor="$1"
|
|
|
|
;;
|
2020-12-02 20:46:02 +00:00
|
|
|
"--all") { cargo=true; unit=true; integration=true; } ;;
|
|
|
|
"--") { shift; break; } ;;
|
2020-01-29 11:48:46 +00:00
|
|
|
*)
|
|
|
|
die "Unknown tests argument: $1. Please use --help for help."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-09-23 21:50:26 +00:00
|
|
|
if [[ ! ("$hypervisor" = "kvm" || "$hypervisor" = "mshv") ]]; then
|
|
|
|
die "Hypervisor value must be kvm or mshv"
|
2020-11-18 00:37:27 +00:00
|
|
|
fi
|
2021-09-23 21:50:26 +00:00
|
|
|
|
2021-01-11 23:09:02 +00:00
|
|
|
if [[ "$hypervisor" = "mshv" ]]; then
|
|
|
|
exported_device="/dev/mshv"
|
|
|
|
fi
|
2021-09-23 21:50:26 +00:00
|
|
|
|
2020-12-02 20:46:02 +00:00
|
|
|
set -- "$@" '--hypervisor' $hypervisor
|
|
|
|
|
2021-01-26 11:15:24 +00:00
|
|
|
ensure_build_dir
|
2021-08-26 11:40:52 +00:00
|
|
|
ensure_latest_ctr
|
2021-01-26 11:15:24 +00:00
|
|
|
|
2020-10-23 19:09:44 +00:00
|
|
|
process_volumes_args
|
2020-04-28 11:26:01 +00:00
|
|
|
target="$(uname -m)-unknown-linux-${libc}"
|
|
|
|
cflags=""
|
|
|
|
target_cc=""
|
|
|
|
if [[ "$target" == "x86_64-unknown-linux-musl" ]]; then
|
|
|
|
target_cc="musl-gcc"
|
|
|
|
cflags="-I /usr/include/x86_64-linux-musl/ -idirafter /usr/include/"
|
|
|
|
fi
|
|
|
|
|
2021-01-12 00:05:02 +00:00
|
|
|
if [[ "$unit" = true ]] ; then
|
2020-04-28 11:26:01 +00:00
|
|
|
say "Running unit tests for $target..."
|
2020-01-29 11:48:46 +00:00
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
2021-01-11 23:09:02 +00:00
|
|
|
--device $exported_device \
|
2020-02-17 15:26:10 +00:00
|
|
|
--device /dev/net/tun \
|
|
|
|
--cap-add net_admin \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-04-28 11:26:01 +00:00
|
|
|
--env BUILD_TARGET="$target" \
|
|
|
|
--env CFLAGS="$cflags" \
|
|
|
|
--env TARGET_CC="$target_cc" \
|
2020-01-29 11:48:46 +00:00
|
|
|
"$CTR_IMAGE" \
|
2020-12-02 20:46:02 +00:00
|
|
|
./scripts/run_unit_tests.sh "$@" || fix_dir_perms $? || exit $?
|
2020-01-29 11:48:46 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$cargo" = true ] ; then
|
|
|
|
say "Running cargo tests..."
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-01-29 11:48:46 +00:00
|
|
|
"$CTR_IMAGE" \
|
2020-12-02 20:46:02 +00:00
|
|
|
./scripts/run_cargo_tests.sh "$@" || fix_dir_perms $? || exit $?
|
2020-01-29 11:48:46 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$integration" = true ] ; then
|
2020-04-28 11:26:01 +00:00
|
|
|
say "Running integration tests for $target..."
|
2020-01-29 11:48:46 +00:00
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
2020-02-12 11:53:48 +00:00
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
2020-07-29 00:10:13 +00:00
|
|
|
--net="$CTR_CLH_NET" \
|
2020-02-07 15:00:11 +00:00
|
|
|
--mount type=tmpfs,destination=/tmp \
|
2020-01-29 11:48:46 +00:00
|
|
|
--volume /dev:/dev \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-01-29 11:48:46 +00:00
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
2020-02-12 11:53:48 +00:00
|
|
|
--env USER="root" \
|
2020-06-10 08:45:12 +00:00
|
|
|
--env CH_LIBC="${libc}" \
|
2020-01-29 11:48:46 +00:00
|
|
|
"$CTR_IMAGE" \
|
2020-12-02 20:46:02 +00:00
|
|
|
./scripts/run_integration_tests_$(uname -m).sh "$@" || fix_dir_perms $? || exit $?
|
2020-01-29 11:48:46 +00:00
|
|
|
fi
|
2020-02-07 20:25:10 +00:00
|
|
|
|
2020-09-08 12:20:26 +00:00
|
|
|
if [ "$integration_sgx" = true ] ; then
|
2020-10-14 11:33:47 +00:00
|
|
|
say "Running SGX integration tests for $target..."
|
2020-09-08 12:20:26 +00:00
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
|
|
|
--net="$CTR_CLH_NET" \
|
|
|
|
--mount type=tmpfs,destination=/tmp \
|
|
|
|
--volume /dev:/dev \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-09-08 12:20:26 +00:00
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--env CH_LIBC="${libc}" \
|
|
|
|
"$CTR_IMAGE" \
|
2020-12-02 20:46:02 +00:00
|
|
|
./scripts/run_integration_tests_sgx.sh "$@" || fix_dir_perms $? || exit $?
|
2020-09-08 12:20:26 +00:00
|
|
|
fi
|
|
|
|
|
2021-03-16 15:11:00 +00:00
|
|
|
if [ "$integration_vfio" = true ] ; then
|
|
|
|
say "Running VFIO integration tests for $target..."
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
|
|
|
--net="$CTR_CLH_NET" \
|
|
|
|
--mount type=tmpfs,destination=/tmp \
|
|
|
|
--volume /dev:/dev \
|
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--env CH_LIBC="${libc}" \
|
|
|
|
"$CTR_IMAGE" \
|
|
|
|
./scripts/run_integration_tests_vfio.sh "$@" || fix_dir_perms $? || exit $?
|
|
|
|
fi
|
|
|
|
|
2020-10-07 14:34:18 +00:00
|
|
|
if [ "$integration_windows" = true ] ; then
|
2020-10-14 11:33:47 +00:00
|
|
|
say "Running Windows integration tests for $target..."
|
2020-10-07 14:34:18 +00:00
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
|
|
|
--net="$CTR_CLH_NET" \
|
|
|
|
--mount type=tmpfs,destination=/tmp \
|
|
|
|
--volume /dev:/dev \
|
2020-11-09 21:53:13 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-10-07 14:34:18 +00:00
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--env CH_LIBC="${libc}" \
|
|
|
|
"$CTR_IMAGE" \
|
2020-12-02 20:46:02 +00:00
|
|
|
./scripts/run_integration_tests_windows.sh "$@" || fix_dir_perms $? || exit $?
|
2020-10-07 14:34:18 +00:00
|
|
|
fi
|
2021-08-27 22:30:28 +00:00
|
|
|
|
|
|
|
if [ "$integration_live_migration" = true ] ; then
|
|
|
|
say "Running 'live migration' integration tests for $target..."
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
|
|
|
--net="$CTR_CLH_NET" \
|
|
|
|
--mount type=tmpfs,destination=/tmp \
|
|
|
|
--volume /dev:/dev \
|
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--env CH_LIBC="${libc}" \
|
|
|
|
"$CTR_IMAGE" \
|
|
|
|
./scripts/run_integration_tests_live_migration.sh "$@" || fix_dir_perms $? || exit $?
|
|
|
|
fi
|
2022-02-05 00:14:40 +00:00
|
|
|
|
|
|
|
if [ "$metrics" = true ] ; then
|
|
|
|
say "Generating performance metrics for $target..."
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
|
|
|
--net="$CTR_CLH_NET" \
|
|
|
|
--mount type=tmpfs,destination=/tmp \
|
|
|
|
--volume /dev:/dev \
|
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--env CH_LIBC="${libc}" \
|
|
|
|
"$CTR_IMAGE" \
|
|
|
|
./scripts/run_metrics.sh "$@" || fix_dir_perms $? || exit $?
|
|
|
|
fi
|
|
|
|
|
2020-02-13 15:40:10 +00:00
|
|
|
fix_dir_perms $?
|
2020-01-29 11:48:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd_build-container() {
|
|
|
|
container_type="dev"
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2020-12-02 20:46:02 +00:00
|
|
|
"-h"|"--help") { cmd_help; exit 1; } ;;
|
2020-01-29 11:48:46 +00:00
|
|
|
"--dev") { container_type="dev"; } ;;
|
2020-12-02 20:46:02 +00:00
|
|
|
"--") { shift; break; } ;;
|
2020-01-29 11:48:46 +00:00
|
|
|
*)
|
|
|
|
die "Unknown build-container argument: $1. Please use --help for help."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2021-01-26 11:15:24 +00:00
|
|
|
ensure_build_dir
|
2021-08-26 11:40:52 +00:00
|
|
|
ensure_latest_ctr
|
2021-01-26 11:15:24 +00:00
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
BUILD_DIR=/tmp/cloud-hypervisor/container/
|
|
|
|
|
|
|
|
mkdir -p $BUILD_DIR
|
|
|
|
cp $CLH_DOCKERFILE $BUILD_DIR
|
|
|
|
|
2020-10-13 08:58:50 +00:00
|
|
|
[ $(uname -m) = "aarch64" ] && TARGETARCH="arm64"
|
|
|
|
[ $(uname -m) = "x86_64" ] && TARGETARCH="amd64"
|
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
$DOCKER_RUNTIME build \
|
|
|
|
--target $container_type \
|
|
|
|
-t $CTR_IMAGE \
|
|
|
|
-f $BUILD_DIR/Dockerfile \
|
2020-10-13 08:58:50 +00:00
|
|
|
--build-arg TARGETARCH=$TARGETARCH \
|
2020-01-29 11:48:46 +00:00
|
|
|
$BUILD_DIR
|
|
|
|
}
|
|
|
|
|
2020-06-25 17:16:01 +00:00
|
|
|
cmd_shell() {
|
2021-07-14 18:29:02 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
"-h"|"--help") { cmd_help; exit 1; } ;;
|
|
|
|
"--volumes")
|
|
|
|
shift
|
|
|
|
arg_vols="$1"
|
|
|
|
;;
|
|
|
|
"--") { shift; break; } ;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-01-26 11:15:24 +00:00
|
|
|
ensure_build_dir
|
2021-08-26 11:40:52 +00:00
|
|
|
ensure_latest_ctr
|
2021-07-14 18:29:02 +00:00
|
|
|
process_volumes_args
|
2020-06-25 17:16:01 +00:00
|
|
|
say_warn "Starting a privileged shell prompt as root ..."
|
|
|
|
say_warn "WARNING: Your $CLH_ROOT_DIR folder will be bind-mounted in the container under $CTR_CLH_ROOT_DIR"
|
|
|
|
$DOCKER_RUNTIME run \
|
|
|
|
-ti \
|
|
|
|
--workdir "$CTR_CLH_ROOT_DIR" \
|
|
|
|
--rm \
|
|
|
|
--privileged \
|
|
|
|
--security-opt seccomp=unconfined \
|
|
|
|
--ipc=host \
|
2020-07-29 00:10:13 +00:00
|
|
|
--net="$CTR_CLH_NET" \
|
2020-06-25 17:16:01 +00:00
|
|
|
--tmpfs /tmp:exec \
|
|
|
|
--volume /dev:/dev \
|
2020-10-23 19:09:44 +00:00
|
|
|
--volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" $exported_volumes \
|
2020-06-25 17:16:01 +00:00
|
|
|
--volume "$CLH_INTEGRATION_WORKLOADS:$CTR_CLH_INTEGRATION_WORKLOADS" \
|
|
|
|
--env USER="root" \
|
|
|
|
--entrypoint bash \
|
|
|
|
"$CTR_IMAGE"
|
|
|
|
|
|
|
|
fix_dir_perms $?
|
|
|
|
}
|
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
# Parse main command line args.
|
|
|
|
#
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2020-12-02 20:46:02 +00:00
|
|
|
-h|--help) { cmd_help; exit 1; } ;;
|
|
|
|
-y|--unattended) { OPT_UNATTENDED=true; } ;;
|
2020-01-29 11:48:46 +00:00
|
|
|
-*)
|
|
|
|
die "Unknown arg: $1. Please use \`$0 help\` for help."
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
# $1 is now a command name. Check if it is a valid command and, if so,
|
|
|
|
# run it.
|
|
|
|
#
|
|
|
|
declare -f "cmd_$1" > /dev/null
|
|
|
|
ok_or_die "Unknown command: $1. Please use \`$0 help\` for help."
|
|
|
|
|
|
|
|
cmd=cmd_$1
|
|
|
|
shift
|
|
|
|
|
2020-04-16 02:02:42 +00:00
|
|
|
|
2020-01-29 11:48:46 +00:00
|
|
|
$cmd "$@"
|