mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-11-06 18:13:43 +08:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0ce992a27 | ||
|
|
6334cfc8bc | ||
|
|
451a569617 | ||
|
|
44d82d6544 | ||
|
|
618ec66401 | ||
|
|
d24ae86c12 | ||
|
|
32db74e50d | ||
|
|
503c89f08c | ||
|
|
c9e6e65991 | ||
|
|
04bd8a1639 | ||
|
|
a024294e19 |
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
@@ -11,4 +11,4 @@ jobs:
|
|||||||
- name: Run ShellCheck
|
- name: Run ShellCheck
|
||||||
uses: ludeeus/action-shellcheck@master
|
uses: ludeeus/action-shellcheck@master
|
||||||
env:
|
env:
|
||||||
SHELLCHECK_OPTS: -x -e SC2001 -e SC2002 -e SC2223 -e SC2034 -e SC2064 -e SC2317 -e SC2028 -e SC2153 -e SC2004
|
SHELLCHECK_OPTS: -x --source-path=src -e SC2001 -e SC2002 -e SC2223 -e SC2034 -e SC2064 -e SC2317 -e SC2028 -e SC2153 -e SC2004
|
||||||
|
|||||||
@@ -33,9 +33,8 @@ RUN apt-get update && apt-get -y upgrade && \
|
|||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
COPY run/*.sh /run/
|
COPY src/*.sh /run/
|
||||||
COPY --from=builder /qemu-host.bin /run/host.bin
|
COPY --from=builder /qemu-host.bin /run/host.bin
|
||||||
|
|
||||||
RUN chmod +x /run/*.sh && chmod +x /run/*.bin
|
RUN chmod +x /run/*.sh && chmod +x /run/*.bin
|
||||||
|
|
||||||
VOLUME /storage
|
VOLUME /storage
|
||||||
@@ -66,4 +65,4 @@ LABEL org.opencontainers.image.description="Virtual DSM in a docker container"
|
|||||||
|
|
||||||
HEALTHCHECK --interval=60s --retries=2 CMD /run/check.sh
|
HEALTHCHECK --interval=60s --retries=2 CMD /run/check.sh
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/run.sh"]
|
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]
|
||||||
|
|||||||
241
run/disk.sh
241
run/disk.sh
@@ -1,241 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -Eeuo pipefail
|
|
||||||
|
|
||||||
# Docker environment variables
|
|
||||||
|
|
||||||
: ${DISK_IO:='native'} # I/O Mode, can be set to 'native', 'threads' or 'io_turing'
|
|
||||||
: ${DISK_CACHE:='none'} # Caching mode, can be set to 'writeback' for better performance
|
|
||||||
: ${DISK_DISCARD:='on'} # Controls whether unmap (TRIM) commands are passed to the host.
|
|
||||||
: ${DISK_ROTATION:='1'} # Rotation rate, set to 1 for SSD storage and increase for HDD
|
|
||||||
|
|
||||||
BOOT="$STORAGE/$BASE.boot.img"
|
|
||||||
SYSTEM="$STORAGE/$BASE.system.img"
|
|
||||||
|
|
||||||
[ ! -f "$BOOT" ] && error "Virtual DSM boot-image does not exist ($BOOT)" && exit 81
|
|
||||||
[ ! -f "$SYSTEM" ] && error "Virtual DSM system-image does not exist ($SYSTEM)" && exit 82
|
|
||||||
|
|
||||||
DATA="${STORAGE}/data.img"
|
|
||||||
|
|
||||||
if [[ ! -f "${DATA}" ]] && [[ -f "$STORAGE/data$DISK_SIZE.img" ]]; then
|
|
||||||
# Fallback for legacy installs
|
|
||||||
DATA="$STORAGE/data$DISK_SIZE.img"
|
|
||||||
fi
|
|
||||||
|
|
||||||
MIN_SIZE=6442450944
|
|
||||||
DISK_SIZE=$(echo "${DISK_SIZE}" | sed 's/MB/M/g;s/GB/G/g;s/TB/T/g')
|
|
||||||
DATA_SIZE=$(numfmt --from=iec "${DISK_SIZE}")
|
|
||||||
|
|
||||||
if (( DATA_SIZE < MIN_SIZE )); then
|
|
||||||
error "Please increase DISK_SIZE to at least 6 GB." && exit 83
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f "${DATA}" ]; then
|
|
||||||
|
|
||||||
OLD_SIZE=$(stat -c%s "${DATA}")
|
|
||||||
|
|
||||||
if [ "$DATA_SIZE" -gt "$OLD_SIZE" ]; then
|
|
||||||
|
|
||||||
info "Resizing data disk from $OLD_SIZE to $DATA_SIZE bytes.."
|
|
||||||
|
|
||||||
if [[ "${ALLOCATE}" == [Nn]* ]]; then
|
|
||||||
|
|
||||||
# Resize file by changing its length
|
|
||||||
if ! truncate -s "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
error "Could not resize the file for the virtual disk." && exit 85
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
REQ=$((DATA_SIZE-OLD_SIZE))
|
|
||||||
|
|
||||||
# Check free diskspace
|
|
||||||
SPACE=$(df --output=avail -B 1 "${STORAGE}" | tail -n 1)
|
|
||||||
|
|
||||||
if (( REQ > SPACE )); then
|
|
||||||
error "Not enough free space to resize virtual disk to ${DISK_SIZE}."
|
|
||||||
error "Specify a smaller size or disable preallocation with ALLOCATE=N." && exit 84
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Resize file by allocating more space
|
|
||||||
if ! fallocate -l "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
if ! truncate -s "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
error "Could not resize the file for the virtual disk." && exit 85
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${ALLOCATE}" == [Zz]* ]]; then
|
|
||||||
|
|
||||||
GB=$(( (REQ + 1073741823)/1073741824 ))
|
|
||||||
|
|
||||||
info "Preallocating ${GB} GB of diskspace, please wait..."
|
|
||||||
dd if=/dev/urandom of="${DATA}" seek="${OLD_SIZE}" count="${REQ}" bs=1M iflag=count_bytes oflag=seek_bytes status=none
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$DATA_SIZE" -lt "$OLD_SIZE" ]; then
|
|
||||||
|
|
||||||
info "Shrinking existing disks is not supported yet!"
|
|
||||||
info "Creating backup of old drive in storage folder..."
|
|
||||||
|
|
||||||
mv -f "${DATA}" "${DATA}.bak"
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "${DATA}" ]; then
|
|
||||||
|
|
||||||
if [[ "${ALLOCATE}" == [Nn]* ]]; then
|
|
||||||
|
|
||||||
# Create an empty file
|
|
||||||
if ! truncate -s "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
rm -f "${DATA}"
|
|
||||||
error "Could not create a file for the virtual disk." && exit 87
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
# Check free diskspace
|
|
||||||
SPACE=$(df --output=avail -B 1 "${STORAGE}" | tail -n 1)
|
|
||||||
|
|
||||||
if (( DATA_SIZE > SPACE )); then
|
|
||||||
error "Not enough free space to create a virtual disk of ${DISK_SIZE}."
|
|
||||||
error "Specify a smaller size or disable preallocation with ALLOCATE=N." && exit 86
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Create an empty file
|
|
||||||
if ! fallocate -l "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
if ! truncate -s "${DATA_SIZE}" "${DATA}"; then
|
|
||||||
rm -f "${DATA}"
|
|
||||||
error "Could not create a file for the virtual disk." && exit 87
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${ALLOCATE}" == [Zz]* ]]; then
|
|
||||||
|
|
||||||
info "Preallocating ${DISK_SIZE} of diskspace, please wait..."
|
|
||||||
dd if=/dev/urandom of="${DATA}" count="${DATA_SIZE}" bs=1M iflag=count_bytes status=none
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if file exists
|
|
||||||
if [ ! -f "${DATA}" ]; then
|
|
||||||
error "Virtual disk does not exist ($DATA)" && exit 88
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check the filesize
|
|
||||||
SIZE=$(stat -c%s "${DATA}")
|
|
||||||
|
|
||||||
if [[ SIZE -ne DATA_SIZE ]]; then
|
|
||||||
error "Virtual disk has the wrong size: ${SIZE}" && exit 89
|
|
||||||
fi
|
|
||||||
|
|
||||||
DISK_OPTS="\
|
|
||||||
-device virtio-scsi-pci,id=hw-synoboot,bus=pcie.0,addr=0xa \
|
|
||||||
-drive file=${BOOT},if=none,id=drive-synoboot,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-synoboot.0,channel=0,scsi-id=0,lun=0,drive=drive-synoboot,id=synoboot0,rotation_rate=${DISK_ROTATION},bootindex=1 \
|
|
||||||
-device virtio-scsi-pci,id=hw-synosys,bus=pcie.0,addr=0xb \
|
|
||||||
-drive file=${SYSTEM},if=none,id=drive-synosys,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-synosys.0,channel=0,scsi-id=0,lun=0,drive=drive-synosys,id=synosys0,rotation_rate=${DISK_ROTATION},bootindex=2 \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata,bus=pcie.0,addr=0xc \
|
|
||||||
-drive file=${DATA},if=none,id=drive-userdata,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata,id=userdata0,rotation_rate=${DISK_ROTATION},bootindex=3"
|
|
||||||
|
|
||||||
: ${DISK2_SIZE:=''}
|
|
||||||
EXTRA_SIZE=DISK2_SIZE
|
|
||||||
EXTRA_DISK="/storage2/data.img"
|
|
||||||
|
|
||||||
if [ -d "$(dirname "${EXTRA_DISK}")" ]; then
|
|
||||||
|
|
||||||
if [ ! -f "${EXTRA_DISK}" ]; then
|
|
||||||
[ -z "$EXTRA_SIZE" ] && EXTRA_SIZE="16G"
|
|
||||||
if ! truncate -s "${EXTRA_SIZE}" "${EXTRA_DISK}"; then
|
|
||||||
error "Could not create the file for the second disk." && exit 53
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$EXTRA_SIZE" ]; then
|
|
||||||
CUR_SIZE=$(stat -c%s "${EXTRA_DISK}")
|
|
||||||
DATA_SIZE=$(numfmt --from=iec "${EXTRA_SIZE}")
|
|
||||||
if [ "$DATA_SIZE" -gt "$CUR_SIZE" ]; then
|
|
||||||
truncate -s "${EXTRA_SIZE}" "${EXTRA_DISK}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
DISK_OPTS="${DISK_OPTS} \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata2,bus=pcie.0,addr=0xd \
|
|
||||||
-drive file=${EXTRA_DISK},if=none,id=drive-userdata2,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata2.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata2,id=userdata2,rotation_rate=${DISK_ROTATION},bootindex=4"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
: ${DISK3_SIZE:=''}
|
|
||||||
EXTRA_SIZE=DISK3_SIZE
|
|
||||||
EXTRA_DISK="/storage3/data.img"
|
|
||||||
|
|
||||||
if [ -d "$(dirname "${EXTRA_DISK}")" ]; then
|
|
||||||
|
|
||||||
if [ ! -f "${EXTRA_DISK}" ]; then
|
|
||||||
[ -z "$EXTRA_SIZE" ] && EXTRA_SIZE="16G"
|
|
||||||
if ! truncate -s "${EXTRA_SIZE}" "${EXTRA_DISK}"; then
|
|
||||||
error "Could not create the file for the third disk." && exit 54
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$EXTRA_SIZE" ]; then
|
|
||||||
CUR_SIZE=$(stat -c%s "${EXTRA_DISK}")
|
|
||||||
DATA_SIZE=$(numfmt --from=iec "${EXTRA_SIZE}")
|
|
||||||
if [ "$DATA_SIZE" -gt "$CUR_SIZE" ]; then
|
|
||||||
truncate -s "${EXTRA_SIZE}" "${EXTRA_DISK}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
DISK_OPTS="${DISK_OPTS} \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata3,bus=pcie.0,addr=0xe \
|
|
||||||
-drive file=${EXTRA_DISK},if=none,id=drive-userdata3,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata3.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata3,id=userdata3,rotation_rate=${DISK_ROTATION},bootindex=5"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
: ${DEVICE:=''} # Docker variable to passthrough a block device, like /dev/vdc1.
|
|
||||||
: ${DEVICE2:=''}
|
|
||||||
: ${DEVICE3:=''}
|
|
||||||
|
|
||||||
if [ -n "${DEVICE}" ]; then
|
|
||||||
|
|
||||||
[ ! -b "${DEVICE}" ] && error "Device ${DEVICE} cannot be found! Please add it to the 'devices' section of your compose file." && exit 55
|
|
||||||
|
|
||||||
DISK_OPTS="${DISK_OPTS} \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata4,bus=pcie.0,addr=0xf \
|
|
||||||
-drive file=${DEVICE},if=none,id=drive-userdata4,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata4.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata4,id=userdata4,rotation_rate=${DISK_ROTATION},bootindex=6"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${DEVICE2}" ]; then
|
|
||||||
|
|
||||||
[ ! -b "${DEVICE2}" ] && error "Device ${DEVICE2} cannot be found! Please add it to the 'devices' section of your compose file." && exit 56
|
|
||||||
|
|
||||||
DISK_OPTS="${DISK_OPTS} \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata5,bus=pcie.0,addr=0x5 \
|
|
||||||
-drive file=${DEVICE2},if=none,id=drive-userdata5,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata5.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata5,id=userdata5,rotation_rate=${DISK_ROTATION},bootindex=7"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${DEVICE3}" ]; then
|
|
||||||
|
|
||||||
[ ! -b "${DEVICE3}" ] && error "Device ${DEVICE3} cannot be found! Please add it to the 'devices' section of your compose file." && exit 57
|
|
||||||
|
|
||||||
DISK_OPTS="${DISK_OPTS} \
|
|
||||||
-device virtio-scsi-pci,id=hw-userdata6,bus=pcie.0,addr=0x6 \
|
|
||||||
-drive file=${DEVICE3},if=none,id=drive-userdata6,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
|
||||||
-device scsi-hd,bus=hw-userdata6.0,channel=0,scsi-id=0,lun=0,drive=drive-userdata6,id=userdata6,rotation_rate=${DISK_ROTATION},bootindex=8"
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
return 0
|
|
||||||
213
src/disk.sh
Normal file
213
src/disk.sh
Normal file
@@ -0,0 +1,213 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -Eeuo pipefail
|
||||||
|
|
||||||
|
# Docker environment variables
|
||||||
|
|
||||||
|
: ${DISK_IO:='native'} # I/O Mode, can be set to 'native', 'threads' or 'io_turing'
|
||||||
|
: ${DISK_CACHE:='none'} # Caching mode, can be set to 'writeback' for better performance
|
||||||
|
: ${DISK_DISCARD:='on'} # Controls whether unmap (TRIM) commands are passed to the host.
|
||||||
|
: ${DISK_ROTATION:='1'} # Rotation rate, set to 1 for SSD storage and increase for HDD
|
||||||
|
|
||||||
|
BOOT="$STORAGE/$BASE.boot.img"
|
||||||
|
SYSTEM="$STORAGE/$BASE.system.img"
|
||||||
|
|
||||||
|
[ ! -f "$BOOT" ] && error "Virtual DSM boot-image does not exist ($BOOT)" && exit 81
|
||||||
|
[ ! -f "$SYSTEM" ] && error "Virtual DSM system-image does not exist ($SYSTEM)" && exit 82
|
||||||
|
|
||||||
|
DISK_OPTS="\
|
||||||
|
-device virtio-scsi-pci,id=hw-synoboot,bus=pcie.0,addr=0xa \
|
||||||
|
-drive file=${BOOT},if=none,id=drive-synoboot,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
||||||
|
-device scsi-hd,bus=hw-synoboot.0,channel=0,scsi-id=0,lun=0,drive=drive-synoboot,id=synoboot0,rotation_rate=${DISK_ROTATION},bootindex=1 \
|
||||||
|
-device virtio-scsi-pci,id=hw-synosys,bus=pcie.0,addr=0xb \
|
||||||
|
-drive file=${SYSTEM},if=none,id=drive-synosys,format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
||||||
|
-device scsi-hd,bus=hw-synosys.0,channel=0,scsi-id=0,lun=0,drive=drive-synosys,id=synosys0,rotation_rate=${DISK_ROTATION},bootindex=2"
|
||||||
|
|
||||||
|
addDisk () {
|
||||||
|
|
||||||
|
local GB
|
||||||
|
local DIR
|
||||||
|
local REQ
|
||||||
|
local SPACE
|
||||||
|
local CUR_SIZE
|
||||||
|
local DATA_SIZE
|
||||||
|
local DISK_ID=$1
|
||||||
|
local DISK_FILE=$2
|
||||||
|
local DISK_DESC=$3
|
||||||
|
local DISK_SPACE=$4
|
||||||
|
local DISK_INDEX=$5
|
||||||
|
local DISK_ADDRESS=$6
|
||||||
|
|
||||||
|
DIR=$(dirname "${DISK_FILE}")
|
||||||
|
[ ! -d "${DIR}" ] && return 0
|
||||||
|
|
||||||
|
[ -z "$DISK_SPACE" ] && DISK_SPACE="16G"
|
||||||
|
DISK_SPACE=$(echo "${DISK_SPACE}" | sed 's/MB/M/g;s/GB/G/g;s/TB/T/g')
|
||||||
|
DATA_SIZE=$(numfmt --from=iec "${DISK_SPACE}")
|
||||||
|
|
||||||
|
if (( DATA_SIZE < 6442450944 )); then
|
||||||
|
error "Please increase ${DISK_DESC^^}_SIZE to at least 6 GB." && exit 83
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "${DISK_FILE}" ]; then
|
||||||
|
|
||||||
|
CUR_SIZE=$(stat -c%s "${DISK_FILE}")
|
||||||
|
|
||||||
|
if [ "$DATA_SIZE" -gt "$CUR_SIZE" ]; then
|
||||||
|
|
||||||
|
GB=$(( (CUR_SIZE + 1073741823)/1073741824 ))
|
||||||
|
info "Resizing ${DISK_DESC} from ${GB}G to ${DISK_SPACE} .."
|
||||||
|
|
||||||
|
if [[ "${ALLOCATE}" == [Nn]* ]]; then
|
||||||
|
|
||||||
|
# Resize file by changing its length
|
||||||
|
if ! truncate -s "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
error "Could not resize ${DISK_DESC} file (${DISK_FILE}) to ${DISK_SPACE} .." && exit 85
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
REQ=$((DATA_SIZE-CUR_SIZE))
|
||||||
|
|
||||||
|
# Check free diskspace
|
||||||
|
SPACE=$(df --output=avail -B 1 "${DIR}" | tail -n 1)
|
||||||
|
|
||||||
|
if (( REQ > SPACE )); then
|
||||||
|
error "Not enough free space to resize ${DISK_DESC} to ${DISK_SPACE} .."
|
||||||
|
error "Specify a smaller size or disable preallocation with ALLOCATE=N." && exit 84
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Resize file by allocating more space
|
||||||
|
if ! fallocate -l "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
if ! truncate -s "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
error "Could not resize ${DISK_DESC} file (${DISK_FILE}) to ${DISK_SPACE} .." && exit 85
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "${DISK_FILE}" ]; then
|
||||||
|
|
||||||
|
if [[ "${ALLOCATE}" == [Nn]* ]]; then
|
||||||
|
|
||||||
|
# Create an empty file
|
||||||
|
if ! truncate -s "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
rm -f "${DISK_FILE}"
|
||||||
|
error "Could not create a file for ${DISK_DESC} (${DISK_FILE})" && exit 87
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
# Check free diskspace
|
||||||
|
SPACE=$(df --output=avail -B 1 "${DIR}" | tail -n 1)
|
||||||
|
|
||||||
|
if (( DATA_SIZE > SPACE )); then
|
||||||
|
error "Not enough free space to create ${DISK_DESC} of ${DISK_SPACE} .."
|
||||||
|
error "Specify a smaller size or disable preallocation with ALLOCATE=N." && exit 86
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create an empty file
|
||||||
|
if ! fallocate -l "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
if ! truncate -s "${DISK_SPACE}" "${DISK_FILE}"; then
|
||||||
|
rm -f "${DISK_FILE}"
|
||||||
|
error "Could not create a file for ${DISK_DESC} (${DISK_FILE}) of ${DISK_SPACE} .." && exit 87
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
DISK_OPTS="${DISK_OPTS} \
|
||||||
|
-device virtio-scsi-pci,id=hw-${DISK_ID},bus=pcie.0,addr=${DISK_ADDRESS} \
|
||||||
|
-drive file=${DISK_FILE},if=none,id=drive-${DISK_ID},format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
||||||
|
-device scsi-hd,bus=hw-${DISK_ID}.0,channel=0,scsi-id=0,lun=0,drive=drive-${DISK_ID},id=${DISK_ID},rotation_rate=${DISK_ROTATION},bootindex=${DISK_INDEX}"
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
DISK1_FILE="${STORAGE}/data.img"
|
||||||
|
|
||||||
|
if [[ ! -f "${DISK1_FILE}" ]] && [[ -f "${STORAGE}/data${DISK_SIZE}.img" ]]; then
|
||||||
|
# Fallback for legacy installs
|
||||||
|
mv "${STORAGE}/data${DISK_SIZE}.img" "${DISK1_FILE}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DISK2_FILE="/storage2/data2.img"
|
||||||
|
|
||||||
|
if [ ! -f "${DISK2_FILE}" ]; then
|
||||||
|
# Fallback for legacy installs
|
||||||
|
FALLBACK="/storage2/data.img"
|
||||||
|
if [[ -f "${DISK1_FILE}" ]] && [[ -f "${FALLBACK}" ]]; then
|
||||||
|
SIZE1=$(stat -c%s "${FALLBACK}")
|
||||||
|
SIZE2=$(stat -c%s "${DISK1_FILE}")
|
||||||
|
if [[ SIZE1 -ne SIZE2 ]]; then
|
||||||
|
mv "${FALLBACK}" "${DISK2_FILE}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
DISK3_FILE="/storage3/data3.img"
|
||||||
|
|
||||||
|
if [ ! -f "${DISK3_FILE}" ]; then
|
||||||
|
# Fallback for legacy installs
|
||||||
|
FALLBACK="/storage3/data.img"
|
||||||
|
if [[ -f "${DISK1_FILE}" ]] && [[ -f "${FALLBACK}" ]]; then
|
||||||
|
SIZE1=$(stat -c%s "${FALLBACK}")
|
||||||
|
SIZE2=$(stat -c%s "${DISK1_FILE}")
|
||||||
|
if [[ SIZE1 -ne SIZE2 ]]; then
|
||||||
|
mv "${FALLBACK}" "${DISK3_FILE}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
DISK4_FILE="/storage4/data4.img"
|
||||||
|
DISK5_FILE="/storage5/data5.img"
|
||||||
|
DISK6_FILE="/storage6/data6.img"
|
||||||
|
|
||||||
|
: ${DISK2_SIZE:=''}
|
||||||
|
: ${DISK3_SIZE:=''}
|
||||||
|
: ${DISK4_SIZE:=''}
|
||||||
|
: ${DISK5_SIZE:=''}
|
||||||
|
: ${DISK6_SIZE:=''}
|
||||||
|
|
||||||
|
addDisk "userdata" "${DISK1_FILE}" "disk" "${DISK_SIZE}" "3" "0xc"
|
||||||
|
addDisk "userdata2" "${DISK2_FILE}" "disk2" "${DISK2_SIZE}" "4" "0xd"
|
||||||
|
addDisk "userdata3" "${DISK3_FILE}" "disk3" "${DISK3_SIZE}" "5" "0xe"
|
||||||
|
addDisk "userdata4" "${DISK4_FILE}" "disk4" "${DISK4_SIZE}" "9" "0x7"
|
||||||
|
addDisk "userdata5" "${DISK5_FILE}" "disk5" "${DISK5_SIZE}" "10" "0x8"
|
||||||
|
addDisk "userdata6" "${DISK6_FILE}" "disk6" "${DISK6_SIZE}" "11" "0x9"
|
||||||
|
|
||||||
|
addDevice () {
|
||||||
|
|
||||||
|
local DISK_ID=$1
|
||||||
|
local DISK_DEV=$2
|
||||||
|
local DISK_INDEX=$3
|
||||||
|
local DISK_ADDRESS=$4
|
||||||
|
|
||||||
|
[ -z "${DISK_DEV}" ] && return 0
|
||||||
|
[ ! -b "${DISK_DEV}" ] && error "Device ${DISK_DEV} cannot be found! Please add it to the 'devices' section of your compose file." && exit 55
|
||||||
|
|
||||||
|
DISK_OPTS="${DISK_OPTS} \
|
||||||
|
-device virtio-scsi-pci,id=hw-${DISK_ID},bus=pcie.0,addr=${DISK_ADDRESS} \
|
||||||
|
-drive file=${DISK_DEV},if=none,id=drive-${DISK_ID},format=raw,cache=${DISK_CACHE},aio=${DISK_IO},discard=${DISK_DISCARD},detect-zeroes=on \
|
||||||
|
-device scsi-hd,bus=hw-${DISK_ID}.0,channel=0,scsi-id=0,lun=0,drive=drive-${DISK_ID},id=${DISK_ID},rotation_rate=${DISK_ROTATION},bootindex=${DISK_INDEX}"
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
: ${DEVICE:=''} # Docker variable to passthrough a block device, like /dev/vdc1.
|
||||||
|
: ${DEVICE2:=''}
|
||||||
|
: ${DEVICE3:=''}
|
||||||
|
: ${DEVICE4:=''}
|
||||||
|
: ${DEVICE5:=''}
|
||||||
|
: ${DEVICE6:=''}
|
||||||
|
|
||||||
|
addDevice "userdata7" "${DEVICE}" "6" "0xf"
|
||||||
|
addDevice "userdata8" "${DEVICE2}" "7" "0x5"
|
||||||
|
addDevice "userdata9" "${DEVICE3}" "8" "0x6"
|
||||||
|
addDevice "userdata4" "${DEVICE4}" "9" "0x7"
|
||||||
|
addDevice "userdata5" "${DEVICE5}" "10" "0x8"
|
||||||
|
addDevice "userdata6" "${DEVICE6}" "11" "0x9"
|
||||||
|
|
||||||
|
return 0
|
||||||
@@ -4,14 +4,16 @@ set -Eeuo pipefail
|
|||||||
echo "❯ Starting Virtual DSM for Docker v${VERSION}..."
|
echo "❯ Starting Virtual DSM for Docker v${VERSION}..."
|
||||||
echo "❯ For support visit https://github.com/vdsm/virtual-dsm/"
|
echo "❯ For support visit https://github.com/vdsm/virtual-dsm/"
|
||||||
|
|
||||||
. /run/reset.sh # Initialize system
|
cd /run
|
||||||
. /run/install.sh # Run installation
|
|
||||||
. /run/disk.sh # Initialize disks
|
. reset.sh # Initialize system
|
||||||
. /run/network.sh # Initialize network
|
. install.sh # Run installation
|
||||||
. /run/gpu.sh # Initialize graphics
|
. disk.sh # Initialize disks
|
||||||
. /run/serial.sh # Initialize serialport
|
. network.sh # Initialize network
|
||||||
. /run/power.sh # Configure shutdown
|
. gpu.sh # Initialize graphics
|
||||||
. /run/config.sh # Configure arguments
|
. serial.sh # Initialize serialport
|
||||||
|
. power.sh # Configure shutdown
|
||||||
|
. config.sh # Configure arguments
|
||||||
|
|
||||||
trap - ERR
|
trap - ERR
|
||||||
|
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
STORAGE="/storage"
|
: ${DEV:='Y'} # Controls whether device nodes are created.
|
||||||
[ ! -d "$STORAGE" ] && error "Storage folder (${STORAGE}) not found!" && exit 13
|
|
||||||
|
|
||||||
if [ -f "$STORAGE"/dsm.ver ]; then
|
if [ -f "$STORAGE"/dsm.ver ]; then
|
||||||
BASE=$(cat "${STORAGE}/dsm.ver")
|
BASE=$(cat "${STORAGE}/dsm.ver")
|
||||||
@@ -11,6 +10,7 @@ else
|
|||||||
BASE="DSM_VirtualDSM_42962"
|
BASE="DSM_VirtualDSM_42962"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
: ${URL:=''}
|
||||||
[ -n "$URL" ] && BASE=$(basename "$URL" .pat)
|
[ -n "$URL" ] && BASE=$(basename "$URL" .pat)
|
||||||
|
|
||||||
if [[ -f "$STORAGE/$BASE.boot.img" ]] && [[ -f "$STORAGE/$BASE.system.img" ]]; then
|
if [[ -f "$STORAGE/$BASE.boot.img" ]] && [[ -f "$STORAGE/$BASE.system.img" ]]; then
|
||||||
@@ -109,8 +109,14 @@ if [ -f "${RDC}" ]; then
|
|||||||
{ xz -dc <"$RDC" >"$TMP/rd" 2>/dev/null; rc=$?; } || :
|
{ xz -dc <"$RDC" >"$TMP/rd" 2>/dev/null; rc=$?; } || :
|
||||||
(( rc != 1 )) && error "Failed to unxz $RDC, reason $rc" && exit 91
|
(( rc != 1 )) && error "Failed to unxz $RDC, reason $rc" && exit 91
|
||||||
|
|
||||||
{ (cd "$TMP" && cpio -idm <"$TMP/rd" 2>/dev/null); rc=$?; } || :
|
if [[ "${DEV}" == [Nn]* ]]; then
|
||||||
(( rc != 0 )) && error "Failed to cpio $RDC, reason $rc" && exit 92
|
# Exclude dev/ from cpio extract
|
||||||
|
{ (cd "$TMP" && cpio -it < "$TMP/rd" | grep -Ev 'dev/' | while read -r entry; do cpio -idm "$entry" < "$TMP/rd" 2>/dev/null; done); rc=$?; } || :
|
||||||
|
(( rc != 0 )) && error "Failed to extract $RDC, reason $rc" && exit 92
|
||||||
|
else
|
||||||
|
{ (cd "$TMP" && cpio -idm <"$TMP/rd" 2>/dev/null); rc=$?; } || :
|
||||||
|
(( rc != 0 )) && error "Failed to cpio $RDC, reason $rc" && exit 92
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p /run/extract
|
mkdir -p /run/extract
|
||||||
for file in $TMP/usr/lib/libcurl.so.4 \
|
for file in $TMP/usr/lib/libcurl.so.4 \
|
||||||
@@ -202,8 +208,6 @@ BOOT=$(find "$TMP" -name "*.bin.zip")
|
|||||||
BOOT=$(echo "$BOOT" | head -c -5)
|
BOOT=$(echo "$BOOT" | head -c -5)
|
||||||
unzip -q -o "$BOOT".zip -d "$TMP"
|
unzip -q -o "$BOOT".zip -d "$TMP"
|
||||||
|
|
||||||
[[ "${ALLOCATE}" == [Zz]* ]] && info "Install: Allocating diskspace..."
|
|
||||||
|
|
||||||
SYSTEM="$TMP/sys.img"
|
SYSTEM="$TMP/sys.img"
|
||||||
SYSTEM_SIZE=4954537983
|
SYSTEM_SIZE=4954537983
|
||||||
|
|
||||||
@@ -217,11 +221,6 @@ if ! fallocate -l "${SYSTEM_SIZE}" "${SYSTEM}"; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${ALLOCATE}" == [Zz]* ]]; then
|
|
||||||
info "Install: Preallocating 4 GB of diskspace..."
|
|
||||||
dd if=/dev/urandom of="${SYSTEM}" count="${SYSTEM_SIZE}" bs=1M iflag=count_bytes status=none
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if file exists
|
# Check if file exists
|
||||||
[ ! -f "${SYSTEM}" ] && error "System disk does not exist ($SYSTEM)" && exit 89
|
[ ! -f "${SYSTEM}" ] && error "System disk does not exist ($SYSTEM)" && exit 89
|
||||||
|
|
||||||
@@ -249,7 +248,13 @@ MOUNT="$TMP/system"
|
|||||||
rm -rf "$MOUNT" && mkdir -p "$MOUNT"
|
rm -rf "$MOUNT" && mkdir -p "$MOUNT"
|
||||||
|
|
||||||
mv "$HDA.tgz" "$HDA.txz"
|
mv "$HDA.tgz" "$HDA.txz"
|
||||||
tar xpfJ "$HDA.txz" --absolute-names -C "$MOUNT/"
|
|
||||||
|
if [[ "${DEV}" == [Nn]* ]]; then
|
||||||
|
# Exclude dev/ from tar extract
|
||||||
|
tar xpfJ "$HDA.txz" --absolute-names --exclude="dev" -C "$MOUNT/"
|
||||||
|
else
|
||||||
|
tar xpfJ "$HDA.txz" --absolute-names -C "$MOUNT/"
|
||||||
|
fi
|
||||||
|
|
||||||
[ -d "$PKG" ] && mv "$PKG/" "$MOUNT/.SynoUpgradePackages/"
|
[ -d "$PKG" ] && mv "$PKG/" "$MOUNT/.SynoUpgradePackages/"
|
||||||
rm -f "$MOUNT/.SynoUpgradePackages/ActiveInsight-"*
|
rm -f "$MOUNT/.SynoUpgradePackages/ActiveInsight-"*
|
||||||
@@ -5,12 +5,11 @@ info () { echo -e "\E[1;34m❯ \E[1;36m$1\E[0m" ; }
|
|||||||
error () { echo -e >&2 "\E[1;31m❯ ERROR: $1\E[0m" ; }
|
error () { echo -e >&2 "\E[1;31m❯ ERROR: $1\E[0m" ; }
|
||||||
trap 'error "Status $? while: ${BASH_COMMAND} (line $LINENO/$BASH_LINENO)"' ERR
|
trap 'error "Status $? while: ${BASH_COMMAND} (line $LINENO/$BASH_LINENO)"' ERR
|
||||||
|
|
||||||
[ ! -f "/run/run.sh" ] && error "Script must run inside Docker container!" && exit 11
|
[ ! -f "/run/entry.sh" ] && error "Script must run inside Docker container!" && exit 11
|
||||||
[ "$(id -u)" -ne "0" ] && error "Script must be executed with root privileges." && exit 12
|
[ "$(id -u)" -ne "0" ] && error "Script must be executed with root privileges." && exit 12
|
||||||
|
|
||||||
# Docker environment variables
|
# Docker environment variables
|
||||||
|
|
||||||
: ${URL:=''} # URL of the PAT file
|
|
||||||
: ${GPU:='N'} # Enable GPU passthrough
|
: ${GPU:='N'} # Enable GPU passthrough
|
||||||
: ${DEBUG:='N'} # Enable debugging mode
|
: ${DEBUG:='N'} # Enable debugging mode
|
||||||
: ${ALLOCATE:='Y'} # Preallocate diskspace
|
: ${ALLOCATE:='Y'} # Preallocate diskspace
|
||||||
@@ -32,4 +31,9 @@ rm -f /run/dsm.url
|
|||||||
rm -f /run/qemu.pid
|
rm -f /run/qemu.pid
|
||||||
rm -f /run/qemu.count
|
rm -f /run/qemu.count
|
||||||
|
|
||||||
|
# Check folder
|
||||||
|
|
||||||
|
STORAGE="/storage"
|
||||||
|
[ ! -d "$STORAGE" ] && error "Storage folder (${STORAGE}) not found!" && exit 13
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
@@ -35,17 +35,34 @@ HOST_ARGS+=("-cpu_arch=${HOST_CPU}")
|
|||||||
|
|
||||||
if [[ "${HOST_DEBUG}" == [Yy1]* ]]; then
|
if [[ "${HOST_DEBUG}" == [Yy1]* ]]; then
|
||||||
set -x
|
set -x
|
||||||
./run/host.bin "${HOST_ARGS[@]}" &
|
./host.bin "${HOST_ARGS[@]}" &
|
||||||
{ set +x; } 2>/dev/null
|
{ set +x; } 2>/dev/null
|
||||||
echo
|
echo
|
||||||
else
|
else
|
||||||
./run/host.bin "${HOST_ARGS[@]}" >/dev/null &
|
./host.bin "${HOST_ARGS[@]}" >/dev/null &
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
cnt=0
|
||||||
|
sleep 0.2
|
||||||
|
|
||||||
|
while ! nc -z -w1 127.0.0.1 2210 > /dev/null 2>&1; do
|
||||||
|
sleep 0.1
|
||||||
|
cnt=$((cnt + 1))
|
||||||
|
(( cnt > 20 )) && error "Failed to connect to qemu-host.." && exit 58
|
||||||
|
done
|
||||||
|
|
||||||
|
cnt=0
|
||||||
|
|
||||||
|
while ! nc -z -w1 127.0.0.1 12345 > /dev/null 2>&1; do
|
||||||
|
sleep 0.1
|
||||||
|
cnt=$((cnt + 1))
|
||||||
|
(( cnt > 20 )) && error "Failed to connect to qemu-host.." && exit 59
|
||||||
|
done
|
||||||
|
|
||||||
# Configure serial ports
|
# Configure serial ports
|
||||||
|
|
||||||
SERIAL_OPTS="\
|
SERIAL_OPTS="\
|
||||||
-serial mon:stdio \
|
-serial mon:stdio \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pcie.0,addr=0x3 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pcie.0,addr=0x3 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
-device isa-serial,chardev=charserial0,id=serial0 \
|
-device isa-serial,chardev=charserial0,id=serial0 \
|
||||||
Reference in New Issue
Block a user