mirror of https://github.com/ospab/ostp.git
242 lines
8.2 KiB
Bash
242 lines
8.2 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
GITHUB_REPO="ospab/ostp"
|
|
INSTALL_DIR="/opt/ostp"
|
|
BIN_LINK="/usr/local/bin/ostp"
|
|
CONFIG_DIR="/etc/ostp"
|
|
CONFIG_FILE="$CONFIG_DIR/config.json"
|
|
|
|
# Legacy paths to check for migration
|
|
LEGACY_PATHS=(
|
|
"$HOME/ostp"
|
|
"/root/ostp"
|
|
"/usr/local/ostp"
|
|
"/usr/share/ostp"
|
|
)
|
|
|
|
echo "========================================================"
|
|
echo " OSTP Installer v3"
|
|
echo "========================================================"
|
|
|
|
# Verify root
|
|
if [ "$EUID" -ne 0 ]; then
|
|
echo "[error] Root privileges required. Run with sudo."
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$INSTALL_DIR"
|
|
mkdir -p "$CONFIG_DIR"
|
|
|
|
# ── Migration from legacy installations ──────────────────────────────
|
|
|
|
migrate_legacy() {
|
|
local old_dir="$1"
|
|
echo "[migrate] Found legacy installation at $old_dir"
|
|
|
|
# Migrate config if exists and new one doesn't
|
|
if [ -f "$old_dir/config.json" ] && [ ! -f "$CONFIG_FILE" ]; then
|
|
echo "[migrate] Moving config: $old_dir/config.json -> $CONFIG_FILE"
|
|
cp "$old_dir/config.json" "$CONFIG_FILE"
|
|
fi
|
|
|
|
# Migrate binary if no new binary yet
|
|
if [ -f "$old_dir/ostp" ] && [ ! -f "$INSTALL_DIR/ostp" ]; then
|
|
echo "[migrate] Moving binary: $old_dir/ostp -> $INSTALL_DIR/ostp"
|
|
cp "$old_dir/ostp" "$INSTALL_DIR/ostp"
|
|
fi
|
|
|
|
echo "[migrate] Legacy files preserved at $old_dir (remove manually if no longer needed)"
|
|
}
|
|
|
|
# Check for legacy /opt/ostp/config.json (old layout: config in install dir)
|
|
if [ -f "$INSTALL_DIR/config.json" ] && [ ! -f "$CONFIG_FILE" ]; then
|
|
echo "[migrate] Moving config from $INSTALL_DIR/config.json -> $CONFIG_FILE"
|
|
cp "$INSTALL_DIR/config.json" "$CONFIG_FILE"
|
|
mv "$INSTALL_DIR/config.json" "$INSTALL_DIR/config.json.bak"
|
|
fi
|
|
|
|
# Check legacy paths
|
|
for lpath in "${LEGACY_PATHS[@]}"; do
|
|
if [ -d "$lpath" ] && [ -f "$lpath/ostp" ]; then
|
|
migrate_legacy "$lpath"
|
|
fi
|
|
done
|
|
|
|
# Remove stale symlinks
|
|
if [ -L "$BIN_LINK" ] && [ ! -e "$BIN_LINK" ]; then
|
|
rm -f "$BIN_LINK"
|
|
fi
|
|
|
|
# ── Architecture detection ───────────────────────────────────────────
|
|
|
|
ARCH=$(uname -m)
|
|
case "$ARCH" in
|
|
x86_64) ARCH="amd64" ;;
|
|
aarch64|arm64) ARCH="arm64" ;;
|
|
i386|i686) ARCH="386" ;;
|
|
armv7l) ARCH="armv7" ;;
|
|
mips|mipsel) ARCH="$ARCH" ;;
|
|
*)
|
|
echo "[warn] Unknown architecture $ARCH, defaulting to amd64."
|
|
ARCH="amd64"
|
|
;;
|
|
esac
|
|
|
|
echo "Platform: linux/$ARCH"
|
|
|
|
# ── Parse arguments ────────────────────────────────────────────────────
|
|
TARGET_VERSION=""
|
|
TARGET_BRANCH="stable"
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
-v|--version)
|
|
TARGET_VERSION="$2"
|
|
shift 2
|
|
;;
|
|
-b|--branch)
|
|
TARGET_BRANCH="$2"
|
|
shift 2
|
|
;;
|
|
*)
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# ── Download binary ──────────────────────────────────────────────────
|
|
|
|
if [ -n "$TARGET_VERSION" ]; then
|
|
LATEST_RELEASE="$TARGET_VERSION"
|
|
# Ensure it starts with 'v' if it's supposed to (only for real stable
|
|
# semver tags — the nightly/pre-release channels use bare tag names).
|
|
if [[ ! "$LATEST_RELEASE" =~ ^v ]] && [ "$TARGET_BRANCH" == "stable" ]; then
|
|
LATEST_RELEASE="v$LATEST_RELEASE"
|
|
fi
|
|
echo "Fetching requested release $LATEST_RELEASE..."
|
|
else
|
|
if [ "$TARGET_BRANCH" == "nightly" ]; then
|
|
echo "Fetching nightly release..."
|
|
LATEST_RELEASE="nightly"
|
|
elif [ "$TARGET_BRANCH" == "pre-release" ]; then
|
|
echo "Fetching pre-release..."
|
|
LATEST_RELEASE="pre-release"
|
|
else
|
|
echo "Fetching latest stable release..."
|
|
LATEST_RELEASE=$(curl -s "https://api.github.com/repos/${GITHUB_REPO}/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$LATEST_RELEASE" ] || [[ "$LATEST_RELEASE" == *"null"* ]]; then
|
|
echo "[notice] Could not determine latest release automatically."
|
|
echo "Enter a direct URL to the .tar.gz archive,"
|
|
echo "or press Enter if the binary is already in $INSTALL_DIR/ostp."
|
|
read -p "URL: " DIRECT_URL
|
|
if [ -n "$DIRECT_URL" ]; then
|
|
TEMP_TAR="/tmp/ostp_temp.tar.gz"
|
|
curl -L "$DIRECT_URL" -o "$TEMP_TAR"
|
|
tar -xzf "$TEMP_TAR" -C "$INSTALL_DIR" ostp 2>/dev/null || tar -xzf "$TEMP_TAR" -C "$INSTALL_DIR"
|
|
rm -f "$TEMP_TAR"
|
|
fi
|
|
else
|
|
ARCHIVE_NAME="ostp-linux-${ARCH}.tar.gz"
|
|
DOWNLOAD_URL="https://github.com/${GITHUB_REPO}/releases/download/${LATEST_RELEASE}/${ARCHIVE_NAME}"
|
|
echo "Downloading: $ARCHIVE_NAME ($LATEST_RELEASE)"
|
|
|
|
TEMP_TAR="/tmp/ostp_temp.tar.gz"
|
|
HTTP_CODE=$(curl -sL -w "%{http_code}" "$DOWNLOAD_URL" -o "$TEMP_TAR")
|
|
|
|
if [ "$HTTP_CODE" -eq 200 ]; then
|
|
tar -xzf "$TEMP_TAR" -C "$INSTALL_DIR" ostp 2>/dev/null || tar -xzf "$TEMP_TAR" -C "$INSTALL_DIR"
|
|
rm -f "$TEMP_TAR"
|
|
else
|
|
echo "[error] Download failed (HTTP $HTTP_CODE)."
|
|
echo "Verify that $LATEST_RELEASE is published at:"
|
|
echo " https://github.com/$GITHUB_REPO/releases"
|
|
rm -f "$TEMP_TAR"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if [ -f "$INSTALL_DIR/ostp" ]; then
|
|
chmod +x "$INSTALL_DIR/ostp"
|
|
echo "Binary installed: $INSTALL_DIR/ostp"
|
|
else
|
|
echo "[error] Binary not found at $INSTALL_DIR/ostp."
|
|
exit 1
|
|
fi
|
|
|
|
# ── Create global symlink ────────────────────────────────────────────
|
|
|
|
ln -sf "$INSTALL_DIR/ostp" "$BIN_LINK"
|
|
echo "Symlink created: $BIN_LINK -> $INSTALL_DIR/ostp"
|
|
|
|
# ── Update detection ─────────────────────────────────────────────────
|
|
|
|
if [ -f "$CONFIG_FILE" ]; then
|
|
echo "--------------------------------------------------------"
|
|
echo "Existing configuration found at $CONFIG_FILE."
|
|
echo "Binary updated to ${LATEST_RELEASE:-latest}."
|
|
|
|
# Config SCHEMA migration does NOT happen here (or anywhere automatic) —
|
|
# it used to be an ad-hoc Python snippet embedded right in this script,
|
|
# silently rewriting config.json on every update. That's exactly the kind
|
|
# of surprise this project no longer does: the ONE place a config's shape
|
|
# is ever changed is the explicit `ostp migrate` command (see
|
|
# ostp-client::migrate), which backs up the original file first and
|
|
# prints exactly what it changed. If your config predates this install,
|
|
# run it yourself:
|
|
echo "If this config is from an older OSTP version, run 'ostp migrate' to upgrade it."
|
|
|
|
# Update systemd service to use new paths
|
|
if [ -f "/etc/systemd/system/ostp.service" ]; then
|
|
if grep -q "WorkingDirectory=$INSTALL_DIR" /etc/systemd/system/ostp.service && \
|
|
grep -q "$CONFIG_FILE" /etc/systemd/system/ostp.service; then
|
|
: # Service already uses correct paths
|
|
else
|
|
echo "Updating systemd service to use new paths..."
|
|
cat <<EOF > /etc/systemd/system/ostp.service
|
|
[Unit]
|
|
Description=OSTP Stealth Transport Protocol
|
|
After=network.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=$INSTALL_DIR
|
|
ExecStart=$INSTALL_DIR/ostp --config $CONFIG_FILE
|
|
Restart=always
|
|
RestartSec=5
|
|
LimitNOFILE=65535
|
|
Environment=RUST_LOG=info
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl daemon-reload
|
|
fi
|
|
fi
|
|
|
|
if systemctl is-active --quiet ostp.service 2>/dev/null; then
|
|
echo "Restarting ostp service..."
|
|
systemctl restart ostp.service
|
|
echo "Service restarted."
|
|
elif systemctl is-enabled --quiet ostp.service 2>/dev/null; then
|
|
echo "Service registered but not running."
|
|
echo "Start manually: systemctl start ostp"
|
|
fi
|
|
echo "--------------------------------------------------------"
|
|
echo "Update complete."
|
|
exit 0
|
|
fi
|
|
|
|
# ── First install: delegate to the built-in setup wizard ─────────────
|
|
|
|
echo ""
|
|
echo "No configuration found. Launching setup wizard..."
|
|
echo ""
|
|
|
|
cd "$INSTALL_DIR"
|
|
exec ./ostp --setup --config "$CONFIG_FILE"
|