ai-memory 0.7.1

AI-agnostic persistent memory system — MCP server, HTTP API, and CLI for any AI platform
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
// Copyright 2026 AlphaOne LLC
// SPDX-License-Identifier: Apache-2.0

//! v0.7.0 QW-3 — context-offload substrate primitive.
//!
//! Substrate plumbing for the offload+deref pattern absorbed from
//! the Tencent comparison (2026-05-15). The FULL pattern (Mermaid
//! canvas, auto-cadence, node_id integration) targets v0.8.0; this
//! module ships the substrate so v0.8.0 has plumbing to call.
//!
//! # Pipeline
//!
//! - SHA-256 over the original bytes (decompressed) is the integrity
//!   commitment.
//! - `ref_id` format: `ofl_<base32-of-sha256-first-8-bytes>`. 13 chars
//!   of payload after the `ofl_` prefix — short enough to keep in an
//!   agent's working window, long enough that a 40-bit prefix
//!   collision is vanishingly rare for typical fleet scales.
//! - Body compressed with zstd level 3 — matches `memory_transcripts`
//!   (the existing sidechain transcripts pipeline) for cross-codebase
//!   parity.
//! - Ed25519 signature is over the canonical bundle
//!   `{ ref_id, content_sha256, stored_at, namespace }` encoded as
//!   deterministic CBOR (RFC 8949 §4.2.1). Same encoder family as
//!   `identity::sign::canonical_cbor` (the H2 link signer).
//! - A sibling row lands in `signed_events` with `event_type =
//!   context_offloaded` or `context_dereferenced`, binding the
//!   substrate write into the H5 audit chain.
//!
//! # Tamper handling
//!
//! `deref` recomputes the SHA-256 of the freshly-decompressed bytes
//! and refuses with `OffloadError::IntegrityFailed` when it disagrees
//! with the stored `content_sha256`. The signature is verified against
//! the storing agent's public key when that key is provided to the
//! offloader at construction; absent the key, the integrity check
//! alone is the load-bearing tamper guard.
//!
//! # Out of scope (v0.7.0)
//!
//! - Mermaid canvas integration (v0.8.0).
//! - Auto-cadence trigger from the recall pipeline (v0.8.0).
//! - `node_id` cross-link into the `memories` table (v0.8.0).

use std::collections::BTreeMap;
use std::time::{SystemTime, UNIX_EPOCH};

use anyhow::{Context, Result, anyhow};
use base64::Engine;
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
use ed25519_dalek::{Signer, Verifier};
use rusqlite::{Connection, OptionalExtension, params};
use sha2::{Digest, Sha256};

use crate::identity::keypair::AgentKeypair;
use crate::signed_events::{SignedEvent, append_signed_event, payload_hash};

/// Default zstd compression level — matches the sidechain transcripts
/// pipeline (`transcripts::storage::ZSTD_LEVEL`).
const ZSTD_LEVEL: i32 = 3;

/// Hard cap on the decompressed size of a single offloaded blob. Same
/// 16 MiB ceiling the transcripts module enforces — defends against
/// pathological zstd bombs landing through `deref`. v0.8.0 may raise
/// this for the Mermaid-canvas use case after threat-modelling.
pub const MAX_DECOMPRESSED_BYTES: usize = 16 * 1024 * 1024;

/// Default per-blob byte limit when no namespace policy override is set.
/// 1 MiB — Tencent's offload primitive uses ~256 KB chunks; 1 MiB
/// gives headroom for batched tool outputs without crossing the
/// hostile-bomb threshold above.
pub const DEFAULT_MAX_OFFLOAD_BLOB_BYTES: u32 = 1_048_576;

/// RFC 4648 base32 alphabet (without padding). Used to encode the
/// 8-byte prefix of the content's SHA-256 into a 13-char `ref_id`
/// body. Avoids pulling a one-trick crate (no `base32` / `data-
/// encoding` is currently in the dependency tree).
const BASE32_ALPHABET: &[u8; 32] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";

/// `ref_id` prefix — `ofl_` keeps the offload class identifiable in
/// audit logs, recall queries, and operator dashboards. Pairs the
/// `mem-` / `lnk-` ergonomic convention used elsewhere in the
/// substrate.
const REF_ID_PREFIX: &str = "ofl_";

