Prune commentary and stale Rust port notes
This commit is contained in:
1 parent
5428cd75c9
commit
25370731d0
193 files changed
+693
-16219
No files matched your search
@@ -1,16 +1,3 @@
|
||||
//! A phone interface to AI coding sessions -- the backend. See PLAN.md for the
|
||||
//! whole picture; this is the entry point: config + session registry, token
|
||||
//! bootstrap, and the one TLS listener.
|
||||
//!
|
||||
//! The listener binds the WireGuard interface's address only, and fails closed
|
||||
//! -- if `wg0` is down the server refuses to start rather than falling back to
|
||||
//! `0.0.0.0`, because this API *is* remote code execution and the tunnel is
|
||||
//! what keeps its pre-auth surface off the open internet. `--bind` overrides
|
||||
//! explicitly for development; a deliberate, logged choice, never a fallback.
|
||||
//!
|
||||
//! There is no plaintext listener at all, so the bearer token can't travel
|
||||
//! unencrypted by misconfiguration -- even inside the tunnel.
|
||||
|
||||
mod auth;
|
||||
mod config;
|
||||
mod files;
|
||||
@@ -42,73 +29,35 @@ use session::SessionManager;
|
||||
|
||||
const DEFAULT_PORT: u16 = 8443;
|
||||
|
||||
/// Serves AI coding sessions (Claude Code, llama.cpp) to the phone app.
|
||||
#[derive(Parser)]
|
||||
struct Args {
|
||||
/// TLS port for the whole API surface.
|
||||
#[arg(long, default_value_t = DEFAULT_PORT)]
|
||||
port: u16,
|
||||
|
||||
/// Address to bind instead of the wg0 interface's -- a development override
|
||||
/// (127.0.0.1 for curl, or a LAN address for a phone before the tunnel
|
||||
/// exists). Production runs without it and fails closed when wg0 is absent.
|
||||
#[arg(long)]
|
||||
bind: Option<IpAddr>,
|
||||
|
||||
/// Where the token hashes, providers, hosts, and session list live.
|
||||
/// Defaults to `$XDG_CONFIG_HOME/ai-app/config.ron`.
|
||||
#[arg(long)]
|
||||
config: Option<PathBuf>,
|
||||
|
||||
/// Directory for per-session data (transcripts, attachments, images).
|
||||
/// Defaults to `$XDG_DATA_HOME/ai-app/sessions`.
|
||||
#[arg(long)]
|
||||
data_dir: Option<PathBuf>,
|
||||
|
||||
/// Directory for downloaded GGUF models. Defaults to
|
||||
/// `$XDG_DATA_HOME/ai-app/models`.
|
||||
#[arg(long)]
|
||||
models_dir: Option<PathBuf>,
|
||||
|
||||
/// Directory holding the TLS certificates, generated here on first
|
||||
/// start. Defaults to `$XDG_CONFIG_HOME/ai-app/certs`.
|
||||
#[arg(long)]
|
||||
certs: Option<PathBuf>,
|
||||
|
||||
/// Invalidate every enrolled token, generate a fresh one, and print
|
||||
/// its enrollment QR -- the whole lost-phone story.
|
||||
#[arg(long)]
|
||||
rotate_token: bool,
|
||||
|
||||
/// Enroll one more device without touching the running server: mint a
|
||||
/// token, print its enrollment link (one line, stdout, nothing else) and
|
||||
/// exit. The server adopts the token the first time that device uses it.
|
||||
/// For a tool that opens the link on the phone, where a QR printed here
|
||||
/// cannot be scanned.
|
||||
#[arg(long)]
|
||||
enroll_link: bool,
|
||||
|
||||
/// Hold every response back by this many milliseconds.
|
||||
///
|
||||
/// A development aid, and a specific one: over the tunnel a phone's requests
|
||||
/// take tens to hundreds of milliseconds, and several faults live entirely
|
||||
/// in what the app does *while* one is outstanding. On a loopback server
|
||||
/// those windows close before anything can be observed and the bug looks
|
||||
/// like it is not there.
|
||||
#[arg(long, default_value_t = 0, value_name = "MS")]
|
||||
delay: u64,
|
||||
|
||||
/// Mark every session spawned here as throwaway: its process is stopped
|
||||
/// when this server exits, instead of being left running for the next start
|
||||
/// to adopt. On by default in a debug build.
|
||||
///
|
||||
/// Sessions outlive the backend on purpose, which is right for the ones
|
||||
/// somebody is using and wrong for the ones a test made -- twelve of those
|
||||
/// accumulated on this machine in a day, each holding a conversation open.
|
||||
///
|
||||
/// The flag decides only what *new* sessions are marked as. What happens on
|
||||
/// the way out is decided by the mark, which outlives the server that made
|
||||
/// it.
|
||||
#[arg(
|
||||
long,
|
||||
default_value_t = cfg!(debug_assertions),
|
||||
@@ -131,13 +80,6 @@ fn certs_dir(certs: &Option<std::path::PathBuf>) -> std::path::PathBuf {
|
||||
.unwrap_or_else(|| config_home("ai-app").join("certs"))
|
||||
}
|
||||
|
||||
/// The CA every enrollment link carries (`wg_app_link::enroll::ca_param`),
|
||||
/// so an app that was not built on this machine can still pin it -- the
|
||||
/// iris client is cross-compiled in a VM and run against this server.
|
||||
///
|
||||
/// `--enroll-link` reads it before the server has been anywhere near
|
||||
/// `certs::ensure`, so the file may genuinely not exist yet; the message
|
||||
/// says what makes it exist rather than reporting a bare ENOENT.
|
||||
fn read_ca(certs_dir: &std::path::Path) -> Result<String> {
|
||||
let path = certs_dir.join("ca.pem");
|
||||
std::fs::read_to_string(&path).with_context(|| {
|
||||
@@ -151,8 +93,6 @@ fn read_ca(certs_dir: &std::path::Path) -> Result<String> {
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> Result<()> {
|
||||
// Both rustls crypto providers are in the dependency graph (ureq brings
|
||||
// ring, axum-server brings aws-lc-rs), so rustls refuses to pick one itself.
|
||||
rustls::crypto::aws_lc_rs::default_provider()
|
||||
.install_default()
|
||||
.expect("no other TLS crypto provider is installed before main");
|
||||
@@ -172,10 +112,6 @@ async fn main() -> Result<()> {
|
||||
let config_path = args
|
||||
.config
|
||||
.unwrap_or_else(|| config_home("ai-app").join("config.ron"));
|
||||
// Before the manager exists, on purpose: constructing it and seeding setups
|
||||
// touches sessions and subprocesses this invocation has no business with
|
||||
// while another instance is serving. Only the hash reaches disk, in the
|
||||
// spool `auth.rs` reads; the link goes to stdout alone.
|
||||
if args.enroll_link {
|
||||
let bind_ip = match args.bind {
|
||||
Some(ip) => ip,
|
||||
@@ -230,9 +166,6 @@ async fn main() -> Result<()> {
|
||||
for setup in manager.setups() {
|
||||
match &setup.ssh {
|
||||
Some(ssh) => tracing::info!(" setup \"{}\" -> {}", setup.name, ssh.address),
|
||||
// No parenthetical naming the local machine: the default setup is
|
||||
// *called* "this machine", and the line read "setup this machine
|
||||
// (this machine)".
|
||||
None => tracing::info!(" setup \"{}\" runs here", setup.name),
|
||||
}
|
||||
for provider in &setup.providers {
|
||||
@@ -248,9 +181,6 @@ async fn main() -> Result<()> {
|
||||
);
|
||||
}
|
||||
|
||||
// Before the interface check below, deliberately: the certificates are also
|
||||
// what the phone app embeds at build time, so they need to be obtainable on
|
||||
// a machine whose tunnel isn't up yet. The leaf is reissued on every start.
|
||||
let certs_dir = certs_dir(&args.certs);
|
||||
let certificates = wg_app_link::certs::ensure("ai-app", &certs_dir, &netif::local_addresses())
|
||||
.with_context(|| format!("failed to prepare certificates in {}", certs_dir.display()))?;
|
||||
@@ -273,8 +203,6 @@ async fn main() -> Result<()> {
|
||||
None => netif::wg_address("ai-server")?,
|
||||
};
|
||||
|
||||
// Token bootstrap: first run generates one; --rotate-token replaces whatever
|
||||
// exists. Either way the plaintext appears exactly once, in the QR.
|
||||
if args.rotate_token || manager.tokens().is_empty() {
|
||||
let rotating = args.rotate_token && !manager.tokens().is_empty();
|
||||
let token = enroll::generate_token();
|
||||
@@ -308,15 +236,8 @@ async fn main() -> Result<()> {
|
||||
// that sets it is typed; the monitor is what serves it.
|
||||
let monitor = Arc::new(usage::UsageMonitor::new(manager.usage_fixture()));
|
||||
|
||||
// The one thing in here that acts without a request behind it: a session
|
||||
// switched to auto-resume waits out its account's usage limit and picks
|
||||
// itself back up. Started whether or not any session has it on, because
|
||||
// the setting is per session and changes from the phone -- see
|
||||
// `resume::run`.
|
||||
tokio::spawn(resume::run(Arc::clone(&manager), Arc::clone(&monitor)));
|
||||
|
||||
// The bearer-token middleware wraps the entire router -- routes and fallback
|
||||
// alike -- here and only here, so a new route can't forget auth.
|
||||
let app = routes::router(Arc::clone(&manager))
|
||||
.merge(routes::usage_router(monitor, Arc::clone(&manager)))
|
||||
.merge(routes::models_router(Arc::clone(&models)))
|
||||
@@ -325,9 +246,6 @@ async fn main() -> Result<()> {
|
||||
auth::require_token,
|
||||
));
|
||||
|
||||
// Outside the auth layer, so an unauthenticated request is refused at the
|
||||
// speed it always was: this is here to slow the app down, not to widen the
|
||||
// window on anything guessing at tokens.
|
||||
let app = match args.delay {
|
||||
0 => app,
|
||||
ms => {
|
||||
@@ -344,11 +262,6 @@ async fn main() -> Result<()> {
|
||||
let addr = SocketAddr::new(bind_ip, args.port);
|
||||
tracing::info!("serving https://{addr}");
|
||||
|
||||
// Let go of the sessions on the way out rather than stopping them: their
|
||||
// processes are meant to outlive this one. Each is recorded in its session
|
||||
// directory and adopted again on the way back up. The exception is the
|
||||
// sessions marked throwaway, which are stopped first. Both signals, because
|
||||
// systemd and OpenRC send TERM while a terminal sends INT.
|
||||
let serving = axum_server::bind_rustls(addr, tls_config)
|
||||
.serve(app.into_make_service_with_connect_info::<SocketAddr>());
|
||||
let mut terminate = signal(SignalKind::terminate()).context("listening for SIGTERM")?;
|
||||
@@ -357,9 +270,6 @@ async fn main() -> Result<()> {
|
||||
_ = terminate.recv() => tracing::info!("SIGTERM -- letting go of sessions"),
|
||||
_ = tokio::signal::ctrl_c() => tracing::info!("interrupted -- letting go of sessions"),
|
||||
}
|
||||
// Stopped before the rest are let go of, and on every way out of the select
|
||||
// above: a throwaway session is one nobody meant to keep, and the whole point
|
||||
// is that nothing has to remember to clean it up.
|
||||
manager.stop_throwaway_sessions();
|
||||
manager.detach_all();
|
||||
|
||||
|
||||
Reference in new issue
Block a user