slancha-wire 0.5.13

Magic-wormhole for AI agents — bilateral signed-message bus over a mailbox relay
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
//! Daemon-orchestrated detached pair sessions.
//!
//! Problem: `wire pair-host` and `wire pair-join` block for the full pair
//! timeout (300s default) waiting for the peer to show up. If the operator's
//! terminal closes or the process is killed, the handshake dies — and on the
//! relay side leaves a stuck slot that needs `wire pair-abandon` to clean.
//!
//! Solution: pair-host/-join write a "pending pair" descriptor file and exit
//! in milliseconds. The `wire daemon` (already running for inbox sync) picks
//! up pending files each tick, runs the handshake, and transitions state
//! through the file. Operator confirms SAS via `wire pair-confirm <code>
//! <digits>` from any process; daemon finalizes on the next tick.
//!
//! State flow (status field on the file):
//!   request_host / request_guest
//!     ↓  daemon registers on relay, stores PakeSide in memory
//!   polling
//!     ↓  daemon polls for peer's SPAKE2 message; on arrival computes SAS
//!   sas_ready  (file now has `sas` field set; operator sees it via pair-list)
//!     ↓  `wire pair-confirm` validates typed digits, sets status=confirmed
//!   confirmed
//!     ↓  daemon finalizes (peer card exchange, trust pin); deletes file
//!   (gone)
//!
//! Terminal failure states: `aborted` (any error or user cancel),
//! `aborted_restart` (daemon restarted mid-handshake; PakeSide lost from
//! memory; operator must re-issue).
//!
//! In-memory PakeSide is the single point of fragility: it's not persisted,
//! so daemon restart drops live sessions. `cleanup_on_startup` releases the
//! relay slot and marks the file `aborted_restart` so the operator knows.
//! Daemon restarts are rare; this is an acceptable tradeoff vs. forking the
//! `spake2` crate to expose its internal scalar.

use anyhow::{Result, anyhow, bail};
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::{Mutex, OnceLock};

use crate::pair_session::{
    PairSessionState, pair_session_confirm_sas, pair_session_finalize, pair_session_open,
    pair_session_try_sas,
};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PendingPair {
    /// The shared code phrase (e.g. "30-UE2BZG").
    pub code: String,
    /// SHA-256 of the domain-tagged code. Used to call pair_abandon on
    /// failure paths without re-deriving.
    pub code_hash: String,
    /// "host" or "guest".
    pub role: String,
    pub relay_url: String,
    /// See state machine in module docs.
    pub status: String,
    /// SAS digits (6-char string) once daemon computes them. None until then.
    #[serde(default)]
    pub sas: Option<String>,
    /// Set after pair_session_finalize completes.
    #[serde(default)]
    pub peer_did: Option<String>,
    /// ISO-8601 UTC.
    pub created_at: String,
    /// Last error message if status=aborted or aborted_restart.
    #[serde(default)]
    pub last_error: Option<String>,
    /// Relay pair_id, written by daemon after `pair_open` succeeds. Lets a
    /// fresh daemon process restore the in-memory PairSessionState without
    /// re-registering on the relay.
    #[serde(default)]
    pub pair_id: Option<String>,
    /// Our slot_id on the relay (we own this slot; bootstrap exchange writes
    /// to it). Same restore-purpose as pair_id.
    #[serde(default)]
    pub our_slot_id: Option<String>,
    /// Our slot_token (auth for posting to our slot). Already lives in
    /// relay_state; duplicated here so restore doesn't need a second file read.
    #[serde(default)]
    pub our_slot_token: Option<String>,
    /// Base64 of the 32-byte SPAKE2 seed. Lets restore_pair_session
    /// reconstruct an equivalent PakeSide. SECURITY: file is in
    /// $WIRE_HOME/state/wire/pending-pair/ which is user-only by default
    /// (inherits umask). Pending files live minutes; daemon GCs terminal
    /// states after 1 hour.
    #[serde(default)]
    pub spake2_seed_b64: Option<String>,
}

pub fn pending_dir() -> Result<PathBuf> {
    let d = crate::config::state_dir()?.join("pending-pair");
    std::fs::create_dir_all(&d)?;
    Ok(d)
}

fn pending_path(code: &str) -> Result<PathBuf> {
    // Codes are alphanumeric + dash; sanitize defensively.
    let safe: String = code
        .chars()
        .map(|c| {
            if c.is_ascii_alphanumeric() || c == '-' {
                c
            } else {
                '_'
            }
        })
        .collect();
    Ok(pending_dir()?.join(format!("{safe}.json")))
}