/// Outcome of [`ContextOffloader::offload`]. Callers persist
/// `ref_id` and discard the content payload — that is the whole
/// point of offload+deref.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct OffloadResult {
    pub ref_id: String,
    pub content_sha256: String,
    pub stored_at: i64,
}

/// Outcome of [`ContextOffloader::deref`]. Returns the original
/// (decompressed) content alongside the metadata that committed it.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct DerefResult {
    pub content: String,
    pub stored_at: i64,
    pub sha256: String,
}

/// Domain errors callers may want to discriminate on (size limits,
/// integrity failures, signature mismatches). All other failure modes
/// bubble through `anyhow::Error`. `Display` and `std::error::Error`
/// are implemented by hand to avoid pulling the optional `thiserror`
/// crate into the default feature set.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum OffloadError {
    SizeLimitExceeded { actual: usize, limit: usize },
    IntegrityFailed { ref_id: String },
    SignatureFailed { ref_id: String },
    NotFound { ref_id: String },
}

impl std::fmt::Display for OffloadError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::SizeLimitExceeded { actual, limit } => {
                write!(f, "offload blob {actual} bytes exceeds policy max {limit}")
            }
            Self::IntegrityFailed { ref_id } => write!(
                f,
                "offloaded blob {ref_id} integrity check failed (content tampered)"
            ),
            Self::SignatureFailed { ref_id } => {
                write!(f, "offloaded blob {ref_id} signature verification failed")
            }
            Self::NotFound { ref_id } => write!(f, "offloaded blob {ref_id} not found"),
        }
    }
}

impl std::error::Error for OffloadError {}

/// Static configuration consumed by [`ContextOffloader`].
#[derive(Debug, Clone)]
pub struct OffloadConfig {
    /// Hard ceiling on the decompressed content length (bytes).
    /// Callers can shrink this below [`DEFAULT_MAX_OFFLOAD_BLOB_BYTES`]
    /// per namespace via the `max_offload_blob_bytes` policy knob in
    /// v0.8.0 (substrate-only in v0.7.0).
    pub max_offload_blob_bytes: u32,
    /// Default TTL applied when the caller passes `ttl_seconds = None`.
    /// `None` (the default) means "permanent until explicit operator
    /// delete".
    pub default_offload_ttl_seconds: Option<u64>,
}

impl Default for OffloadConfig {
    fn default() -> Self {
        Self {
            max_offload_blob_bytes: DEFAULT_MAX_OFFLOAD_BLOB_BYTES,
            default_offload_ttl_seconds: None,
        }
    }
}

/// Substrate-level engine for offload+deref. Composed from the
/// caller's keypair, the existing SQLite connection, and the
/// `OffloadConfig` defaults.
pub struct ContextOffloader<'a> {
    conn: &'a Connection,
    signer: Option<&'a AgentKeypair>,
    config: OffloadConfig,
}

impl<'a> ContextOffloader<'a> {
    /// Construct a new offloader. Pass `signer = None` for read-only
    /// `deref` workflows.
    #[must_use]
    pub fn new(
        conn: &'a Connection,
        signer: Option<&'a AgentKeypair>,
        config: OffloadConfig,
    ) -> Self {
        Self {
            conn,
            signer,
            config,
        }
    }

