server-monitor-manager/tests/acceptance/three-server-mesh.sh

296 lines
11 KiB
Bash

#!/usr/bin/env bash
set -Eeuo pipefail
required=(curl jq openssl ssh nc base64)
for command_name in "${required[@]}"; do
command -v "$command_name" >/dev/null || {
echo "Missing required command: $command_name" >&2
exit 2
}
done
: "${HUB_SSH_HOST:?Set HUB_SSH_HOST}"
: "${HUB_SSH_USER:?Set HUB_SSH_USER}"
: "${SOURCE_SSH_HOST:?Set SOURCE_SSH_HOST}"
: "${SOURCE_SSH_USER:?Set SOURCE_SSH_USER}"
: "${HOME_WG_IP:?Set HOME_WG_IP}"
: "${SECOND_WG_IP:?Set SECOND_WG_IP}"
HUB_SSH_PORT="${HUB_SSH_PORT:-22}"
SOURCE_SSH_PORT="${SOURCE_SSH_PORT:-22}"
SOURCE_NODE_ID="${SOURCE_NODE_ID:-ai-agent}"
HOME_NODE_ID="${HOME_NODE_ID:-home}"
SECOND_NODE_ID="${SECOND_NODE_ID:-second}"
TARGET_PORT="${TARGET_PORT:-22}"
LINK_RECONCILIATION_SECONDS="${LINK_RECONCILIATION_SECONDS:-300}"
CONTROL_DEVICE_ID="acceptance-$(date +%s)"
INSTALLER_COMMAND="${INSTALLER_COMMAND:-sudo /usr/local/sbin/ochenstarik-server-monitor-manager.sh}"
WORK_DIRECTORY="$(mktemp -d)"
LINK_HOME_ID=''
LINK_SECOND_ID=''
cleanup() {
rm -rf "$WORK_DIRECTORY"
}
trap cleanup EXIT
ssh_options=(-o BatchMode=yes -o ConnectTimeout=10 -o StrictHostKeyChecking=accept-new)
if [[ -n "${SSH_IDENTITY_FILE:-}" ]]; then
ssh_options+=(-i "$SSH_IDENTITY_FILE")
fi
hub_ssh() {
ssh "${ssh_options[@]}" -p "$HUB_SSH_PORT" \
"$HUB_SSH_USER@$HUB_SSH_HOST" "$@"
}
source_ssh() {
ssh "${ssh_options[@]}" -p "$SOURCE_SSH_PORT" \
"$SOURCE_SSH_USER@$SOURCE_SSH_HOST" "$@"
}
probe_reachable() {
local ip="$1"
source_ssh "nc -z -w 5 '$ip' '$TARGET_PORT'"
}
expect_reachable() {
local ip="$1"
probe_reachable "$ip" || {
echo "Expected access from $SOURCE_NODE_ID to $ip:$TARGET_PORT" >&2
exit 1
}
}
probe_blocked() {
local ip="$1"
! probe_reachable "$ip"
}
expect_blocked() {
local ip="$1"
if ! probe_blocked "$ip"; then
echo "Unexpected access from $SOURCE_NODE_ID to $ip:$TARGET_PORT" >&2
exit 1
fi
}
probe_factual_status() {
local target="$1"
local expected="$2"
local command output
printf -v command '%q ' sudo /usr/local/libexec/ochenstarik-smm-policy-apply \
link-status "$SOURCE_NODE_ID" "$target" tcp "$TARGET_PORT"
output="$(hub_ssh "$command")"
[[ "$output" == "$expected" ]]
}
expect_factual_status() {
local target="$1"
local expected="$2"
if ! probe_factual_status "$target" "$expected"; then
local command output
printf -v command '%q ' sudo /usr/local/libexec/ochenstarik-smm-policy-apply \
link-status "$SOURCE_NODE_ID" "$target" tcp "$TARGET_PORT"
output="$(hub_ssh "$command")"
echo "Unexpected factual Link status for $SOURCE_NODE_ID -> $target: $output (expected $expected)" >&2
exit 1
fi
}
decode_base64url() {
local value="${1//-/+}"
value="${value//_/\/}"
case $((${#value} % 4)) in
2) value+='==' ;;
3) value+='=' ;;
1) echo 'Invalid base64url value' >&2; return 1 ;;
esac
printf '%s' "$value" | base64 --decode
}
echo '[1/12] Checking installed services on all three nodes'
hub_ssh "sudo systemctl is-active ochenstarik-smm-control.service >/dev/null"
source_ssh "sudo systemctl is-active ochenstarik-smm-agent.service >/dev/null"
echo '[2/12] Creating an isolated operator identity for this acceptance run'
device_code="$(hub_ssh "$INSTALLER_COMMAND control-device-code '$CONTROL_DEVICE_ID'" | tr -d '\r' | grep -o 'SMMDEV1-[A-Za-z0-9_-]*' | tail -n1)"
[[ -n "$device_code" ]] || { echo 'Hub did not return SMMDEV1 code' >&2; exit 1; }
decode_base64url "${device_code#SMMDEV1-}" >"$WORK_DIRECTORY/device.env"
control_url="$(sed -n 's/^URL=//p' "$WORK_DIRECTORY/device.env")"
token="$(sed -n 's/^TOKEN=//p' "$WORK_DIRECTORY/device.env")"
ca_base64="$(sed -n 's/^CA=//p' "$WORK_DIRECTORY/device.env")"
[[ "$control_url" == https://* && -n "$token" && -n "$ca_base64" ]] || {
echo 'Invalid SMMDEV1 payload' >&2
exit 1
}
printf '%s' "$ca_base64" | base64 --decode >"$WORK_DIRECTORY/ca.der"
openssl x509 -inform DER -in "$WORK_DIRECTORY/ca.der" -out "$WORK_DIRECTORY/ca.pem"
openssl ecparam -name prime256v1 -genkey -noout -out "$WORK_DIRECTORY/operator.key"
openssl req -new -sha256 -key "$WORK_DIRECTORY/operator.key" \
-subj "/CN=$CONTROL_DEVICE_ID" -out "$WORK_DIRECTORY/operator.csr"
jq -n \
--arg deviceId "$CONTROL_DEVICE_ID" \
--arg token "$token" \
--arg csr "$(cat "$WORK_DIRECTORY/operator.csr")" \
--arg idempotencyKey "$(cat /proc/sys/kernel/random/uuid)" \
'{deviceId:$deviceId,token:$token,certificateSigningRequestPem:$csr,idempotencyKey:$idempotencyKey}' \
>"$WORK_DIRECTORY/enroll.json"
curl --fail --silent --show-error --cacert "$WORK_DIRECTORY/ca.pem" \
-H 'Content-Type: application/json' --data-binary @"$WORK_DIRECTORY/enroll.json" \
"$control_url/api/v1/device-enroll" >"$WORK_DIRECTORY/enrollment.json"
jq -r '.certificatePem' "$WORK_DIRECTORY/enrollment.json" >"$WORK_DIRECTORY/operator.pem"
api_get() {
curl --fail --silent --show-error --cacert "$WORK_DIRECTORY/ca.pem" \
--cert "$WORK_DIRECTORY/operator.pem" --key "$WORK_DIRECTORY/operator.key" \
"$control_url$1"
}
api_post() {
local path="$1"
local body="$2"
curl --fail --silent --show-error --cacert "$WORK_DIRECTORY/ca.pem" \
--cert "$WORK_DIRECTORY/operator.pem" --key "$WORK_DIRECTORY/operator.key" \
-H 'Content-Type: application/json' --data-binary "$body" "$control_url$path"
}
create_link() {
local target="$1"
local ttl="$2"
api_post '/api/v1/control/links' "$(jq -cn \
--arg source "$SOURCE_NODE_ID" --arg target "$target" \
--argjson port "$TARGET_PORT" --argjson ttl "$ttl" \
--arg key "$(cat /proc/sys/kernel/random/uuid)" \
'{sourceNodeId:$source,targetNodeId:$target,protocol:"tcp",port:$port,ttlMinutes:$ttl,reason:"three-server acceptance",idempotencyKey:$key}')"
}
disable_link() {
local id="$1"
api_post "/api/v1/control/links/$id/disable" \
"$(jq -cn --arg key "$(cat /proc/sys/kernel/random/uuid)" '{idempotencyKey:$key}')"
}
echo '[3/12] Confirming all expected Agent identities are online'
agents="$(api_get '/api/v1/control/agents')"
for node in "$SOURCE_NODE_ID" "$HOME_NODE_ID" "$SECOND_NODE_ID"; do
jq -e --arg node "$node" '.[] | select(.nodeId == $node)' <<<"$agents" >/dev/null || {
echo "Control Hub does not contain Agent $node" >&2
exit 1
}
done
echo '[4/12] Creating independent Links to home and second server'
home_link="$(create_link "$HOME_NODE_ID" 0)"
second_link="$(create_link "$SECOND_NODE_ID" 0)"
LINK_HOME_ID="$(jq -r '.id' <<<"$home_link")"
LINK_SECOND_ID="$(jq -r '.id' <<<"$second_link")"
jq -e '.desiredState == "Active" and .actualState == "Active" and .lastError == null' <<<"$home_link" >/dev/null
jq -e '.desiredState == "Active" and .actualState == "Active" and .lastError == null' <<<"$second_link" >/dev/null
expect_factual_status "$HOME_NODE_ID" active
expect_factual_status "$SECOND_NODE_ID" active
echo '[5/12] Verifying routed access through both Links'
expect_reachable "$HOME_WG_IP"
expect_reachable "$SECOND_WG_IP"
echo '[6/12] Disabling only the second Link'
disable_link "$LINK_SECOND_ID" | jq -e \
'.desiredState == "Disabled" and .actualState == "Disabled" and .lastError == null' >/dev/null
expect_factual_status "$SECOND_NODE_ID" disabled
expect_reachable "$HOME_WG_IP"
expect_blocked "$SECOND_WG_IP"
echo '[7/12] Verifying automatic TTL expiration'
ttl_link="$(create_link "$SECOND_NODE_ID" 1)"
ttl_id="$(jq -r '.id' <<<"$ttl_link")"
expect_reachable "$SECOND_WG_IP"
deadline=$((SECONDS + 120))
while ((SECONDS < deadline)); do
state="$(api_get '/api/v1/control/links' | jq -r --arg id "$ttl_id" \
'.[] | select(.id == $id) | [.desiredState, .actualState, (.lastError // "")] | @tsv')"
[[ "$state" == $'Disabled\tDisabled\t' ]] && break
sleep 5
done
[[ "${state:-}" == $'Disabled\tDisabled\t' ]] || {
echo "TTL Link did not factually converge to Disabled: ${state:-missing}" >&2
exit 1
}
expect_factual_status "$SECOND_NODE_ID" disabled
expect_blocked "$SECOND_WG_IP"
expect_reachable "$HOME_WG_IP"
if [[ "${SMM_ACCEPT_RESTORE:-0}" == '1' ]]; then
echo '[8/12] Restoring the base firewall without restarting any Node'
hub_ssh 'sudo /usr/local/sbin/ochenstarik-smm-emergency firewall-restore'
deadline=$((SECONDS + LINK_RECONCILIATION_SECONDS + 30))
while ((SECONDS < deadline)); do
if probe_factual_status "$HOME_NODE_ID" active \
&& probe_factual_status "$SECOND_NODE_ID" disabled \
&& probe_reachable "$HOME_WG_IP" \
&& probe_blocked "$SECOND_WG_IP"; then
break
fi
sleep 5
done
expect_factual_status "$HOME_NODE_ID" active
expect_factual_status "$SECOND_NODE_ID" disabled
expect_reachable "$HOME_WG_IP"
expect_blocked "$SECOND_WG_IP"
else
echo '[8/12] Firewall restore reconciliation skipped; set SMM_ACCEPT_RESTORE=1 to enable it'
fi
echo '[9/12] Creating and validating a Control backup'
backup_path="$(hub_ssh "sudo systemd-run --wait --pipe --quiet --collect --uid=ochenstarik-smm-control --gid=ochenstarik-smm-control -p EnvironmentFile=/etc/ochenstarik-server-monitor-manager/control.env /usr/local/lib/ochenstarik-server-monitor-manager/control/ochenstarik-smm-control backup-create" | grep '/backup-' | tail -n1)"
[[ "$backup_path" == */backup-* ]] || { echo 'Backup command did not return a backup path' >&2; exit 1; }
hub_ssh "sudo test -s '$backup_path/manifest.json' && sudo test -s '$backup_path/control.db' && sudo test -s '$backup_path/control-ca.pfx'"
if [[ "${SMM_ACCEPT_RESTORE:-0}" == '1' ]]; then
echo '[10/12] Restoring the verified backup and restarting Control'
hub_ssh "sudo sh -c 'set -a; . /etc/ochenstarik-server-monitor-manager/control.env; set +a; systemctl stop ochenstarik-smm-control.service; /usr/local/lib/ochenstarik-server-monitor-manager/control/ochenstarik-smm-control backup-restore \"\$1\"; status=\$?; systemctl start ochenstarik-smm-control.service; exit \$status' sh '$backup_path'"
for _ in {1..30}; do
if api_get '/healthz' >/dev/null 2>&1; then
break
fi
sleep 2
done
api_get '/healthz' >/dev/null
expect_reachable "$HOME_WG_IP"
expect_blocked "$SECOND_WG_IP"
expect_factual_status "$HOME_NODE_ID" active
expect_factual_status "$SECOND_NODE_ID" disabled
else
echo '[10/12] Restore check skipped; set SMM_ACCEPT_RESTORE=1 to enable it'
fi
if [[ "${SMM_ACCEPT_REBOOT:-0}" == '1' ]]; then
echo '[11/12] Rebooting the Hub and source Node and rechecking policy state'
hub_ssh 'sudo systemctl reboot' || true
source_ssh 'sudo systemctl reboot' || true
sleep 15
for _ in {1..30}; do
if hub_ssh 'true' >/dev/null 2>&1 && source_ssh 'true' >/dev/null 2>&1; then
break
fi
sleep 5
done
expect_reachable "$HOME_WG_IP"
expect_blocked "$SECOND_WG_IP"
expect_factual_status "$HOME_NODE_ID" active
expect_factual_status "$SECOND_NODE_ID" disabled
else
echo '[11/12] Reboot check skipped; set SMM_ACCEPT_REBOOT=1 to enable it'
fi
echo '[12/12] Revoking the temporary Operator certificate'
api_post "/api/v1/control/devices/$CONTROL_DEVICE_ID/reenroll" \
"$(jq -cn --arg key "$(cat /proc/sys/kernel/random/uuid)" \
'{reason:"three-server acceptance completed",idempotencyKey:$key}')" \
| jq -e '.entityType == "Operator"' >/dev/null
if api_get '/api/v1/control/agents' >/dev/null 2>&1; then
echo 'Revoked acceptance Operator certificate is still authorized' >&2
exit 1
fi
echo 'THREE_SERVER_ACCEPTANCE=PASS'