#!/bin/bash set -e echo "=== OpenVPN Server Container ===" # Create TUN device if it doesn't exist if [ ! -c /dev/net/tun ]; then mkdir -p /dev/net mknod /dev/net/tun c 10 200 chmod 600 /dev/net/tun fi echo "TUN device ready" # Set up environment for auto-install export AUTO_INSTALL=y export FORCE_COLOR=1 export APPROVE_INSTALL=y export APPROVE_IP=y export IPV6_SUPPORT=n export PORT_CHOICE=1 export PROTOCOL_CHOICE=1 export DNS=2 # Self-hosted Unbound DNS resolver export COMPRESSION_ENABLED=n export CLIENT=testclient export PASS=1 export ENDPOINT=openvpn-server # TLS key type configuration (default: tls-crypt-v2) # TLS_SIG: 1=tls-crypt-v2, 2=tls-crypt, 3=tls-auth # TLS_KEY_FILE: the expected key file name for verification TLS_SIG="${TLS_SIG:-1}" TLS_KEY_FILE="${TLS_KEY_FILE:-tls-crypt-v2.key}" export TLS_SIG # If using non-default TLS settings, enable encryption customization if [ "$TLS_SIG" != "1" ]; then export CUSTOMIZE_ENC=y # Set other encryption defaults when customizing export CIPHER_CHOICE=1 # AES-128-GCM export CERT_TYPE=1 # ECDSA export CERT_CURVE_CHOICE=1 # prime256v1 export CC_CIPHER_CHOICE=1 # ECDHE-ECDSA-AES-128-GCM-SHA256 export DH_TYPE=1 # ECDH export DH_CURVE_CHOICE=1 # prime256v1 export HMAC_ALG_CHOICE=1 # SHA-256 echo "Testing TLS key type: $TLS_SIG (key file: $TLS_KEY_FILE)" else export CUSTOMIZE_ENC=n fi echo "Running OpenVPN install script..." # Run in subshell because the script calls 'exit 0' after generating client config # Capture output to validate logging format, while still displaying it # Use || true to prevent set -e from exiting on failure, then check exit code INSTALL_OUTPUT="/tmp/install-output.log" (bash /opt/openvpn-install.sh) 2>&1 | tee "$INSTALL_OUTPUT" INSTALL_EXIT_CODE=${PIPESTATUS[0]} echo "=== Installation complete (exit code: $INSTALL_EXIT_CODE) ===" # Validate that all output uses proper logging format (ANSI color codes) echo "Validating output format..." if /opt/test/validate-output.sh "$INSTALL_OUTPUT"; then echo "PASS: All script output uses proper log formatting" else echo "FAIL: Script output contains unformatted lines" echo "This indicates echo statements that should use log_* functions" exit 1 fi if [ "$INSTALL_EXIT_CODE" -ne 0 ]; then echo "ERROR: Install script failed with exit code $INSTALL_EXIT_CODE" exit 1 fi # Verify all expected files were created echo "Verifying installation..." MISSING_FILES=0 # Build list of required files REQUIRED_FILES=( /etc/openvpn/server/server.conf /etc/openvpn/server/ca.crt /etc/openvpn/server/ca.key "/etc/openvpn/server/$TLS_KEY_FILE" /etc/openvpn/server/crl.pem /etc/openvpn/server/easy-rsa/pki/ca.crt /root/testclient.ovpn ) # Only check for iptables script if firewalld is not active if ! systemctl is-active --quiet firewalld; then REQUIRED_FILES+=(/etc/iptables/add-openvpn-rules.sh) fi for f in "${REQUIRED_FILES[@]}"; do if [ ! -f "$f" ]; then echo "ERROR: Missing file: $f" MISSING_FILES=$((MISSING_FILES + 1)) fi done if [ $MISSING_FILES -gt 0 ]; then echo "ERROR: $MISSING_FILES required files are missing" exit 1 fi echo "All required files present" # Copy client config to shared volume for the client container cp /root/testclient.ovpn /shared/client.ovpn sed -i 's/^remote .*/remote openvpn-server 1194/' /shared/client.ovpn echo "Client config copied to /shared/client.ovpn" # ===================================================== # Verify systemd service file configuration # ===================================================== echo "" echo "=== Verifying systemd service configuration ===" # Check that the correct service file was created SERVICE_FILE="/etc/systemd/system/openvpn-server@.service" if [ -f "$SERVICE_FILE" ]; then echo "PASS: openvpn-server@.service exists at $SERVICE_FILE" else echo "FAIL: openvpn-server@.service not found at $SERVICE_FILE" echo "Contents of /etc/systemd/system/:" find /etc/systemd/system/ -maxdepth 1 -name '*openvpn*' -ls 2>/dev/null || echo "No openvpn service files found" exit 1 fi # Verify the service file points to /etc/openvpn/server/ (not patched back to /etc/openvpn/) if grep -q "/etc/openvpn/server" "$SERVICE_FILE"; then echo "PASS: Service file uses correct path /etc/openvpn/server/" else echo "FAIL: Service file does not reference /etc/openvpn/server/" echo "Service file contents:" cat "$SERVICE_FILE" exit 1 fi # Verify the service file syntax is valid (if systemd-analyze is available) if command -v systemd-analyze >/dev/null 2>&1; then echo "Validating service file syntax..." if systemd-analyze verify "$SERVICE_FILE" 2>&1 | tee /tmp/service-verify.log; then echo "PASS: Service file syntax is valid" else # systemd-analyze verify may return non-zero for warnings, check for actual errors if grep -qi "error" /tmp/service-verify.log; then echo "FAIL: Service file has syntax errors" cat /tmp/service-verify.log exit 1 else echo "PASS: Service file syntax is valid (warnings only)" fi fi else echo "SKIP: systemd-analyze not available, skipping syntax validation" fi # Verify the old service file pattern (openvpn@.service) was NOT created OLD_SERVICE_FILE="/etc/systemd/system/openvpn@.service" if [ -f "$OLD_SERVICE_FILE" ]; then echo "FAIL: Legacy openvpn@.service was created (should use openvpn-server@.service)" exit 1 else echo "PASS: Legacy openvpn@.service not present (correct)" fi echo "=== systemd service configuration verified ===" echo "" echo "Server config:" cat /etc/openvpn/server/server.conf # ===================================================== # Test certificate renewal functionality # ===================================================== echo "" echo "=== Testing Certificate Renewal ===" # Get the original certificate serial number for comparison ORIG_CERT_SERIAL=$(openssl x509 -in /etc/openvpn/server/easy-rsa/pki/issued/testclient.crt -noout -serial | cut -d= -f2) echo "Original client certificate serial: $ORIG_CERT_SERIAL" # Test client certificate renewal using the script echo "Testing client certificate renewal..." RENEW_OUTPUT="/tmp/renew-client-output.log" (MENU_OPTION=4 RENEW_OPTION=1 CLIENTNUMBER=1 CLIENT_CERT_DURATION_DAYS=3650 bash /opt/openvpn-install.sh) 2>&1 | tee "$RENEW_OUTPUT" || true # Verify renewal succeeded if grep -q "Certificate for client testclient renewed" "$RENEW_OUTPUT"; then echo "PASS: Client renewal completed successfully" else echo "FAIL: Client renewal did not complete" cat "$RENEW_OUTPUT" exit 1 fi # Verify new certificate has different serial NEW_CERT_SERIAL=$(openssl x509 -in /etc/openvpn/server/easy-rsa/pki/issued/testclient.crt -noout -serial | cut -d= -f2) echo "New client certificate serial: $NEW_CERT_SERIAL" if [ "$ORIG_CERT_SERIAL" != "$NEW_CERT_SERIAL" ]; then echo "PASS: Certificate serial changed (renewal created new cert)" else echo "FAIL: Certificate serial unchanged" exit 1 fi # Verify renewed certificate has correct validity period # The default is 3650 days, so the cert should be valid for ~10 years from now CLIENT_CERT_NOT_AFTER=$(openssl x509 -in /etc/openvpn/server/easy-rsa/pki/issued/testclient.crt -noout -enddate | cut -d= -f2) CLIENT_CERT_NOT_BEFORE=$(openssl x509 -in /etc/openvpn/server/easy-rsa/pki/issued/testclient.crt -noout -startdate | cut -d= -f2) echo "Client certificate valid from: $CLIENT_CERT_NOT_BEFORE" echo "Client certificate valid until: $CLIENT_CERT_NOT_AFTER" # Calculate days until expiry (should be close to 3650) CERT_END_EPOCH=$(date -d "$CLIENT_CERT_NOT_AFTER" +%s 2>/dev/null || date -j -f "%b %d %T %Y %Z" "$CLIENT_CERT_NOT_AFTER" +%s 2>/dev/null) NOW_EPOCH=$(date +%s) DAYS_VALID_ACTUAL=$(((CERT_END_EPOCH - NOW_EPOCH) / 86400)) echo "Client certificate validity: $DAYS_VALID_ACTUAL days" # Should be between 3640 and 3650 days (allowing some tolerance for timing) if [ "$DAYS_VALID_ACTUAL" -ge 3640 ] && [ "$DAYS_VALID_ACTUAL" -le 3650 ]; then echo "PASS: Client certificate validity is correct (~3650 days)" else echo "FAIL: Client certificate validity is unexpected: $DAYS_VALID_ACTUAL days (expected ~3650)" exit 1 fi # Verify new .ovpn file was generated if [ -f /root/testclient.ovpn ]; then echo "PASS: New .ovpn file generated" else echo "FAIL: .ovpn file not found after renewal" exit 1 fi # Verify CRL was updated if [ -f /etc/openvpn/server/crl.pem ]; then echo "PASS: CRL file exists" else echo "FAIL: CRL file missing after renewal" exit 1 fi # Update shared client config with renewed certificate cp /root/testclient.ovpn /shared/client.ovpn sed -i 's/^remote .*/remote openvpn-server 1194/' /shared/client.ovpn echo "Updated client config with renewed certificate" echo "=== Client Certificate Renewal Tests PASSED ===" # ===================================================== # Test server certificate renewal # ===================================================== echo "" echo "=== Testing Server Certificate Renewal ===" # Get server certificate name and original serial (extract basename since path may be relative) SERVER_NAME=$(basename "$(grep '^cert ' /etc/openvpn/server/server.conf | cut -d ' ' -f 2)" .crt) ORIG_SERVER_SERIAL=$(openssl x509 -in "/etc/openvpn/server/easy-rsa/pki/issued/$SERVER_NAME.crt" -noout -serial | cut -d= -f2) echo "Server certificate: $SERVER_NAME" echo "Original server certificate serial: $ORIG_SERVER_SERIAL" # Test server certificate renewal echo "Testing server certificate renewal..." RENEW_SERVER_OUTPUT="/tmp/renew-server-output.log" (MENU_OPTION=4 RENEW_OPTION=2 CONTINUE=y SERVER_CERT_DURATION_DAYS=3650 bash /opt/openvpn-install.sh) 2>&1 | tee "$RENEW_SERVER_OUTPUT" || true # Verify renewal succeeded if grep -q "Server certificate renewed successfully" "$RENEW_SERVER_OUTPUT"; then echo "PASS: Server renewal completed successfully" else echo "FAIL: Server renewal did not complete" cat "$RENEW_SERVER_OUTPUT" exit 1 fi # Verify new certificate has different serial NEW_SERVER_SERIAL=$(openssl x509 -in "/etc/openvpn/server/easy-rsa/pki/issued/$SERVER_NAME.crt" -noout -serial | cut -d= -f2) echo "New server certificate serial: $NEW_SERVER_SERIAL" if [ "$ORIG_SERVER_SERIAL" != "$NEW_SERVER_SERIAL" ]; then echo "PASS: Server certificate serial changed (renewal created new cert)" else echo "FAIL: Server certificate serial unchanged" exit 1 fi # Verify renewed server certificate has correct validity period SERVER_CERT_NOT_AFTER=$(openssl x509 -in "/etc/openvpn/server/easy-rsa/pki/issued/$SERVER_NAME.crt" -noout -enddate | cut -d= -f2) SERVER_CERT_NOT_BEFORE=$(openssl x509 -in "/etc/openvpn/server/easy-rsa/pki/issued/$SERVER_NAME.crt" -noout -startdate | cut -d= -f2) echo "Server certificate valid from: $SERVER_CERT_NOT_BEFORE" echo "Server certificate valid until: $SERVER_CERT_NOT_AFTER" # Calculate days until expiry (should be close to 3650) SERVER_END_EPOCH=$(date -d "$SERVER_CERT_NOT_AFTER" +%s 2>/dev/null || date -j -f "%b %d %T %Y %Z" "$SERVER_CERT_NOT_AFTER" +%s 2>/dev/null) SERVER_DAYS_VALID=$(((SERVER_END_EPOCH - NOW_EPOCH) / 86400)) echo "Server certificate validity: $SERVER_DAYS_VALID days" if [ "$SERVER_DAYS_VALID" -ge 3640 ] && [ "$SERVER_DAYS_VALID" -le 3650 ]; then echo "PASS: Server certificate validity is correct (~3650 days)" else echo "FAIL: Server certificate validity is unexpected: $SERVER_DAYS_VALID days (expected ~3650)" exit 1 fi # Verify the new certificate was copied to /etc/openvpn/server/ if [ -f "/etc/openvpn/server/$SERVER_NAME.crt" ]; then DEPLOYED_SERIAL=$(openssl x509 -in "/etc/openvpn/server/$SERVER_NAME.crt" -noout -serial | cut -d= -f2) if [ "$NEW_SERVER_SERIAL" = "$DEPLOYED_SERIAL" ]; then echo "PASS: New server certificate deployed to /etc/openvpn/server/" else echo "FAIL: Deployed certificate doesn't match renewed certificate" exit 1 fi else echo "FAIL: Server certificate not found in /etc/openvpn/server/" exit 1 fi echo "=== Server Certificate Renewal Tests PASSED ===" echo "" echo "=== All Certificate Renewal Tests PASSED ===" echo "" # ===================================================== # Verify Unbound DNS resolver (started by systemd via install script) # ===================================================== echo "=== Verifying Unbound DNS Resolver ===" if [ -f /etc/unbound/unbound.conf ]; then # Verify Unbound is running (started by systemctl in install script) echo "Checking Unbound service status..." for _ in $(seq 1 30); do if pgrep -x unbound >/dev/null; then echo "PASS: Unbound is running" break fi sleep 1 done if ! pgrep -x unbound >/dev/null; then echo "FAIL: Unbound is not running" systemctl status unbound 2>&1 || true journalctl -u unbound --no-pager -n 50 2>&1 || true exit 1 fi else echo "FAIL: /etc/unbound/unbound.conf not found" exit 1 fi echo "" echo "=== Verifying Unbound Installation ===" # Verify Unbound config exists in conf.d directory UNBOUND_OPENVPN_CONF="/etc/unbound/unbound.conf.d/openvpn.conf" if [ -f "$UNBOUND_OPENVPN_CONF" ]; then echo "PASS: Found Unbound config at $UNBOUND_OPENVPN_CONF" else echo "FAIL: OpenVPN Unbound config not found at $UNBOUND_OPENVPN_CONF" echo "Contents of /etc/unbound/:" ls -la /etc/unbound/ ls -la /etc/unbound/unbound.conf.d/ 2>/dev/null || true exit 1 fi # Verify Unbound listens on VPN gateway if grep -q "interface: 10.8.0.1" "$UNBOUND_OPENVPN_CONF"; then echo "PASS: Unbound configured to listen on 10.8.0.1" else echo "FAIL: Unbound not configured for 10.8.0.1" cat "$UNBOUND_OPENVPN_CONF" exit 1 fi # Verify OpenVPN pushes correct DNS if grep -q 'push "dhcp-option DNS 10.8.0.1"' /etc/openvpn/server/server.conf; then echo "PASS: OpenVPN configured to push Unbound DNS" else echo "FAIL: OpenVPN not configured to push Unbound DNS" grep "dhcp-option DNS" /etc/openvpn/server/server.conf || echo "No DNS push found" exit 1 fi echo "=== Unbound Installation Verified ===" echo "" # Verify OpenVPN server (started by systemd via install script) echo "Verifying OpenVPN server..." # Verify firewall rules exist echo "Verifying firewall rules..." if systemctl is-active --quiet firewalld; then # firewalld is active - verify masquerade is enabled echo "firewalld detected, checking masquerade..." for _ in $(seq 1 10); do if firewall-cmd --query-masquerade 2>/dev/null; then echo "PASS: firewalld masquerade is enabled" break fi sleep 1 done if ! firewall-cmd --query-masquerade 2>/dev/null; then echo "FAIL: firewalld masquerade is not enabled" echo "Current firewalld config:" firewall-cmd --list-all 2>&1 || true exit 1 fi # Verify port is open if firewall-cmd --list-ports | grep -q "1194/udp"; then echo "PASS: OpenVPN port is open in firewalld" else echo "FAIL: OpenVPN port not found in firewalld" firewall-cmd --list-ports exit 1 fi # Verify VPN subnet rich rule exists if firewall-cmd --list-rich-rules | grep -q 'source address="10.8.0.0/24"'; then echo "PASS: VPN subnet rich rule is configured" else echo "FAIL: VPN subnet rich rule not found in firewalld" echo "Current rich rules:" firewall-cmd --list-rich-rules exit 1 fi else # iptables mode - verify NAT rules echo "iptables mode, checking NAT rules..." for _ in $(seq 1 10); do if iptables -t nat -L POSTROUTING -n | grep -q "10.8.0.0"; then echo "PASS: NAT POSTROUTING rule for 10.8.0.0/24 exists" break fi sleep 1 done if ! iptables -t nat -L POSTROUTING -n | grep -q "10.8.0.0"; then echo "FAIL: NAT POSTROUTING rule for 10.8.0.0/24 not found" echo "Current NAT rules:" iptables -t nat -L POSTROUTING -n -v systemctl status iptables-openvpn 2>&1 || true exit 1 fi fi # Verify IP forwarding is enabled if [ "$(cat /proc/sys/net/ipv4/ip_forward)" != "1" ]; then echo "ERROR: IP forwarding is not enabled" exit 1 fi # Wait for OpenVPN to start (started by systemctl in install script) echo "Waiting for OpenVPN server to start..." for _ in $(seq 1 30); do if pgrep -f "openvpn.*server.conf" >/dev/null; then echo "PASS: OpenVPN server is running" break fi sleep 1 done if ! pgrep -f "openvpn.*server.conf" >/dev/null; then echo "FAIL: OpenVPN server is not running" systemctl status openvpn-server@server 2>&1 || true journalctl -u openvpn-server@server --no-pager -n 50 2>&1 || true exit 1 fi # ===================================================== # Wait for initial client tests to complete # ===================================================== echo "" echo "=== Waiting for initial client connectivity tests ===" MAX_WAIT=120 WAITED=0 while [ ! -f /shared/initial-tests-passed ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) echo "Waiting for initial tests... ($WAITED/$MAX_WAIT seconds)" done if [ ! -f /shared/initial-tests-passed ]; then echo "ERROR: Initial client tests did not complete in time" exit 1 fi echo "Initial client tests passed, proceeding with revocation tests" # ===================================================== # Test certificate revocation functionality # ===================================================== echo "" echo "=== Testing Certificate Revocation ===" # Create a new client for revocation testing REVOKE_CLIENT="revoketest" echo "Creating client '$REVOKE_CLIENT' for revocation testing..." REVOKE_CREATE_OUTPUT="/tmp/revoke-create-output.log" (MENU_OPTION=1 CLIENT=$REVOKE_CLIENT PASS=1 CLIENT_CERT_DURATION_DAYS=3650 bash /opt/openvpn-install.sh) 2>&1 | tee "$REVOKE_CREATE_OUTPUT" || true if [ -f "/root/$REVOKE_CLIENT.ovpn" ]; then echo "PASS: Client '$REVOKE_CLIENT' created successfully" else echo "FAIL: Failed to create client '$REVOKE_CLIENT'" cat "$REVOKE_CREATE_OUTPUT" exit 1 fi # Copy config for revocation test client cp "/root/$REVOKE_CLIENT.ovpn" "/shared/$REVOKE_CLIENT.ovpn" sed -i 's/^remote .*/remote openvpn-server 1194/' "/shared/$REVOKE_CLIENT.ovpn" echo "Copied $REVOKE_CLIENT config to /shared/" # Signal client that revoke test config is ready touch /shared/revoke-client-config-ready # Wait for client to confirm connection with revoke test client echo "Waiting for client to connect with '$REVOKE_CLIENT' certificate..." MAX_WAIT=60 WAITED=0 while [ ! -f /shared/revoke-client-connected ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) echo "Waiting for revoke test connection... ($WAITED/$MAX_WAIT seconds)" done if [ ! -f /shared/revoke-client-connected ]; then echo "ERROR: Client did not connect with revoke test certificate" exit 1 fi echo "PASS: Client connected with '$REVOKE_CLIENT' certificate" # Signal client to disconnect before revocation touch /shared/revoke-client-disconnect # Wait for client to disconnect echo "Waiting for client to disconnect..." MAX_WAIT=30 WAITED=0 while [ ! -f /shared/revoke-client-disconnected ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) done if [ ! -f /shared/revoke-client-disconnected ]; then echo "ERROR: Client did not signal disconnect" exit 1 fi echo "Client disconnected" # Now revoke the certificate using the new CLIENT name feature echo "Revoking certificate for '$REVOKE_CLIENT'..." REVOKE_OUTPUT="/tmp/revoke-output.log" # MENU_OPTION=3 is revoke, CLIENT specifies the client name directly (MENU_OPTION=3 CLIENT=$REVOKE_CLIENT bash /opt/openvpn-install.sh) 2>&1 | tee "$REVOKE_OUTPUT" || true if grep -q "Certificate for client $REVOKE_CLIENT revoked" "$REVOKE_OUTPUT"; then echo "PASS: Certificate for '$REVOKE_CLIENT' revoked successfully" else echo "FAIL: Failed to revoke certificate" cat "$REVOKE_OUTPUT" exit 1 fi # Verify certificate is marked as revoked in index.txt if tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep -q "^R.*CN=$REVOKE_CLIENT\$"; then echo "PASS: Certificate marked as revoked in index.txt" else echo "FAIL: Certificate not marked as revoked" cat /etc/openvpn/server/easy-rsa/pki/index.txt exit 1 fi # Signal client to try reconnecting (should fail) touch /shared/revoke-try-reconnect # Wait for client to confirm that connection with revoked cert failed echo "Waiting for client to confirm revoked cert connection failure..." MAX_WAIT=60 WAITED=0 while [ ! -f /shared/revoke-reconnect-failed ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) echo "Waiting for reconnect failure confirmation... ($WAITED/$MAX_WAIT seconds)" done if [ ! -f /shared/revoke-reconnect-failed ]; then echo "ERROR: Client did not confirm that revoked cert connection failed" exit 1 fi echo "PASS: Connection with revoked certificate correctly rejected" echo "=== Certificate Revocation Tests PASSED ===" # ===================================================== # Test listing client certificates # ===================================================== echo "" echo "=== Testing List Client Certificates ===" # At this point we have 3 client certificates: # - testclient (Valid) - the renewed certificate # - testclient (Revoked) - the old certificate revoked during renewal # - revoketest (Revoked) - the revoked certificate LIST_OUTPUT="/tmp/list-clients-output.log" (MENU_OPTION=2 bash /opt/openvpn-install.sh) 2>&1 | tee "$LIST_OUTPUT" || true # Verify list output contains expected clients if grep -q "testclient" "$LIST_OUTPUT" && grep -q "Valid" "$LIST_OUTPUT"; then echo "PASS: List shows testclient as Valid" else echo "FAIL: List does not show testclient correctly" cat "$LIST_OUTPUT" exit 1 fi if grep -q "$REVOKE_CLIENT" "$LIST_OUTPUT" && grep -q "Revoked" "$LIST_OUTPUT"; then echo "PASS: List shows $REVOKE_CLIENT as Revoked" else echo "FAIL: List does not show $REVOKE_CLIENT correctly" cat "$LIST_OUTPUT" exit 1 fi # Verify certificate count (3 certs: testclient valid, testclient revoked from renewal, revoketest revoked) if grep -q "Found 3 client certificate(s)" "$LIST_OUTPUT"; then echo "PASS: List shows correct certificate count" else echo "FAIL: List does not show correct certificate count" cat "$LIST_OUTPUT" exit 1 fi echo "=== List Client Certificates Tests PASSED ===" # ===================================================== # Test reusing revoked client name # ===================================================== echo "" echo "=== Testing Reuse of Revoked Client Name ===" # Create a new certificate with the same name as the revoked one echo "Creating new client with same name '$REVOKE_CLIENT'..." RECREATE_OUTPUT="/tmp/recreate-output.log" (MENU_OPTION=1 CLIENT=$REVOKE_CLIENT PASS=1 CLIENT_CERT_DURATION_DAYS=3650 bash /opt/openvpn-install.sh) 2>&1 | tee "$RECREATE_OUTPUT" || true if [ -f "/root/$REVOKE_CLIENT.ovpn" ]; then echo "PASS: New client '$REVOKE_CLIENT' created successfully (reusing revoked name)" else echo "FAIL: Failed to create client with revoked name" cat "$RECREATE_OUTPUT" exit 1 fi # Verify the new certificate is valid (V) in index.txt if tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep -q "^V.*CN=$REVOKE_CLIENT\$"; then echo "PASS: New certificate is valid in index.txt" else echo "FAIL: New certificate not marked as valid" cat /etc/openvpn/server/easy-rsa/pki/index.txt exit 1 fi # Verify there's also a revoked entry (both should exist) REVOKED_COUNT=$(tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep -c "^R.*CN=$REVOKE_CLIENT\$") VALID_COUNT=$(tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep -c "^V.*CN=$REVOKE_CLIENT\$") echo "Certificates for '$REVOKE_CLIENT': $REVOKED_COUNT revoked, $VALID_COUNT valid" if [ "$REVOKED_COUNT" -ge 1 ] && [ "$VALID_COUNT" -eq 1 ]; then echo "PASS: Both revoked and new valid certificate entries exist" else echo "FAIL: Unexpected certificate state" cat /etc/openvpn/server/easy-rsa/pki/index.txt exit 1 fi # Copy the new config cp "/root/$REVOKE_CLIENT.ovpn" "/shared/$REVOKE_CLIENT-new.ovpn" sed -i 's/^remote .*/remote openvpn-server 1194/' "/shared/$REVOKE_CLIENT-new.ovpn" echo "Copied new $REVOKE_CLIENT config to /shared/" # Signal client that new config is ready touch /shared/new-client-config-ready # Wait for client to confirm successful connection with new cert echo "Waiting for client to connect with new '$REVOKE_CLIENT' certificate..." MAX_WAIT=60 WAITED=0 while [ ! -f /shared/new-client-connected ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) echo "Waiting for new cert connection... ($WAITED/$MAX_WAIT seconds)" done if [ ! -f /shared/new-client-connected ]; then echo "ERROR: Client did not connect with new certificate" exit 1 fi echo "PASS: Client connected with new '$REVOKE_CLIENT' certificate" echo "=== Reuse of Revoked Client Name Tests PASSED ===" # ===================================================== # Test PASSPHRASE support for headless client creation # ===================================================== echo "" echo "=== Testing PASSPHRASE Support ===" PASSPHRASE_CLIENT="passphrasetest" TEST_PASSPHRASE="TestP@ssw0rd#123" echo "Creating client '$PASSPHRASE_CLIENT' with passphrase in headless mode..." PASSPHRASE_OUTPUT="/tmp/passphrase-output.log" (MENU_OPTION=1 CLIENT=$PASSPHRASE_CLIENT PASS=2 PASSPHRASE="$TEST_PASSPHRASE" CLIENT_CERT_DURATION_DAYS=3650 bash /opt/openvpn-install.sh) 2>&1 | tee "$PASSPHRASE_OUTPUT" || true # Verify client was created if [ -f "/root/$PASSPHRASE_CLIENT.ovpn" ]; then echo "PASS: Client '$PASSPHRASE_CLIENT' with passphrase created successfully" else echo "FAIL: Failed to create client '$PASSPHRASE_CLIENT' with passphrase" cat "$PASSPHRASE_OUTPUT" exit 1 fi # Verify the passphrase is NOT leaked in the output if grep -q "$TEST_PASSPHRASE" "$PASSPHRASE_OUTPUT"; then echo "FAIL: Passphrase was leaked in command output!" exit 1 else echo "PASS: Passphrase not leaked in command output" fi # Verify the log file doesn't contain the passphrase if [ -f /opt/openvpn-install.log ] && grep -q "$TEST_PASSPHRASE" /opt/openvpn-install.log; then echo "FAIL: Passphrase was leaked in log file!" exit 1 else echo "PASS: Passphrase not leaked in log file" fi # Verify certificate was created with encryption (key should be encrypted) CLIENT_KEY="/etc/openvpn/server/easy-rsa/pki/private/$PASSPHRASE_CLIENT.key" if [ -f "$CLIENT_KEY" ]; then if grep -q "ENCRYPTED" "$CLIENT_KEY"; then echo "PASS: Client key is encrypted" else echo "FAIL: Client key is not encrypted" exit 1 fi else echo "FAIL: Client key not found at $CLIENT_KEY" exit 1 fi # Copy config for passphrase client connectivity test cp "/root/$PASSPHRASE_CLIENT.ovpn" "/shared/$PASSPHRASE_CLIENT.ovpn" sed -i 's/^remote .*/remote openvpn-server 1194/' "/shared/$PASSPHRASE_CLIENT.ovpn" # Write passphrase to a file for client to use with --askpass echo "$TEST_PASSPHRASE" >"/shared/$PASSPHRASE_CLIENT.pass" echo "Copied $PASSPHRASE_CLIENT config and passphrase to /shared/" # Signal client that passphrase test config is ready touch /shared/passphrase-client-config-ready # Wait for client to confirm connection with passphrase client echo "Waiting for client to connect with '$PASSPHRASE_CLIENT' certificate..." MAX_WAIT=60 WAITED=0 while [ ! -f /shared/passphrase-client-connected ] && [ $WAITED -lt $MAX_WAIT ]; do sleep 2 WAITED=$((WAITED + 2)) echo "Waiting for passphrase client connection... ($WAITED/$MAX_WAIT seconds)" done if [ ! -f /shared/passphrase-client-connected ]; then echo "FAIL: Client did not connect with passphrase-protected certificate" exit 1 fi echo "PASS: Client connected with passphrase-protected certificate" echo "=== PASSPHRASE Support Tests PASSED ===" echo "" echo "=== All Revocation Tests PASSED ===" # Server tests complete - systemd keeps the container running via /sbin/init # OpenVPN service (openvpn-server@server) continues independently echo "Server tests complete. Container will remain running via systemd." echo "OpenVPN is managed by: systemctl status openvpn-server@server"