    /// Offload `content` and return the `ref_id` callers persist in
    /// place of the full payload.
    ///
    /// # Errors
    ///
    /// - [`OffloadError::SizeLimitExceeded`] when `content` is larger
    ///   than the configured per-blob ceiling.
    /// - `anyhow::Error` for zstd / SQLite / signing failures.
    pub fn offload(
        &self,
        content: &str,
        namespace: &str,
        ttl_seconds: Option<u64>,
        agent_id: &str,
    ) -> Result<OffloadResult> {
        let limit = self.config.max_offload_blob_bytes as usize;
        if content.len() > limit {
            return Err(anyhow!(OffloadError::SizeLimitExceeded {
                actual: content.len(),
                limit,
            }));
        }
        // SHA-256 of the original bytes — the integrity commitment.
        let sha = sha256_hex(content.as_bytes());
        let ref_id = ref_id_from_sha(&sha);
        let stored_at = now_unix_seconds();
        let effective_ttl = ttl_seconds.or(self.config.default_offload_ttl_seconds);
        // Compress AFTER the integrity hash is taken — the stored
        // sha256 commits to the ORIGINAL bytes so a future codec
        // upgrade can decode legacy rows without breaking the
        // integrity check.
        let blob = zstd_compress(content.as_bytes()).context("zstd compression failed")?;

        // Canonical signing bundle. `i64::try_from` keeps the encoded
        // bytes byte-stable for the verifier; an `i128`-shaped value
        // would never survive the round-trip through SQLite anyway.
        let stored_at_signed: i64 = stored_at;
        let signature_b64 = if let Some(keypair) = self.signer {
            let payload = canonical_payload(&ref_id, &sha, stored_at_signed, namespace)?;
            let signing = keypair.private.as_ref().with_context(|| {
                format!(
                    "AgentKeypair for {} has no private key — cannot sign offload",
                    keypair.agent_id
                )
            })?;
            URL_SAFE_NO_PAD.encode(signing.sign(&payload).to_bytes())
        } else {
            String::new()
        };

        let ttl_param: Option<i64> = effective_ttl.and_then(|n| i64::try_from(n).ok());
        self.conn
            .execute(
                "INSERT INTO offloaded_blobs (
                    ref_id, namespace, content_zstd, content_sha256,
                    stored_at, ttl_seconds, agent_id, signature_b64
                 ) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8)
                 ON CONFLICT(ref_id) DO UPDATE SET
                    namespace = excluded.namespace,
                    content_zstd = excluded.content_zstd,
                    content_sha256 = excluded.content_sha256,
                    stored_at = excluded.stored_at,
                    ttl_seconds = excluded.ttl_seconds,
                    agent_id = excluded.agent_id,
                    signature_b64 = excluded.signature_b64",
                params![
                    ref_id,
                    namespace,
                    blob,
                    sha,
                    stored_at,
                    ttl_param,
                    agent_id,
                    signature_b64,
                ],
            )
            .context("INSERT into offloaded_blobs failed")?;

        // Audit: sibling row in signed_events binds this write to the
        // H5 cross-row hash chain so a downstream auditor can replay
        // the exact offload event without diffing the mutable
        // offloaded_blobs table.
        append_audit_row(
            self.conn,
            agent_id,
            "context_offloaded",
            &ref_id,
            &sha,
            namespace,
            stored_at_signed,
            &signature_b64,
        )?;

        Ok(OffloadResult {
            ref_id,
            content_sha256: sha,
            stored_at: stored_at_signed,
        })
    }

    /// Dereference a `ref_id` and return the original content.
    ///
    /// # IDOR (SEC-4, Cluster D, issue #767)
    ///
    /// `caller_agent_id` is the **authenticated** identity of the
    /// caller (resolved via [`crate::identity::resolve_agent_id`]
    /// upstream). The stored row's `agent_id` is consulted as the
    /// owner of the blob; when the caller is not the owner, this
    /// function returns [`OffloadError::NotFound`] (leak-resistant
    /// — does NOT reveal the blob exists). A future K9 cross-agent
    /// grant check can layer on top of this; pass `None` to BYPASS
    /// the ownership gate (substrate-internal sweepers, integrity
    /// audits, operator dump tools — none of which originate from
    /// an authenticated agent context).
    ///
    /// # Errors
    ///
    /// - [`OffloadError::NotFound`] when `ref_id` has no row OR
    ///   when the caller is not the stored owner (leak-resistant).
    /// - [`OffloadError::IntegrityFailed`] when the decompressed
    ///   content's SHA-256 disagrees with the stored hash (tamper).
    /// - [`OffloadError::SignatureFailed`] when a signer was provided
    ///   and the stored Ed25519 signature fails to verify.
    pub fn deref(&self, ref_id: &str, caller_agent_id: Option<&str>) -> Result<DerefResult> {
        let row: Option<(Vec<u8>, String, i64, String, String, String)> = self
            .conn
            .query_row(
                "SELECT content_zstd, content_sha256, stored_at, namespace,
                        agent_id, signature_b64
                 FROM offloaded_blobs WHERE ref_id = ?1",
                params![ref_id],
                |r| {
                    Ok((
                        r.get(0)?,
                        r.get(1)?,
                        r.get(2)?,
                        r.get(3)?,
                        r.get(4)?,
                        r.get(5)?,
                    ))
                },
            )
            .optional()
            .context("SELECT offloaded_blobs failed")?;

        let (blob, stored_sha, stored_at, namespace, agent_id, signature_b64) =
            row.ok_or_else(|| {
                anyhow!(OffloadError::NotFound {
                    ref_id: ref_id.to_string(),
                })
            })?;

        // SEC-4 (Cluster D, issue #767) — IDOR gate. The MCP
        // `handle_deref` handler always passes an authenticated
        // `caller_agent_id`; substrate-internal callers that
        // legitimately need to reach any row (TTL sweeper, integrity
        // audit, operator dump) pass `None` to BYPASS this check.
        // Mismatch maps to NotFound (not Unauthorized) so a casual
        // probe cannot enumerate ref_ids by error-message
        // differentiation.
        if let Some(caller) = caller_agent_id
            && caller != agent_id
        {
            tracing::info!(
                ref_id = %ref_id,
                caller = %caller,
                "SEC-4: handle_deref ownership mismatch — surfacing NotFound (leak-resistant)"
            );
            return Err(anyhow!(OffloadError::NotFound {
                ref_id: ref_id.to_string(),
            }));
        }

        // Optional: verify the signature against the supplied key BEFORE
        // decompressing. Catches tampered blobs early without the zstd
        // round-trip cost. Skipped when the offloader has no keypair
        // (read-only workflows).
        if let Some(keypair) = self.signer {
            if !signature_b64.is_empty() {
                let payload = canonical_payload(ref_id, &stored_sha, stored_at, &namespace)?;
                let sig_bytes = URL_SAFE_NO_PAD
                    .decode(signature_b64.as_bytes())
                    .context("decode stored signature_b64")?;
                let sig_arr: [u8; 64] = sig_bytes
                    .as_slice()
                    .try_into()
                    .context("stored signature is not 64 bytes")?;
                let sig = ed25519_dalek::Signature::from_bytes(&sig_arr);
                if keypair.public.verify(&payload, &sig).is_err() {
                    return Err(anyhow!(OffloadError::SignatureFailed {
                        ref_id: ref_id.to_string(),
                    }));
                }
            }
        }

        let bytes = zstd_decompress(&blob).context("zstd decompression failed")?;
        // Refuse to surface non-UTF-8 content — the offload API is
        // string-shaped at the input boundary, so a non-UTF-8 stream
        // is by definition a tampered or corrupted row.
        let content = String::from_utf8(bytes).map_err(|_| OffloadError::IntegrityFailed {
            ref_id: ref_id.to_string(),
        })?;
        let recomputed = sha256_hex(content.as_bytes());
        if recomputed != stored_sha {
            return Err(anyhow!(OffloadError::IntegrityFailed {
                ref_id: ref_id.to_string(),
            }));
        }

        append_audit_row(
            self.conn,
            &agent_id,
            "context_dereferenced",
            ref_id,
            &stored_sha,
            &namespace,
            stored_at,
            &signature_b64,
        )?;

        Ok(DerefResult {
            content,
            stored_at,
            sha256: stored_sha,
        })
    }
}

