mirror of
https://github.com/dockur/windows.git
synced 2025-10-27 03:15:49 +00:00
Merge branch 'configure_guest_network_interface_when_bridge' into 'master'
add static network interface configuration when network is bridge See merge request low-level-hacks/third-party-build/dockur_windows!3
This commit is contained in:
commit
e77b22aaa1
9 changed files with 211 additions and 158 deletions
|
|
@ -14,13 +14,13 @@ services:
|
|||
USERNAME: "bill"
|
||||
PASSWORD: "gates"
|
||||
DISK_FMT: "qcow2"
|
||||
NETWORK: "Y"
|
||||
DEBUG: "Y"
|
||||
devices:
|
||||
- /dev/kvm
|
||||
- /dev/net/tun
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
ports:
|
||||
- 8006:8006
|
||||
stop_grace_period: 2m
|
||||
volumes:
|
||||
- ./scripts:/oem
|
||||
|
|
@ -46,6 +46,4 @@ services:
|
|||
- /dev/net/tun
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
ports:
|
||||
- 8006:8006
|
||||
stop_grace_period: 2m
|
||||
|
|
|
|||
|
|
@ -4,7 +4,15 @@ set -Eeuo pipefail
|
|||
source env.sh
|
||||
|
||||
echo "start to build and install windows"
|
||||
docker compose up windows-build -d --wait --build
|
||||
docker compose up windows-build -d --build
|
||||
|
||||
echo "streaming logs..."
|
||||
docker logs -f windows-build | tee windows-build.log &
|
||||
|
||||
echo "waiting for windows-build container to be healthy..."
|
||||
while [[ "$(docker inspect --format='{{.State.Health.Status}}' windows-build 2>/dev/null)" != "healthy" ]]; do
|
||||
sleep 2
|
||||
done
|
||||
|
||||
echo "windows installed, now stop container"
|
||||
docker stop windows-build
|
||||
|
|
@ -13,7 +21,15 @@ echo "commit all the changes"
|
|||
docker commit windows-build "$IMAGE_NAME:$IMAGE_VERSION"
|
||||
docker images
|
||||
|
||||
docker push "$IMAGE_NAME:$IMAGE_VERSION"
|
||||
|
||||
echo "start container with windows installed"
|
||||
docker compose up windows-installed -d --wait
|
||||
docker compose up windows-installed -d
|
||||
|
||||
echo "streaming logs..."
|
||||
docker logs -f windows-installed | tee windows-installed.log &
|
||||
|
||||
echo "waiting for windows-installed container to be healthy..."
|
||||
while [[ "$(docker inspect --format='{{.State.Health.Status}}' windows-installed 2>/dev/null)" != "healthy" ]]; do
|
||||
sleep 2
|
||||
done
|
||||
|
||||
docker push "$IMAGE_NAME:$IMAGE_VERSION"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
: "${WIDTH:=""}"
|
||||
: "${HEIGHT:=""}"
|
||||
|
|
|
|||
21
src/entry.sh
Normal file → Executable file
21
src/entry.sh
Normal file → Executable file
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
: "${BOOT_MODE:="windows"}"
|
||||
|
||||
|
|
@ -26,14 +26,27 @@ trap - ERR
|
|||
version=$(qemu-system-x86_64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }')
|
||||
info "Booting ${APP}${BOOT_DESC} using QEMU v$version..."
|
||||
|
||||
{ qemu-system-x86_64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :
|
||||
{
|
||||
qemu-system-x86_64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"
|
||||
rc=$?
|
||||
} || :
|
||||
((rc != 0)) && error "$(<"$QEMU_LOG")" && exit 15
|
||||
|
||||
terminal
|
||||
( sleep 30; boot ) &
|
||||
(
|
||||
sleep 30
|
||||
boot
|
||||
configure_guest_network_interface
|
||||
info "Windows started succesfully, you can now connect using RDP"
|
||||
if [[ "${NETWORK,,}" != "bridge"* ]]; then
|
||||
info "or visit http://localhost:8006/ to view the screen..."
|
||||
fi
|
||||
touch "$STORAGE/ready"
|
||||
) &
|
||||
tail -fn +0 "$QEMU_LOG" 2>/dev/null &
|
||||
cat "$QEMU_TERM" 2>/dev/null | tee "$QEMU_PTY" &
|
||||
wait $! || :
|
||||
|
||||
sleep 1 & wait $!
|
||||
sleep 1 &
|
||||
wait $!
|
||||
[ ! -f "$QEMU_END" ] && finish 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
TMP="$STORAGE/tmp"
|
||||
DIR="$TMP/unpack"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
handle_curl_error() {
|
||||
|
||||
|
|
|
|||
203
src/network.sh
Normal file → Executable file
203
src/network.sh
Normal file → Executable file
|
|
@ -1,11 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
# Docker environment variables
|
||||
|
||||
: "${MAC:=""}"
|
||||
: "${DHCP:="N"}"
|
||||
: "${NETWORK:="Y"}"
|
||||
: "${NETWORK:="bridge"}"
|
||||
: "${USER_PORTS:=""}"
|
||||
: "${HOST_PORTS:=""}"
|
||||
: "${ADAPTER:="virtio-net-pci"}"
|
||||
|
|
@ -20,11 +20,78 @@ set -Eeuo pipefail
|
|||
: "${DNSMASQ:="/usr/sbin/dnsmasq"}"
|
||||
: "${DNSMASQ_CONF_DIR:="/etc/dnsmasq.d"}"
|
||||
|
||||
ETH_COUNT=$(ls /sys/class/net | grep -E '^eth[0-9]+$' | wc -l)
|
||||
ADD_ERR="Please add the following setting to your container:"
|
||||
|
||||
# ######################################
|
||||
# Functions
|
||||
# ######################################
|
||||
find_free_ip() {
|
||||
local current_ip="$1"
|
||||
local mask="$2"
|
||||
|
||||
# Get network prefix
|
||||
IFS='.' read -r i1 i2 i3 i4 <<<"$current_ip"
|
||||
IFS='.' read -r m1 m2 m3 m4 <<<"$(ip -o -f inet addr show | awk '/scope global/ {print $4}' | cut -d'/' -f2)"
|
||||
|
||||
network_ip=$((i1 & m1)).$((i2 & m2)).$((i3 & m3)).0
|
||||
base_ip="$i1.$i2.$i3"
|
||||
|
||||
# Iterate over available IPs
|
||||
for i in {2..254}; do
|
||||
new_ip="$base_ip.$i"
|
||||
if [[ "$new_ip" != "$current_ip" ]] && ! ping -c 1 -W 1 "$new_ip" &>/dev/null; then
|
||||
echo "$new_ip"
|
||||
return
|
||||
fi
|
||||
done
|
||||
|
||||
echo "No free IP found"
|
||||
}
|
||||
|
||||
configure_guest_network_interface() {
|
||||
if [[ "${NETWORK,,}" == "bridge"* ]]; then
|
||||
for ((i = 0; i < ETH_COUNT; i++)); do
|
||||
HOST_INTERFACE="dockerbridge$i"
|
||||
CURRENT_IP=$(ip addr show $HOST_INTERFACE | grep -oP 'inet \K[\d.]+')
|
||||
MASK="$(ip -4 addr show $HOST_INTERFACE | awk '/inet / {print $2}' | cut -d'/' -f2)"
|
||||
|
||||
if [ -z "$CURRENT_IP" ]; then
|
||||
echo "Error: Unable to retrieve the current IP address of $HOST_INTERFACE."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Current Host IP: $CURRENT_IP"
|
||||
|
||||
IFS='.' read -r -a ip_parts <<<"$CURRENT_IP"
|
||||
NEW_HOST_IP=$(find_free_ip "$CURRENT_IP" "$MASK")
|
||||
GW="${ip_parts[0]}.${ip_parts[1]}.${ip_parts[2]}.1"
|
||||
|
||||
echo "New Host IP: $NEW_HOST_IP"
|
||||
|
||||
ip addr del $CURRENT_IP/$MASK dev $HOST_INTERFACE
|
||||
ip addr add $NEW_HOST_IP/$MASK dev $HOST_INTERFACE
|
||||
|
||||
ip link set $HOST_INTERFACE down
|
||||
ip link set $HOST_INTERFACE up
|
||||
|
||||
route add default gw $GW
|
||||
|
||||
if [ $i -eq 0 ]; then
|
||||
INTERFACE_NAME="Ethernet"
|
||||
else
|
||||
IDX=$((1 + i))
|
||||
INTERFACE_NAME="Ethernet $IDX"
|
||||
fi
|
||||
|
||||
echo -e '{"execute": "guest-exec", "arguments": {"path": "C:\\\\Windows\\\\System32\\\\netsh.exe", "capture-output": true, "arg": ["interface", "ipv4", "set", "address", "'"$INTERFACE_NAME"'", "static", "'$CURRENT_IP'", "255.255.255.0", "'$GW'"]}}' | nc -U /tmp/qga.sock -w 5
|
||||
echo -e '{"execute": "guest-exec", "arguments": {"path": "C:\\\\Windows\\\\System32\\\\netsh.exe", "capture-output": true, "arg": ["interface", "ipv4", "add", "dnsservers", "'"$INTERFACE_NAME"'", "1.1.1.1", "index=1"]}}' | nc -U /tmp/qga.sock -w 5
|
||||
done
|
||||
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
configureDHCP() {
|
||||
|
||||
|
|
@ -321,10 +388,12 @@ configureBridge() {
|
|||
fi
|
||||
fi
|
||||
|
||||
# Create a bridge with a static IP for the VM guest
|
||||
|
||||
for ((i = 0; i < ETH_COUNT; i++)); do
|
||||
DOCKER_BRIDGE="dockerbridge$i"
|
||||
NET_DEV="eth$i"
|
||||
NET_TAP="qemu$i"
|
||||
{
|
||||
ip link add dev dockerbridge type bridge
|
||||
ip link add dev $DOCKER_BRIDGE type bridge
|
||||
rc=$?
|
||||
} || :
|
||||
|
||||
|
|
@ -332,114 +401,59 @@ configureBridge() {
|
|||
error "Failed to create bridge. $ADD_ERR --cap-add NET_ADMIN" && return 1
|
||||
fi
|
||||
|
||||
# {
|
||||
# ip link add dev dockerbridge_2 type bridge
|
||||
# rc=$?
|
||||
# } || :
|
||||
# if ((rc != 0)); then
|
||||
# error "Failed to create bridge. $ADD_ERR --cap-add NET_ADMIN" && return 1
|
||||
# fi
|
||||
|
||||
# We need freshly created bridge to have IP address of the container
|
||||
# For this reason we need to migrate IP from eth0 to dockerbridge.
|
||||
for addr in $(ip --json addr show dev $VM_NET_DEV | jq -c '.[0].addr_info[] | select(.family == "inet")'); do
|
||||
for addr in $(ip --json addr show dev $NET_DEV | jq -c '.[0].addr_info[] | select(.family == "inet")'); do
|
||||
cidr_addr=$(echo $addr | jq -r '[ .local, .prefixlen|tostring] | join("/")')
|
||||
if ! ip addr add dev dockerbridge $cidr_addr; then
|
||||
error "Failed to add address for dockerbridge interface"
|
||||
if ! ip addr add dev $DOCKER_BRIDGE $cidr_addr; then
|
||||
error "Failed to add address for $DOCKER_BRIDGE interface"
|
||||
exit 30
|
||||
fi
|
||||
done
|
||||
if ! ip addr flush dev $VM_NET_DEV; then
|
||||
error "Failed to clear $VM_NET_DEV interface addresses"
|
||||
|
||||
if ! ip addr flush dev $NET_DEV; then
|
||||
error "Failed to clear $NET_DEV interface addresses"
|
||||
exit 30
|
||||
fi
|
||||
|
||||
while ! ip link set dockerbridge up; do
|
||||
while ! ip link set $DOCKER_BRIDGE up; do
|
||||
info "Waiting for IP address to become available..."
|
||||
sleep 2
|
||||
done
|
||||
|
||||
# # We need freshly created bridge to have IP address of the container
|
||||
# # For this reason we need to migrate IP from eth0 to dockerbridge.
|
||||
# for addr in $(ip --json addr show dev $VM_NET_DEV_2 | jq -c '.[0].addr_info[] | select(.family == "inet")'); do
|
||||
# cidr_addr=$(echo $addr | jq -r '[ .local, .prefixlen|tostring] | join("/")')
|
||||
# if ! ip addr add dev dockerbridge_2 $cidr_addr; then
|
||||
# error "Failed to add address for dockerbridge_2 interface"
|
||||
# exit 30
|
||||
# fi
|
||||
# done
|
||||
# if ! ip addr flush dev $VM_NET_DEV_2; then
|
||||
# error "Failed to clear $VM_NET_DEV_2 interface addresses"
|
||||
# exit 30
|
||||
# fi
|
||||
|
||||
# while ! ip link set dockerbridge_2 up; do
|
||||
# info "Waiting for IP address to become available..."
|
||||
# sleep 2
|
||||
# done
|
||||
|
||||
# QEMU Works with taps, set tap to the bridge created
|
||||
if ! ip tuntap add dev "$VM_NET_TAP" mode tap; then
|
||||
if ! ip tuntap add dev "$NET_TAP" mode tap; then
|
||||
error "$tuntap" && return 1
|
||||
fi
|
||||
|
||||
while ! ip link set "$VM_NET_TAP" up promisc on; do
|
||||
while ! ip link set "$NET_TAP" up promisc on; do
|
||||
info "Waiting for TAP to become available..."
|
||||
sleep 2
|
||||
done
|
||||
|
||||
if ! ip link set dev "$VM_NET_TAP" master dockerbridge; then
|
||||
if ! ip link set dev "$NET_TAP" master $DOCKER_BRIDGE; then
|
||||
error "Failed to set IP link!" && return 1
|
||||
fi
|
||||
|
||||
if ! ip link set dev "$VM_NET_DEV" master dockerbridge; then
|
||||
if ! ip link set dev "$NET_DEV" master $DOCKER_BRIDGE; then
|
||||
error "Failed to attach docker interface to bridge"
|
||||
fi
|
||||
|
||||
# if ! ip tuntap add dev "$VM_NET_TAP_2" mode tap; then
|
||||
# error "$tuntap" && return 1
|
||||
# fi
|
||||
|
||||
# while ! ip link set "$VM_NET_TAP_2" up promisc on; do
|
||||
# info "Waiting for TAP to become available..."
|
||||
# sleep 2
|
||||
# done
|
||||
|
||||
# if ! ip link set dev "$VM_NET_TAP_2" master dockerbridge_2; then
|
||||
# error "Failed to set IP link!" && return 1
|
||||
# fi
|
||||
|
||||
# add initial default route as well
|
||||
if ! ip route add default dev dockerbridge via ${VM_NET_IP%.*}.1; then
|
||||
error "Failed to setup default route" && return 10
|
||||
fi
|
||||
|
||||
NET_OPTS="-netdev tap,id=hostnet0,ifname=$VM_NET_TAP"
|
||||
|
||||
NET_OPTS+=" -netdev tap,id=hostnet$i,ifname=$NET_TAP"
|
||||
if [ -c /dev/vhost-net ]; then
|
||||
{
|
||||
exec 40>>/dev/vhost-net
|
||||
fd=$((40 + i))
|
||||
eval "exec $fd>>/dev/vhost-net"
|
||||
rc=$?
|
||||
} 2>/dev/null || :
|
||||
((rc == 0)) && NET_OPTS+=",vhost=on,vhostfd=40"
|
||||
if ((rc == 0)); then
|
||||
NET_OPTS+=",vhost=on,vhostfd=$fd"
|
||||
fi
|
||||
fi
|
||||
|
||||
NET_OPTS+=",script=no,downscript=no "
|
||||
|
||||
# NET_OPTS+=" -netdev tap,id=hostnet1,ifname=$VM_NET_TAP_2"
|
||||
|
||||
# if [ -c /dev/vhost-net ]; then
|
||||
# {
|
||||
# exec 41>>/dev/vhost-net
|
||||
# rc=$?
|
||||
# } 2>/dev/null || :
|
||||
# ((rc == 0)) && NET_OPTS+=",vhost=on,vhostfd=41"
|
||||
# fi
|
||||
|
||||
# NET_OPTS+=",script=no,downscript=no"
|
||||
done
|
||||
|
||||
return 0
|
||||
|
||||
}
|
||||
|
||||
closeNetwork() {
|
||||
|
|
@ -465,11 +479,21 @@ closeNetwork() {
|
|||
|
||||
[[ "${NETWORK,,}" == "user"* ]] && return 0
|
||||
|
||||
if [[ "${NETWORK,,}" == "bridge"* ]]; then
|
||||
for ((i = 0; i < ETH_COUNT; i++)); do
|
||||
ip link set "qemu$i" down promisc off || true
|
||||
ip link delete "qemu$i" || true
|
||||
|
||||
ip link set dockerbridge$i down || true
|
||||
ip link delete dockerbridge$i || true
|
||||
done
|
||||
else
|
||||
ip link set "$VM_NET_TAP" down promisc off || true
|
||||
ip link delete "$VM_NET_TAP" || true
|
||||
|
||||
ip link set dockerbridge down || true
|
||||
ip link delete dockerbridge || true
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
|
|
@ -613,16 +637,13 @@ else
|
|||
if ! configureBridge; then
|
||||
|
||||
error "Failed to setup bridge networking"
|
||||
for ((i = 0; i < ETH_COUNT; i++)); do
|
||||
ip link set "$VM_NET_TAP$i" down promisc off &>null || true
|
||||
ip link delete "$VM_NET_TAP$i" &>null || true
|
||||
|
||||
ip link set "$VM_NET_TAP" down promisc off &>null || true
|
||||
ip link delete "$VM_NET_TAP" &>null || true
|
||||
# ip link set "$VM_NET_TAP_2" down promisc off &>null || true
|
||||
# ip link delete "$VM_NET_TAP_2" &>null || true
|
||||
|
||||
ip link set dockerbridge down &>null || true
|
||||
ip link delete dockerbridge &>null || true
|
||||
# ip link set dockerbridge_2 down &>null || true
|
||||
# ip link delete dockerbridge_2 &>null || true
|
||||
ip link set dockerbridge$i down &>null || true
|
||||
ip link delete dockerbridge$i &>null || true
|
||||
done
|
||||
|
||||
exit 25
|
||||
fi
|
||||
|
|
@ -632,7 +653,13 @@ else
|
|||
fi
|
||||
|
||||
NET_OPTS+=" -device $ADAPTER,romfile=,netdev=hostnet0,mac=$VM_NET_MAC,id=net0"
|
||||
# NET_OPTS+=" -device $ADAPTER_2,romfile=,netdev=hostnet1,mac=$VM_NET_MAC_2,id=net1"
|
||||
|
||||
if [[ "${NETWORK,,}" == "bridge"* ]]; then
|
||||
for ((i = 1; i < ETH_COUNT; i++)); do
|
||||
MAC=$(printf "52:54:00:%02X:%02X:%02X" $((RANDOM % 256)) $((RANDOM % 256)) $((RANDOM % 256)))
|
||||
NET_OPTS+=" -device $ADAPTER,romfile=,netdev=hostnet$i,mac=$MAC,id=net$i"
|
||||
done
|
||||
fi
|
||||
|
||||
NET_OPTS+=" -device virtio-serial-pci,id=virtserial0,bus=pcie.0,addr=0x6"
|
||||
NET_OPTS+=" -chardev socket,id=qga0,path=/tmp/qga.sock,server=on,wait=off"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
# Configure QEMU for graceful shutdown
|
||||
|
||||
|
|
@ -17,7 +17,8 @@ rm -f "$QEMU_DIR/qemu.*"
|
|||
touch "$QEMU_LOG"
|
||||
|
||||
_trap() {
|
||||
func="$1" ; shift
|
||||
func="$1"
|
||||
shift
|
||||
for sig; do
|
||||
trap "$func $sig" "$sig"
|
||||
done
|
||||
|
|
@ -35,8 +36,6 @@ boot() {
|
|||
grep -Fq "BOOTMGR is missing" "$QEMU_PTY" && fail="y"
|
||||
fi
|
||||
if [ -z "$fail" ]; then
|
||||
info "Windows started succesfully, visit http://localhost:8006/ to view the screen..."
|
||||
touch "$STORAGE/ready"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
set -Eeuox pipefail
|
||||
|
||||
: "${SAMBA:="Y"}"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue