Adds a user-configurable toggle for how each peer-to-peer service reaches federated peers. Three options per service: - Auto (default) — FIPS preferred, Tor fallback (current behavior). - FIPS only — fail rather than fall through to Tor. - Tor only — explicit opt-in to onion anonymity for that service. Services covered (matching the UI rows): - Federation — state sync, invites, peer notifications - Peers — address/DID rotation broadcasts - Peer Files — content catalog download/browse/preview - Messaging — archipelago channel + mesh bridge - Mesh File Sharing — content_ref blob fetches Implementation: - settings::transport — persisted struct + process-wide OnceLock handle (so deep call sites don't need data_dir threaded through signatures). On-disk file: <data_dir>/settings/transport_preferences.json; missing or corrupt → defaults (Auto everywhere). - settings::transport::init() called from main.rs after config load. - fips::dial::PeerRequest gains a .service(kind) builder; send_* checks the preference before choosing a transport. FIPS-only fails loudly when FIPS is unavailable (so users who pick it know when something falls back). - Every FIPS-first migration site tags its PeerRequest with the matching PeerService so the toggle actually applies. - transport.preferences + transport.set-preference RPCs added; wired into the dispatcher. - neode-ui/src/views/settings/TransportPrefsCard.vue — standalone card with a 5-row Auto/FIPS/Tor tri-state. Not wired into Settings.vue — the user places components themselves (see feedback_ui_entry_points). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
234 lines
8.0 KiB
Rust
234 lines
8.0 KiB
Rust
// Archipelago Bitcoin Node OS - Native Backend
|
|
// Pure Archipelago implementation, no StartOS dependencies
|
|
|
|
// Crate-level clippy allowances. These are stylistic lints that fire on
|
|
// large legacy surfaces and offer no correctness benefit to chase on every
|
|
// PR — suppressing them crate-wide keeps CI gating on correctness issues
|
|
// without drowning in cleanup noise every time a new toolchain tightens.
|
|
#![allow(
|
|
clippy::too_many_arguments,
|
|
clippy::doc_lazy_continuation,
|
|
clippy::type_complexity,
|
|
clippy::enum_variant_names,
|
|
clippy::wildcard_in_or_patterns,
|
|
clippy::assertions_on_constants,
|
|
clippy::drop_non_drop,
|
|
clippy::unused_io_amount,
|
|
clippy::ptr_arg
|
|
)]
|
|
|
|
use anyhow::{Context, Result};
|
|
use std::net::SocketAddr;
|
|
use tokio::signal;
|
|
use tracing::info;
|
|
|
|
mod api;
|
|
mod auth;
|
|
mod backup;
|
|
mod bitcoin_rpc;
|
|
mod blobs;
|
|
mod config;
|
|
mod constants;
|
|
mod container;
|
|
mod content_server;
|
|
mod crash_recovery;
|
|
mod credentials;
|
|
mod data_model;
|
|
mod disk_monitor;
|
|
mod electrs_status;
|
|
mod federation;
|
|
mod fips;
|
|
mod health_monitor;
|
|
mod identity;
|
|
mod identity_manager;
|
|
mod marketplace;
|
|
mod mesh;
|
|
mod monitoring;
|
|
mod names;
|
|
mod network;
|
|
mod node_message;
|
|
mod nostr_discovery;
|
|
mod nostr_handshake;
|
|
mod nostr_relays;
|
|
mod peers;
|
|
mod port_allocator;
|
|
mod rate_limit;
|
|
pub mod seed;
|
|
mod server;
|
|
mod session;
|
|
mod settings;
|
|
mod state;
|
|
mod streaming;
|
|
mod totp;
|
|
mod transport;
|
|
mod update;
|
|
mod vpn;
|
|
mod wallet;
|
|
mod webhooks;
|
|
|
|
use config::Config;
|
|
use server::Server;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
let startup_start = std::time::Instant::now();
|
|
crash_recovery::init_start_time();
|
|
|
|
// Initialize tracing
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(
|
|
tracing_subscriber::EnvFilter::try_from_default_env()
|
|
.unwrap_or_else(|_| "archipelago=debug,info".into()),
|
|
)
|
|
.init();
|
|
|
|
info!("Starting Archipelago Bitcoin Node OS");
|
|
|
|
// Load configuration
|
|
let config = Config::load().await?;
|
|
info!("📁 Data directory: {}", config.data_dir.display());
|
|
|
|
// Load user transport preferences so peer-to-peer call sites can
|
|
// consult them from any module without threading a handle through
|
|
// deep async chains. Missing/corrupt file → default (Auto everywhere).
|
|
if let Err(e) = settings::transport::init(&config.data_dir).await {
|
|
tracing::warn!(
|
|
"Failed to initialise transport preferences: {} — using defaults",
|
|
e
|
|
);
|
|
}
|
|
|
|
// Write PID marker early so we can detect crashes on next startup
|
|
crash_recovery::write_pid_marker(&config.data_dir).await?;
|
|
|
|
// Crash recovery runs in background so health endpoint is available immediately
|
|
{
|
|
let data_dir = config.data_dir.clone();
|
|
tokio::spawn(async move {
|
|
// Check if previous instance shut down cleanly
|
|
match crash_recovery::check_for_crash(&data_dir).await {
|
|
Ok(Some(containers)) => {
|
|
info!(
|
|
"🔧 Recovering {} containers from previous crash...",
|
|
containers.len()
|
|
);
|
|
let report = crash_recovery::recover_containers(&containers).await;
|
|
info!(
|
|
"🔧 Recovery complete: {}/{} containers restarted (failed: {:?})",
|
|
report.recovered, report.total, report.failed
|
|
);
|
|
}
|
|
Ok(None) => {}
|
|
Err(e) => {
|
|
tracing::warn!("Crash recovery check failed: {}", e);
|
|
}
|
|
}
|
|
|
|
// Start any stopped containers (handles clean reboot)
|
|
// Skips user-stopped containers, uses tier ordering
|
|
let boot_report = crash_recovery::start_stopped_containers(&data_dir).await;
|
|
if boot_report.total > 0 {
|
|
info!(
|
|
"🔄 Boot startup: {}/{} containers started (failed: {:?})",
|
|
boot_report.recovered, boot_report.total, boot_report.failed
|
|
);
|
|
}
|
|
|
|
// Signal to health monitor that boot recovery is done
|
|
crash_recovery::mark_recovery_complete();
|
|
|
|
// Boot reconciliation disabled — the reconciler creates ALL containers
|
|
// from specs, which is wrong on unbundled installs where only user-chosen
|
|
// apps should exist. The health monitor handles restarting existing
|
|
// containers. Run reconcile-containers.sh manually when needed.
|
|
// crash_recovery::run_boot_reconciliation().await;
|
|
});
|
|
}
|
|
|
|
// Ensure a default user exists so login works after install/onboarding.
|
|
// In production, the default password is "password123" (shown during install).
|
|
// In dev mode, the dev default password is used.
|
|
// Don't auto-create default user — let onboarding flow handle password setup
|
|
// via auth.setup RPC. The Login page detects is_setup=false and shows
|
|
// "Create Password" form instead of login form.
|
|
|
|
// Create server
|
|
let server = Server::new(config.clone()).await?;
|
|
|
|
// Start server
|
|
let addr: SocketAddr = format!("{}:{}", config.bind_host, config.bind_port)
|
|
.parse()
|
|
.context("Invalid bind address")?;
|
|
|
|
// If the FIPS daemon has brought up `fips0` with a ULA address, bind a
|
|
// second listener there for peer-to-peer traffic. The peer listener
|
|
// applies a path whitelist (see server::is_peer_allowed_path) so FIPS
|
|
// peers can only reach signed peer endpoints, not internal surfaces.
|
|
// No address → no peer listener (fresh install pre-onboarding, fips
|
|
// service down, etc.); peers fall through to Tor until next restart.
|
|
let peer_addr: Option<SocketAddr> = fips::iface::fips0_ula().map(|ip| {
|
|
SocketAddr::new(std::net::IpAddr::V6(ip), fips::dial::PEER_PORT)
|
|
});
|
|
if let Some(pa) = peer_addr {
|
|
info!("FIPS peer listener will bind {}", pa);
|
|
}
|
|
|
|
// Spawn background update scheduler
|
|
let update_data_dir = config.data_dir.clone();
|
|
tokio::spawn(async move {
|
|
update::run_update_scheduler(update_data_dir).await;
|
|
});
|
|
|
|
// Spawn periodic container snapshot (for crash recovery)
|
|
crash_recovery::spawn_snapshot_task(config.data_dir.clone());
|
|
|
|
// Spawn disk space monitor (warns at 85%, auto-cleans at 90%)
|
|
disk_monitor::spawn_disk_monitor(config.data_dir.clone());
|
|
|
|
// Spawn ElectrumX status cache (refreshes every 15s, serves cached data to avoid race conditions)
|
|
electrs_status::spawn_status_cache();
|
|
|
|
let startup_ms = startup_start.elapsed().as_millis();
|
|
info!(
|
|
"Server listening on http://{} (startup: {}ms)",
|
|
addr, startup_ms
|
|
);
|
|
info!("RPC API: http://{}/rpc/v1", addr);
|
|
info!("WebSocket: ws://{}/ws", addr);
|
|
|
|
// Notify systemd that we're ready (Type=notify)
|
|
// Note: first param `false` keeps NOTIFY_SOCKET so watchdog pings work
|
|
let _ = sd_notify::notify(false, &[sd_notify::NotifyState::Ready]);
|
|
|
|
// Spawn systemd watchdog ping (WatchdogSec=300, ping every 120s)
|
|
tokio::spawn(async {
|
|
let mut interval = tokio::time::interval(std::time::Duration::from_secs(120));
|
|
loop {
|
|
interval.tick().await;
|
|
let _ = sd_notify::notify(false, &[sd_notify::NotifyState::Watchdog]);
|
|
}
|
|
});
|
|
|
|
// Graceful shutdown: wait for SIGTERM or SIGINT
|
|
let mut sigterm = signal::unix::signal(signal::unix::SignalKind::terminate())
|
|
.context("Failed to register SIGTERM handler")?;
|
|
let shutdown = async move {
|
|
tokio::select! {
|
|
_ = signal::ctrl_c() => {
|
|
info!("Received SIGINT (Ctrl+C), initiating graceful shutdown...");
|
|
}
|
|
_ = sigterm.recv() => {
|
|
info!("Received SIGTERM, initiating graceful shutdown...");
|
|
}
|
|
}
|
|
};
|
|
|
|
server.serve_with_shutdown(addr, peer_addr, shutdown).await?;
|
|
|
|
// Clean shutdown: remove PID marker so next startup doesn't trigger recovery
|
|
crash_recovery::remove_pid_marker(&config.data_dir).await;
|
|
|
|
info!("Archipelago shut down cleanly");
|
|
Ok(())
|
|
}
|