trusty-console 0.9.1

Web console that detects and surfaces running trusty services as a home page with service cards
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
//! Operator-driven cleanup: prune stale index registrations, compact a palace
//! (#6371).
//!
//! Why: #6360 gave the dashboard one delete per row, which is the wrong shape
//! for the leak these routes exist for. A host accumulates dozens of index
//! registrations whose root was wiped (#4255) — 60 of them on the owner's
//! machine, each keeping `warm_boot_degraded` true — and clearing them one row
//! at a time is why they were still there. On the memory side the daemon has
//! always been able to reclaim a palace's orphaned vectors and the dashboard
//! had no way to ask it to.
//!
//! What: two routes.
//!   - `POST /api/console/search/prune-indexes` takes the ids an operator
//!     CONFIRMED and deletes them one at a time through
//!     [`crate::routes::deletes::delete_index_on_socket`] — the same
//!     `search.index.delete` a single-row delete uses, which since #6365
//!     also removes a registration the warm-boot allowlist excluded. This
//!     route discovers nothing and selects nothing: the candidate list comes
//!     from the daemon's own `search.registry.orphans` census, which the UI
//!     reaches through `/api/search/registry/orphans` (#6285) so there is no
//!     second answer to "which registrations are stale".
//!   - `POST /api/console/memory/palaces/{id}/compact` calls trusty-memory's
//!     `palace_compact` over its socket.
//!
//! Neither route reports work it did not observe. The prune answers one row per
//! id with that id's own outcome, so a batch where three ids succeeded and one
//! was refused reads as exactly that — never as "cleaned". A batch that runs
//! past its budget reports the ids it never attempted as not attempted, rather
//! than leaving a caller to infer it from a missing row.
//!
//! Test: `prune_*` and `compact_*` in the `tests` module below.

use std::path::{Path, PathBuf};
use std::time::{Duration, Instant};

use axum::extract::{Path as AxumPath, State};
use axum::http::StatusCode;
use axum::response::{IntoResponse, Response};
use serde::Deserialize;
use serde_json::{Value, json};

use crate::routes::deletes::delete_index_on_socket;
use crate::routes::memory_rpc;
use crate::routes::verdict::{ActionVerdict, validate_id};
use crate::routes::{MEMORY_SERVICE, SEARCH_SERVICE_ID};
use crate::server::AppState;

/// Most registrations one prune request may delete.
///
/// Why: each id is a separate round trip to the daemon, and an unbounded list
/// would let one request hold a console worker for an unbounded time. A host
/// with more stale registrations than this prunes them in two passes, which the
/// census makes obvious because the leftovers are still listed.
const MAX_PRUNE_BATCH: usize = 100;

/// How long a whole prune batch may run before it stops attempting ids.
///
/// Why: the per-id timeout bounds one delete, not a hundred of them. Without a
/// batch budget a request could sit for the product of the two, and the
/// operator would have no answer at all rather than a partial one they can act
/// on. Ids past the budget are REPORTED, not silently dropped.
const PRUNE_BUDGET: Duration = Duration::from_secs(120);

// ─── trusty-search: prune a confirmed batch of registrations ────────────────

/// What one prune batch did, per id.
///
/// Why: a batch has no single outcome. `removed` and `failed` are counts a UI
/// can headline, and `rows` is what it must actually render — an operator whose
/// batch half-worked needs to know WHICH half.
/// Test: `prune_reports_per_item_outcomes_for_a_partial_batch`.
#[derive(Debug)]
pub(crate) struct PruneOutcome {
    /// One row per requested id, in request order.
    pub(crate) rows: Vec<Value>,
    /// How many ids the daemon confirmed it removed.
    pub(crate) removed: usize,
    /// How many ids did not get removed, for any reason.
    pub(crate) failed: usize,
}

impl PruneOutcome {
    /// The body this outcome answers with.
    ///
    /// `ok` is true only when every requested id was removed — a batch with one
    /// failure is not a successful cleanup, and a UI that reads `ok` must not be
    /// told otherwise.
    fn body(&self) -> Value {
        json!({
            "ok": self.failed == 0,
            "removed": self.removed,
            "failed": self.failed,
            "results": self.rows,
        })
    }

    /// `200` for a clean batch, `409` when any id was not removed.
    ///
    /// Mirrors the single-delete contract: the daemon's state prevented the
    /// work and the operator can act on it.
    fn status(&self) -> StatusCode {
        if self.failed == 0 {
            StatusCode::OK
        } else {
            StatusCode::CONFLICT
        }
    }
}