/// SHA-256 hex-string helper.
fn sha256_hex(input: &[u8]) -> String {
    let mut hasher = Sha256::new();
    hasher.update(input);
    bytes_to_hex(&hasher.finalize())
}

/// Lower-case hex encoding of an arbitrary byte slice. Hand-rolled to
/// avoid a `hex` crate dep.
fn bytes_to_hex(bytes: &[u8]) -> String {
    const HEX: &[u8; 16] = b"0123456789abcdef";
    let mut out = String::with_capacity(bytes.len() * 2);
    for byte in bytes {
        out.push(HEX[(byte >> 4) as usize] as char);
        out.push(HEX[(byte & 0x0F) as usize] as char);
    }
    out
}

/// RFC 4648 base32 (no padding) of `bytes`. Matches the alphabet used
/// in standard CLI output for short identifiers.
fn base32_encode(bytes: &[u8]) -> String {
    let mut out = String::with_capacity((bytes.len() * 8 + 4) / 5);
    let mut buffer: u32 = 0;
    let mut bits: u32 = 0;
    for byte in bytes {
        buffer = (buffer << 8) | u32::from(*byte);
        bits += 8;
        while bits >= 5 {
            bits -= 5;
            let idx = ((buffer >> bits) & 0x1F) as usize;
            out.push(BASE32_ALPHABET[idx] as char);
        }
    }
    if bits > 0 {
        let idx = ((buffer << (5 - bits)) & 0x1F) as usize;
        out.push(BASE32_ALPHABET[idx] as char);
    }
    out
}

