Skip to content

feat(platform-wallet-storage): embeddable SQLite persistence backend with seedless rehydration#3968

Open
Claudius-Maginificent wants to merge 141 commits into
v4.1-devfrom
feat/platform-wallet-storage-rehydration
Open

feat(platform-wallet-storage): embeddable SQLite persistence backend with seedless rehydration#3968
Claudius-Maginificent wants to merge 141 commits into
v4.1-devfrom
feat/platform-wallet-storage-rehydration

Conversation

@Claudius-Maginificent

@Claudius-Maginificent Claudius-Maginificent commented Jun 29, 2026

Copy link
Copy Markdown
Collaborator

Why this PR exists

  • Problem: platform-wallet defines the persistence trait (PlatformWalletPersistence) and the manager-side load_from_persistor() entry point, but ships no production storage backend. Without one, a wallet's Platform state — identities, contacts, identity keys, tracked asset locks, balances, and core sync watermarks — has nowhere durable to live.
  • What breaks without it: Restart the node/app and its Platform identities and contacts are gone until re-derived, the address-reuse guard resets, and core sync restarts from scratch — there is no on-disk durability, no backup/restore, and no schema-migration path for wallet state.
  • Blocking relationship: Originally split from feat(platform-wallet): load watch-only wallet state from local storage at startup #3692; now rebased directly on v4.1-dev, which already carries the shared rehydration scaffolding (ClientStartState, load_from_persistor, the WalletType::ExternalSignable model). This PR is the storage half — the net change against v4.1-dev is almost entirely the new crate.

What was done

Adds rs-platform-wallet-storage — a self-contained, embeddable SQLite persistence backend implementing PlatformWalletPersistence. One .db file holds many wallets, durable across restarts, with online backup/restore and automatic schema migration, under a hard contract: no private-key material is ever written to the database (signing material stays in the OS keyring or an encrypted vault).

Persister & seedless rehydration

  • SqlitePersister (usable as Arc<dyn PlatformWalletPersistence>, Send + Sync, object-safe) with configurable journal / synchronous / flush modes, a retention policy, and auto-backup.
  • Seedless load() reconstructs each wallet external-signable from its persisted account manifest (Wallet::new_external_signable, no seed required), then layers the persisted core-state projection — UTXOs, sync watermarks, chainlock, used-address pool depth — via apply_persisted_core_state. Prekeyed identity/contact joins mean signing works immediately post-load with no key re-sync.
  • Per-domain readers back the load path: accounts, asset locks, core state, core address pool, identities (prekeyed), identity keys, platform addresses, and version watermarks.

Schema & migrations (refinery; additive; version-pinned with golden schema-freeze fingerprints)

  • V001 __initial — per-wallet tables keyed by wallet_id, native FOREIGN KEY … ON DELETE CASCADE; identity-owned tables cascade via identities.wallet_id.
  • V002 __address_height_pin — adds platform_addresses.as_of_height (address double-count fix).
  • V003 __unified (additive, sequenced after V002) — core_address_pool (first-class per-index address-pool rows with a used flag, giving real per-account UTXO attribution in place of an account-0 approximation), meta_data_versions (per-(wallet_id, domain) monotonic sequence for cache invalidation), and meta_store_generation (restore-regenerated store token).

Trust boundary & robustness (the .db is untrusted input at load)

  • Fail-hard load(): any row that fails to decode, or an out-of-range wallet_id, aborts the whole call with a typed WalletStorageError — no silent per-row skip, no partial Ok.
  • Layered size limits: a 16 MiB (SIZE_LIMIT_BYTES) cap on KV values and BLOB decode, per-column length() pre-read gates before materialization, a bincode decode bounded by a Limit config that rejects trailing bytes, and a 32 MiB SQLITE_LIMIT_LENGTH connection backstop.
  • Typed columns are cross-checked against the decoded BLOB on every reader (outpoint / account / identity / key / wallet id); any mismatch hard-errors.

Secrets

  • Encrypted-vault + OS-keyring secret store (SecretStore / EncryptedFileStore: Argon2id KDF + XChaCha20-Poly1305 AEAD envelope, zeroized, over keyring-core), so signing material never touches the wallet .db.

Changes outside the storage crate (deliberately minimal — the design intent was to leave platform-wallet unchanged and move persistence into its own crate)

  • platform-wallet: doc-comment only (new_watch_onlynew_external_signable).
  • swift-sdk: the Platform-wallet load FFI consumer reconciled to the shipped 1-arg platform_wallet_manager_load_from_persistor contract; one real fix in SendTransactionView (stop funding core-to-core sends from a Platform-Payment index); the rest are doc-comment renames.
  • Infra: rust-dashcore dependency rev bump (key-wallet out-of-order UTXO spend fix); root .cargo/audit.toml acknowledges RUSTSEC-2025-0141 (bincode unmaintained — an informational advisory, mitigated by the size caps + fail-hard load() above).

Deferred (TODO-marked, no regression)

  • Manifest authentication (a MAC binding the persisted manifest to its wallet_id) — tracked in feat(platform-wallet): manifest integrity checksum (Risk-6/R12.5 follow-up) #3992.
  • Long-term recovery for orphaned wallet rows (a crash between wallet-row creation and first-account registration leaves a permanently-empty manifest; it rehydrates harmlessly as an empty external-signable wallet today, but there is no eviction / re-registration path) — an open product decision, TODO left at the exact branch.

How Has This Been Tested?

  • cargo clippy --all-features --all-targets -- -D warnings clean across platform-wallet-storage, platform-wallet-ffi, and platform-wallet.
  • cargo nextest -p platform-wallet-storage: 561 passed / 0 failed — covering the per-domain readers, all three migrations, the schema-freeze fingerprints, per-account attribution, the DashPay pool-PK collision regression, and the prepare-cached read-only self-check.
  • Swift compilation is verified by CI (Swift SDK build) — FFI symbols were matched by hand against the Rust extern "C" surface.

Breaking Changes

None in this PR's net diff. The storage crate is purely additive; the platform-wallet / swift-sdk touches are comment renames plus one localized send-funding fix. (The WalletType::ExternalSignable model this crate consumes already lives in v4.1-dev.)

Checklist:

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas (trust-boundary and migration paths)
  • I have added or updated relevant unit/integration/functional/e2e tests
  • I have added "!" to the title and described breaking changes — n/a, no breaking changes
  • I have made corresponding changes to the documentation (README / SCHEMA / SECRETS)

For repository code-owners and collaborators only

  • I have assigned this pull request to a milestone

🤖 Co-authored by Claudius the Magnificent AI Agent

Summary by CodeRabbit

  • New Features

    • Added support for a safer, more explicit secret-storage flow, including unprotected vaults, password-protected secrets, and stricter size limits.
    • Wallet data loading now restores more account, identity, contact, and balance information automatically.
  • Bug Fixes

    • Improved database consistency during wallet delete, backup, restore, and migration operations.
    • Fixed several read/load paths to reject corrupted, oversized, or mismatched data instead of failing silently.
    • Strengthened key and secret handling to better prevent data leakage and invalid input issues.

@coderabbitai

coderabbitai Bot commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

This PR adds a Tier-2 secret-envelope format and hardens secret storage, while renaming the SQLite wallet root to wallets, adding typed per-area rehydration readers, and wiring SqlitePersister::load() to rebuild keyless wallets from persisted state.

Changes

Secrets