/// Delete each id in turn and record what the daemon said about it.
///
/// Why: this is the whole prune. It holds no idea of what "stale" means — the
/// daemon's census decides that and the operator confirms it — and it adds no
/// deletion path, calling the same [`delete_index_on_socket`] a single-row
/// delete uses. Its one job is to not lose a per-id outcome.
/// What: walks `ids` in order. Past `deadline` an id is not attempted and says
/// so. Every id produces exactly one row carrying `ok` and, when it failed, the
/// daemon's own message.
/// #6380: each id is re-checked against a FRESH census immediately before its
/// delete, and the delete carries the root path that census reported. An
/// operator confirms a list minutes after it was built, and an index id is
/// derived from its root path — so a path wiped and recreated in between names
/// a live index under the same id. A re-check that cannot run refuses the id;
/// see [`crate::routes::census_guard`].
///
/// Test: `prune_reports_per_item_outcomes_for_a_partial_batch`,
/// `prune_reports_an_expired_budget_as_unattempted`,
/// `prune_of_a_clean_batch_reports_every_id_removed`,
/// `prune_refuses_an_id_the_current_census_no_longer_calls_stale`,
/// `prune_refuses_every_remaining_id_when_the_daemon_drops_mid_batch`.
pub(crate) async fn prune_indexes_on_socket(
    socket: &Path,
    ids: &[String],
    delete_data: bool,
    deadline: Instant,
) -> PruneOutcome {
    let guard = crate::routes::census_guard::OrphanGuard::new(socket);
    let mut outcome = PruneOutcome {
        rows: Vec::with_capacity(ids.len()),
        removed: 0,
        failed: 0,
    };

    for id in ids {
        if Instant::now() >= deadline {
            outcome.failed += 1;
            outcome.rows.push(json!({
                "id": id,
                "ok": false,
                "error": format!(
                    "not attempted: the prune batch exceeded its {}s budget",
                    PRUNE_BUDGET.as_secs()
                ),
            }));
            continue;
        }

        // #6380: fail closed. A re-check that could not run, and a census that
        // no longer calls this id stale, both mean the delete does not happen.
        let expected_root = match guard.expected_root(id).await {
            Ok(root) => root,
            Err(reason) => {
                outcome.failed += 1;
                outcome
                    .rows
                    .push(json!({ "id": id, "ok": false, "error": reason }));
                continue;
            }
        };

        let verdict = delete_index_on_socket(socket, id, delete_data, Some(&expected_root)).await;
        if verdict.succeeded() {
            outcome.removed += 1;
            outcome.rows.push(json!({ "id": verdict.id(), "ok": true }));
        } else {
            outcome.failed += 1;
            outcome.rows.push(json!({
                "id": verdict.id(),
                "ok": false,
                "error": verdict.reason(),
            }));
        }
    }

    outcome
}

/// The body `POST /api/console/search/prune-indexes` takes.
///
/// No `Default` derive (#6422): a derived one would answer `delete_data: false`
/// while the serde default answers `true`, which is two answers to the one
/// question this type exists to settle.
#[derive(Debug, Deserialize)]
pub struct PruneRequest {
    /// The registration ids the operator confirmed, from the daemon's census.
    #[serde(default)]
    ids: Vec<String>,
    /// Destroy each index's on-disk corpus as well as its registration.
    ///
    /// Absent ⇒ `true` (#6422) — see
    /// [`crate::routes::deletes::purge_data_by_default`]. A stale
    /// registration's data is the disk the prune exists to reclaim, so the
    /// operator's call in the confirm step is whether to KEEP it.
    #[serde(default = "crate::routes::deletes::purge_data_by_default")]
    delete_data: bool,
}

/// `POST /api/console/search/prune-indexes` — remove confirmed registrations.
///
/// The path is `prune-indexes` rather than `indexes/prune` on purpose: a static
/// `prune` segment beside `indexes/{id}` would shadow an index literally named
/// `prune` and leave it undeletable from the console.
///
/// Why: the counterpart to the per-row delete, for the case the per-row delete
/// is unusable in — dozens of dead registrations at once.
/// What: refuses an empty or oversized list and any id outside the console's id
/// allowlist BEFORE dialling anything, so a malformed batch never partially
/// executes. Then resolves trusty-search's socket the same way the single
/// delete does (#6285) and prunes under [`PRUNE_BUDGET`]. Refreshes the search
/// metrics cache when anything was removed, so the roster the UI re-fetches
/// reflects the prune.
/// Test: `prune_route_rejects_an_empty_batch`,
/// `prune_route_rejects_a_bad_id_without_dialling`,
/// `prune_route_rejects_an_oversized_batch`,
/// `prune_route_reports_a_dead_daemon_on_every_row`.
pub async fn prune_indexes_handler(
    State(state): State<AppState>,
    axum::Json(req): axum::Json<PruneRequest>,
) -> Response {
    if req.ids.is_empty() {
        return bad_request("the prune request named no registration ids");
    }
    if req.ids.len() > MAX_PRUNE_BATCH {
        return bad_request(&format!(
            "the prune request named {} ids; at most {MAX_PRUNE_BATCH} may be pruned at once",
            req.ids.len()
        ));
    }
    // #6371: validate EVERY id before dialling. A batch that fails halfway
    // through on a malformed id has already deleted the ids ahead of it, and
    // the operator confirmed a list, not a prefix of one.
    for id in &req.ids {
        if let Err(reason) = validate_id(id) {
            return bad_request(&format!(
                "id {id:?} is not one this console will forward: {reason}"
            ));
        }
    }

    let socket: PathBuf = match state.search_socket_path() {
        Ok(p) => p,
        Err(reason) => {
            return (
                StatusCode::SERVICE_UNAVAILABLE,
                axum::Json(json!({ "ok": false, "error": reason })),
            )
                .into_response();
        }
    };

    let outcome = prune_indexes_on_socket(
        &socket,
        &req.ids,
        req.delete_data,
        Instant::now() + PRUNE_BUDGET,
    )
    .await;

    if outcome.removed > 0 {
        crate::routes::deletes::refresh_metrics(
            &state,
            SEARCH_SERVICE_ID,
            state.search_metrics_cache(),
        )
        .await;
    }
    (outcome.status(), axum::Json(outcome.body())).into_response()
}

/// A `400` carrying `ok: false` and a reason, in the shape the UI reads.
fn bad_request(reason: &str) -> Response {
    (
        StatusCode::BAD_REQUEST,
        axum::Json(json!({ "ok": false, "error": reason })),
    )
        .into_response()
}

// ─── trusty-memory: palace_compact over the daemon socket ───────────────────

/// Compact a palace by calling `palace_compact` on trusty-memory's socket.
///
/// Why: `palace_compact` is trusty-memory's own reclamation — it drops vector
/// index entries that have no drawer behind them, under the palace write lock
/// so a concurrent `remember` cannot have its new vector reclaimed (#6208). The
/// console must not grow a second idea of what an orphaned vector is.
/// What: one [`memory_rpc::call_tool`] exchange. The answer is a success ONLY
/// when the tool's payload names the palace it compacted — the same
/// confirmation discipline the delete routes use, because a daemon that
/// answered without naming the palace has not said it compacted this one.
/// Test: `compact_confirms_a_real_compaction`,
/// `compact_reports_an_unconfirmed_answer_as_a_failure`,
/// `compact_rejects_a_confirmation_for_another_palace`,
/// `compact_reports_a_dead_socket_as_unreachable`.
pub(crate) async fn compact_palace_on_socket(socket: &Path, id: &str) -> ActionVerdict {
    if let Err(reason) = validate_id(id) {
        return ActionVerdict::Invalid {
            id: id.to_string(),
            reason,
        };
    }

    let payload =
        match memory_rpc::call_tool(socket, "palace_compact", json!({ "palace": id }), id).await {
            Ok(payload) => payload,
            Err(verdict) => return verdict,
        };

    match payload.get("palace").and_then(Value::as_str) {
        Some(compacted) if compacted == id => ActionVerdict::Succeeded {
            id: id.to_string(),
            detail: payload,
        },
        _ => ActionVerdict::Refused {
            id: id.to_string(),
            reason: format!(
                "{MEMORY_SERVICE} answered palace_compact without confirming it compacted '{id}'"
            ),
            detail: payload,
        },
    }
}

/// `POST /api/console/memory/palaces/{id}/compact` — compact one palace (#6371).
///
/// Why: the Memory tab could delete a palace outright and do nothing short of
/// that. Compaction is the non-destructive half an operator reaches for first.
/// What: validates the id, resolves trusty-memory's socket the way the delete
/// route does — through `trusty_common::daemon_socket_path`, so both agree on
/// the path — and calls [`compact_palace_on_socket`]. Re-polls the memory
/// metrics cache on success so the reclaimed vector counts are what the UI
/// re-fetches.
/// Test: `compact_route_rejects_a_traversal_id`.
pub async fn compact_palace_handler(
    State(state): State<AppState>,
    AxumPath(id): AxumPath<String>,
) -> Response {
    // Before resolving the daemon, for the reason #6360 records: a resolution
    // failure answered first would mask the id as the real problem and make the
    // guard untestable without a live daemon.
    if let Err(reason) = validate_id(&id) {
        return ActionVerdict::Invalid { id, reason }.into_response();
    }

    let socket: PathBuf = match trusty_common::daemon_socket_path(MEMORY_SERVICE) {
        Ok(p) => p,
        Err(e) => {
            return ActionVerdict::Unreachable {
                id,
                reason: format!("could not resolve the {MEMORY_SERVICE} socket path: {e:#}"),
            }
            .into_response();
        }
    };

    let verdict = compact_palace_on_socket(&socket, &id).await;
    if verdict.succeeded() {
        crate::routes::deletes::refresh_metrics(
            &state,
            MEMORY_SERVICE,
            state.memory_metrics_cache(),
        )
        .await;
    }
    verdict.into_response()
}

// ─── tests ───────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;
    use axum::body::Body;
    use axum::http::Request;
    use http_body_util::BodyExt as _;
    use tower::ServiceExt as _;

    use crate::server::build_router;

    // ── helpers ──────────────────────────────────────────────────────────────

    /// Bind a socket that answers exactly one framed request with `reply`.
    fn stub_memory_daemon(dir: &Path, reply: impl Into<String>) -> PathBuf {
        let socket = dir.join("sockets").join("memory.sock");
        let reply = reply.into();
        let listener = trusty_common::uds::bind_hardened(&socket).expect("bind");
        tokio::spawn(async move {
            use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
            let Ok((mut conn, _)) = listener.accept().await else {
                return;
            };
            let mut sink = Vec::new();
            let _ = conn.read_to_end(&mut sink).await;
            let _ = conn.write_all(reply.as_bytes()).await;
            let _ = conn.write_all(b"\n").await;
            let _ = conn.flush().await;
        });
        socket
    }

    /// Wrap a tool payload in the `tools/call` envelope trusty-memory answers.
    fn tools_call_reply(payload: &str) -> String {
        json!({
            "jsonrpc": "2.0",
            "id": 1,
            "result": { "content": [{ "type": "text", "text": payload }] },
        })
        .to_string()
    }

    /// Bind a stub trusty-search socket whose `search.index.delete` answer
    /// depends on the id: `doomed-*` is removed, anything else is a skipped
    /// no-op.
    ///
    /// Why per-id: a batch's whole contract is that one id's failure does not
    /// change another id's row, and a stub that answers every id identically
    /// cannot show that.
    /// What: reuses `deletes::tests::stub_search_socket` so there is one stub
    /// answering for trusty-search's socket in this crate, not two. The census
    /// half lists `stale` (#6380), so the guard passes every id these tests
    /// prune and the delete's own verdict stays what each case is about.
    fn stub_search_socket_removing_only_doomed(dir: &Path) -> PathBuf {
        stub_search_socket_with_census(dir, &["doomed-a", "doomed-b", "survivor", "a", "b"])
    }

    /// The same stub, with the census's `orphans` list named explicitly.
    ///
    /// Why (#6380): the prune re-censuses before each delete, so what the census
    /// says is now half of what a prune test asserts. An id absent from `stale`
    /// is one the daemon no longer calls stale.
    fn stub_search_socket_with_census(dir: &Path, stale: &[&str]) -> PathBuf {
        let stale: Vec<String> = stale.iter().map(|s| s.to_string()).collect();
        crate::routes::deletes::tests::stub_search_socket(dir, move |request: &Value| {
            let result = if request["method"] == json!("search.registry.orphans") {
                json!({
                    "orphans": stale
                        .iter()
                        .map(|id| json!({ "id": id, "root_path": format!("/gone/{id}") }))
                        .collect::<Vec<_>>(),
                    "indeterminate": [],
                    "live_count": 0,
                    "total": stale.len(),
                })
            } else {
                let id = request["params"]["index_id"].as_str().unwrap_or_default();
                json!({
                    "id": id,
                    "removed": id.starts_with("doomed-"),
                    "data_deleted": false,
                    "quiesced": true,
                    "expected_root_path": request["params"]["expected_root_path"].clone(),
                })
            };
            json!({ "jsonrpc": "2.0", "id": 1, "result": result })
        })
    }

    fn ids(list: &[&str]) -> Vec<String> {
        list.iter().map(|s| s.to_string()).collect()
    }

    /// Drive the real router with trusty-search pointed at a socket nothing is
    /// bound to.
    ///
    /// Why the override (#6285): without it these tests resolve the REAL
    /// trusty-search socket, and on a machine with the daemon running a route
    /// test would prune live indexes.
    async fn post_through_router(uri: &str, body: Value) -> (StatusCode, Value) {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let router =
            build_router(AppState::new(vec![]).with_search_socket(tmp.path().join("absent.sock")));
        let req = Request::builder()
            .method("POST")
            .uri(uri)
            .header("content-type", "application/json")
            .body(Body::from(body.to_string()))
            .expect("request");
        let resp = router.oneshot(req).await.expect("response");
        let status = resp.status();
        let bytes = resp.into_body().collect().await.expect("body").to_bytes();
        let parsed = serde_json::from_slice(&bytes).unwrap_or(Value::Null);
        (status, parsed)
    }

    // ── prune: per-item outcomes ─────────────────────────────────────────────

    /// Why (#6371): the failure this route exists to not have — a batch where
    /// one delete was skipped reporting the whole batch as cleaned. Each id must
    /// carry its OWN outcome, and the one that failed must carry the daemon's
    /// own words.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_reports_per_item_outcomes_for_a_partial_batch() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_removing_only_doomed(tmp.path());
        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a", "survivor", "doomed-b"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;

        assert_eq!(outcome.removed, 2, "{outcome:?}");
        assert_eq!(outcome.failed, 1, "{outcome:?}");

        let body = outcome.body();
        assert_eq!(
            body["ok"],
            json!(false),
            "a batch with one failure is not a successful cleanup: {body}"
        );
        let rows = body["results"].as_array().expect("rows");
        assert_eq!(rows.len(), 3, "one row per requested id: {body}");
        assert_eq!(rows[0]["id"], json!("doomed-a"));
        assert_eq!(rows[0]["ok"], json!(true));
        assert_eq!(rows[1]["id"], json!("survivor"));
        assert_eq!(rows[1]["ok"], json!(false));
        assert!(
            rows[1]["error"]
                .as_str()
                .unwrap_or_default()
                .contains("skipped the delete"),
            "the failed row must carry the daemon's own words: {body}"
        );
        assert_eq!(
            rows[2]["ok"],
            json!(true),
            "a later id is unaffected: {body}"
        );
    }

    /// Why: the clean path must be reachable and must answer `ok: true`.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_of_a_clean_batch_reports_every_id_removed() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_removing_only_doomed(tmp.path());
        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a", "doomed-b"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;

        assert_eq!(outcome.removed, 2);
        assert_eq!(outcome.failed, 0);
        assert_eq!(outcome.status(), StatusCode::OK);
        assert_eq!(outcome.body()["ok"], json!(true));
    }

    /// Why: an unreachable daemon must fail every row rather than produce a
    /// short batch that reads as a partial success.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_reports_a_dead_daemon_as_a_failure_on_every_id() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let outcome = prune_indexes_on_socket(
            &tmp.path().join("absent.sock"),
            &ids(&["a", "b"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;

        assert_eq!(outcome.removed, 0);
        assert_eq!(outcome.failed, 2);
        for row in outcome.body()["results"].as_array().expect("rows") {
            assert_eq!(row["ok"], json!(false));
            assert!(
                !row["error"].as_str().unwrap_or_default().is_empty(),
                "every failed row must say why: {row}"
            );
        }
    }

    /// Why (#6371): an id the batch ran out of time for is NOT removed, and the
    /// operator has to be told which ones those were. A missing row would leave
    /// them to infer it.
    /// Test: this is the test — the deadline is already past when the batch
    /// starts, so no id is attempted.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_reports_an_expired_budget_as_unattempted() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_removing_only_doomed(tmp.path());
        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a", "doomed-b"]),
            false,
            Instant::now(),
        )
        .await;

        assert_eq!(outcome.removed, 0, "nothing may be deleted past the budget");
        assert_eq!(outcome.failed, 2);
        let body = outcome.body();
        for row in body["results"].as_array().expect("rows") {
            assert!(
                row["error"]
                    .as_str()
                    .unwrap_or_default()
                    .contains("not attempted"),
                "an unattempted id must say so: {body}"
            );
        }
    }

    /// Why: `delete_data` is the operator's choice in the confirm step and must
    /// reach the daemon; a batch that silently deregistered while the operator
    /// asked for the bytes would report a corpus as reclaimed while it is still
    /// on disk (#3049).
    /// Test: this is the test — the stub answers `data_deleted: false`, which
    /// the underlying delete refuses only when the data was actually asked for.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_forwards_the_delete_data_choice() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_removing_only_doomed(tmp.path());
        let without = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;
        assert_eq!(without.removed, 1, "a deregister-only prune succeeds");

        let with = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a"]),
            true,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;
        assert_eq!(
            with.failed, 1,
            "asking for the data and not getting it is a failure, not a success"
        );
    }

    /// Why (#6380): the reported hazard. The operator confirmed `doomed-a` from
    /// a census taken minutes ago; by delete time the daemon no longer lists it
    /// as stale, because its root was recreated and the id now names a LIVE
    /// index. Against `origin/main` the prune deletes it — the stub's delete arm
    /// answers `removed: true` for any `doomed-*` id, so `removed` is 1 and the
    /// row reads `ok: true`.
    /// What: a census that lists only `doomed-b`, pruning both.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_refuses_an_id_the_current_census_no_longer_calls_stale() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_with_census(tmp.path(), &["doomed-b"]);
        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a", "doomed-b"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;

        assert_eq!(
            outcome.removed, 1,
            "#6380: only the id the CURRENT census still calls stale may be \
             deleted: {outcome:?}"
        );
        assert_eq!(outcome.failed, 1, "{outcome:?}");
        let body = outcome.body();
        let rows = body["results"].as_array().expect("rows");
        assert_eq!(rows[0]["id"], json!("doomed-a"));
        assert_eq!(rows[0]["ok"], json!(false), "body: {body}");
        assert!(
            rows[0]["error"]
                .as_str()
                .unwrap_or_default()
                .contains("no longer lists"),
            "the refused row must say the census went out of date: {body}"
        );
        assert_eq!(
            rows[1]["ok"],
            json!(true),
            "a still-stale id proceeds: {body}"
        );
    }

    /// Why (#6380): the delete has to carry the root the FRESH census reported,
    /// or the daemon has nothing to compare and the residual window between the
    /// re-check and the delete stays open.
    /// Test: this is the test — the stub echoes the param back in its result.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_pins_each_delete_to_the_root_the_census_reported() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_search_socket_with_census(tmp.path(), &["doomed-a"]);
        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a"]),
            false,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;
        assert_eq!(outcome.removed, 1, "{outcome:?}");

        let echoed = crate::routes::deletes::delete_index_on_socket(
            &socket,
            "doomed-a",
            false,
            Some("/gone/doomed-a"),
        )
        .await;
        assert!(
            matches!(&echoed, ActionVerdict::Succeeded { detail, .. }
                if detail["expected_root_path"] == json!("/gone/doomed-a")),
            "#6380: the expectation must reach the daemon: {echoed:?}"
        );
    }

    /// Why (#6380 closure condition 2): a daemon that stops answering partway
    /// through a batch must refuse every remaining id rather than delete it
    /// unchecked. Against `origin/main` the ids are deleted with no re-check at
    /// all, so nothing distinguishes a live daemon from a dead one here.
    /// What: the stub's listener is dropped after the first census, so every
    /// later exchange fails in transport.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_refuses_every_remaining_id_when_the_daemon_drops_mid_batch() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = tmp.path().join("sockets").join("search.sock");
        std::fs::create_dir_all(socket.parent().expect("parent")).expect("mkdir");
        let listener = trusty_common::uds::bind_hardened(&socket).expect("bind");
        // Serve exactly the first census, then stop listening. Everything after
        // that — the first delete included — hits a socket nothing accepts.
        tokio::spawn(async move {
            use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
            if let Ok((mut conn, _)) = listener.accept().await {
                let mut raw = Vec::new();
                let _ = conn.read_to_end(&mut raw).await;
                let reply = json!({
                    "jsonrpc": "2.0",
                    "id": 1,
                    "result": {
                        "orphans": [
                            { "id": "doomed-a", "root_path": "/gone/a" },
                            { "id": "doomed-b", "root_path": "/gone/b" },
                        ],
                        "indeterminate": [],
                        "live_count": 0,
                        "total": 2,
                    },
                })
                .to_string();
                let _ = conn.write_all(reply.as_bytes()).await;
                let _ = conn.write_all(b"\n").await;
                let _ = conn.flush().await;
            }
            drop(listener);
        });

        let outcome = prune_indexes_on_socket(
            &socket,
            &ids(&["doomed-a", "doomed-b"]),
            true,
            Instant::now() + PRUNE_BUDGET,
        )
        .await;

        assert_eq!(
            outcome.removed, 0,
            "#6380: a daemon that dropped confirmed no delete: {outcome:?}"
        );
        assert_eq!(outcome.failed, 2, "{outcome:?}");
        let body = outcome.body();
        for row in body["results"].as_array().expect("rows") {
            assert_eq!(row["ok"], json!(false), "body: {body}");
            assert!(
                !row["error"].as_str().unwrap_or_default().is_empty(),
                "every failed row must say why: {body}"
            );
        }
    }

    // ── prune: route wiring ──────────────────────────────────────────────────

    /// Why: an empty batch is a caller bug, and answering `200 ok` for it would
    /// report a cleanup that removed nothing as a cleanup.
    /// Test: this is the test.
    #[tokio::test]
    async fn prune_route_rejects_an_empty_batch() {
        let (status, body) =
            post_through_router("/api/console/search/prune-indexes", json!({ "ids": [] })).await;
        assert_eq!(status, StatusCode::BAD_REQUEST, "body: {body}");
        assert_eq!(body["ok"], json!(false));
    }

    /// Why (#6371): a malformed id must stop the WHOLE batch before any delete
    /// runs. Validating per-id inside the loop would delete the ids ahead of it
    /// and then refuse — the operator confirmed a list, not a prefix.
    /// Test: this is the test; the 400 proves validation ran ahead of the daemon
    /// resolution that would otherwise answer 503 against an empty AppState.
    #[tokio::test]
    async fn prune_route_rejects_a_bad_id_without_dialling() {
        let (status, body) = post_through_router(
            "/api/console/search/prune-indexes",
            json!({ "ids": ["good-one", "../etc"] }),
        )
        .await;
        assert_eq!(status, StatusCode::BAD_REQUEST, "body: {body}");
        assert!(
            body["error"].as_str().unwrap_or_default().contains(".."),
            "the error must name the offending id: {body}"
        );
    }

    /// Why: an unbounded batch would hold a console worker for an unbounded
    /// time; the cap has to be enforced, not documented.
    /// Test: this is the test.
    #[tokio::test]
    async fn prune_route_rejects_an_oversized_batch() {
        let many: Vec<String> = (0..=MAX_PRUNE_BATCH).map(|n| format!("idx-{n}")).collect();
        let (status, body) =
            post_through_router("/api/console/search/prune-indexes", json!({ "ids": many })).await;
        assert_eq!(status, StatusCode::BAD_REQUEST, "body: {body}");
    }

    /// Why (#6285): with nothing bound to the socket the route must fail every
    /// row and say why, rather than answer `ok: true` for a prune that removed
    /// nothing. Before the migration this arm was "the poller cache has no
    /// address"; a socket path always resolves, so the daemon being down is now
    /// observed at the dial instead.
    /// Test: this is the test.
    #[tokio::test]
    async fn prune_route_reports_a_dead_daemon_on_every_row() {
        let (status, body) = post_through_router(
            "/api/console/search/prune-indexes",
            json!({ "ids": ["scratch", "other"] }),
        )
        .await;
        assert_eq!(status, StatusCode::CONFLICT, "body: {body}");
        assert_eq!(body["ok"], json!(false));
        assert_eq!(body["removed"], json!(0));
        let rows = body["results"].as_array().expect("rows");
        assert_eq!(rows.len(), 2, "one row per requested id: {body}");
        for row in rows {
            assert_eq!(row["ok"], json!(false), "{body}");
            assert!(
                row["error"]
                    .as_str()
                    .unwrap_or_default()
                    .contains("trusty-search"),
                "every failed row must name the daemon: {body}"
            );
        }
    }

    /// Why (#6422, closure condition 1): the owner ruling, on the batch prune.
    /// A body naming only `ids` reclaims the disk. Against `origin/main` the
    /// absent field defaulted to `false` and every delete deregistered while
    /// leaving the corpus, so this assertion fails there.
    /// What: drives the real router against a stub that records the params of
    /// the `search.index.delete` it receives, with a census that still lists the
    /// id so the #6380 re-check passes.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn prune_route_purges_by_default() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let seen = std::sync::Arc::new(std::sync::Mutex::new(Value::Null));
        let recorder = std::sync::Arc::clone(&seen);
        let socket = crate::routes::deletes::tests::stub_search_socket(
            tmp.path(),
            move |request: &Value| {
                let result = if request["method"] == json!("search.registry.orphans") {
                    json!({
                        "orphans": [{ "id": "doomed-a", "root_path": "/gone/doomed-a" }],
                        "indeterminate": [], "live_count": 0, "total": 1,
                    })
                } else {
                    if let Ok(mut slot) = recorder.lock() {
                        *slot = request["params"].clone();
                    }
                    json!({ "id": "doomed-a", "removed": true, "data_deleted": true,
                            "quiesced": true })
                };
                json!({ "jsonrpc": "2.0", "id": 1, "result": result })
            },
        );

        let router = build_router(AppState::new(vec![]).with_search_socket(socket));
        let req = Request::builder()
            .method("POST")
            .uri("/api/console/search/prune-indexes")
            .header("content-type", "application/json")
            .body(Body::from(json!({ "ids": ["doomed-a"] }).to_string()))
            .expect("request");
        let resp = router.oneshot(req).await.expect("response");
        assert_eq!(resp.status(), StatusCode::OK, "the stub confirms the prune");

        let params = seen.lock().expect("lock").clone();
        assert_eq!(
            params["delete_data"],
            json!(true),
            "a prune body with no delete_data must reclaim the disk: {params}"
        );
    }

    // ── compact ──────────────────────────────────────────────────────────────

    /// Why: the success path is reachable only when the daemon names the palace
    /// it compacted, and the operator sees the reclaimed counts.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_confirms_a_real_compaction() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_memory_daemon(
            tmp.path(),
            tools_call_reply(
                r#"{"palace":"scratch","total_checked":120,"orphans_removed":7,"index_size_before":120,"index_size_after":113}"#,
            ),
        );

        let verdict = compact_palace_on_socket(&socket, "scratch").await;
        assert!(
            matches!(&verdict, ActionVerdict::Succeeded { id, .. } if id == "scratch"),
            "a confirmed compaction must read as success: {verdict:?}"
        );
        let response = verdict.into_response();
        assert_eq!(response.status(), StatusCode::OK);
        let bytes = response
            .into_body()
            .collect()
            .await
            .expect("body")
            .to_bytes();
        let body: Value = serde_json::from_slice(&bytes).expect("json");
        assert_eq!(body["ok"], json!(true));
        assert_eq!(
            body["detail"]["orphans_removed"],
            json!(7),
            "the operator sees what was reclaimed: {body}"
        );
    }

    /// Why: a daemon that answered something other than a compaction report has
    /// not told us it compacted anything, and reporting it as done would record
    /// a reclamation that never happened.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_reports_an_unconfirmed_answer_as_a_failure() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_memory_daemon(tmp.path(), tools_call_reply(r#"{"status":"noop"}"#));

        let verdict = compact_palace_on_socket(&socket, "scratch").await;
        assert!(
            matches!(&verdict, ActionVerdict::Refused { reason, .. } if reason.contains("without confirming")),
            "an unconfirmed answer must read as a failure: {verdict:?}"
        );
    }

    /// Why: a report naming a DIFFERENT palace is not a confirmation for this
    /// one — the same check the delete routes make.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_rejects_a_confirmation_for_another_palace() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_memory_daemon(
            tmp.path(),
            tools_call_reply(r#"{"palace":"someone-else","orphans_removed":3}"#),
        );

        let verdict = compact_palace_on_socket(&socket, "scratch").await;
        assert!(
            matches!(verdict, ActionVerdict::Refused { .. }),
            "a confirmation for another palace is not one for this one: {verdict:?}"
        );
    }

    /// Why: a daemon refusal — an unknown palace, a locked store — must carry
    /// the daemon's own message rather than a console-invented one.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_reports_a_daemon_refusal_as_a_failure() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let socket = stub_memory_daemon(
            tmp.path(),
            r#"{"jsonrpc":"2.0","id":1,"error":{"code":-32000,"message":"palace 'scratch' is not open"}}"#,
        );

        let verdict = compact_palace_on_socket(&socket, "scratch").await;
        assert!(
            matches!(&verdict, ActionVerdict::Refused { reason, .. } if reason.contains("is not open")),
            "the refusal must carry the daemon's words: {verdict:?}"
        );
        assert_eq!(verdict.status(), StatusCode::CONFLICT);
    }

    /// Why: a socket nothing is serving must read as unreachable, not as a
    /// refusal and certainly not as a compaction.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_reports_a_dead_socket_as_unreachable() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let verdict = compact_palace_on_socket(&tmp.path().join("absent.sock"), "scratch").await;
        assert!(
            matches!(verdict, ActionVerdict::Unreachable { .. }),
            "a dead socket must read as unreachable: {verdict:?}"
        );
    }

    /// Why: an id the console will not forward must be refused before any bytes
    /// reach a daemon.
    /// Test: this is the test.
    #[tokio::test(flavor = "multi_thread")]
    async fn compact_refuses_a_bad_id_without_dialling() {
        let tmp = tempfile::TempDir::new().expect("tempdir");
        let verdict = compact_palace_on_socket(&tmp.path().join("absent.sock"), "../x").await;
        assert!(
            matches!(verdict, ActionVerdict::Invalid { .. }),
            "a traversal id must be refused at the console: {verdict:?}"
        );
    }

    /// Why: the compact route must be mounted and must refuse a traversal id
    /// before it resolves or dials anything.
    /// Test: this is the test.
    #[tokio::test]
    async fn compact_route_rejects_a_traversal_id() {
        let (status, body) =
            post_through_router("/api/console/memory/palaces/..%2Fetc/compact", json!({})).await;
        assert_eq!(status, StatusCode::BAD_REQUEST, "body: {body}");
        assert_eq!(body["ok"], json!(false));
    }

    /// Why (#6360, carried into #6371): the router-wide same-origin guard must
    /// cover these routes too — a batch prune is the most destructive thing the
    /// console serves.
    /// Test: this is the test.
    #[tokio::test]
    async fn cleanup_routes_reject_a_cross_origin_caller() {
        for uri in [
            "/api/console/search/prune-indexes",
            "/api/console/memory/palaces/scratch/compact",
        ] {
            let router = build_router(AppState::new(vec![]));
            let req = Request::builder()
                .method("POST")
                .uri(uri)
                .header("origin", "https://evil.example")
                .header("content-type", "application/json")
                .body(Body::from(json!({ "ids": ["scratch"] }).to_string()))
                .expect("request");
            let resp = router.oneshot(req).await.expect("response");
            assert_eq!(
                resp.status(),
                StatusCode::FORBIDDEN,
                "{uri} must refuse a cross-origin cleanup"
            );
        }
    }
}