/// `ofl_<base32-of-sha256-first-8-bytes>`. Pure function of the
/// hex-encoded SHA so callers can reconstruct the id offline.
fn ref_id_from_sha(sha_hex: &str) -> String {
    // First 8 bytes = first 16 hex chars.
    let mut first_8 = [0u8; 8];
    for (i, byte) in first_8.iter_mut().enumerate() {
        let hi = hex_nibble(sha_hex.as_bytes()[i * 2]);
        let lo = hex_nibble(sha_hex.as_bytes()[i * 2 + 1]);
        *byte = (hi << 4) | lo;
    }
    format!("{REF_ID_PREFIX}{}", base32_encode(&first_8))
}

fn hex_nibble(byte: u8) -> u8 {
    match byte {
        b'0'..=b'9' => byte - b'0',
        b'a'..=b'f' => byte - b'a' + 10,
        b'A'..=b'F' => byte - b'A' + 10,
        _ => 0,
    }
}

/// RFC 8949 §4.2.1 deterministic CBOR over `{ ref_id, content_sha256,
/// stored_at, namespace }`. Same encoder family as the H2 link
/// signer; map keys are sorted lexicographically by the underlying
/// BTreeMap iteration.
fn canonical_payload(
    ref_id: &str,
    content_sha256: &str,
    stored_at: i64,
    namespace: &str,
) -> Result<Vec<u8>> {
    let mut map: BTreeMap<&str, ciborium::Value> = BTreeMap::new();
    map.insert(
        crate::models::field_names::CONTENT_SHA256,
        ciborium::Value::Text(content_sha256.to_string()),
    );
    map.insert("namespace", ciborium::Value::Text(namespace.to_string()));
    map.insert("ref_id", ciborium::Value::Text(ref_id.to_string()));
    map.insert("stored_at", ciborium::Value::Integer(stored_at.into()));
    let value = ciborium::Value::Map(
        map.into_iter()
            .map(|(k, v)| (ciborium::Value::Text(k.to_string()), v))
            .collect(),
    );
    let mut buf = Vec::new();
    ciborium::into_writer(&value, &mut buf).context("encode canonical offload payload")?;
    Ok(buf)
}

fn now_unix_seconds() -> i64 {
    SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .map(|d| i64::try_from(d.as_secs()).unwrap_or(i64::MAX))
        .unwrap_or(0)
}

fn zstd_compress(input: &[u8]) -> Result<Vec<u8>> {
    use std::io::Write;
    let mut out = Vec::with_capacity(input.len() / 4 + 64);
    {
        let mut encoder = zstd::stream::write::Encoder::new(&mut out, ZSTD_LEVEL)?;
        encoder.write_all(input)?;
        encoder.finish()?;
    }
    Ok(out)
}

fn zstd_decompress(input: &[u8]) -> Result<Vec<u8>> {
    use std::io::Read;
    let init_cap = std::cmp::min(input.len() * 4, MAX_DECOMPRESSED_BYTES);
    let mut out = Vec::with_capacity(init_cap);
    let mut decoder = zstd::stream::read::Decoder::new(input)?;
    let mut buf = [0u8; 64 * 1024];
    loop {
        let n = decoder.read(&mut buf)?;
        if n == 0 {
            break;
        }
        if out.len().saturating_add(n) > MAX_DECOMPRESSED_BYTES {
            return Err(anyhow!(
                "offloaded blob decompression exceeded {MAX_DECOMPRESSED_BYTES} byte cap"
            ));
        }
        out.extend_from_slice(&buf[..n]);
    }
    Ok(out)
}

/// Audit-row helper. Keeps the offload + deref call sites
/// symmetrical — both event types commit to the same canonical
/// payload bytes, so a downstream verifier can re-derive the hash
/// without branching on event type.
fn append_audit_row(
    conn: &Connection,
    agent_id: &str,
    event_type: &str,
    ref_id: &str,
    content_sha256: &str,
    namespace: &str,
    stored_at: i64,
    signature_b64: &str,
) -> Result<()> {
    let payload = canonical_payload(ref_id, content_sha256, stored_at, namespace)?;
    let hash = payload_hash(&payload);
    let signature_bytes = if signature_b64.is_empty() {
        None
    } else {
        Some(
            URL_SAFE_NO_PAD
                .decode(signature_b64.as_bytes())
                .context("decode signature_b64 for audit row")?,
        )
    };
    // #1438 fix: prior code wrote orphan attest_level="signed" — not a valid
    // AttestLevel variant, leaking a fourth-shape that AttestLevel::from_str
    // silently downgraded to None. The offload audit row is signed locally
    // by the daemon, so the canonical variant is SelfSigned.
    let attest_level = if signature_bytes.is_some() {
        crate::models::AttestLevel::SelfSigned.as_str()
    } else {
        crate::models::AttestLevel::Unsigned.as_str()
    };
    let event = SignedEvent {
        id: uuid::Uuid::new_v4().to_string(),
        agent_id: agent_id.to_string(),
        event_type: event_type.to_string(),
        payload_hash: hash,
        signature: signature_bytes,
        attest_level: attest_level.to_string(),
        timestamp: chrono::Utc::now().to_rfc3339(),
        prev_hash: Vec::new(),
        sequence: 0,
    };
    append_signed_event(conn, &event)?;
    Ok(())
}

/// Daily TTL sweep. Removes every blob whose `stored_at +
/// ttl_seconds < now`. Bounded to `max_per_run` rows per call so a
/// pathological backlog can't monopolise the connection; callers
/// (the daemon background loop) re-invoke at the configured cadence.
///
/// `sleep_between_deletes` is honoured between row deletions to keep
/// the connection lock window short under contended write traffic.
///
/// # Errors
///
/// Bubbles SQLite errors. A successful run returns the count of
/// deleted rows.
pub fn sweep_expired(
    conn: &Connection,
    now_unix: i64,
    max_per_run: usize,
    sleep_between_deletes: std::time::Duration,
) -> Result<usize> {
    let limit_i64 = i64::try_from(max_per_run).unwrap_or(i64::MAX);
    let mut stmt = conn
        .prepare(
            "SELECT ref_id FROM offloaded_blobs
             WHERE ttl_seconds IS NOT NULL
               AND (stored_at + ttl_seconds) < ?1
             ORDER BY stored_at ASC
             LIMIT ?2",
        )
        .context("prepare TTL sweep select")?;
    let candidates: Vec<String> = stmt
        .query_map(params![now_unix, limit_i64], |r| r.get::<_, String>(0))
        .context("execute TTL sweep select")?
        .collect::<rusqlite::Result<Vec<_>>>()
        .context("collect TTL sweep candidates")?;
    drop(stmt);

    let mut deleted = 0usize;
    for ref_id in candidates {
        // Re-evaluate the TTL predicate in the DELETE itself so a concurrent
        // `offload()` that refreshed `stored_at` between the SELECT above and
        // this row's DELETE does not cause the fresh blob to be dropped (#1264).
        let rows = conn
            .execute(
                "DELETE FROM offloaded_blobs
                 WHERE ref_id = ?1
                   AND ttl_seconds IS NOT NULL
                   AND (stored_at + ttl_seconds) < ?2",
                params![ref_id, now_unix],
            )
            .with_context(|| format!("DELETE offloaded_blob {ref_id}"))?;
        if rows > 0 {
            deleted += 1;
        }
        if !sleep_between_deletes.is_zero() {
            std::thread::sleep(sleep_between_deletes);
        }
    }
    Ok(deleted)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::storage as db;
    use std::path::Path;

    fn fresh_db() -> Connection {
        db::open(Path::new(":memory:")).expect("open in-memory db")
    }

    #[test]
    fn ref_id_is_stable_for_identical_content() {
        let a = ref_id_from_sha(&sha256_hex(b"hello world"));
        let b = ref_id_from_sha(&sha256_hex(b"hello world"));
        assert_eq!(a, b);
        assert!(a.starts_with("ofl_"));
        // 8 bytes = 64 bits = 13 base32 chars (8 * 8 / 5 = 12.8, ceil = 13).
        assert_eq!(a.len(), "ofl_".len() + 13);
    }

    #[test]
    fn ref_id_differs_for_distinct_content() {
        let a = ref_id_from_sha(&sha256_hex(b"alpha"));
        let b = ref_id_from_sha(&sha256_hex(b"beta"));
        assert_ne!(a, b);
    }

    #[test]
    fn canonical_payload_is_deterministic() {
        let p1 = canonical_payload("ofl_X", "deadbeef", 1234, "ns").unwrap();
        let p2 = canonical_payload("ofl_X", "deadbeef", 1234, "ns").unwrap();
        assert_eq!(p1, p2);
    }

    #[test]
    fn offload_deref_round_trip_no_signer() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let content = "the quick brown fox jumps over the lazy dog";
        let r = off
            .offload(content, "ns/test", None, "ai:alice")
            .expect("offload");
        let back = off.deref(&r.ref_id, None).expect("deref");
        assert_eq!(back.content, content);
        assert_eq!(back.sha256, r.content_sha256);
    }

    #[test]
    fn offload_refuses_oversize_blob() {
        let conn = fresh_db();
        let cfg = OffloadConfig {
            max_offload_blob_bytes: 16,
            ..Default::default()
        };
        let off = ContextOffloader::new(&conn, None, cfg);
        let err = off
            .offload("0123456789ABCDEF_extra", "ns", None, "ai:alice")
            .err()
            .expect("size error");
        let downcast = err
            .downcast_ref::<OffloadError>()
            .expect("OffloadError variant");
        matches!(downcast, OffloadError::SizeLimitExceeded { .. });
    }

    #[test]
    fn deref_refuses_when_content_tampered() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let r = off
            .offload("hello world", "ns", None, "ai:alice")
            .expect("offload");

        // Swap the stored zstd blob for one whose decompressed bytes
        // do NOT match the stored sha256.
        let tampered = zstd_compress(b"GOODBYE WORLD").expect("compress");
        conn.execute(
            "UPDATE offloaded_blobs SET content_zstd = ?1 WHERE ref_id = ?2",
            params![tampered, r.ref_id],
        )
        .expect("tamper");

        let err = off.deref(&r.ref_id, None).err().expect("deref must reject");
        let downcast = err.downcast_ref::<OffloadError>().expect("OffloadError");
        assert!(matches!(downcast, OffloadError::IntegrityFailed { .. }));
    }

    #[test]
    fn deref_refuses_unknown_ref_id() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let err = off
            .deref("ofl_DOESNOTEXIST", None)
            .err()
            .expect("not found");
        let downcast = err.downcast_ref::<OffloadError>().expect("OffloadError");
        assert!(matches!(downcast, OffloadError::NotFound { .. }));
    }

    /// SEC-4 (Cluster D, issue #767) — cross-agent deref must surface
    /// `NotFound` (leak-resistant), NOT a typed permission error that
    /// would let a probe enumerate ref_ids by message differentiation.
    #[test]
    fn deref_refuses_cross_agent_caller_with_notfound() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let r = off
            .offload("alice's secret", "ns", None, "ai:alice")
            .expect("offload");
        // Bob tries to deref Alice's blob — must fail with NotFound.
        let err = off
            .deref(&r.ref_id, Some("ai:bob"))
            .err()
            .expect("cross-agent deref must reject");
        let downcast = err.downcast_ref::<OffloadError>().expect("OffloadError");
        assert!(
            matches!(downcast, OffloadError::NotFound { .. }),
            "cross-agent deref must map to NotFound (leak-resistant), got: {downcast:?}"
        );
        // Owner can still read.
        let owner_back = off
            .deref(&r.ref_id, Some("ai:alice"))
            .expect("owner deref ok");
        assert_eq!(owner_back.content, "alice's secret");
        // Substrate-internal callers (None) BYPASS the ownership gate.
        let internal_back = off
            .deref(&r.ref_id, None)
            .expect("substrate-internal deref ok");
        assert_eq!(internal_back.content, "alice's secret");
    }

    #[test]
    fn sweep_purges_expired_rows() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        // Two TTL'd rows, one permanent row.
        let a = off
            .offload("alpha", "ns", Some(60), "ai:alice")
            .expect("offload a");
        let b = off
            .offload("beta", "ns", Some(60), "ai:alice")
            .expect("offload b");
        let c = off
            .offload("gamma", "ns", None, "ai:alice")
            .expect("offload c");

        // Sweep with `now` well beyond stored_at + 60s.
        let future = a.stored_at + 60 * 60;
        let deleted = sweep_expired(&conn, future, 1000, std::time::Duration::ZERO).expect("sweep");
        assert_eq!(deleted, 2);

        // a + b are gone; c (permanent) remains.
        assert!(off.deref(&a.ref_id, None).is_err());
        assert!(off.deref(&b.ref_id, None).is_err());
        assert!(off.deref(&c.ref_id, None).is_ok());
    }

    /// Regression for #1264 — TOCTOU race between `sweep_expired` SELECT
    /// and DELETE. If a concurrent `offload()` refreshes `stored_at` after
    /// the row is selected but before its DELETE runs, the per-row DELETE
    /// must re-evaluate the TTL predicate and SKIP the now-fresh row.
    #[test]
    fn sweep_does_not_drop_blob_refreshed_after_select() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let r = off
            .offload("racy", "ns", Some(60), "ai:alice")
            .expect("offload");
        let original_stored_at = r.stored_at;
        let sweep_now = original_stored_at + 60 * 60;

        // Simulate the race: between sweep's SELECT and DELETE the row gets
        // its `stored_at` bumped to `sweep_now` (e.g. a concurrent
        // `offload()` calling `ON CONFLICT DO UPDATE SET stored_at =
        // excluded.stored_at`). Bumping stored_at to `sweep_now` makes the
        // row's expiry `sweep_now + 60` — i.e. NOT expired against
        // `sweep_now`.
        conn.execute(
            "UPDATE offloaded_blobs SET stored_at = ?1 WHERE ref_id = ?2",
            params![sweep_now, r.ref_id],
        )
        .expect("simulate concurrent refresh");

        // Sweep with the same `now` the SELECT phase used. Pre-fix, the
        // DELETE drops the row because the predicate is only `ref_id = ?`.
        // Post-fix, the DELETE re-checks `(stored_at + ttl_seconds) < now`
        // and the refreshed row survives.
        let deleted =
            sweep_expired(&conn, sweep_now, 1000, std::time::Duration::ZERO).expect("sweep");
        assert_eq!(
            deleted, 0,
            "sweep must not drop a row whose stored_at was refreshed past expiry"
        );
        let back = off.deref(&r.ref_id, None).expect("blob must still exist");
        assert_eq!(back.content, "racy");
    }

    #[test]
    fn signed_events_chain_captures_offload_and_deref() {
        let conn = fresh_db();
        let off = ContextOffloader::new(&conn, None, OffloadConfig::default());
        let r = off
            .offload("traced", "ns", None, "ai:alice")
            .expect("offload");
        let _ = off.deref(&r.ref_id, None).expect("deref");
        let rows = crate::signed_events::list_signed_events(&conn, None, 100, 0).expect("list");
        let kinds: Vec<&str> = rows.iter().map(|r| r.event_type.as_str()).collect();
        assert!(kinds.contains(&"context_offloaded"));
        assert!(kinds.contains(&"context_dereferenced"));
    }
}