pub fn write_pending(p: &PendingPair) -> Result<()> {
    let path = pending_path(&p.code)?;
    let body = serde_json::to_string_pretty(p)?;
    std::fs::write(&path, body)?;
    Ok(())
}

pub fn read_pending(code: &str) -> Result<Option<PendingPair>> {
    let path = pending_path(code)?;
    if !path.exists() {
        return Ok(None);
    }
    let body = std::fs::read_to_string(&path)?;
    Ok(Some(serde_json::from_str(&body)?))
}

pub fn delete_pending(code: &str) -> Result<()> {
    let path = pending_path(code)?;
    if path.exists() {
        std::fs::remove_file(&path)?;
    }
    Ok(())
}

pub fn list_pending() -> Result<Vec<PendingPair>> {
    let dir = pending_dir()?;
    let mut out = Vec::new();
    if !dir.exists() {
        return Ok(out);
    }
    for entry in std::fs::read_dir(&dir)? {
        let entry = entry?;
        if entry.file_type()?.is_file() {
            let body = std::fs::read_to_string(entry.path())?;
            if let Ok(p) = serde_json::from_str::<PendingPair>(&body) {
                out.push(p);
            }
        }
    }
    out.sort_by(|a, b| a.created_at.cmp(&b.created_at));
    Ok(out)
}

/// In-memory map of code → live PairSessionState. Lost on daemon restart;
/// see `cleanup_on_startup` for recovery.
static LIVE_SESSIONS: OnceLock<Mutex<HashMap<String, PairSessionState>>> = OnceLock::new();

fn live() -> &'static Mutex<HashMap<String, PairSessionState>> {
    LIVE_SESSIONS.get_or_init(|| Mutex::new(HashMap::new()))
}

/// Tracks "is this daemon process the same one that opened the live sessions?"
/// — a PID file at `$WIRE_HOME/state/wire/daemon.pid` containing the PID of
/// the daemon process that owns the in-memory `LIVE_SESSIONS` map. On startup:
/// if the PID file exists AND that PID is alive → previous daemon is somehow
/// still running (refuse, or no-op cleanup); if PID file exists but PID dead
/// → previous daemon crashed, run cleanup. If no PID file → first run, no
/// pending sessions could have a live state anyway, skip cleanup. Then write
/// our own PID.
fn daemon_pid_file() -> Result<PathBuf> {
    Ok(crate::config::state_dir()?.join("daemon.pid"))
}

fn process_alive(pid: u32) -> bool {
    #[cfg(target_os = "linux")]
    {
        std::path::Path::new(&format!("/proc/{pid}")).exists()
    }
    #[cfg(not(target_os = "linux"))]
    {
        use std::process::Command;
        Command::new("kill")
            .args(["-0", &pid.to_string()])
            .output()
            .map(|o| o.status.success())
            .unwrap_or(false)
    }
}

/// Run on daemon startup. Only marks pending files aborted_restart if the
/// previous daemon (according to PID file) is no longer alive. Idempotent
/// for the same daemon process (writes its own PID, then re-running this
/// function on subsequent calls is a no-op).
pub fn cleanup_on_startup() -> Result<()> {
    let pid_file = daemon_pid_file()?;
    let my_pid = std::process::id();
    let prev_alive = if pid_file.exists() {
        if let Ok(s) = std::fs::read_to_string(&pid_file) {
            if let Ok(pid) = s.trim().parse::<u32>() {
                if pid == my_pid {
                    // We are the daemon that wrote this PID — already initialized.
                    return Ok(());
                }
                process_alive(pid)
            } else {
                false
            }
        } else {
            false
        }
    } else {
        // No previous daemon recorded — anything stale must be from a much
        // older process that already exited. Treat as "previous daemon dead"
        // so we clean up rather than leak.
        false
    };

    if !prev_alive {
        // For each non-terminal pending file, try to restore the in-memory
        // PairSessionState from persisted fields. Falls back to abort if the
        // file is from a pre-persistence release (no seed) OR restore fails.
        for mut p in list_pending()? {
            let transient =
                p.status == "polling" || p.status == "request_host" || p.status == "request_guest";
            if !transient {
                continue;
            }
            let can_restore = p.status == "polling"
                && p.pair_id.is_some()
                && p.our_slot_id.is_some()
                && p.our_slot_token.is_some()
                && p.spake2_seed_b64.is_some();
            if can_restore {
                let restore_result = (|| -> Result<()> {
                    let seed_bytes =
                        crate::signing::b64decode(p.spake2_seed_b64.as_ref().unwrap())?;
                    if seed_bytes.len() != 32 {
                        bail!(
                            "spake2_seed_b64 decoded to {} bytes, want 32",
                            seed_bytes.len()
                        );
                    }
                    let mut seed = [0u8; 32];
                    seed.copy_from_slice(&seed_bytes);
                    let role = match p.role.as_str() {
                        "host" => "host",
                        "guest" => "guest",
                        _ => bail!("invalid role {:?}", p.role),
                    };
                    let s = crate::pair_session::restore_pair_session(
                        role,
                        &p.relay_url,
                        p.pair_id.as_ref().unwrap(),
                        &p.code,
                        &p.code_hash,
                        p.our_slot_id.as_ref().unwrap(),
                        p.our_slot_token.as_ref().unwrap(),
                        seed,
                    )?;
                    live().lock().unwrap().insert(p.code.clone(), s);
                    Ok(())
                })();
                match restore_result {
                    Ok(()) => {
                        // Successful restore — pending file keeps status=polling.
                        continue;
                    }
                    Err(e) => {
                        // Restore failed — fall through to abort.
                        p.last_error = Some(format!("restore_pair_session failed: {e}"));
                    }
                }
            }
            // Unrecoverable: abort (e.g. request_host that never made it past
            // pair_open before crash, or a file from a pre-persistence build).
            let client = crate::relay_client::RelayClient::new(&p.relay_url);
            let _ = client.pair_abandon(&p.code_hash);
            p.status = "aborted_restart".to_string();
            if p.last_error.is_none() {
                p.last_error = Some(
                    "daemon restarted mid-handshake; SPAKE2 state could not be restored (likely pre-v0.3.12 pending file). Re-issue with a fresh code phrase.".to_string(),
                );
            }
            write_pending(&p)?;
            crate::os_notify::toast(
                &format!("wire — pair aborted on restart ({})", p.code),
                "Daemon restarted mid-handshake. Re-issue: wire pair-host --detach",
            );
        }
    }

    if let Some(parent) = pid_file.parent() {
        std::fs::create_dir_all(parent).ok();
    }
    // P0.4 (0.5.11): daemon writes the versioned JSON pidfile shape, not
    // a raw int. ensure_up::ensure_background also writes one when it
    // spawns the daemon, but the daemon's own startup path runs through
    // cleanup_on_startup too — so this side must also write the new shape
    // or we'd silently regress to legacy-int on every daemon restart.
    let bin_path = std::env::current_exe()
        .map(|p| p.to_string_lossy().to_string())
        .unwrap_or_default();
    let started_at = time::OffsetDateTime::now_utc()
        .format(&time::format_description::well_known::Rfc3339)
        .unwrap_or_default();
    let did = crate::config::read_agent_card()
        .ok()
        .and_then(|card| {
            card.get("did")
                .and_then(serde_json::Value::as_str)
                .map(str::to_string)
        });
    let relay_url = crate::config::read_relay_state()
        .ok()
        .and_then(|state| {
            state
                .get("self")
                .and_then(|s| s.get("relay_url"))
                .and_then(serde_json::Value::as_str)
                .map(str::to_string)
        });
    let record = crate::ensure_up::DaemonPid {
        schema: crate::ensure_up::DAEMON_PID_SCHEMA.to_string(),
        pid: my_pid,
        bin_path,
        version: env!("CARGO_PKG_VERSION").to_string(),
        started_at,
        did,
        relay_url,
    };
    if let Ok(body) = serde_json::to_vec_pretty(&record) {
        let _ = std::fs::write(&pid_file, body);
    }
    Ok(())
}

/// Terminal-state TTL: aborted / aborted_restart files older than this get
/// silently deleted in `tick()`. Keeps `pair-list` output tidy without losing
/// short-term diagnostic value.
const TERMINAL_TTL_SECS: i64 = 3600;

/// One daemon tick. Walks every pending file and advances it one step in the
/// state machine. Each file's failures are isolated — a single broken file
/// doesn't stop processing of the rest. Also GCs old terminal-state files.
pub fn tick() -> Result<Value> {
    let mut transitions: Vec<Value> = Vec::new();
    let now = time::OffsetDateTime::now_utc();
    for mut p in list_pending()? {
        let prev_status = p.status.clone();

        // GC long-dead terminal files.
        if (p.status == "aborted" || p.status == "aborted_restart")
            && let Ok(created) = time::OffsetDateTime::parse(
                &p.created_at,
                &time::format_description::well_known::Rfc3339,
            )
            && (now - created).whole_seconds() > TERMINAL_TTL_SECS
        {
            let _ = delete_pending(&p.code);
            continue;
        }

        if let Err(e) = process_one(&mut p) {
            p.last_error = Some(format!("{e:#}"));
            p.status = "aborted".to_string();
            // Best-effort abandon on relay so we don't leak a slot.
            let client = crate::relay_client::RelayClient::new(&p.relay_url);
            let _ = client.pair_abandon(&p.code_hash);
            let _ = write_pending(&p);
            live().lock().unwrap().remove(&p.code);
            // Push: operator should know without checking pair-list.
            let title = format!("wire — pair aborted ({})", p.code);
            let body = p
                .last_error
                .clone()
                .unwrap_or_else(|| "(no detail)".to_string());
            crate::os_notify::toast(&title, &body);
        }
        if p.status != prev_status {
            transitions.push(json!({
                "code": p.code,
                "from": prev_status,
                "to": p.status,
                "sas": p.sas,
                "peer_did": p.peer_did,
            }));
        }
    }
    Ok(json!({"transitions": transitions}))
}

fn process_one(p: &mut PendingPair) -> Result<()> {
    match p.status.as_str() {
        "request_host" => {
            let s = pair_session_open("host", &p.relay_url, Some(&p.code))?;
            // Persist restore state to disk BEFORE inserting into live map —
            // ensures a crash between insert and file-write doesn't lose the
            // seed/pair_id needed to recover.
            p.pair_id = Some(s.pair_id.clone());
            p.our_slot_id = Some(s.our_slot_id.clone());
            p.our_slot_token = Some(s.our_slot_token.clone());
            p.spake2_seed_b64 = Some(crate::signing::b64encode(&s.spake2_seed));
            live().lock().unwrap().insert(p.code.clone(), s);
            p.status = "polling".to_string();
            write_pending(p)?;
        }
        "request_guest" => {
            let s = pair_session_open("guest", &p.relay_url, Some(&p.code))?;
            p.pair_id = Some(s.pair_id.clone());
            p.our_slot_id = Some(s.our_slot_id.clone());
            p.our_slot_token = Some(s.our_slot_token.clone());
            p.spake2_seed_b64 = Some(crate::signing::b64encode(&s.spake2_seed));
            live().lock().unwrap().insert(p.code.clone(), s);
            p.status = "polling".to_string();
            write_pending(p)?;
        }
        "polling" => {
            let mut sessions = live().lock().unwrap();
            let s = sessions
                .get_mut(&p.code)
                .ok_or_else(|| anyhow!("no live session for {} (daemon restart?)", p.code))?;
            if pair_session_try_sas(s)?.is_some() {
                p.status = "sas_ready".to_string();
                p.sas = s.sas.clone();
                write_pending(p)?;
                // Push to the operator's desktop so they don't have to remember
                // to `wire pair-list`. Failures are swallowed in os_notify::toast.
                let formatted = p
                    .sas
                    .as_ref()
                    .map(|d| format!("{}-{}", &d[..3], &d[3..]))
                    .unwrap_or_default();
                let title = format!("wire — pair SAS ready ({})", p.code);
                let body = format!(
                    "Digits: {formatted}\nCompare with peer, then:\nwire pair-confirm {} {}",
                    p.code,
                    p.sas.as_deref().unwrap_or("")
                );
                crate::os_notify::toast(&title, &body);
            }
        }
        "confirmed" => {
            // Operator typed matching digits via `wire pair-confirm`. Daemon
            // owns the live PairSessionState and must drive the final SPAKE2
            // bootstrap exchange itself.
            let mut sessions = live().lock().unwrap();
            let s = sessions.get_mut(&p.code).ok_or_else(|| {
                anyhow!(
                    "no live session for {} (status=confirmed but session lost; daemon restart between sas_ready and confirmed)",
                    p.code
                )
            })?;
            let digits = p
                .sas
                .clone()
                .ok_or_else(|| anyhow!("status=confirmed but sas missing"))?;
            pair_session_confirm_sas(s, &digits)?;
            // 30s timeout for the bootstrap exchange — both sides should already
            // be in the same tick window. If this fails, status flips to aborted.
            let outcome = pair_session_finalize(s, 30)?;
            p.peer_did = outcome
                .get("peer_did")
                .and_then(Value::as_str)
                .map(str::to_string);
            sessions.remove(&p.code);
            delete_pending(&p.code)?;
            // Push a "paired" toast — closes the loop for the operator.
            let title = format!("wire — paired ({})", p.code);
            let body = format!(
                "Peer: {}\n`wire peers` to confirm.",
                p.peer_did.as_deref().unwrap_or("?")
            );
            crate::os_notify::toast(&title, &body);
        }
        // sas_ready (operator hasn't confirmed yet), aborted, aborted_restart:
        // terminal-from-daemon's-POV — nothing to do.
        _ => {}
    }
    Ok(())
}