Layer / File(s) Summary
Wire format and AAD types
src/secrets/wire/*.rs
Adds the envelope, typed AAD structs, KDF wire encoding, and bincode wrap/unwrap logic.
Secret error taxonomy
src/secrets/error.rs
Adds tier-2 error variants and updates keyring SPI projection.
Store API and file-vault hardening
src/secrets/store.rs, src/secrets/file/*
Adds file_unprotected, refactors read/write flows, and hardens blank-passphrase, size, fsync, and permission handling.
Secrets docs, keyring docs, and config
SECRETS.md, src/secrets/mod.rs, src/secrets/keyring.rs, Cargo.toml, tests/secrets_*
Updates docs, feature flags, compile-time checks, and secrets-focused integration tests.

SQLite

Layer / File(s) Summary
Migrations, blob sealing, and shared helpers
migrations/V001__initial.rs, migrations/V003__unified.rs, src/sqlite/schema/blob.rs, src/sqlite/schema/wallets.rs, src/kv.rs, src/lib.rs
Re-roots wallet FKs to wallets, adds address-pool and metadata-version tables, seals blob persistence, and updates shared size/cast helpers.
Per-area readers and load_state wiring
src/sqlite/schema/*.rs
Adds typed readers for accounts, identities, keys, contacts, asset locks, core state, pools, and platform addresses.
Persister open/load/delete/backup/restore
src/sqlite/persister.rs, src/sqlite/error.rs, src/sqlite/backup.rs, src/sqlite/conn.rs, src/sqlite/migrations.rs, src/sqlite/util/wallet.rs
Adds open-path guarding, schema/application checks, keyless load/rebuild, and hardened persistence flows.
Tests and fixtures
tests/*.rs
Extensive coverage updates for the new schema, load path, and rehydration behavior.
Docs
SCHEMA.md, README.md
Updates the schema and load() documentation to match the new root anchor and keyless rehydration model.

Estimated code review effort: 5 (Critical) | ~150 minutes

Possibly related issues

Possibly related PRs

Suggested labels: Client Only

Suggested reviewers: shumkov, thepastaclaw

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly matches the main change: a new platform-wallet-storage SQLite backend with seedless rehydration.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/platform-wallet-storage-rehydration

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@lklimek lklimek changed the title feat(platform-wallet-storage): persistence readers + seedless load() wiring (split from #3692) feat(platform-wallet): persistence readers + seedless load() wiring (split from #3692) Jun 29, 2026
lklimek and others added 2 commits June 29, 2026 12:55
…persistor [#3692, clean on v3.1-dev]

Squashed net-diff of feat/platform-wallet-rehydration onto v3.1-dev base
(1653b89). Includes all merged commits:
  • changeset: CoreChangeSet, ClientWalletStartState, addresses_derived wiring
  • rehydrate: seedless watch-only wallet rebuild + apply_persisted_core_state
  • load_outcome: LoadOutcome / SkipReason / CorruptKind
  • manager/load: load_from_persistor implementation
  • manager/mod: PlatformWalletManager wiring
  • events: PlatformEvent + on_wallet_skipped_on_load concrete handler
  • error: RehydrateRowError relocated from manager::rehydrate
  • core_bridge: warn_if_non_default_account generalised to &[T] slice
  • FFI: persistence + manager bindings
  • Swift: PlatformWalletManager load() bridging
  • tests: rehydration_load integration suite
  • misc: .cargo/audit.toml, .gitignore

fmt + clippy (-D warnings) + cargo test: all pass.
Tree verified byte-for-byte identical to feat/platform-wallet-rehydration HEAD.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…3968, independent on v3.1-dev]

Storage-crate half of the rehydration work, rebuilt to stand alone on
v3.1-dev: SqlitePersister::load() wiring + per-area readers (accounts,
core_state, identities, asset_locks, contacts, identity_keys) that
reconstruct the keyless ClientWalletStartState.

Independence on v3.1-dev required two deliberate stubs — the reshaped
ClientWalletStartState drops wallet/wallet_info, breaking two base
consumers; both are resolved by #3692 in the dash-evo-tool integration:
  - manager/load.rs: whole-body todo!("keyless rehydration lands in #3692")
  - ffi/persistence.rs: tail-only todo!("seeded FFI restore path lands in
    #3692") — keeps the 8 builder helpers live (no dead_code under
    -D warnings) and minimizes the #3692 merge conflict

Cross-crate manager-apply e2e tests in sqlite_core_state_reader.rs are
gated behind a new off-by-default `rehydration-apply` feature (enabled in
the integrated stack); storage-level load_state assertions run standalone.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>
lklimek and others added 10 commits June 29, 2026 14:39
…ncrete handlers only (#3692 review)

Remove `PlatformEventHandler::on_platform_event` (the generic backward-compat
escape hatch) and `PlatformEventManager::on_platform_event` entirely.
`on_wallet_skipped_on_load` now has a plain no-op default, matching the
pattern used by every other concrete handler on the trait.

`PlatformEvent` is kept: it is `pub`, re-exported from `lib.rs`, and
not present in the FFI or Swift layer — no dead-code warning applies to
public items, and removing it would be a needless churn of the public API.

Not a breaking change vs v3.1-dev: `on_platform_event` was only ever on
this branch (absent from origin/v3.1-dev).

Doc comments in manager/load.rs and manager/mod.rs updated to point to
`on_wallet_skipped_on_load` instead of the removed method/event wrapper.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…g-seed gate (#3692 review)

The rehydrate module header and the rehydration_load test header both
claimed the wrong-seed gate was "deferred to separate FFI work and is
not part of this path." That gate now exists on the resolver-backed
signing entrypoints (sign_with_mnemonic_resolver + the FFI resolver sign
path). Reword to say wrong-seed validation lives there; the seedless
load path never sees the seed. Docs-only, no behaviour change.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…nt HashSet (#3692 review)

apply_persisted_core_state filtered new_utxos against spent_utxos with a
nested `any()`, making the unspent projection O(new × spent). Collect the
spent outpoints into a HashSet once and do O(1) membership lookups —
behaviour is identical (Copy OutPoint, Hash + Eq), just linear.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ehydrate (#3692 review)

The FFI build_wallet_start_state decoded the persisted core address pools
(used flags + derived addresses) into a temp wallet_info, but the keyless
ClientWalletStartState forwarded only the account manifest + UTXO/height
projection — the pool used-state was dropped. apply_persisted_core_state
then marked addresses used ONLY from currently-unspent UTXOs, so a
previously-used address whose funds were since spent came back marked
unused and could be handed out again as a fresh receive address: an
address-reuse privacy leak.

Carry the used-state through:
- Add ClientWalletStartState::used_core_addresses (Vec<Address>, empty
  default) — a flat snapshot of every pool-marked-used address.
- Populate it in the FFI projection from the already-decoded pools.
- apply_persisted_core_state now marks used the UNION of unspent-UTXO
  addresses + used_core_addresses (new param), deriving deep slots via the
  existing horizon walk. Renamed extend_pools_for_restored_utxos ->
  extend_pools_for_restored_addresses since it now resolves both sources.

Empty used_core_addresses preserves the prior unspent-only behaviour, so
the native/SQLite path is unchanged until #3968 wires its
pool readers to populate this field (cross-PR follow-up; no regression).

Also fixes the O(new x spent) unspent filter via an outpoint HashSet.

Test: rehydration_restores_persisted_used_state_for_spent_out_address
asserts an in-window and a deep spent-out address come back used, and that
the empty-snapshot baseline does NOT mark them.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…t wallet on load (#3692 review)

load_from_persistor mapped EVERY insert_wallet error (including
key_wallet_manager::WalletError::WalletExists) to a fatal WalletCreation +
'load break + full rollback. So a second load_from_persistor — or a load
run while the wallet is already in memory — aborted the whole batch
instead of being a no-op.

Match WalletExists specifically and treat it as already-satisfied: record
the wallet as loaded and `continue` to the next row. It was not inserted
by this pass, so it stays out of the rollback set and a later hard-fail
never evicts the pre-existing wallet. Mirrors the create-path idempotent
handling in wallet_lifecycle.

Test: rt_idempotent_repeat_restore loads the same persister twice and
asserts the second call returns Ok with the wallet still present.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ting the batch (#3692 review)

FFIPersister::load looped `build_wallet_start_state(entry)?`, so ONE
corrupt SwiftData row (e.g. a malformed account_xpub that aborts decode)
failed the ENTIRE load() — every wallet, every launch. The manager
already documents per-wallet skip (LoadOutcome::skipped +
on_wallet_skipped_on_load, returns Ok), but the FFI never reached it.

Make the FFI loop per-entry resilient: on a per-row build failure record
the wallet as skipped and continue. Errors from build_wallet_start_state
are inherently per-row (decode/projection of THAT entry), so this never
swallows a whole-load failure. The skip travels to the manager through a
new ClientStartState::skipped channel (Vec<(WalletId, SkipReason)>, empty
default); load_from_persistor folds it into LoadOutcome::skipped and fires
on_wallet_skipped_on_load. Reason is CorruptPersistedRow{DecodeError} —
PersistenceError's Display is structural (no row bytes / key material).

Cross-PR: ClientStartState derives Default so #3968's `::default()` build
still compiles; a destructure there needs `skipped: _` (follow-up).

Test: rt_persister_skipped_folds_into_outcome asserts a persister-rejected
row surfaces in LoadOutcome::skipped + fires the event while the healthy
wallet still loads and the call returns Ok.

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…stive (#3692 review)

Semver hygiene for the new, unreleased load surface so future variants
don't break downstream matches: add #[non_exhaustive] to SkipReason,
CorruptKind, LoadOutcome (load_outcome.rs) and PlatformEvent (events.rs).

Consequence: the FFI skip_reason_code match (a downstream crate) is no
longer exhaustive over the now-non_exhaustive SkipReason/CorruptKind, so
add catch-all arms mapping future variants to generic codes (199 corrupt
kind, 200 skip reason) until the mapping is extended. matches!() in tests
is unaffected (it carries an implicit wildcard).

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…dex pool extension on rehydrate (#3692 review)

QA flagged that the existing real-manager rehydration test defaults the
address-pool payload and is structurally blind to #1, and that the
pool-DEPTH fix (dash-evo-tool#829 Bug 2 / PR #830) had no regression guard.
Add two distinct, focused tests through apply_persisted_core_state:

- rehydration_used_state_survives_spent_utxo (#1, address-reuse): builds a
  ClientWalletStartState whose in-window address received funds that were
  then SPENT (new_utxos cancelled by spent_utxos → zero balance) and routes
  used_core_addresses through the field. Asserts the in-window + a deep
  (idx 30) address come back marked USED even with zero balance, and that
  the empty-snapshot baseline does NOT mark them. Replaces the weaker
  no-UTXO variant so the used flag is proven independent of a live UTXO.

- rt_deep_index_utxos_extend_pools_on_rehydration (DEPTH): unspent UTXOs on
  walkable ladders past the eager 0..=gap_limit window (external -> idx 84,
  internal -> idx 90). Asserts the deep slots are derived into their pools
  and Sum(per-address visible) == balance.total == Sum(persisted) — no
  deep-index undercount. Test-only; the production fix already exists.

Also: drop the stale "(from wallet_metadata)" table reference on the
ClientWalletStartState::network doc (backend-agnostic now).

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
 review)

Remove rt_deep_index_utxos_extend_pools_on_rehydration: the deep-index
pool-extension scenario is already guarded by the pre-existing
rehydration_extends_pools_to_cover_deep_index_utxos and
rehydration_coinjoin_single_pool_deep_index. The existing 30->60 horizon
extension already exercises the recursive walk, so a deeper ladder added no
new code path — pure duplication. Keeps the #1 address-reuse test
(rehydration_used_state_survives_spent_utxo).

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…eview)

After the on_platform_event removal, the `PlatformEvent` enum had zero
references repo-wide — events flow through the concrete
`PlatformEventHandler` methods (`on_wallet_skipped_on_load`, etc.), not a
dispatched enum. Remove the enum (and the `#[non_exhaustive]` just added
to it) plus its `lib.rs` re-export. Its only variant, `WalletSkippedOnLoad`,
went with it; the `on_wallet_skipped_on_load(wallet_id, &SkipReason)`
handler and `SkipReason` itself stay. No imports orphaned — `SkipReason`
and `WalletId` are still used by `PlatformEventHandler` /
`PlatformEventManager`.

Verified: `git grep PlatformEvent` over rs-platform-wallet, -ffi and
swift-sdk is empty (only `PlatformEventHandler` / `PlatformEventManager`
remain).

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@Claudius-Maginificent

Copy link
Copy Markdown
Collaborator Author

@coderabbitai full review

@coderabbitai

coderabbitai Bot commented Jun 29, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Full review finished.

@thepastaclaw

thepastaclaw commented Jun 29, 2026

Copy link
Copy Markdown
Collaborator

✅ Review complete (commit 7cdaa65)

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The PR adds the storage-side keyless load readers, but it also replaces two externally reachable restore paths with unconditional panics. The new rehydration readers are mostly wired, but several fail-hard corruption checks are missing where typed SQLite columns can disagree with decoded blobs.

🔴 2 blocking | 🟡 6 suggestion(s)

Findings not posted inline (2)

These findings could not be anchored to the current diff, but they are still part of this review.

  • [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs:143-150: Identity reader trusts blob identity over the row keyload_state() selects identity_id but discards it, then decodes entry_blob and routes the restored identity using entry.id. The writer rejects IdentityEntry values whose blob ID disagrees with the typed column, but a restored or corrupted SQLite row can bypass the writer. The reader shou...
  • [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/contacts.rs:245-266: Contact reader does not validate request IDs against row keys — The contacts reader keys pending rows from (owner_id, contact_id) but stores the decoded ContactRequest without checking its sender and recipient IDs. During apply, sent requests are inserted under entry.request.recipient_id and incoming requests under entry.request.sender_id, so a row wh...
🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [BLOCKING] packages/rs-platform-wallet/src/manager/load.rs:13-15: Public manager restore API now panics
  `load_from_persistor()` is a public restore entry point returning `Result<(), PlatformWalletError>`, but this PR replaces the previous implementation with `todo!()`. The exported C ABI function `platform_wallet_manager_load_from_persistor` calls this method directly, and the Swift `loadFromPersistor()` wrapper calls that exported function, so any app invoking persisted wallet restore aborts instead of receiving a typed error. If this branch intentionally defers keyless manager rehydration to #3692, the public API still needs to fail closed with an error rather than panic across the FFI boundary.

In `packages/rs-platform-wallet-ffi/src/persistence.rs`:
- [BLOCKING] packages/rs-platform-wallet-ffi/src/persistence.rs:3389-3390: FFI persister load panics after receiving restore rows
  `FFIPersister::load()` calls `build_wallet_start_state()` for every wallet returned by the Swift `on_load_wallet_list_fn` callback, and this function now reaches an unconditional `todo!()` after partially reconstructing the entry. This path is externally reachable through restore and shielded binding flows that call `persister.load()`. A panic here can unwind toward `extern "C"` callers and abort the process instead of returning the existing `PersistenceError`/`PlatformWalletFFIResult` failure path.

In `packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs`:
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs:143-150: Identity reader trusts blob identity over the row key
  `load_state()` selects `identity_id` but discards it, then decodes `entry_blob` and routes the restored identity using `entry.id`. The writer rejects `IdentityEntry` values whose blob ID disagrees with the typed column, but a restored or corrupted SQLite row can bypass the writer. The reader should enforce the same column-vs-blob check, including wallet scope when `entry.wallet_id` is set, so semantic corruption fails the load instead of hydrating the wrong identity.
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs:143-150: Identity reader trusts blob identity over the row key
  `load_state()` selects `identity_id` but discards it, then decodes `entry_blob` and routes the restored identity using `entry.id`. The writer rejects `IdentityEntry` values whose blob ID disagrees with the typed column, but a restored or corrupted SQLite row can bypass the writer. The reader should enforce the same column-vs-blob check, including wallet scope when `entry.wallet_id` is set, so semantic corruption fails the load instead of hydrating the wrong identity.

In `packages/rs-platform-wallet-storage/src/sqlite/schema/identity_keys.rs`:
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/identity_keys.rs:168-169: Identity-key reader does not verify decoded entries match row columns
  `load_state()` reconstructs `(identity_id, key_id)` from the SQL row, decodes `public_key_blob`, and inserts the decoded entry without checking that the blob carries the same identity, key id, wallet id, or public-key hash. The apply path later ignores the changeset map key and routes by fields from the decoded `IdentityKeyEntry`, so a semantically inconsistent row can attach a public key to the wrong identity or carry a hash that disagrees with the indexed column. Mirror the writer-side consistency checks on read before inserting into the changeset.

In `packages/rs-platform-wallet-storage/src/sqlite/schema/contacts.rs`:
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/contacts.rs:245-266: Contact reader does not validate request IDs against row keys
  The contacts reader keys pending rows from `(owner_id, contact_id)` but stores the decoded `ContactRequest` without checking its sender and recipient IDs. During apply, sent requests are inserted under `entry.request.recipient_id` and incoming requests under `entry.request.sender_id`, so a row whose blob disagrees with the typed columns rehydrates under a different counterparty and later tombstones for the row key will not clear it. Established rows should also verify their outgoing and incoming requests match the same `(owner, contact)` relationship before accepting the row.
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/contacts.rs:245-266: Contact reader does not validate request IDs against row keys
  The contacts reader keys pending rows from `(owner_id, contact_id)` but stores the decoded `ContactRequest` without checking its sender and recipient IDs. During apply, sent requests are inserted under `entry.request.recipient_id` and incoming requests under `entry.request.sender_id`, so a row whose blob disagrees with the typed columns rehydrates under a different counterparty and later tombstones for the row key will not clear it. Established rows should also verify their outgoing and incoming requests match the same `(owner, contact)` relationship before accepting the row.

In `packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs`:
- [SUGGESTION] packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs:316-325: Oversized BLOB rows are materialized before the size cap runs
  The new load readers fetch BLOB columns directly into `Vec<u8>` and only then call `blob::decode()`, whose 16 MiB cap runs after rusqlite has already allocated and copied the value. A restored or locally modified SQLite DB can therefore store a huge `record_blob` or other `*_blob` value that passes SQLite integrity checks and forces large process allocations on startup before returning `BlobTooLarge`. Use a shared bounded read helper or select `length(blob_column)` first, as the KV path already does, before materializing BLOB contents.

Comment thread packages/rs-platform-wallet/src/manager/load.rs
Comment thread packages/rs-platform-wallet-ffi/src/persistence.rs Outdated
Comment thread packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 16

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (7)
packages/rs-platform-wallet-storage/tests/sqlite_migrations.rs (1)

165-180: 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

Count identity_keys by wallet_id now that the table is wallet-scoped.

identity_keys moved onto (wallet_id, identity_id, key_id), but this smoke test still routes it through the via_identity path. That means the assertion would still pass if the row were written with the wrong wallet_id as long as identity_id matched, so the new schema contract is not actually being exercised here.

Suggested fix
     let via_identity = [
-        "identity_keys",
         "token_balances",
         "dashpay_profiles",
         "dashpay_payments_overlay",
     ];
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/tests/sqlite_migrations.rs` around lines
165 - 180, The smoke test still treats identity_keys as identity-scoped, but the
schema now scopes it by wallet_id. Update the test logic in sqlite_migrations.rs
so identity_keys uses the wallet_id COUNT query path instead of the via_identity
branch, while keeping the other tables that still depend on identities routed
through identity_id. Use the existing via_identity handling in the loop over
cases to locate and adjust the count_sql selection.
packages/rs-platform-wallet-storage/SCHEMA.md (1)

507-513: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

The soft-cascade note overstates cleanup for identity-scoped metadata.

meta_identity and meta_token do not carry wallet_id, so a wallet delete only reaches them through existing identities rows. If metadata was written before an identities row ever existed, that cleanup path never fires; the orphan-metadata section above already documents exactly that case.

Suggested wording
-`wallets` row fires a wallet-rooted `AFTER DELETE` trigger that
-brooms the wallet-scoped tables (`meta_wallet`, `meta_contact`,
-`meta_platform_address`) by `wallet_id`, and the FK cascade through
-`identities` fires a per-identity trigger that brooms `meta_identity` +
-`meta_token` by `identity_id`. Both legs key on the id alone, so a wallet
-delete cleans its metadata transitively whether or not the typed parent
-was ever written and regardless of any contact's lifecycle state.
+`wallets` row fires a wallet-rooted `AFTER DELETE` trigger that
+brooms the wallet-scoped tables (`meta_wallet`, `meta_contact`,
+`meta_platform_address`) by `wallet_id`, and the FK cascade through
+existing `identities` rows fires a per-identity trigger that brooms
+`meta_identity` + `meta_token` by `identity_id`. That means wallet-scoped
+metadata is cleaned regardless of typed-parent existence, while
+identity-scoped metadata still requires an `identities` row to exist.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/SCHEMA.md` around lines 507 - 513, The
soft-cascade description in SCHEMA.md overstates what a wallet delete cleans up
for identity-scoped metadata. Update the note near the wallet/identity trigger
flow to say that `wallets` deletion only reaches `meta_identity` and
`meta_token` through existing `identities` rows and that orphan metadata written
before an `identities` row exists is not covered; align the wording with the
existing orphan-metadata section and reference the `wallets` trigger and the
`identities` FK cascade path.
packages/rs-platform-wallet-storage/src/sqlite/schema/accounts.rs (1)

27-36: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Fail closed on corrupted platform-payment registration rows.

This helper trusts the typed account_index column but never verifies that the decoded AccountRegistrationEntry is actually a PlatformPayment entry for that same index. all_platform_payment_registrations() feeds platform_addrs::load_all(), so a tampered row will currently rehydrate under the typed index with the blob's xpub instead of tripping AccountRegistrationEntryMismatch.

Suggested fix
 fn decode_platform_payment_row(
     account_index: i64,
     xpub_bytes: &[u8],
 ) -> Result<PlatformPaymentRegistration, WalletStorageError> {
     let account_index = crate::sqlite::util::safe_cast::i64_to_u32(
         "account_registrations.account_index",
         account_index,
     )?;
     let entry: AccountRegistrationEntry = blob::decode(xpub_bytes)?;
+    if account_type_db_label(&entry.account_type) != "platform_payment"
+        || account_index(&entry.account_type) != account_index
+    {
+        return Err(WalletStorageError::AccountRegistrationEntryMismatch);
+    }
     Ok((account_index, entry.account_xpub))
 }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/accounts.rs` around
lines 27 - 36, `decode_platform_payment_row` currently decodes the blob and
returns the typed `account_index` without checking that the
`AccountRegistrationEntry` is a `PlatformPayment` for that same index. Update
this helper to validate the decoded `AccountRegistrationEntry` matches the
expected `PlatformPayment` variant and index, and return
`AccountRegistrationEntryMismatch` if it does not. Keep the existing
`safe_cast::i64_to_u32` conversion, but make
`all_platform_payment_registrations()` fail closed by rejecting any corrupted or
mismatched row instead of rehydrating it.
packages/rs-platform-wallet-storage/src/sqlite/backup.rs (2)

243-263: 🗄️ Data Integrity & Integration | 🔴 Critical | 🏗️ Heavy lift

Do not delete WAL/SHM before the replacement is guaranteed.

If sibling removal succeeds and tmp.persist(dest_db_path) then fails, the original main DB remains but its WAL/SHM may be gone, losing committed WAL-mode state. The restore path needs a rollback-safe swap strategy or a SQLite-native restore that does not destructively unlink siblings before the main replacement succeeds.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/backup.rs` around lines 243 -
263, The restore flow in `backup.rs` removes `-wal`/`-shm` siblings before
`tmp.persist(dest_db_path)`, which can leave the original DB intact but its
WAL-mode state lost if persist fails. Change the `restore` logic to use a
rollback-safe replacement strategy: do not unlink siblings until the destination
swap is guaranteed, or replace the whole SQLite set atomically via a
SQLite-native restore path. Keep the fix localized around the sibling cleanup
and `tmp.persist` sequence so the operation remains all-or-nothing.

361-374: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Apply keep_last_n as a floor, not a ceiling.

With both keep_last_n and max_age set, line 373 still requires pass_count, so backups beyond the newest N are deleted even when they are within max_age. That contradicts the new floor semantics.

Proposed fix
-        let pass_count = match policy.keep_last_n {
-            Some(n) => idx < n,
-            None => true,
-        };
         let pass_age = match policy.max_age {
             Some(max) => now.duration_since(ts).map(|d| d <= max).unwrap_or(true),
-            None => true,
+            None => policy.keep_last_n.is_none(),
         };
-        if within_floor || (pass_count && pass_age) {
+        if within_floor || pass_age {
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/backup.rs` around lines 361 -
374, In backup pruning logic in the `retain_backups` flow, `keep_last_n` is
still being treated like a ceiling because the deletion condition requires
`pass_count` even when `max_age` is also set. Update the condition around
`within_floor`, `pass_count`, and `pass_age` so that the newest N backups are
always kept as a floor and any backup within the age limit is also retained,
using the existing `policy.keep_last_n` and `policy.max_age` checks in this
block.
packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs (1)

143-150: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Validate typed identity columns against the blob during load.

load_state ignores the selected identity_id, so a corrupted row whose typed column and entry_blob.id diverge is silently rehydrated under the blob value. Also reject a blob wallet_id that disagrees with the scoped wallet.

Proposed fix
-        let _identity_id: Vec<u8> = row.get(0)?;
+        let identity_id: Vec<u8> = row.get(0)?;
         let payload: Vec<u8> = row.get(1)?;
         let tombstoned: i64 = row.get(2)?;
         if tombstoned != 0 {
             continue;
         }
+        let typed_id = <[u8; 32]>::try_from(identity_id.as_slice())
+            .map_err(|_| WalletStorageError::blob_decode("identities.identity_id is not 32 bytes"))?;
         let entry: IdentityEntry = blob::decode(&payload)?;
+        if entry.id.as_bytes() != &typed_id {
+            return Err(WalletStorageError::IdentityEntryIdMismatch);
+        }
+        if let Some(entry_wallet_id) = entry.wallet_id {
+            if entry_wallet_id != *wallet_id {
+                return Err(WalletStorageError::WalletIdMismatch {
+                    expected: *wallet_id,
+                    found: entry_wallet_id,
+                });
+            }
+        }
         let managed = managed_identity_from_entry(&entry, wallet_id);
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs` around
lines 143 - 150, The load path in load_state is trusting the blob too much and
currently ignores the selected identity_id, so mismatched typed columns can be
silently rehydrated under the blob value. Update the row handling in load_state
to validate that the typed identity_id matches entry_blob.id before decoding
into IdentityEntry, and also verify the blob wallet_id matches the wallet_id
scope passed into managed_identity_from_entry. If either check fails, reject the
row instead of continuing.
packages/rs-platform-wallet-storage/src/sqlite/persister.rs (1)

299-326: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Enforce the open-path registry before restore.

restore_from_inner can replace dest_db_path while a live SqlitePersister in this process still owns the same DB. Check the registry up front and return AlreadyOpen; otherwise the live handle/buffer can diverge from the restored file.

Proposed fix outline
+        let registered_path = dest_db_path
+            .canonicalize()
+            .unwrap_or_else(|_| dest_db_path.to_path_buf());
+        if open_path_registry()
+            .lock()
+            .unwrap_or_else(|p| p.into_inner())
+            .contains(&registered_path)
+        {
+            return Err(WalletStorageError::AlreadyOpen {
+                path: registered_path,
+            });
+        }
+
         if !skip_backup && dest_db_path.exists() {
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/persister.rs` around lines 299
- 326, restore_from_inner currently restores the database without checking
whether the destination path is already owned by a live SqlitePersister, which
can leave an in-memory handle out of sync with the replaced file. Add an upfront
registry lookup in restore_from_inner for dest_db_path and return
WalletStorageError::AlreadyOpen when the path is already registered, before any
backup or restore work begins. Keep the change localized around
restore_from_inner and the open-path registry used by SqlitePersister so
existing live handles are protected from restore-time replacement.
🧹 Nitpick comments (4)
packages/rs-platform-wallet-storage/tests/sqlite_load_wiring.rs (1)

91-127: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Assert synced_height as well as last_processed_height.

This test writes both fields, but only validates one of them. If load() stops wiring synced_height, the round-trip still passes.

Suggested assertion
     assert_eq!(slice.core_state.new_utxos.len(), 1);
     assert_eq!(slice.core_state.new_utxos[0].value(), 777_000);
+    assert_eq!(slice.core_state.synced_height, Some(50));
     assert_eq!(slice.core_state.last_processed_height, Some(50));
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/tests/sqlite_load_wiring.rs` around lines
91 - 127, The round-trip test in `sqlite_load_wiring.rs` only verifies
`last_processed_height` from `state.wallets.get(&w).core_state` even though
`synced_height` is also written into `CoreChangeSet`; update the existing load
assertions to check both fields after `p2.load()` so `load()` wiring regressions
for `synced_height` are caught alongside `last_processed_height`.
packages/rs-platform-wallet-storage/tests/sqlite_dashpay_overlay_contract.rs (1)

93-108: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Assert that the overlay stays out of the rehydrated identity.

This currently proves only that load() still returns the wallet's core state. If a regression starts merging dashpay_profiles into the loaded identity payload, this test still passes. Please also assert that the seeded identity is present after load() and that its DashPay profile remains absent for the overlay-only write case.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/tests/sqlite_dashpay_overlay_contract.rs`
around lines 93 - 108, The current test around persister.load() only verifies
wallet.core_state, so it can miss regressions where dashpay_profiles gets merged
into the rehydrated identity. Update the sqlite_dashpay_overlay_contract test to
also inspect the loaded identity payload for the seeded wallet after load() and
assert that the identity is still present while its DashPay profile remains
absent in this overlay-only write scenario. Use the existing persister.load(),
wallets.get(&w), and any identity fields already available in the loaded state
to make the check explicit.
packages/rs-platform-wallet-storage/tests/sqlite_delete_real_apply_failure.rs (1)

67-72: 🗄️ Data Integrity & Integration | 🔵 Trivial | ⚡ Quick win

Also assert that the failed pre-flush left nothing durable.

Restoring the buffer is only half of the contract here. If apply_changeset_to_tx ever leaks the wallets insert before the core_sync_state failure, this test still passes and leaves duplicate-on-retry state behind.

Suggested assertion block
     assert!(
         persister.buffer_has_changeset_for_test(&w),
         "buffered changeset must be restored after a real pre-flush apply failure"
     );
+
+    let conn = persister.lock_conn_for_test();
+    let wallets_rows: i64 = conn
+        .query_row(
+            "SELECT COUNT(*) FROM wallets WHERE wallet_id = ?1",
+            rusqlite::params![w.as_slice()],
+            |row| row.get(0),
+        )
+        .unwrap();
+    let core_rows: i64 = conn
+        .query_row(
+            "SELECT COUNT(*) FROM core_sync_state WHERE wallet_id = ?1",
+            rusqlite::params![w.as_slice()],
+            |row| row.get(0),
+        )
+        .unwrap();
+    assert_eq!(wallets_rows, 0, "failed pre-flush must not durably create the wallet row");
+    assert_eq!(core_rows, 0, "failed pre-flush must not durably create child rows");
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@packages/rs-platform-wallet-storage/tests/sqlite_delete_real_apply_failure.rs`
around lines 67 - 72, The test currently only verifies the buffered changeset is
restored, but it should also verify that a failed pre-flush did not persist any
durable state. In sqlite_delete_real_apply_failure.rs, extend the existing
scenario around the failed delete so it checks the database/transaction state
after the apply failure and confirms no `wallets` insert or other durable side
effects remain from `apply_changeset_to_tx`. Keep the existing
`persister.buffer_has_changeset_for_test(&w)` assertion, and add a second
assertion in the same test that validates the storage is clean after the failure
so retry does not see duplicate-on-retry state.
packages/rs-platform-wallet-storage/src/sqlite/persister.rs (1)

813-814: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Fix the query-budget documentation.

load() currently performs multiple reader calls inside the for wallet_id in wallet_ids loop, so the query count grows with wallet count. Reword this to avoid promising constant query budget.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rs-platform-wallet-storage/src/sqlite/persister.rs` around lines 813
- 814, Update the query-budget comment in the load path so it no longer claims
constant cost with wallet count; the current load() flow iterates over
wallet_ids and performs multiple reader calls per wallet, so reword the
documentation to describe that it has per-wallet read/query work rather than a
fixed query budget. Keep the note near the wallet_ids loop/load() implementation
and make sure the wording matches the actual behavior of the reader calls.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/rs-platform-wallet-ffi/src/persistence.rs`:
- Around line 3389-3390: The temporary restore stub in the persistence restore
flow should not panic via todo!(); replace it with a recoverable typed error so
callers receive a PersistenceError instead of crashing. Update the restore-path
branch that currently ignores identity_manager and unused_asset_locks to return
an appropriate PersistenceError variant (or equivalent error conversion) from
the same function/method, keeping the signature consistent and preserving the
existing error handling path.

In `@packages/rs-platform-wallet-storage/README.md`:
- Around line 165-168: The README wording around the manager-side rehydration
flow is too strong for this PR because the manager/FFI load path is still
stubbed. Update the description near the watch-only rebuild note to clearly mark
the manager-side `load_from_persistor`/`Wallet::new_watch_only` application as
pending or follow-up work, and keep the current text scoped to the storage-side
behavior only.

In `@packages/rs-platform-wallet-storage/src/kv.rs`:
- Around line 62-65: The key-length validation in validate_key currently assumes
Rust chars().count() matches SQLite length() for all strings, but embedded NULs
break that equivalence. Update the key precheck to explicitly reject keys
containing \0 before comparing length, or adjust the validation/comment so it no
longer claims the same key set; keep the logic aligned with the SQL CHECK
constraint in kv.rs.

In `@packages/rs-platform-wallet-storage/src/secrets/error.rs`:
- Around line 3-5: The file-level non-leakage docs in error.rs are too broad for
the current Io behavior: they claim variants never carry a stringified source,
but Io::fmt/rendering still exposes the underlying source text. Update the docs
to carve out the Io exception, or change Io’s display implementation/tests so it
no longer includes the source string, keeping the wording aligned with the
actual Error and Io rendering behavior.
- Around line 88-91: The UnsupportedEnvelopeVersion error currently truncates
the envelope version to u8, so update the error variant in error.rs to store the
full u32 version value instead. Then adjust the envelope parsing call site that
constructs UnsupportedEnvelopeVersion to pass the original Envelope.version
without narrowing, keeping the reported version accurate in the error message.

In `@packages/rs-platform-wallet-storage/src/secrets/file/format.rs`:
- Around line 21-22: The docs for the nested BTreeMap format currently imply
duplicate (wallet_id, label) pairs are prevented entirely, but the read path
still accepts duplicate JSON keys and serde collapses them. Update the
documentation near the format description to state that uniqueness is only
guaranteed by serialization, or change the deserialization logic in the file
format/parser code to explicitly reject duplicate keys, and make the behavior
match the tests and the intended API.

In `@packages/rs-platform-wallet-storage/src/secrets/file/mod.rs`:
- Around line 628-654: The post-persist Unix handling in the vault write path is
swallowing parent-directory fsync failures and returning success, which makes
`put`/`delete`/`rekey` report a durable commit when only the rename succeeded.
Update the flow around the `persist()`/`sync_all()` block to surface a distinct
“committed but not durable” result or otherwise keep the in-memory commit behind
the durability boundary, and make sure the caller can tell when
`fs::File::open(parent)` or `sync_all()` fails instead of only logging via
`tracing::warn!`.

In `@packages/rs-platform-wallet-storage/src/secrets/store.rs`:
- Around line 255-266: The reprotect method in SecretStore currently does a
non-atomic read-then-write using get_secret followed by set_secret, which can
overwrite concurrent updates with stale plaintext. Update reprotect to use an
atomic backend-specific reprotect/CAS path, or add a version check so the write
only succeeds if the entry has not changed since get_secret; reference
SecretStore::reprotect, get_secret, and set_secret when wiring the fix.

In `@packages/rs-platform-wallet-storage/src/secrets/wire/envelope.rs`:
- Around line 136-141: The scheme-0 plaintext path in the envelope handling
still leaves temporary Vec<u8> buffers unwiped, including the
Unprotected(plaintext.to_vec()) branch and the ExpectedProtectedButUnsealed arm.
Update the envelope logic in the encode/decode flow around the Envelope and
Payload handling to use zeroizing storage for these plaintext temporaries or
explicitly wipe them before drop, while keeping SecretBytes::new only for the
final encoded blob.

In `@packages/rs-platform-wallet-storage/src/sqlite/persister.rs`:
- Around line 179-199: `persist`/`open` currently treats `has_schema_history()`
as the only brand-new-vs-existing check, so a pre-existing non-wallet SQLite
file with no `refinery_schema_history` can still be migrated. Add an explicit
guard in the `had_schema_history` decision path to reject existing SQLite files
that lack wallet schema history, using the same `conn`/`has_schema_history` flow
and returning a typed wallet storage error before any backup, integrity check,
or `migrations::run()` work begins.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs`:
- Around line 143-154: The sync-state write path in core_state should treat
last_applied_chain_lock monotonically, not as a blind overwrite. Update the
CoreChangeSet-to-DB flow around upsert_sync_state so the stored chain-lock is
max-merged with the existing row (using the same chain-lock height comparison
logic as the height watermarks) before persisting. Apply this behavior wherever
last_applied_chain_lock is written in the affected core_state update functions
so the persisted chain-lock cannot regress.
- Around line 40-41: The `decode_from_slice` handling in
`last_applied_chain_lock` is too permissive because it accepts a valid prefix
and ignores any appended data. Update this decoding path in `core_state.rs` to
mirror the other blob decoders: after calling `bincode::decode_from_slice` for
`ChainLock`, verify the returned consumed length matches `bytes.len()` and treat
any mismatch as corruption by returning `None` instead of loading the state.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/identity_keys.rs`:
- Around line 151-169: Mirror the writer-side validation in load_state by
checking that each decoded public_key_blob matches the row’s typed columns
before inserting into cs.upserts. After decode_entry(&payload), verify the
entry’s identity_id, key_id, wallet_id, and public_key_hash against the values
from the identity_keys query, and return a WalletStorageError if any mismatch is
found. Keep the checks local to load_state and use the existing decode_entry,
Identifier::from, and KeyID::try_from flow so inconsistent rows are rejected
instead of loaded silently.

In `@packages/rs-platform-wallet-storage/tests/sqlite_accounts_reader.rs`:
- Around line 46-82: The sqlite_accounts_reader test is too weak because both
AccountRegistrationEntry fixtures use the same xpub and the assertions only
check set membership, so row reordering or xpub/row mixups can still pass.
Update the test to use distinct xpub fixtures for each entry and assert the
loaded manifest in the expected order, using the accounts::load_state result and
the existing AccountType variants to verify each row maps to the correct xpub.

In `@packages/rs-platform-wallet/src/changeset/client_wallet_start_state.rs`:
- Line 33: The doc comment on the wallet start state field still references the
old wallet_metadata table. Update the comment in client_wallet_start_state.rs to
point to the renamed wallets table instead, keeping the wording aligned with the
field’s source of truth and using the existing comment near the network field to
locate it.

In `@packages/rs-platform-wallet/src/manager/load.rs`:
- Around line 8-14: The public rehydration entry point
PlatformWalletManager::load_from_persistor currently panics via todo!, which
turns a caller error into a runtime abort. Replace the todo! with a recoverable
Result path by returning an explicit PlatformWalletError for the unsupported
stub state, or otherwise gate/remove this API until keyless rehydration in
PlatformWalletManager is implemented. Ensure callers receive an error instead of
a panic.

---

Outside diff comments:
In `@packages/rs-platform-wallet-storage/SCHEMA.md`:
- Around line 507-513: The soft-cascade description in SCHEMA.md overstates what
a wallet delete cleans up for identity-scoped metadata. Update the note near the
wallet/identity trigger flow to say that `wallets` deletion only reaches
`meta_identity` and `meta_token` through existing `identities` rows and that
orphan metadata written before an `identities` row exists is not covered; align
the wording with the existing orphan-metadata section and reference the
`wallets` trigger and the `identities` FK cascade path.

In `@packages/rs-platform-wallet-storage/src/sqlite/backup.rs`:
- Around line 243-263: The restore flow in `backup.rs` removes `-wal`/`-shm`
siblings before `tmp.persist(dest_db_path)`, which can leave the original DB
intact but its WAL-mode state lost if persist fails. Change the `restore` logic
to use a rollback-safe replacement strategy: do not unlink siblings until the
destination swap is guaranteed, or replace the whole SQLite set atomically via a
SQLite-native restore path. Keep the fix localized around the sibling cleanup
and `tmp.persist` sequence so the operation remains all-or-nothing.
- Around line 361-374: In backup pruning logic in the `retain_backups` flow,
`keep_last_n` is still being treated like a ceiling because the deletion
condition requires `pass_count` even when `max_age` is also set. Update the
condition around `within_floor`, `pass_count`, and `pass_age` so that the newest
N backups are always kept as a floor and any backup within the age limit is also
retained, using the existing `policy.keep_last_n` and `policy.max_age` checks in
this block.

In `@packages/rs-platform-wallet-storage/src/sqlite/persister.rs`:
- Around line 299-326: restore_from_inner currently restores the database
without checking whether the destination path is already owned by a live
SqlitePersister, which can leave an in-memory handle out of sync with the
replaced file. Add an upfront registry lookup in restore_from_inner for
dest_db_path and return WalletStorageError::AlreadyOpen when the path is already
registered, before any backup or restore work begins. Keep the change localized
around restore_from_inner and the open-path registry used by SqlitePersister so
existing live handles are protected from restore-time replacement.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/accounts.rs`:
- Around line 27-36: `decode_platform_payment_row` currently decodes the blob
and returns the typed `account_index` without checking that the
`AccountRegistrationEntry` is a `PlatformPayment` for that same index. Update
this helper to validate the decoded `AccountRegistrationEntry` matches the
expected `PlatformPayment` variant and index, and return
`AccountRegistrationEntryMismatch` if it does not. Keep the existing
`safe_cast::i64_to_u32` conversion, but make
`all_platform_payment_registrations()` fail closed by rejecting any corrupted or
mismatched row instead of rehydrating it.

In `@packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs`:
- Around line 143-150: The load path in load_state is trusting the blob too much
and currently ignores the selected identity_id, so mismatched typed columns can
be silently rehydrated under the blob value. Update the row handling in
load_state to validate that the typed identity_id matches entry_blob.id before
decoding into IdentityEntry, and also verify the blob wallet_id matches the
wallet_id scope passed into managed_identity_from_entry. If either check fails,
reject the row instead of continuing.

In `@packages/rs-platform-wallet-storage/tests/sqlite_migrations.rs`:
- Around line 165-180: The smoke test still treats identity_keys as
identity-scoped, but the schema now scopes it by wallet_id. Update the test
logic in sqlite_migrations.rs so identity_keys uses the wallet_id COUNT query
path instead of the via_identity branch, while keeping the other tables that
still depend on identities routed through identity_id. Use the existing
via_identity handling in the loop over cases to locate and adjust the count_sql
selection.

---

Nitpick comments:
In `@packages/rs-platform-wallet-storage/src/sqlite/persister.rs`:
- Around line 813-814: Update the query-budget comment in the load path so it no
longer claims constant cost with wallet count; the current load() flow iterates
over wallet_ids and performs multiple reader calls per wallet, so reword the
documentation to describe that it has per-wallet read/query work rather than a
fixed query budget. Keep the note near the wallet_ids loop/load() implementation
and make sure the wording matches the actual behavior of the reader calls.

In
`@packages/rs-platform-wallet-storage/tests/sqlite_dashpay_overlay_contract.rs`:
- Around line 93-108: The current test around persister.load() only verifies
wallet.core_state, so it can miss regressions where dashpay_profiles gets merged
into the rehydrated identity. Update the sqlite_dashpay_overlay_contract test to
also inspect the loaded identity payload for the seeded wallet after load() and
assert that the identity is still present while its DashPay profile remains
absent in this overlay-only write scenario. Use the existing persister.load(),
wallets.get(&w), and any identity fields already available in the loaded state
to make the check explicit.

In
`@packages/rs-platform-wallet-storage/tests/sqlite_delete_real_apply_failure.rs`:
- Around line 67-72: The test currently only verifies the buffered changeset is
restored, but it should also verify that a failed pre-flush did not persist any
durable state. In sqlite_delete_real_apply_failure.rs, extend the existing
scenario around the failed delete so it checks the database/transaction state
after the apply failure and confirms no `wallets` insert or other durable side
effects remain from `apply_changeset_to_tx`. Keep the existing
`persister.buffer_has_changeset_for_test(&w)` assertion, and add a second
assertion in the same test that validates the storage is clean after the failure
so retry does not see duplicate-on-retry state.

In `@packages/rs-platform-wallet-storage/tests/sqlite_load_wiring.rs`:
- Around line 91-127: The round-trip test in `sqlite_load_wiring.rs` only
verifies `last_processed_height` from `state.wallets.get(&w).core_state` even
though `synced_height` is also written into `CoreChangeSet`; update the existing
load assertions to check both fields after `p2.load()` so `load()` wiring
regressions for `synced_height` are caught alongside `last_processed_height`.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: edc85543-e83f-4a54-88ef-17800859c720

📥 Commits

Reviewing files that changed from the base of the PR and between 83f7d4f and 2f2a74a.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (79)
  • packages/rs-platform-wallet-ffi/src/persistence.rs
  • packages/rs-platform-wallet-storage/.cargo/audit.toml
  • packages/rs-platform-wallet-storage/Cargo.toml
  • packages/rs-platform-wallet-storage/README.md
  • packages/rs-platform-wallet-storage/SCHEMA.md
  • packages/rs-platform-wallet-storage/SECRETS.md
  • packages/rs-platform-wallet-storage/migrations/V001__initial.rs
  • packages/rs-platform-wallet-storage/src/bin/platform-wallet-storage.rs
  • packages/rs-platform-wallet-storage/src/kv.rs
  • packages/rs-platform-wallet-storage/src/lib.rs
  • packages/rs-platform-wallet-storage/src/secrets/error.rs
  • packages/rs-platform-wallet-storage/src/secrets/file/crypto.rs
  • packages/rs-platform-wallet-storage/src/secrets/file/format.rs
  • packages/rs-platform-wallet-storage/src/secrets/file/mod.rs
  • packages/rs-platform-wallet-storage/src/secrets/keyring.rs
  • packages/rs-platform-wallet-storage/src/secrets/mod.rs
  • packages/rs-platform-wallet-storage/src/secrets/secret.rs
  • packages/rs-platform-wallet-storage/src/secrets/store.rs
  • packages/rs-platform-wallet-storage/src/secrets/wire/aad.rs
  • packages/rs-platform-wallet-storage/src/secrets/wire/config.rs
  • packages/rs-platform-wallet-storage/src/secrets/wire/envelope.rs
  • packages/rs-platform-wallet-storage/src/secrets/wire/kdf.rs
  • packages/rs-platform-wallet-storage/src/secrets/wire/mod.rs
  • packages/rs-platform-wallet-storage/src/sqlite/backup.rs
  • packages/rs-platform-wallet-storage/src/sqlite/config.rs
  • packages/rs-platform-wallet-storage/src/sqlite/conn.rs
  • packages/rs-platform-wallet-storage/src/sqlite/error.rs
  • packages/rs-platform-wallet-storage/src/sqlite/kv.rs
  • packages/rs-platform-wallet-storage/src/sqlite/migrations.rs
  • packages/rs-platform-wallet-storage/src/sqlite/persister.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/accounts.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/asset_locks.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/blob.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/contacts.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/dashpay.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/identities.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/identity_keys.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/mod.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/platform_addrs.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/token_balances.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/wallets.rs
  • packages/rs-platform-wallet-storage/src/sqlite/util/safe_cast.rs
  • packages/rs-platform-wallet-storage/tests/common/mod.rs
  • packages/rs-platform-wallet-storage/tests/secrets_api.rs
  • packages/rs-platform-wallet-storage/tests/secrets_default_on_compiles.rs
  • packages/rs-platform-wallet-storage/tests/secrets_scan.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_account_zero_attribution.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_accounts_reader.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_asset_locks_filter.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_auto_backup.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_check_constraints.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_commit_writes_lock_poison_shortcircuit.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_contacts_keys_rehydration.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_core_state_reader.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_dashpay_overlay_contract.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_delete_buffer_reconcile.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_delete_cross_process_exclusion.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_delete_partial_commit_window.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_delete_real_apply_failure.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_delete_wallet.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_error_classification.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_fk_changeset_ordering.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_foreign_keys.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_identity_keys_reader.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_load_reconstruction.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_load_wiring.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_migrations.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_money_column_overflow_on_read.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_object_metadata.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_open_integrity_check.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_persist_roundtrip.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_qa_identity_tombstone.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_second_open_guard.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_structural_hardening.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_wallet_db_identity.rs
  • packages/rs-platform-wallet/src/changeset/client_wallet_start_state.rs
  • packages/rs-platform-wallet/src/manager/load.rs

Comment thread packages/rs-platform-wallet-ffi/src/persistence.rs Outdated
Comment thread packages/rs-platform-wallet-storage/README.md Outdated
Comment thread packages/rs-platform-wallet-storage/src/kv.rs
Comment thread packages/rs-platform-wallet-storage/src/secrets/error.rs Outdated
Comment thread packages/rs-platform-wallet-storage/src/secrets/error.rs Outdated
Comment thread packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs
Comment thread packages/rs-platform-wallet-storage/tests/sqlite_accounts_reader.rs Outdated
Comment thread packages/rs-platform-wallet/src/changeset/client_wallet_start_state.rs Outdated
Comment thread packages/rs-platform-wallet/src/manager/load.rs Outdated
…riminators to stop distinct-variant collapse (#3968 review)

account_registrations keyed on (wallet_id, account_type, account_index) only. PlatformPayment key classes and DashPay (user, friend) identity pairs share that key across genuinely distinct accounts, so the ON CONFLICT DO UPDATE silently overwrote one with another — a restored wallet lost accounts (data loss).

Chose option (a) widen-PK over fail-loud: a wallet legitimately holds multiple DashpayReceivingFunds accounts (one per contact) at the same index, so failing the collision would reject valid multi-contact wallets. Add key_class, user_identity_id, friend_identity_id as NOT NULL columns with sentinel defaults (0 / zeroblob) so non-discriminated variants still dedup on re-persist, and widen the PK to include them. The reader cross-checks every typed PK column against the decoded blob and orders deterministically. V001 edited in place (on-disk format unshipped).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

<sub>🤖 Co-authored by [Claudius the Magnificent](https://github.com/lklimek/claudius) AI Agent</sub>
lklimek and others added 2 commits July 9, 2026 09:24
…t.toml (#3968 review)

rustsec/audit-check runs from the repo root and only reads the root
.cargo/audit.toml — a crate-local audit.toml is never consulted by CI,
so the existing ignore in packages/rs-platform-wallet-storage/.cargo/audit.toml
did nothing to suppress the nightly security-audit-rust.yml workflow.

Move the RUSTSEC-2025-0141 (bincode unmaintained) acknowledgement, with
its full rationale, to the root config where CI actually reads it.
Delete the now-redundant crate-local file rather than leave a dead
config that looks authoritative but isn't.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…let-storage-rehydration

# Conflicts:
#	packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletResult.swift

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Source: reviewers=general:claude/opus(failed), general:codex/gpt-5.5(ok), ffi-engineer:claude/opus(failed), ffi-engineer:codex/gpt-5.5(ok); verifier=codex/gpt-5.5.
Reviewed commit: fa9f3378. Prior reviewed commit: a9c500f8.

Carried-forward prior findings remain valid for the Swift/Rust load ABI mismatch, the Swift persister-load result-code mirror, and both stale SQLite prepare allow-list entries. The latest delta fixed the AddressNonceMismatch portion of the result-code mismatch, but the persister-load constants remain Swift-only. One additional in-scope cumulative issue is valid: empty-manifest wallet rows are still registered by the manager even though the persister comments and load outcome model say they should be skipped.

🔴 5 blocking

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletManager.swift`:
- [BLOCKING] packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletManager.swift:475-477: Swift calls a removed load-outcome FFI ABI
  Swift still constructs `LoadOutcomeFFI`, calls `platform_wallet_manager_load_from_persistor(handle, &outcome)`, and frees the outcome with `platform_wallet_load_outcome_free`. The current Rust export takes only `manager_handle`, and the Rust FFI crate does not define `LoadOutcomeFFI` or `platform_wallet_load_outcome_free`. Regenerated bindings will not contain these identifiers, so the Swift SDK will fail to compile; stale bindings would call a two-argument ABI against a one-argument Rust function.

In `packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletResult.swift`:
- [BLOCKING] packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletResult.swift:124-127: Swift mirrors persister-load result codes Rust does not export
  Rust now exports `ErrorAddressNonceMismatch = 21`, so that part of the prior result-code finding is fixed. Swift still switches on `PLATFORM_WALLET_FFI_RESULT_CODE_ERROR_PERSISTER_LOAD_TRANSIENT` and `PLATFORM_WALLET_FFI_RESULT_CODE_ERROR_PERSISTER_LOAD_FATAL`, but Rust's `PlatformWalletFFIResultCode` jumps from `ErrorAddressNonceMismatch = 21` to `NotFound = 98` and `ErrorUnknown = 99`. Regenerated `DashSDKFFI` bindings will not provide the two persister-load constants, so this file will still fail to compile.

In `packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs:40: Update the asset-lock prepare allow-list for the outpoint length gate
  The asset-lock readers now prepare SQL beginning with `SELECT length(outpoint), outpoint, account_index`, but this allow-list entry still matches only the old `SELECT outpoint, account_index` substring. `tc_p1_003_prepare_cached_in_writers` exempts read-only `.prepare(` call sites only when the local three-line probe contains an allow-list substring, so the three asset-lock readers are now reported as offenders.
- [BLOCKING] packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs:84-87: Update the instant-lock prepare allow-list for the txid length gate
  The `core_instant_locks` reader now uses `SELECT length(txid), txid, length(islock_blob), islock_blob`, but this allow-list entry still matches the old `SELECT txid, length(islock_blob), islock_blob` text. Because the guard test matches by substring, the changed `core_state.rs` query is no longer exempt and will be reported as a `.prepare(` offender.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [BLOCKING] packages/rs-platform-wallet/src/manager/load.rs:64-70: Empty-manifest wallet rows are registered instead of skipped
  `SqlitePersister::load` creates a placeholder external-signable wallet when `account_manifest.is_empty()` and documents that the manager will re-check the empty manifest and skip the wallet as `MissingManifest`. The manager does not perform that check: it destructures every `ClientWalletStartState`, builds `PlatformWalletInfo`, inserts the wallet into `WalletManager`, initializes platform addresses, and publishes a `PlatformWallet` handle. A crash-created wallet row with no account registration therefore becomes a live empty wallet on restart instead of being skipped, contradicting the load outcome contract and exposing account-less wallets to callers that expect only restorable wallets.

_GitHub refused normal diff-based posting for this oversized PR; posted exact-SHA body-only review. Recovery reason: review_poster dry-run failed: 09, in post_review
diff_text = _gh("pr", "diff", str(pr_number), "--repo", repo)
File "/Users/claw/.openclaw/workspace/scripts/review_poster.py", line 94, in _gh
raise RuntimeError(f"gh {' '.join(args)} failed: {result.stderr.strip()}")
RuntimeError: gh pr diff 3968 --repo dashpay/platform failed: could not find pull request diff: HTTP 406: Sorry, the diff exceeded the maximum number of lines (20000) (https://api.github.com/repos/dashpay/platform/pulls/3968)
PullRequest.diff too_large
_

…rs tests

Collapse the RehydrationPoolMismatch #[error(...)] attribute onto one line,
alphabetize the platform_wallet import in rehydration_used_state_survives_spent_utxo,
and wrap the over-width assert_eq! in the missing-account test — the three
diffs cargo fmt --check flagged on the macOS CI job.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Incremental + cumulative review at 4ce099e3 after prior fa9f3378. The latest delta is formatting/import-only in storage test code, but the current head still needs the prior unresolved blockers carried forward.

Source: reviewers=general:claude/opus(failed), general:codex/gpt-5.5(ok; exit 5), ffi-engineer:claude/opus(failed), ffi-engineer:codex/gpt-5.5(ok); verifier=codex/gpt-5.5
Reviewed commit: 4ce099e3
Prior reviewed commit: fa9f3378

Prior Findings Reconciliation

All 5 prior findings from fa9f3378 are STILL VALID at 4ce099e3. No prior findings were fixed, outdated, or intentionally deferred in this delta.

Carried-Forward Prior Findings

  • prior-1: blocking - Swift calls a removed load-outcome FFI ABI
  • prior-2: blocking - Swift mirrors persister-load result codes Rust does not export
  • prior-3: blocking - Update the asset-lock prepare allow-list for the outpoint length gate
  • prior-4: blocking - Update the instant-lock prepare allow-list for the txid length gate
  • prior-5: blocking - Empty-manifest wallet rows are registered instead of skipped

New Findings In Latest Delta

None.

🔴 5 blocking

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletManager.swift`:
- [BLOCKING] packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletManager.swift:475-477: Swift calls a removed load-outcome FFI ABI
  Swift constructs `LoadOutcomeFFI`, passes it as a second argument to `platform_wallet_manager_load_from_persistor`, and frees it with `platform_wallet_load_outcome_free`. The current Rust export takes only `manager_handle` and returns `PlatformWalletFFIResult`; the Rust FFI crate does not define `LoadOutcomeFFI` or `platform_wallet_load_outcome_free`. Regenerated `DashSDKFFI` bindings will not contain these identifiers, so the Swift SDK fails to compile; stale bindings would call a two-argument ABI against a one-argument Rust symbol.

In `packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletResult.swift`:
- [BLOCKING] packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletResult.swift:124-127: Swift mirrors persister-load result codes Rust does not export
  Rust now exports `ErrorAddressNonceMismatch = 21`, so that portion of the prior issue is fixed. Swift still switches on `PLATFORM_WALLET_FFI_RESULT_CODE_ERROR_PERSISTER_LOAD_TRANSIENT` and `PLATFORM_WALLET_FFI_RESULT_CODE_ERROR_PERSISTER_LOAD_FATAL`, but Rust's `PlatformWalletFFIResultCode` jumps from `ErrorAddressNonceMismatch = 21` directly to `NotFound = 98` and `ErrorUnknown = 99`. Regenerated bindings will not provide the two persister-load constants, so this file still fails to compile.

In `packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs:40: Update the asset-lock prepare allow-list for the outpoint length gate
  The asset-lock readers now prepare SQL beginning with `SELECT length(outpoint), outpoint, account_index`, but this allow-list entry still matches only the old `SELECT outpoint, account_index` substring. `tc_p1_003_prepare_cached_in_writers` exempts read-only `.prepare(` call sites only when the local three-line probe contains an allow-list substring, so the three asset-lock readers are now reported as offenders.
- [BLOCKING] packages/rs-platform-wallet-storage/tests/sqlite_compile_time.rs:84-87: Update the instant-lock prepare allow-list for the txid length gate
  The `core_instant_locks` reader now uses `SELECT length(txid), txid, length(islock_blob), islock_blob`, but this allow-list entry still matches the old `SELECT txid, length(islock_blob), islock_blob` text. Because the guard test matches by substring, the changed `core_state.rs` query is no longer exempt and will be reported as a `.prepare(` offender.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [BLOCKING] packages/rs-platform-wallet/src/manager/load.rs:64-70: Empty-manifest wallet rows are registered instead of skipped
  `SqlitePersister::load` creates a placeholder external-signable wallet when `account_manifest.is_empty()` and documents that the manager will skip it as `MissingManifest`. The manager does not perform that check: it destructures every `ClientWalletStartState`, builds `PlatformWalletInfo`, inserts the wallet into `WalletManager`, initializes platform addresses, and publishes a `PlatformWallet` handle. A crash-created wallet row with no account registration therefore becomes a live empty wallet on restart instead of being skipped, contradicting the load outcome contract and exposing account-less wallets to callers that expect only restorable wallets.

_GitHub refused or skipped normal inline posting for this oversized PR diff; posted exact-SHA body-only review. Recovery reason: review_poster dry-run failed: 09, in post_review
diff_text = _gh("pr", "diff", str(pr_number), "--repo", repo)
File "/Users/claw/.openclaw/workspace/scripts/review_poster.py", line 94, in _gh
raise RuntimeError(f"gh {' '.join(args)} failed: {result.stderr.strip()}")
RuntimeError: gh pr diff 3968 --repo dashpay/platform failed: could not find pull request diff: HTTP 406: Sorry, the diff exceeded the maximum number of lines (20000) (https://api.github.com/repos/dashpay/platform/pulls/3968)
PullRequest.diff too_large
_

lklimek and others added 9 commits July 9, 2026 10:15
The persistence move relocated apply_persisted_core_state into this crate
as a pub(super) helper, but the integration test still called the vanished
platform_wallet::manager::rehydrate:: path — a compile error only under
--all-features (the macOS coverage job), invisible to default-feature clippy.

Re-export the helper publicly behind the rehydration-apply feature (kept
crate-private in normal builds), point the two test call sites at the new
platform_wallet_storage::sqlite::util path, and correct the now-inaccurate
"manager-apply leg" comments — the function no longer lives in the manager.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
README claimed the manager-side rebuild was "not yet wired" and "lands in
#3692" — false: load_from_persistor reconstructs and registers every
persisted wallet today. Rewrite to present state. Update the three
Wallet::new_watch_only references (README, wallet_lifecycle comment, Swift
loadWalletList doc) to the renamed Wallet::new_external_signable.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…ntract

The LoadOutcome feature was removed Rust-side; Swift was the straggler,
calling FFI symbols that no longer exist and referencing result codes
22/23 that the Rust `PlatformWalletFFIResultCode` never defines (it stops
at ErrorAddressNonceMismatch = 21, then NotFound = 98 / ErrorUnknown = 99).

- PlatformWalletManager.swift: `loadFromPersistor()` now calls the real
  1-arg `platform_wallet_manager_load_from_persistor(handle)` and checks
  its returned `PlatformWalletFFIResult`. Dropped the phantom
  `LoadOutcomeFFI` out-param, `platform_wallet_load_outcome_free`, the
  skipped-wallet collection loop, the `SkippedWalletOnLoad` struct, and
  the now-unpopulatable `lastLoadSkippedWallets` published property.
- PlatformWalletResult.swift: removed the `errorPersisterLoadTransient`
  (22) / `errorPersisterLoadFatal` (23) result-code and error cases plus
  their `PLATFORM_WALLET_FFI_RESULT_CODE_ERROR_PERSISTER_LOAD_*` mappings,
  which map to cbindgen constants that are never generated.

Swift is not compilable in this environment; symbols matched by hand
against the Rust `#[no_mangle] extern "C"` signatures. CI's Swift build
is the compile check.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…d SQL

`tc_p1_003_prepare_cached_in_writers` regressed because this PR added
`length(<col>)` pre-read size gates to SELECTs in two schema files but
the `READ_ONLY_PREPARE_ALLOWED` substrings still matched the pre-gate SQL:

- asset_locks.rs: all three readers (load_active / load_unconsumed /
  list_active) now read `SELECT length(outpoint), outpoint, account_index,
  length(lifecycle_blob), lifecycle_blob, status`; the old
  `SELECT outpoint, account_index` substring no longer matched.
- core_state.rs: the instant-lock reader gained a `length(txid)` gate,
  so `SELECT length(txid), txid, length(islock_blob), islock_blob`
  replaces the stale `SELECT txid, length(islock_blob), islock_blob`.

Self-check accuracy only — the gate intent is preserved, no logic change.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…tion docs

The `core_address_pool` table (V003) landed in THIS PR, and the writer now
resolves `core_utxos.account_index` against it. Several docs still described
the pre-table world:

- wallet.rs `apply_persisted_core_state`: dropped the false "attribution is
  lost at write time (account_index is always 0)" framing and the stale
  `TODO(#3986)` blocker. The mapping IS persisted; this reader just doesn't
  read `account_index` back yet — restated as a deliberate present-state
  follow-up.
- core_state.rs `load_state`: `account_index` IS carried by `core_utxos`;
  corrected the "not carried" claim and split the flag list accordingly.
- sqlite_account_zero_attribution.rs: removed the false "no address→account
  lookup table" / "hardcoded" claims — the table exists; a fresh
  gap-limit-edge address simply has no pool row, so the writer falls back to
  account 0, which is exactly what this test pins.

Doc-only; no behavior change — the reader still restores present-state
balances onto a single funds account, preserving the zero-attribution
test contract.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…ment

The comment claimed the manager skips empty-manifest wallets "as
MissingManifest" and cited rt_corrupt_row_skipped_and_other_loads — a test
that does not exist. The real behavior (locked in by tc043 / tc_p4_006 /
tc_p4_007) is to register the wallet as an external-signable placeholder:
an empty account_manifest is not necessarily orphaned — a platform-only
wallet (identity + contacts, no core accounts) legitimately has one, and
its platform-side state must still rehydrate. State that truth; keep the
task #14 TODO as the deferred orphaned-row-recovery product decision.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…ests.sh

`security default-keychain -d user` exits non-zero on a self-hosted runner
that has no user default keychain; under `set -euo pipefail` the command
substitution aborted the whole script before any Swift build ran, failing
the Swift SDK job. Make the capture non-fatal — the restore trap already
skips an empty previous-default value, so capturing empty is harmless.

Surfaced now because this PR's Swift FFI changes make the Swift SDK build
run (previously skipped); the keychain preamble itself is unchanged base
CI infra.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…etError

Re-add the PlatformWalletError::PersisterLoad(#[from] PersistenceError)
variant dropped in the load-outcome cleanup. thiserror's #[from] regenerates
the From<PersistenceError> conversion that downstream consumers (dash-evo-tool)
rely on to `?`-propagate persister-load failures, and the variant keeps the
typed retry classification (PersistenceErrorKind) instead of flattening to a
string. Maps to ErrorUnknown across the FFI via the existing catch-all arm.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Add platform-wallet-storage to the allowed PR-title scopes so titles like
feat(platform-wallet-storage): ... validate. Note: pr.yml runs on
pull_request_target, so this takes effect for PR-title checks only once it
lands on the base branch.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@Claudius-Maginificent Claudius-Maginificent changed the title feat(platform-wallet): persistence readers + seedless load() wiring (split from #3692) feat(platform-wallet-storage): embeddable SQLite persistence backend with seedless rehydration Jul 9, 2026

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Source: reviewers=general:claude/opus(failed), general:codex/gpt-5.5(ok), security-auditor:claude/opus(failed), security-auditor:codex/gpt-5.5(ok), rust-quality:claude/opus(failed), rust-quality:codex/gpt-5.5(ok); verifier=codex/gpt-5.5.

Carried-forward prior findings: prior-1 is STILL VALID at a503bd7; the SQLite load path still persists core_utxos.account_index but discards it during production wallet rehydration. New latest-delta findings: the newly added PlatformWalletError::PersisterLoad variant is not wired into load_from_persistor, so the retry classification it was added to preserve is still erased. Cumulative review found no additional in-scope defects beyond those two load-path issues.

Prior reconciliation: prior-1 is STILL VALID at a503bd7b and is carried forward below.

New findings in latest delta: one suggestion in packages/rs-platform-wallet/src/manager/load.rs: PlatformWalletError::PersisterLoad was added in the latest delta, but load_from_persistor still flattens persister load failures to WalletCreation(String), so typed retry classification remains erased.

Posting note: normal inline review path was unavailable locally (609, in post_review diff_text = _gh("pr", "diff", str(pr_number), "--repo", repo) File "/Users/claw/.openclaw/workspace/scripts/review_poster.py", line 94, in _gh raise RuntimeError(f"gh {' '.join(args)} failed: {result.stderr.strip()}") RuntimeError: gh pr diff 3968 --repo dashpay/platform failed: could not find pull request diff: HTTP 406: Sorry, the diff exceeded the maximum number of lines (20000) (https://api.github.com/repos/dashpay/platform/pulls/3968) PullRequest.diff too_large), so this exact-SHA review is body-only while preserving the verified findings.

🔴 1 blocking | 🟡 1 suggestion(s)

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs:204-214: Restored UTXOs ignore the persisted owning account
  prior-1 STILL VALID. The writer stores `core_utxos.account_index`, but `schema::core_state::load_state` still selects only outpoint/value/script/height and returns a flat `CoreChangeSet`. `apply_persisted_core_state` then inserts every unspent restored UTXO into `all_funding_accounts_mut().next()`, so a UTXO owned by account 1 is restored under the first funding account after restart. Although the comments label this as a deferred re-warm, the production load path exposes the wallet before any enforced full sync, so account-indexed balances, spending/signing, reservation cleanup, and address used-state can observe the wrong account namespace.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [SUGGESTION] packages/rs-platform-wallet/src/manager/load.rs:40-45: load_from_persistor still erases persister load classification
  The latest delta adds `PlatformWalletError::PersisterLoad(#[from] PersistenceError)` specifically so rehydration callers keep `PersistenceErrorKind` and `is_transient()` retry classification, but this entry point still maps `self.persister.load()` failures into `WalletCreation(String)`. That flattens transient backend failures such as SQLite busy/full/I/O errors into an opaque string and makes the new variant ineffective for the manager load path it documents. Propagate the typed error directly so Rust callers can match `PersisterLoad` and inspect the retry classification.

…rth_height arg

Bump the rust-dashcore git pin from 48a07d3 to b3fb8244 (head of
dashpay/rust-dashcore#851) across all workspace refs. The newer
key-wallet-ffi `wallet_manager_import_wallet_from_bytes` gains a
`birth_height: u32` parameter, so update the Swift caller in
WalletManager.swift to pass it (defaulted to 0 = full rescan, keeping
`importWallet(from:)` source-compatible).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Caution

Failed to replace (edit) comment. This is likely due to insufficient permissions or the comment being deleted.

Error details
putComment timed out

@Claudius-Maginificent

Copy link
Copy Markdown
Collaborator Author

Review disposition — thepastaclaw latest review (2 body-only findings)

The two findings in the latest review were posted body-only (the PR diff exceeded GitHub's 20k-line inline cap), so they aren't resolvable threads. Disposition after verification against current HEAD:

1. Restored UTXOs routed to the first funds account on rehydration (packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs) — acknowledged, deliberately deferred. This is documented in-code (the INTENTIONAL/TODO block at the same location): core_utxos.account_index is persisted (V003) but not yet read back, so every restored UTXO is routed to the wallet's first funds-bearing account. The wallet total is a sum across all funds accounts and stays exact; per-account attribution is a deliberate follow-up, not a regression vs. the prior loader. Out of scope for this PR by design.

2. PersisterLoad(#[from] PersistenceError) not wired into load_from_persistor (packages/rs-platform-wallet/src/manager/load.rs) — acknowledged, deferred. The typed variant was restored on PlatformWalletError to serve external consumers (dash-evo-tool's From/? use). Routing load_from_persistor's internal error through it is a further change to the platform-wallet crate, which this PR intentionally keeps frozen (all net logic lives in platform-wallet-storage). A worthwhile follow-up, but out of this PR's scope.

🤖 Co-authored by Claudius the Magnificent AI Agent

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Source: reviewers = claude ffi-engineer opus (failed); claude general opus (failed); codex ffi-engineer gpt-5.5; codex general gpt-5.5; verifier = codex gpt-5.5; specialists = ffi-engineer; policy gate = review_policy.enforce_backport_prereq_policy.

Prior reconciliation: prior-1 is STILL VALID and prior-2 is STILL VALID at f2779ca. Carried-forward prior findings: the SQLite load path still discards persisted UTXO account attribution, and load_from_persistor still flattens typed persister load errors. New findings in latest delta: none; the SPV peer-tracking/FFI/Swift delta did not add a separate actionable issue from the supplied findings.

Prior Findings Reconciliation

  • prior-1: STILL VALID - Restored UTXOs ignore the persisted owning account
  • prior-2: STILL VALID - load_from_persistor still erases persister load classification

Carried-Forward Prior Findings

  • Restored UTXOs ignore the persisted owning account
  • load_from_persistor still erases persister load classification

New Findings In Latest Delta

  • None.

🔴 1 blocking | 🟡 1 suggestion(s)

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs:204-214: Restored UTXOs ignore the persisted owning account
  Carried-forward prior-1 is STILL VALID. The writer resolves and stores `core_utxos.account_index`, but `schema::core_state::load_state` still selects only outpoint/value/script/height into a flat `CoreChangeSet`. `apply_persisted_core_state` then inserts every unspent restored UTXO into `all_funding_accounts_mut().next()`, so a UTXO owned by a later funding account is restored under the first funding account after restart. The wallet is exposed before any enforced resync, so account-indexed balances, spending/signing, reservation cleanup, and used-address state can observe the wrong account namespace.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [SUGGESTION] packages/rs-platform-wallet/src/manager/load.rs:40-45: load_from_persistor still erases persister load classification
  Carried-forward prior-2 is STILL VALID. `PlatformWalletError::PersisterLoad(#[from] PersistenceError)` exists to preserve `PersistenceErrorKind` and `is_transient()` retry classification, but this entry point still maps `self.persister.load()` failures into `WalletCreation(String)`. That flattens transient backend failures such as SQLite busy/full/I/O errors into an opaque string and makes the typed variant ineffective for the manager load path and the Swift/Rust FFI caller that depends on it.

GitHub refused normal diff-based posting for this oversized PR (PullRequest.diff too_large), so this exact-SHA review is body-only while preserving the verified findings.

…ng account on rehydration

On seedless rehydration the reader dropped each UTXO's owning account, so
`apply_persisted_core_state` collapsed every restored unspent UTXO onto the
first funding account. Per-account balance, coin selection, and reservations
were wrong after restart for any wallet holding UTXOs in more than one funds
account.

`account_index` alone is ambiguous: a `Default` wallet carries Standard BIP44,
BIP32, and CoinJoin accounts all at numeric index 0, and DashPay accounts all
persist index 0 (told apart only by the identity pair). `load_state` now
resolves each unspent UTXO's full owning-account identity — account_type label,
index, and DashPay identity pair — from `core_address_pool` (same PK-ordered
tie-break the writer uses) and returns it as a per-outpoint side channel
alongside the `CoreChangeSet`. `apply_persisted_core_state` consumes it to route
each UTXO to its true funds account, falling back to the first account for a
UTXO whose script matched no pool row (deep/sparse or non-funds addresses
re-warm on the next sync). Fail-closed (`MissingAccount`) and funds-less-wallet
handling are preserved. All changes stay inside the storage crate.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Prior reconciliation: prior-1 and prior-2 from f2779ca were re-checked against 95d28a6. Any still-valid prior finding is carried forward below even if the latest delta did not touch its file. Latest delta files (f2779ca..95d28a6): packages/rs-platform-wallet-storage/src/sqlite/persister.rs, packages/rs-platform-wallet-storage/src/sqlite/schema/core_pool.rs, packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs, packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs, packages/rs-platform-wallet-storage/tests/sqlite_core_state_reader.rs. New Findings In Latest Delta: none unless explicitly listed.

Source: reviewers: claude opus general (failed), codex gpt-5.5 general (ok; exit 5), claude opus ffi-engineer (failed), codex gpt-5.5 ffi-engineer (ok). Verifier: codex gpt-5.5.

Carried-Forward Prior Findings: prior-1 is FIXED in current head for unspent UTXOs because load_state now returns an owning-account side channel and apply_persisted_core_state routes each unspent output through it; prior-2 is STILL VALID and is carried forward. New Findings In Latest Delta: the multi-account fix does not cover spent-only used addresses, because the used-address list is still ownerless and is applied only to the first funding account. The PR needs changes because that leaves the address-reuse guard incomplete for non-first accounts.

🔴 1 blocking | 🟡 1 suggestion(s)

🤖 Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs:215-222: Spent used addresses are restored on the wrong account
  The new UTXO owner side channel only routes currently unspent outputs. The persisted used-address set is still loaded as a wallet-wide `Vec<Address>` and this code appends every entry to `per_account_addrs[0]`, so a used-then-spent address from a later funding account is derived and marked against the first account's xpub instead of its real account. In a default wallet, a spent CoinJoin address marked used in `core_address_pool` will not be marked used in the CoinJoin pool after load, so it can be handed out again before a later sync re-warms that account.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [SUGGESTION] packages/rs-platform-wallet/src/manager/load.rs:40-45: load_from_persistor still erases persister load classification
  Carried-forward prior-2 is STILL VALID. `PlatformWalletError::PersisterLoad(#[from] PersistenceError)` exists to preserve `PersistenceErrorKind` and `is_transient()` retry classification, but this entry point still maps `self.persister.load()` failures into `WalletCreation(String)`. That flattens transient backend failures such as SQLite busy/full/I/O errors before they reach the manager load path or the Swift/Rust FFI conversion.

GitHub refused normal diff-based posting for this oversized PR (PullRequest.diff too_large), so this exact-SHA review is body-only while preserving the verified findings.

…-end SQL-resolver rehydration test

Follow-ups on the per-account UTXO routing:

- Distinguish the two rehydration miss cases that share the first-account
  fallback: (a) no side-channel entry (script matched no pool row — expected,
  silent) vs (b) a side-channel entry whose owner is not among the wallet's
  funds accounts (store drift). Case (b) is now collected and surfaced with a
  single greppable `tracing::warn!` (wallet_id + orphaned owners + count) after
  the loop — best-effort route to the first account, never fail-closed and never
  silent. The zero-funds-accounts case stays fail-closed (`MissingAccount`).
- Add `rehydration_routes_via_real_sql_resolver`: persists a Default wallet with
  UTXOs owned by BIP44[0] and CoinJoin[0] (colliding on index 0) plus their
  `core_address_pool` snapshots through the real writer, reopens, and drives
  `load_state` -> `apply_persisted_core_state`. Exercises the actual
  `owning_account_for_script` query (column order, ORDER BY tie-break, [u8;32]
  identity decode), asserting exact per-account balances — the coverage the
  hand-built unit test bypassed.
- Correct the `OwningAccount` doc: state the intentional `key_class` omission
  and why it is safe (funds accounts all map to the key_class=0 sentinel).
- Restate two history-narrating comments as present-state facts.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs`:
- Around line 241-248: The persisted used-state restore in wallet.rs only
reattaches addresses to per_account_addrs[0], which can leave used pool
addresses from other funding accounts marked unused after rehydration. Update
the restore logic around the used_pool_addresses handling to preserve or recover
the owning account for each row, or otherwise probe and mark the used addresses
across all funding accounts in the relevant wallet restore path. Add a
regression test covering a spent-only used address that belongs to a non-first
account to ensure it is not handed out as fresh before the next sync.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 70af3ecb-5606-42fc-b766-601a91e2fdf6

📥 Commits

Reviewing files that changed from the base of the PR and between b68c5a8 and 5283236.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (10)
  • Cargo.toml
  • packages/rs-platform-wallet-storage/src/sqlite/persister.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/core_pool.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs
  • packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs
  • packages/rs-platform-wallet-storage/tests/sqlite_core_state_reader.rs
  • packages/rs-platform-wallet/src/error.rs
  • packages/swift-sdk/Sources/SwiftDashSDK/KeyWallet/WalletManager.swift
  • packages/swift-sdk/Sources/SwiftDashSDK/PlatformWallet/PlatformWalletManager.swift
  • packages/swift-sdk/run_tests.sh
🚧 Files skipped from review as they are similar to previous changes (3)
  • packages/rs-platform-wallet-storage/src/sqlite/schema/core_pool.rs
  • packages/rs-platform-wallet-storage/src/sqlite/schema/core_state.rs
  • packages/rs-platform-wallet-storage/src/sqlite/persister.rs

Comment thread packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs Outdated

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Source: reviewers: codex/gpt-5.5 general, security-auditor, rust-quality, ffi-engineer; claude/opus general, security-auditor, rust-quality, ffi-engineer failed (quota/parse failure); verifier: codex/gpt-5.5 fallback after claude/opus verifier failed; specialists: security-auditor, rust-quality, ffi-engineer.

At head 5283236, both carried-forward prior findings remain valid. The latest delta fixes unspent-UTXO owner routing, but it still leaves spent-only used addresses ownerless and routed to the first funding account; no additional latest-delta findings were verified.

Blocking: 1 | Suggestions: 1 | Nitpicks: 0

Prior reconciliation:

  • STILL VALID and carried forward: spent used addresses are restored on the wrong account.
  • STILL VALID and carried forward: load_from_persistor still erases persister load classification.
  • FIXED: restored unspent UTXOs now use the persisted owning account side channel.
  • New findings in latest delta: none beyond the carried-forward/current spent-address gap above.
  • Resolved findings recorded by verifier: Restored UTXOs ignore the persisted owning account.
Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs`:
- [BLOCKING] packages/rs-platform-wallet-storage/src/sqlite/util/wallet.rs:241-248: Restore spent used addresses to their owning account
  The used-address restore path still appends every persisted used address to `per_account_addrs[0]`. The loader builds that list as a flat union of `core_address_pool` used scripts and all historical `core_utxos` scripts, while only currently unspent UTXOs get the `utxo_accounts` owner side channel. In a multi-account wallet, a used-then-spent address from a later funding account is therefore derived and marked only against the first account's xpub; `extend_pools_for_restored_addresses` will not mark it on the real account, so that account can hand the address out again after restart until sync re-warms it. That breaks the PR's address-reuse guard for spent addresses.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [SUGGESTION] packages/rs-platform-wallet/src/manager/load.rs:40-45: Preserve persister load error classification
  `PlatformWalletError::PersisterLoad(#[from] PersistenceError)` exists so callers can inspect `PersistenceErrorKind` and `is_transient()`, but this entry point still maps `self.persister.load()` failures into `WalletCreation(String)`. That flattens transient backend failures such as SQLite busy/full/I/O errors before manager and FFI callers can distinguish retryable persistence failures from permanent wallet-construction failures.
  Suggested fix:
    } = self.persister.load()?;

Reviewed commit: 5283236c6816044e180e599ae8b4063f065d7ba1. Prior reviewed commit: 95d28a63a12a2a62126c6aa7b8bbc74f60eae6a5.
GitHub refused normal diff-based posting for this oversized PR (PullRequest.diff too_large), so this exact-SHA review is posted as a body-only review.

…true owning account

The rehydration reuse-guard collapsed every restored used address onto the
first funds account, so a used address owned by a non-first account (e.g.
CoinJoin[0] while BIP44[0] is first) was never marked used on its own pool and
could be re-issued as a fresh receive address — an address-reuse privacy leak.

Carry owner attribution end to end:
- core_pool::load_used_addresses returns Vec<(Address, OwningAccount)>, reading
  the four owner columns the pool row already stores (PK-ordered tie-break per
  script, matching owning_account_for_script).
- core_state::load_used_addresses returns Vec<(Address, Option<OwningAccount>)>,
  resolving each core_utxos script via owning_account_for_script.
- The persister unions both sources into a HashMap<Address, Option<OwningAccount>>
  keyed by address; the pool source is authoritative on owner (a None from the
  core_utxos source never overrides it), and a resolved-but-disagreeing owner is
  kept-pool + warned rather than crashing rehydration.
- apply_persisted_core_state takes the owner map and routes each used address to
  its owning funds account via a shared route_to_funds_account helper (also used
  by the UTXO loop); orphaned owners from both loops funnel into one post-loop
  warning. A None or absent owner falls back to the first account.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>

@thepastaclaw thepastaclaw left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

Source: reviewers: codex/gpt-5.5 general and ffi-engineer completed; claude/opus general and ffi-engineer failed (extra-usage quota); verifier: codex/gpt-5.5 fallback after claude/opus verifier failed; specialists: ffi-engineer.

Carried-forward prior findings: prior-1 is resolved at 7cdaa65 because used pool addresses now carry owner attribution and route through route_to_funds_account; prior-2 remains valid because persister load errors are still flattened to WalletCreation. New latest-delta findings: the new owner attribution path trusts core_address_pool.account_type without the same schema/domain validation used by account_registrations, which can make corrupted rows fall back to account 0 instead of failing closed.

Blocking: 0 | Suggestions: 2 | Nitpicks: 0

Prompt for all review comments with AI agents
These findings are from an automated code review. Verify each finding against the current code and only fix it if needed.

In `packages/rs-platform-wallet/src/manager/load.rs`:
- [SUGGESTION] packages/rs-platform-wallet/src/manager/load.rs:40-45: Preserve persister load error classification
  `PlatformWalletError::PersisterLoad(#[from] PersistenceError)` exists specifically to preserve `PersistenceErrorKind` and `is_transient()`, but this entry point converts `self.persister.load()` failures into `WalletCreation(String)`. That flattens transient backend failures such as SQLite busy/full/I/O errors before direct manager callers, and before the FFI boundary has any chance to map the typed load failure separately from wallet-construction errors.

In `packages/rs-platform-wallet-storage/migrations/V003__unified.rs`:
- [SUGGESTION] packages/rs-platform-wallet-storage/migrations/V003__unified.rs:45: Validate pool account_type before routing owners
  The owner-routing fix now depends on `core_address_pool.account_type` to decide which funding account receives a restored used address, but the new table does not constrain that column to the `ACCOUNT_TYPE_LABELS` domain, and `core_pool::load_used_addresses` wraps the raw string into `OwningAccount` without validation. A corrupted but otherwise readable row with an unknown label will not match any real funds account, so `route_to_funds_account` falls back to account 0; for a used address that belongs to another account, that can leave the real account's pool unmarked and reintroduce the address-reuse leak this delta fixes. Add the same account-type domain check to `core_address_pool` and reject unknown labels when reading owners.

Reviewed commit: 7cdaa65228987c6c3e555719d2e90605398729e9. Prior reviewed commit: 5283236c6816044e180e599ae8b4063f065d7ba1.
GitHub refused normal diff-based posting for this oversized PR (PullRequest.diff too_large), so this exact-SHA review is posted as a body-only review.

@Claudius-Maginificent

Copy link
Copy Markdown
Collaborator Author

Review disposition — thepastaclaw review at 7cdaa65228 (0 blocking)

Both blocking findings from this review thread are now resolved:

  • UTXO account misattribution — fixed (95d28a63a1, verified sound by independent adversarial + structural review).
  • Used-address account misattribution (address-reuse leak on non-first accounts) — fixed (7cdaa65228, verified sound by independent adversarial review, incl. an independently-reproduced RED→GREEN proof).

New suggestion — core_address_pool.account_type lacks domain validation, corrupted rows fall back to account 0: already substantially mitigated. An unrecognized account_type string cannot match any real account's computed label in route_to_funds_account, so it already falls into the existing orphaned-owner path — tracing::warn! + best-effort fallback to the first account, not a silent misroute. Adding an explicit domain check (reject unknown labels at read time, matching account_registrations's validation) is reasonable defense-in-depth but doesn't close a currently-open safety gap; the fail-soft-with-warning property already holds. Deferring as a follow-up, not blocking this PR.

prior-2 (typed PersisterLoad error not wired into load_from_persistor) — unchanged disposition from the earlier comment: deferred, would require a further change to the platform-wallet crate, which this PR intentionally keeps frozen.

🤖 Co-authored by Claudius the Magnificent AI Agent

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants