Files
aitbc/scripts/utils/setup_production.py
aitbc 04852fc480
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 19s
Blockchain Synchronization Verification / sync-verification (push) Failing after 2s
Integration Tests / test-service-integration (push) Successful in 3m1s
Multi-Node Blockchain Health Monitoring / health-check (push) Failing after 7s
P2P Network Verification / p2p-verification (push) Successful in 9s
Python Tests / test-python (push) Successful in 28s
Security Scanning / security-scan (push) Successful in 55s
Systemd Sync / sync-systemd (push) Successful in 17s
security: enforce required API_KEY_HASH_SECRET and migrate keystore password to credential system
Remove default fallback for API_KEY_HASH_SECRET in tenant context middleware and management service, requiring explicit environment variable configuration. Migrate keystore password handling from /etc/aitbc/keystore_password to /etc/aitbc/credentials/keystore_password with 600 permissions. Add load-keystore-secrets.sh pre-start hook and /run/aitbc/secrets/.env environment file to blockchain-node, blockchain
2026-04-28 07:29:51 +02:00

145 lines
4.9 KiB
Python

#!/usr/bin/env python3
"""
Full production setup:
- Generate keystore password file
- Generate encrypted keystores for aitbc1genesis and aitbc1treasury
- Initialize production database with allocations
- Configure blockchain node .env for ait-mainnet
- Restart services
"""
import os
import secrets
import subprocess
import sys
from pathlib import Path
# Configuration
CHAIN_ID = "ait-mainnet"
DATA_DIR = Path("/var/lib/aitbc/data/ait-mainnet")
DB_PATH = DATA_DIR / "chain.db"
KEYS_DIR = Path("/var/lib/aitbc/keystore")
PASSWORD_FILE = KEYS_DIR / ".password"
NODE_VENV = Path("/opt/aitbc/apps/blockchain-node/.venv/bin/python")
NODE_ENV = Path("/opt/aitbc/apps/blockchain-node/.env")
SERVICE_NODE = "aitbc-blockchain-node"
SERVICE_RPC = "aitbc-blockchain-rpc"
def run(cmd, check=True, capture_output=False):
print(f"+ {cmd}")
if capture_output:
result = subprocess.run(cmd, shell=True, check=check, capture_output=True, text=True)
else:
result = subprocess.run(cmd, shell=True, check=check)
return result
def main():
if os.geteuid() != 0:
print("Run as root (sudo)")
sys.exit(1)
# 1. Keystore directory and password
run(f"mkdir -p {KEYS_DIR}")
run(f"chown -R root:root {KEYS_DIR}")
# SECURITY FIX: Use credential system instead of writing password to disk
# Password is stored in /etc/aitbc/credentials/keystore_password with 600 permissions
password = os.environ.get("AITBC_KEYSTORE_PASSWORD")
if not password:
# Read from credential file if not provided
cred_file = Path("/etc/aitbc/credentials/keystore_password")
if cred_file.exists():
password = cred_file.read_text().strip()
else:
# Generate secure random password and store in credentials
password = secrets.token_hex(32)
cred_file.parent.mkdir(parents=True, exist_ok=True)
cred_file.write_text(password)
os.chmod(cred_file, 0o600)
print(f"[INFO] Password stored in {cred_file} with 600 permissions")
else:
# Use provided password from environment without writing to disk
# Clear password from environment variable for security
if "AITBC_KEYSTORE_PASSWORD" in os.environ:
del os.environ["AITBC_KEYSTORE_PASSWORD"]
os.environ["KEYSTORE_PASSWORD"] = password
# 2. Generate keystores
print("\n=== Generating keystore for aitbc1genesis ===")
result = run(
f"{NODE_VENV} /opt/aitbc/scripts/keystore.py aitbc1genesis --output-dir {KEYS_DIR} --force",
capture_output=True
)
print(result.stdout)
genesis_priv = None
for line in result.stdout.splitlines():
if "Private key (hex):" in line:
genesis_priv = line.split(":",1)[1].strip()
break
if not genesis_priv:
print("ERROR: Could not extract genesis private key")
sys.exit(1)
(KEYS_DIR / "genesis_private_key.txt").write_text(genesis_priv)
os.chmod(KEYS_DIR / "genesis_private_key.txt", 0o600)
print("\n=== Generating keystore for aitbc1treasury ===")
result = run(
f"{NODE_VENV} /opt/aitbc/scripts/keystore.py aitbc1treasury --output-dir {KEYS_DIR} --force",
capture_output=True
)
print(result.stdout)
treasury_priv = None
for line in result.stdout.splitlines():
if "Private key (hex):" in line:
treasury_priv = line.split(":",1)[1].strip()
break
if not treasury_priv:
print("ERROR: Could not extract treasury private key")
sys.exit(1)
(KEYS_DIR / "treasury_private_key.txt").write_text(treasury_priv)
os.chmod(KEYS_DIR / "treasury_private_key.txt", 0o600)
# 3. Data directory
run(f"mkdir -p {DATA_DIR}")
run(f"chown -R root:root {DATA_DIR}")
# 4. Initialize DB
os.environ["DB_PATH"] = str(DB_PATH)
os.environ["CHAIN_ID"] = CHAIN_ID
run(f"sudo -E {NODE_VENV} /opt/aitbc/scripts/init_production_genesis.py --chain-id {CHAIN_ID} --db-path {DB_PATH}")
# 5. Write .env for blockchain node
env_content = f"""CHAIN_ID={CHAIN_ID}
SUPPORTED_CHAINS={CHAIN_ID}
DB_PATH=./data/ait-mainnet/chain.db
PROPOSER_ID=aitbc1genesis
PROPOSER_KEY=0x{genesis_priv}
PROPOSER_INTERVAL_SECONDS=5
BLOCK_TIME_SECONDS=2
RPC_BIND_HOST=127.0.0.1
RPC_BIND_PORT=8006
P2P_BIND_HOST=127.0.0.2
P2P_BIND_PORT=8005
MEMPOOL_BACKEND=database
MIN_FEE=0
GOSSIP_BACKEND=memory
"""
NODE_ENV.write_text(env_content)
os.chmod(NODE_ENV, 0o600)
print(f"[+] Updated {NODE_ENV}")
# 6. Restart services
run("systemctl daemon-reload")
run(f"systemctl restart {SERVICE_NODE} {SERVICE_RPC}")
print("\n[+] Production setup complete!")
print(f"[+] Verify with: curl 'http://127.0.0.1:8006/head?chain_id={CHAIN_ID}' | jq")
print(f"[+] Keystore files in {KEYS_DIR} (encrypted, 600)")
print(f"[+] Private keys saved in {KEYS_DIR}/genesis_private_key.txt and treasury_private_key.txt (keep secure!)")
if __name__ == "__main__":
main()