vector_core/community/migration.rs
1//! v1 → v2 community migration — the atomic dissolution-carrier wire codec (task #10).
2//!
3//! The migration rides INSIDE the vsk=10 GroupDissolved tombstone's content: a signpost
4//! (where the v2 twin lives) plus `m`, the complete v2 JoinMaterial sealed under the v1
5//! server root at publish time. One owner-signed event seals v1, signposts v2, and IS
6//! every member's invite. Shipped v0.4.0 never parses tombstone content (validity is
7//! vsk + coordinate + signer), so old clients fold this as a plain dissolution — composer
8//! lockdown, history intact — and the relays retain the event for any later re-probe.
9//!
10//! Scope discipline: the signpost is readable by anyone who can open the tombstone's
11//! id-derived envelope (it grants nothing); `m` opens only under a held server-root epoch
12//! key — exactly v1's confidentiality boundary, so a read-cut member cannot open it. Keys
13//! are NEVER placed under the id-derived envelope: the community id rides in every invite
14//! bundle ever shared and is not a secret.
15
16use super::cipher;
17use super::roster::DissolvedEdition;
18use super::transport::Transport;
19use super::{Community, CommunityId};
20use crate::state::SessionGuard;
21use serde::{Deserialize, Serialize};
22use std::collections::HashSet;
23use std::sync::{LazyLock, Mutex as StdMutex};
24
25/// v1 cids with a `drive_migration` in flight — mutual exclusion so the boot maintenance
26/// and the live carrier-fold never drive the SAME community concurrently. Without it two
27/// drives can interleave a channel-less `save_community_v2` (which prunes) after the other's
28/// re-parent commit, deleting a just-adopted row. Cleared on account swap.
29static DRIVE_INFLIGHT: LazyLock<StdMutex<HashSet<String>>> =
30 LazyLock::new(|| StdMutex::new(HashSet::new()));
31
32/// Clear the drive-in-flight set (account swap — the new account's drives must not be
33/// blocked by a stale claim from the old one).
34pub fn clear_drive_inflight() {
35 DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).clear();
36}
37
38/// RAII claim on [`DRIVE_INFLIGHT`]. `take` returns `None` when the cid is already claimed
39/// (drive vs drive, wizard vs drive, wizard vs wizard). Drop is generation-aware: after an
40/// account swap clears the set, a stale claim's unwind must not release the claim the NEW
41/// account just inserted for the same cid.
42struct DriveClaim(String, SessionGuard);
43impl DriveClaim {
44 fn take(cid: &str) -> Option<Self> {
45 let mut inflight = DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner());
46 if !inflight.insert(cid.to_string()) {
47 return None;
48 }
49 Some(DriveClaim(cid.to_string(), SessionGuard::capture()))
50 }
51}
52impl Drop for DriveClaim {
53 fn drop(&mut self) {
54 if self.1.is_valid() {
55 DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).remove(&self.0);
56 }
57 }
58}
59
60/// Test hooks: stand in for a concurrent drive holding the claim (the claim is private and
61/// RAII-scoped, so a test can't otherwise model "another drive is mid-flight").
62#[cfg(test)]
63pub fn test_hold_drive_claim(cid: &str) {
64 DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).insert(cid.to_string());
65}
66#[cfg(test)]
67pub fn test_release_drive_claim(cid: &str) {
68 DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).remove(cid);
69}
70
71/// When the owner-side migration wizard unlocks: 2026-08-04 00:00:00 UTC. Gates ONLY the
72/// wizard (UI row + command entry); the member-side machinery is live from release day, so
73/// a migration performed by a lock-bypassing build still carries every member along. A
74/// coordination gate, not a security gate.
75pub const MIGRATION_UNLOCK_AT: u64 = 1_785_801_600;
76
77/// Bound on the whole tombstone content string before any parse. The outer NIP-44 seal
78/// caps its plaintext at 65535 bytes, so anything larger is garbage by construction.
79pub const MAX_PAYLOAD_CONTENT: usize = 100_000;
80/// Bound on the base64 `m` string inside the payload (checked before decode/open).
81pub const MAX_M_B64: usize = 90_000;
82/// Display-name cap in the signpost — truncated, not rejected (fail-safe parse).
83pub const MAX_SIGNPOST_NAME: usize = 120;
84/// Conservative relay max-event-size floor (strfry default is 64 KB): the final sealed
85/// OUTER event's JSON must stay under this or common relays will reject the publish.
86pub const MAX_WIRE_EVENT: usize = 60_000;
87
88/// The plaintext signpost: where the v2 twin lives. Grants nothing by itself — every field
89/// is verified against the member's held v1 owner anchor (triple-bind) before any use.
90#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
91pub struct MigrationSignpost {
92 /// The v2 self-certifying community id. Must recompute from `owner_xonly` + `owner_salt`.
93 pub v2_community_id: String,
94 /// Must equal the member's held v1 owner anchor (owner continuity — the consent basis).
95 pub owner_xonly: String,
96 /// The v2 owner salt (public input to the self-cert id).
97 pub owner_salt: String,
98 /// The v2 relay set (capped like every other attacker-influencable relay list).
99 /// Absent is empty, not a parse failure — a rejected signpost strands the migration.
100 #[serde(default)]
101 pub relays: Vec<String>,
102 /// Display name at migration time (informational only).
103 pub name: String,
104 /// Which stitched channel the one-row UI surfaces.
105 pub primary_channel: String,
106 /// The v1 base epoch at publish — bounds a stale member's catch-up walk before they
107 /// conclude `m` is unopenable (a member holding an epoch >= this that still cannot
108 /// open `m` is genuinely outside the member set).
109 #[serde(default)]
110 pub root_epoch: u64,
111}
112
113/// The parsed migration payload: signpost + optionally the sealed key material.
114#[derive(Debug, Clone, PartialEq, Eq)]
115pub struct MigrationPayload {
116 pub signpost: MigrationSignpost,
117 /// base64 NIP-44 seal of the v2 JoinMaterial under the v1 server_root at publish.
118 /// `None` = signpost-only (still a valid pointer; the member falls back to the
119 /// straggler CTA if no key material ever opens).
120 pub m: Option<String>,
121}
122
123/// Wire shape of the tombstone content. `migrated_to` keys the signpost so a plain `{}`
124/// (the pre-migration dissolution) deserializes to "no payload" rather than erroring.
125#[derive(Serialize, Deserialize)]
126struct WirePayload {
127 migrated_to: MigrationSignpost,
128 #[serde(default, skip_serializing_if = "Option::is_none")]
129 m: Option<String>,
130}
131
132fn is_hex64(s: &str) -> bool {
133 s.len() == 64 && s.bytes().all(|b| b.is_ascii_hexdigit())
134}
135
136/// Parse a tombstone's content into a migration payload. Fail-SAFE by contract: any bound
137/// violation, shape error, or bad field returns `None` — the event remains a plain
138/// dissolution and the SEAL is never rejected. Ids are lowercase-normalized; relays are
139/// capped by truncation (hostile payloads degrade, never amplify); the name is truncated.
140pub fn parse_migration_payload(content: &str) -> Option<MigrationPayload> {
141 if content.len() > MAX_PAYLOAD_CONTENT {
142 return None;
143 }
144 let wire: WirePayload = serde_json::from_str(content).ok()?;
145 let mut sp = wire.migrated_to;
146 if !is_hex64(&sp.v2_community_id)
147 || !is_hex64(&sp.owner_xonly)
148 || !is_hex64(&sp.owner_salt)
149 || !is_hex64(&sp.primary_channel)
150 {
151 return None;
152 }
153 sp.v2_community_id = sp.v2_community_id.to_lowercase();
154 sp.owner_xonly = sp.owner_xonly.to_lowercase();
155 sp.owner_salt = sp.owner_salt.to_lowercase();
156 sp.primary_channel = sp.primary_channel.to_lowercase();
157 sp.relays = super::cap_relays(sp.relays);
158 if sp.name.chars().count() > MAX_SIGNPOST_NAME {
159 sp.name = sp.name.chars().take(MAX_SIGNPOST_NAME).collect();
160 }
161 let m = match wire.m {
162 Some(m) if m.len() > MAX_M_B64 => return None,
163 other => other,
164 };
165 Some(MigrationPayload { signpost: sp, m })
166}
167
168/// Serialize a payload for the tombstone content (the wizard's side of [`parse_migration_payload`]).
169pub fn build_migration_content(signpost: &MigrationSignpost, m: Option<String>) -> Result<String, String> {
170 serde_json::to_string(&WirePayload { migrated_to: signpost.clone(), m })
171 .map_err(|e| format!("serialize migration payload: {e}"))
172}
173
174/// Seal the v2 JoinMaterial under the v1 server root at publish time. Errors past NIP-44's
175/// 65535-byte plaintext cap — the wizard surfaces that as a clean abort, never a truncation.
176pub fn seal_m(server_root: &[u8; 32], join_material_json: &[u8]) -> Result<String, String> {
177 cipher::seal(server_root, join_material_json)
178}
179
180/// Try to open `m` under EVERY held server-root epoch key, newest first — absorbs both a
181/// stale local head and a concurrent v1 refound that advanced past the publish root.
182/// `None` = no held root opens it (caller decides: catch-up walk, then the straggler CTA).
183pub fn open_m(held_roots: &[(u64, [u8; 32])], m_b64: &str) -> Option<Vec<u8>> {
184 if m_b64.len() > MAX_M_B64 {
185 return None;
186 }
187 let mut roots: Vec<&(u64, [u8; 32])> = held_roots.iter().collect();
188 roots.sort_by(|a, b| b.0.cmp(&a.0));
189 for (_, key) in roots {
190 if let Ok(plain) = cipher::open(key, m_b64) {
191 return Some(plain);
192 }
193 }
194 None
195}
196
197/// Total, payload-aware pointer selection over the owner's tombstones: the pointer comes
198/// from the newest PAYLOAD-CARRYING owner-signed tombstone (tiebreak lowest inner id); a
199/// payload-less `{}` tombstone SEALS the community but never shadows a payload-bearing one
200/// — otherwise a plain dissolution from a second device would silently shed the keys for
201/// every future straggler. (Corollary, deliberate: a NEWER payload-bearing tombstone
202/// WITHOUT `m` is the owner's honest-client-scoped retraction lever for the on-ramp.)
203pub fn select_pointer(editions: &[DissolvedEdition], owner_hex: &str) -> Option<(MigrationPayload, String)> {
204 let mut best: Option<(&DissolvedEdition, MigrationPayload)> = None;
205 for e in editions {
206 if e.author.to_hex() != owner_hex {
207 continue;
208 }
209 let Some(payload) = parse_migration_payload(&e.content) else { continue };
210 best = match best {
211 Some((cur, cur_p))
212 if (cur.created_at, std::cmp::Reverse(cur.inner_id))
213 >= (e.created_at, std::cmp::Reverse(e.inner_id)) =>
214 {
215 Some((cur, cur_p))
216 }
217 _ => Some((e, payload)),
218 };
219 }
220 // The raw winning content rides along so the caller can persist the exact wire form
221 // (re-parseable later without a second serializer for the payload).
222 best.map(|(e, p)| (p, e.content.clone()))
223}
224
225/// Wire-size gate for the final sealed OUTER event — computed on the actual bytes, never
226/// estimated. Run by the wizard before publishing; failing is a clean abort.
227pub fn check_outer_size(outer: &nostr_sdk::prelude::Event) -> Result<(), String> {
228 let len = outer.as_json().len();
229 if len > MAX_WIRE_EVENT {
230 return Err(format!(
231 "migration event is {len} bytes, over the {MAX_WIRE_EVENT}-byte relay ceiling; \
232 this community is too large for a single migration event"
233 ));
234 }
235 Ok(())
236}
237
238// ── Member flow: fold a migration pointer → open `m` → flip to v2 ─────────────────────────
239
240/// The dissolved-gate exemption: a base rekey may advance a SEALED community's epoch
241/// only while a migration pointer is held, the flip hasn't happened, and the target epoch
242/// does not exceed the pointer's publish epoch. Lets a stale member walk their held root
243/// forward to the one `m` was sealed under, without ever re-opening the seal for anything
244/// else. Any read error fails closed (no exemption).
245pub fn catchup_exempt(community_id: &str, target_epoch: u64) -> bool {
246 if crate::db::community::get_migrated_to(community_id).ok().flatten().is_some() {
247 return false; // already flipped — the fence stands
248 }
249 let Ok(Some(raw)) = crate::db::community::get_migration_pointer(community_id) else {
250 return false; // no pointer → a plain dissolution, never advances
251 };
252 let Some(payload) = parse_migration_payload(&raw) else { return false };
253 target_epoch <= payload.signpost.root_epoch
254}
255
256/// Held server-root epoch keys for a community, for the multi-root `m` open.
257fn held_roots(community_id: &str) -> Vec<(u64, [u8; 32])> {
258 crate::db::community::held_epoch_keys(community_id, crate::community::SERVER_ROOT_SCOPE_HEX)
259 .unwrap_or_default()
260 .into_iter()
261 .map(|(e, k)| (e.0, k))
262 .collect()
263}
264
265/// Drive a held v1 community's migration to completion when a pointer is present and the
266/// flip hasn't happened: open `m` (catching a stale root up first, no-erase), join the v2
267/// twin through the ban-gated accept path, then run the flip transaction. Idempotent and
268/// resumable — safe to call from the boot sweep, the live fold, and the fallback door.
269/// Returns `Ok(Some(v2_id))` on a completed flip, `Ok(None)` when nothing was actionable
270/// (no pointer, already flipped, or `m` unopenable — the straggler CTA case).
271pub async fn drive_migration<T: Transport + ?Sized>(
272 transport: &T,
273 community: &Community,
274) -> Result<Option<String>, String> {
275 let session = SessionGuard::capture();
276 let cid = community.id.to_hex();
277
278 // Claim the in-flight slot or bail — a concurrent drive (boot maintenance vs the live
279 // carrier fold, or the owner's wizard vs their own fold) is already handling this cid.
280 // Without this, two channel-less v2 saves can interleave a prune after the other's
281 // re-parent. The claim is released on ANY exit (RAII).
282 let Some(_claim) = DriveClaim::take(&cid) else {
283 return Ok(None);
284 };
285
286 // Already flipped? Nothing to do (idempotent double-trigger).
287 if crate::db::community::get_migrated_to(&cid).ok().flatten().is_some() {
288 return Ok(None);
289 }
290 let Some(raw) = crate::db::community::get_migration_pointer(&cid)? else {
291 return Ok(None); // no pointer → not a migration
292 };
293 let Some(payload) = parse_migration_payload(&raw) else {
294 // A stored-but-unparseable pointer is inert; mark checked so the sweep converges.
295 let _ = crate::db::community::set_migration_checked(&cid);
296 return Ok(None);
297 };
298
299 // Triple-bind check 2 — OWNER CONTINUITY: the v2 owner the signpost claims MUST equal this
300 // v1 community's proven owner (the pointer is already owner-signed at the bound coordinate,
301 // check 1). A migration that changes the owner identity is NOT eligible for consent-free
302 // join — identity continuity is the whole basis for skipping consent. Fail-closed: no
303 // proven owner ⇒ no continuity ⇒ no auto-join. (check 3 — the v2 self-cert recompute — runs
304 // inside accept_bundle.)
305 let Some(owner) = super::service::proven_owner_hex(community) else { return Ok(None) };
306 if payload.signpost.owner_xonly != owner {
307 return Ok(None); // owner discontinuity → not a consent-free migration
308 }
309 // Bind the v2 self-cert id to the signpost's own owner/salt before the network join.
310 if !super::v2::derive::verify_community_id(
311 &CommunityId(crate::simd::hex::hex_to_bytes_32(&payload.signpost.v2_community_id)),
312 &crate::simd::hex::hex_to_bytes_32(&payload.signpost.owner_xonly),
313 &crate::simd::hex::hex_to_bytes_32(&payload.signpost.owner_salt),
314 ) {
315 return Ok(None); // the v2 id is not a commitment to this owner+salt
316 }
317
318 let Some(m_b64) = payload.m.as_deref() else {
319 return Ok(None); // signpost-only pointer → straggler CTA, no keys to open
320 };
321
322 // Open `m` under any held root; if none opens and we're stale vs the publish epoch,
323 // walk the base root forward (no-erase: the `removed` signal is ignored — the community
324 // is terminal either way) and retry. The exemption above lets this walk run despite the
325 // seal.
326 let mut plain = open_m(&held_roots(&cid), m_b64);
327 if plain.is_none() && community.server_root_epoch.0 < payload.signpost.root_epoch {
328 let _ = super::service::catch_up_server_root(transport, community).await;
329 if !session.is_valid() {
330 return Err("account changed during migration catch-up".to_string());
331 }
332 plain = open_m(&held_roots(&cid), m_b64);
333 }
334 let Some(plain) = plain else {
335 return Ok(None); // unopenable (read-cut or lost-DB) → straggler CTA
336 };
337
338 // Verify the JoinMaterial's owner matches the pointer's owner continuity claim before
339 // trusting it (the self-cert id recompute is the fail-closed gate inside accept_bundle).
340 let jm: super::v2::list::JoinMaterial =
341 serde_json::from_slice(&plain).map_err(|e| format!("migration join material parse: {e}"))?;
342 if jm.community_id != payload.signpost.v2_community_id || jm.owner != payload.signpost.owner_xonly {
343 return Err("migration payload keys disagree with the signpost".to_string());
344 }
345
346 // held-v2 dedup: if this account ALREADY holds the v2 twin, do NOT network-join
347 // it again — flip only. Covers the idempotent double-trigger, a multi-device peer that
348 // synced the twin via the 13302 list first, and the OWNER's own client (the wizard
349 // created the twin, so the owner holds it — accept_bundle must never try to "join" it).
350 let v2_id = CommunityId(crate::simd::hex::hex_to_bytes_32(&payload.signpost.v2_community_id));
351 let v2_hex = payload.signpost.v2_community_id.clone();
352 if crate::db::community::load_community_v2(&v2_id)?.is_none() {
353 // Join the v2 twin (ban-gated, owner-root-verified). A refusal (banned / forged
354 // root) leaves the community sealed — never a half-flip.
355 let v2 = super::v2::service::accept_migration_material(transport, &jm).await?;
356 if crate::simd::hex::bytes_to_hex_32(&v2.identity.community_id.0) != v2_hex {
357 return Err("joined community id disagrees with the migration pointer".to_string());
358 }
359 if !session.is_valid() {
360 return Err("account changed during migration join".to_string());
361 }
362 }
363
364 // The flip: re-parent the stitched channel rows + stamp the fence (one txn). The v2
365 // community ROW already exists (accept saved it, or this account already held it); NO
366 // save_community_v2 here — the v2 view is channel-less (its channel ids were v1-owned →
367 // skipped by the hijack guard), so a re-save would PRUNE the just-re-parented rows.
368 // Public channels fold from the control plane; the re-parented rows carry the history.
369 // Under the twin's follow lock: the follow worker's whole-row save deletes channel rows
370 // absent from a pre-flip-loaded (channel-less) struct, so the flip must not straddle it.
371 // Guard IMMEDIATELY before the most destructive write in the feature — the held-v2
372 // path above skips the join branch (and its check), so this is the one that counts.
373 let flock = super::v2::realtime::follow_lock(&v2_id);
374 let _fguard = flock.lock().await;
375 if !session.is_valid() {
376 return Err("account changed during migration flip".to_string());
377 }
378 crate::db::community::reparent_channels_and_fence(&cid, &v2_hex)?;
379 Ok(Some(v2_hex))
380}
381
382// ── Owner flow: the migration wizard ─────────────────────────────────────────────────────
383
384/// Ledger phases (persisted in `community_migrations.phase`). Each is idempotent + resumable.
385/// TWIN_MINTED lands IMMEDIATELY after the twin's genesis returns, BEFORE the sibling-channel
386/// and banlist tail — so a crash anywhere in that multi-await tail resumes onto the SAME twin
387/// instead of re-minting a fresh identity (which would orphan the first genesis on the relays).
388/// Residual window: a crash INSIDE create_migration_twin (after its local save, before return
389/// — spanning its genesis + guestbook publishes, so seconds over a slow transport) still
390/// re-mints on the next run and leaves a phantom v2 row — bounded: no carrier ever references
391/// it, so no member is ever stranded; it is a dead genesis plus one stale local row.
392pub const PHASE_TWIN_MINTED: i64 = 1;
393pub const PHASE_TWIN_BUILT: i64 = 2;
394/// Birth refound 0→1 + Guestbook snapshot of the full v1 roster landed. AFTER this the twin
395/// is at epoch 1, so `m` (sealed in the next phase) carries the epoch-1 root — the whole
396/// reason for the refound (genesis has no snapshot authority).
397pub const PHASE_TWIN_REFOUNDED: i64 = 3;
398pub const PHASE_CARRIER_PUBLISHED: i64 = 4;
399pub const PHASE_FLIPPED: i64 = 5;
400
401/// The full v1 memberlist to seed into the twin's epoch-1 Guestbook. `community_member_activity`
402/// IS v1's single source of truth for "who is a member": it already unions observed authors +
403/// the owner + every roster grant-holder, subtracts the banlist, and applies the leave filter
404/// — so the seed is exactly that set (fetched UNCAPPED, so a large community seeds every
405/// member instead of the top 500-by-recency). Using it verbatim means the v2 seed can NEVER
406/// diverge from what v1 itself shows as members.
407///
408/// note: a v1 admin who LEFT but was never stripped of their grant is re-asserted as a
409/// member by that function (v1's rule: a leave must not lock a sitting admin out) — so they
410/// ARE seeded. That is v1-faithful (v1 shows them as a member), a deliberate divergence from
411/// the design's "− left" line for the admin case; a NON-admin who left is dropped by the leave
412/// filter. `owner_hex` is unused now (the DB seeds the owner) but kept for call-site clarity.
413fn v1_snapshot_members(v1_cid: &str, _owner_hex: &str) -> Vec<nostr_sdk::prelude::PublicKey> {
414 crate::db::community::community_member_activity_capped(v1_cid, false)
415 .unwrap_or_default()
416 .iter()
417 .filter_map(|(npub, _)| nostr_sdk::prelude::PublicKey::parse(npub).ok())
418 .collect()
419}
420
421/// Whether the owner wizard is unlocked (the timelock is a coordination gate, re-checked at
422/// the command entry, not just in the UI). `now_secs` is passed in (the core has no clock).
423pub fn wizard_unlocked(now_secs: u64) -> bool {
424 now_secs >= MIGRATION_UNLOCK_AT
425}
426
427/// The post-timelock door for FRESH v1 joins, probe-first. Pre-unlock, or a community we
428/// already hold (re-accept / cross-device rehydrate), passes locally. Post-unlock a fresh
429/// join passes ONLY when the rotation-stable dissolved coordinate carries the proven
430/// owner's migration pointer — that join is the permanent on-ramp (save → carrier fold
431/// seals → drive lands the joiner in the v2 twin). A live v1 community, an unprovable
432/// owner, or a relay miss all refuse: fail-closed, a retry beats onboarding a fresh user
433/// onto the legacy protocol. Every v1 join door (Tauri direct + public accepts, facade
434/// direct + public accepts) must call this before persisting anything.
435pub async fn gate_fresh_v1_join<T: Transport + ?Sized>(
436 transport: &T,
437 community: &Community,
438 now_secs: u64,
439) -> Result<(), String> {
440 if now_secs < MIGRATION_UNLOCK_AT {
441 return Ok(());
442 }
443 if matches!(crate::db::community::load_community(&community.id), Ok(Some(_))) {
444 return Ok(());
445 }
446 if let Some(owner) = super::service::proven_owner_hex(community) {
447 let records = super::service::dissolved_tombstone_records(transport, community).await;
448 if select_pointer(&records, &owner).is_some() {
449 return Ok(());
450 }
451 }
452 Err("This community still uses the legacy protocol and can no longer be joined. Ask the owner to upgrade it to Concord v2 and share a fresh invite.".to_string())
453}
454
455/// The UI state ladder for a v1 community's migration row, in priority order. Pure so the
456/// ordering is testable: `in_progress` MUST outrank `dissolved`, because the owner's own
457/// carrier self-fold seals v1 while the flip is still pending — exactly the window the
458/// Resume affordance exists for. A ledger row only ever exists on the wizard's own account.
459pub fn migration_state(
460 migrated: bool,
461 ledger_phase: i64,
462 dissolved: bool,
463 is_owner: bool,
464 unlocked: bool,
465) -> &'static str {
466 if migrated {
467 "migrated"
468 } else if ledger_phase > 0 && is_owner {
469 "in_progress"
470 } else if dissolved {
471 "dissolved"
472 } else if !is_owner {
473 "not_owner"
474 } else if unlocked {
475 "ready"
476 } else {
477 "locked"
478 }
479}
480
481/// Whether the wizard may run for this community (the row's action is armed). A sealed
482/// community is eligible ONLY as a resume of its own in-flight migration.
483pub fn migration_eligible(migrated: bool, ledger_phase: i64, dissolved: bool, is_owner: bool) -> bool {
484 is_owner && !migrated && (!dissolved || ledger_phase > 0)
485}
486
487/// Owner-side migration wizard: build the v2 twin (reusing v1 channel ids + cloning the
488/// banlist), seal the twin's JoinMaterial into `m`, publish the carrier dissolution on v1,
489/// then flip the owner's own client to v2. Resumable via the migration-77 ledger — a re-run
490/// after a crash picks up at the recorded phase. Every phase re-checks the `SessionGuard`.
491/// `now_secs` gates the timelock. Returns the v2 community id on completion.
492/// Emit a wizard progress step to the UI (no-op on headless clients via the unregistered
493/// emitter). `pct` is OVERALL progress 0-100 across the whole wizard; `label` is layman-facing.
494/// The frontend renders a determinate ring + this label in an unclosable modal (rekey contract).
495fn emit_migration_progress(label: &str, pct: u8) {
496 crate::emit_event("community_migration_progress", &serde_json::json!({ "label": label, "pct": pct }));
497}
498
499pub async fn migrate_community_to_v2<T: Transport + ?Sized>(
500 transport: &T,
501 v1: &Community,
502 now_secs: u64,
503) -> Result<String, String> {
504 let session = SessionGuard::capture();
505 let v1_cid = v1.id.to_hex();
506 // One wizard/drive at a time per cid: a double-fired command would race the twin mint
507 // pre-ledger (the double-mint orphan window) and its flip against a concurrent drive's.
508 let Some(_claim) = DriveClaim::take(&v1_cid) else {
509 return Err("this community's upgrade is already in progress".to_string());
510 };
511 emit_migration_progress("Preparing the upgrade...", 5);
512
513 // Phase 0 — preflight (owner, unlocked, not already dissolved/migrated).
514 if !wizard_unlocked(now_secs) {
515 return Err("community migration is not unlocked yet".to_string());
516 }
517 if !super::service::is_proven_owner(v1) {
518 return Err("only the community owner can migrate the community".to_string());
519 }
520 // Already migrated? Check FIRST — a migrated community is ALSO dissolved (the flip seals
521 // it), so this must precede the dissolved gate below or a legitimate crash-heal reads as
522 // a plain dissolution.
523 if let Some(v2) = crate::db::community::get_migrated_to(&v1_cid).ok().flatten() {
524 // Crash-heal: the flip LANDED but the FLIPPED ledger write didn't (a crash between
525 // the two). This re-run is a COMPLETED migration — heal the ledger and report
526 // success instead of erroring on our own success.
527 if let Some((ledger_v2, phase, _)) = crate::db::community::get_migration_ledger(&v1_cid).ok().flatten() {
528 if ledger_v2 == v2 && phase < PHASE_FLIPPED {
529 let _ = crate::db::community::set_migration_ledger(&v1_cid, &v2, PHASE_FLIPPED, "");
530 return Ok(v2);
531 }
532 }
533 return Err("this community has already been migrated".to_string());
534 }
535 // Resume ledger read up-front — a ledger row means THIS owner already began THIS
536 // migration, which the dissolved gate below keys off.
537 let ledger = crate::db::community::get_migration_ledger(&v1_cid).ok().flatten();
538 let resume_phase = ledger.as_ref().map(|(_, p, _)| *p).unwrap_or(0);
539
540 // Not already dissolved: a carrier published for a sealed-but-UNMIGRATED
541 // community is undeliverable — members' folds short-circuit on the seal and never see
542 // it, so the owner would flip alone. A plain dissolution and a migration are mutually
543 // exclusive endings. EXEMPT a resume (`resume_phase > 0`) — a `dissolved=1` flag on
544 // a community whose wizard already started is this owner's OWN carrier seal (e.g. a
545 // self-fold sealed it after CARRIER_PUBLISHED, then the flip write flaked), not a foreign
546 // plain dissolution; without the exemption that transient failure reads as false-terminal.
547 if resume_phase == 0 && crate::db::community::get_community_dissolved(&v1_cid).unwrap_or(false) {
548 return Err("this community has been dissolved; it cannot be migrated".to_string());
549 }
550 let Some(owner_hex) = super::service::proven_owner_hex(v1) else {
551 return Err("cannot resolve the community owner".to_string());
552 };
553
554 // Phase 1a — mint (or reload) the v2 twin: primary channel reuses the v1 primary id.
555 emit_migration_progress("Creating the new community...", 15);
556 let twin = if resume_phase >= PHASE_TWIN_MINTED {
557 let (v2_hex, _, _) = ledger.as_ref().unwrap();
558 crate::db::community::load_community_v2(&CommunityId(crate::simd::hex::hex_to_bytes_32(v2_hex)))?
559 .ok_or("migration twin missing on resume")?
560 } else {
561 let primary = v1.channels.first().ok_or("v1 community has no channels")?;
562 let twin = super::v2::service::create_migration_twin(
563 transport,
564 &v1.name,
565 v1.relays.clone(),
566 v1.description.clone(),
567 (primary.id, primary.name.clone()),
568 )
569 .await?;
570 // Ledger the minted identity IMMEDIATELY — before the sibling/banlist tail — so no
571 // crash in that tail can re-mint a second twin (the double-mint orphan window).
572 let v2_hex = crate::simd::hex::bytes_to_hex_32(&twin.identity.community_id.0);
573 if !session.is_valid() {
574 return Err("account changed during twin mint".to_string());
575 }
576 crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_MINTED, "")?;
577 twin
578 };
579 let v2_hex = crate::simd::hex::bytes_to_hex_32(&twin.identity.community_id.0);
580
581 // Phase 1b — sibling channels + banlist clone. Idempotent, so a resume at TWIN_MINTED
582 // re-runs the whole tail: a re-created channel publishes a vsk-2 chain ADVANCE with the
583 // same content (readers converge either way) and the local save skips v1-owned rows.
584 if resume_phase < PHASE_TWIN_BUILT {
585 emit_migration_progress("Copying channels, roles and bans...", 35);
586 // Additional v1 channels reuse their ids on the twin (public — v1 has no private
587 // channel model in the shipped protocol, so all stitch as public).
588 for ch in v1.channels.iter().skip(1) {
589 super::v2::service::create_public_channel_with_id(transport, &twin, &ch.name, ch.id).await?;
590 }
591 // Clone the v1 banlist so the v2 join-time ban gate catches v1-banned members.
592 let banlist = crate::db::community::get_community_banlist(&v1_cid).unwrap_or_default();
593 super::v2::service::clone_banlist_to_twin(transport, &twin, &banlist).await?;
594 if !session.is_valid() {
595 return Err("account changed during banlist clone".to_string());
596 }
597 // Clone governance: every v1 full admin is re-granted @admin on the twin (owner is
598 // supreme by identity; banned members skipped). Banlist BEFORE governance so a
599 // banned admin never regains authority on v2.
600 let v1_roles = crate::db::community::get_community_roles(&v1_cid).unwrap_or_default();
601 super::v2::service::clone_governance_to_twin(transport, &twin, &v1_roles, &banlist).await?;
602 // The twin persists via save_community_v2 (community row + control plane); its public
603 // channel rows stay v1-owned until the flip re-parents them (the hijack guard).
604 // The ledger needs only the v2 id — a resume reloads the rest from DB + control plane.
605 if !session.is_valid() {
606 return Err("account changed during twin build".to_string());
607 }
608 crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_BUILT, "")?;
609 }
610
611 // Phase 1c — BIRTH REFOUND 0→1 + seed the full v1 roster. Genesis has no snapshot
612 // authority, so the twin must roll to epoch 1 (owner-only rekey) carrying an owner-signed
613 // Guestbook snapshot of the v1 memberlist. After this the twin is at epoch 1 and `m` (next
614 // phase) carries the epoch-1 root. Members join at epoch 1; not-yet-landed seeds show as
615 // members (holding no keys) and RECEIVE every future rotation's blob, so a late migrator
616 // never misses an epoch. Idempotent: mint_or_reuse re-delivers the same epoch-1 root, the
617 // compaction re-wraps the same heads, the snapshot re-publishes (fresh snap_id each run;
618 // convergence is coalesce commutativity, safe because it precedes the carrier).
619 if resume_phase < PHASE_TWIN_REFOUNDED {
620 emit_migration_progress("Securing member access...", 55);
621 let members = v1_snapshot_members(&v1_cid, &owner_hex);
622 super::v2::service::refound_at_birth(transport, &twin, &members).await?;
623 if !session.is_valid() {
624 return Err("account changed during birth refound".to_string());
625 }
626 crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_REFOUNDED, "")?;
627 }
628 // Reload the twin at its CURRENT epoch (1 after the refound) so `m` seals the epoch-1
629 // root, not the throwaway genesis root. On a resume ≥ TWIN_REFOUNDED the persisted twin
630 // is already at epoch 1; this reload makes both paths converge.
631 let twin = crate::db::community::load_community_v2(&twin.identity.community_id)?
632 .ok_or("migration twin missing after birth refound")?;
633
634 // Phase 2 — seal `m` + publish the carrier dissolution on v1 (idempotent: a re-run
635 // re-seals fresh key material under the same root and re-publishes; members dedup).
636 if resume_phase < PHASE_CARRIER_PUBLISHED {
637 emit_migration_progress("Publishing the upgrade for all members...", 75);
638 let jm = super::v2::service::twin_join_material(&twin);
639 let m = seal_m(
640 v1.server_root_key.as_bytes(),
641 &serde_json::to_vec(&jm).map_err(|e| e.to_string())?,
642 )?;
643 let signpost = MigrationSignpost {
644 v2_community_id: v2_hex.clone(),
645 owner_xonly: owner_hex.clone(),
646 owner_salt: crate::simd::hex::bytes_to_hex_32(&twin.identity.owner_salt),
647 relays: twin.relays.clone(),
648 name: v1.name.clone(),
649 primary_channel: v1.channels.first().map(|c| c.id.to_hex()).unwrap_or_default(),
650 root_epoch: v1.server_root_epoch.0,
651 };
652 let content = build_migration_content(&signpost, Some(m))?;
653 super::service::publish_migration_carrier(transport, v1, &content).await?;
654 if !session.is_valid() {
655 return Err("account changed during carrier publish".to_string());
656 }
657 crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_CARRIER_PUBLISHED, "")?;
658 }
659
660 // Phase 3 — the owner's own local flip: re-parent channel rows + stamp the fence. The
661 // v2 community ROW already exists (create_migration_twin saved it); NO save_community_v2
662 // here — with a channel-less reloaded twin it would PRUNE the just-re-parented rows.
663 // Under the twin's follow lock: a concurrent follow-worker save from a pre-flip
664 // (channel-less) load would prune the rows this txn re-parents.
665 // Straddle the whole wizard's network I/O with the entry guard before the DB write, so
666 // a mid-wizard account swap can't land the flip + ledger row in the wrong account's DB.
667 // `twin` is intentionally not re-saved here (see the fence contract below).
668 emit_migration_progress("Switching you over...", 92);
669 {
670 // Scoped to the flip transaction alone: the follow lock must never be held across
671 // network I/O (the list republish below awaits).
672 let flock = super::v2::realtime::follow_lock(&twin.identity.community_id);
673 let _fguard = flock.lock().await;
674 if !session.is_valid() {
675 return Err("account changed during migration".to_string());
676 }
677 crate::db::community::reparent_channels_and_fence(&v1_cid, &v2_hex)?;
678 crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_FLIPPED, "")?;
679 }
680
681 // Record the twin in the cross-device community list, the same step `create_community`
682 // takes for a normal v2 community. Sibling devices usually discover the twin by folding
683 // the carrier themselves, but one that no longer holds the v1 community has no carrier to
684 // fold and the list is its only route. Runs AFTER the flip so the list never advertises a
685 // half-built twin (pre-refound it is epoch 0 with no snapshot). Best-effort.
686 // Durable like every other membership record: a twin whose list entry never lands is
687 // the same stranded-behind-a-tombstone hazard as a failed join.
688 match super::v2::service::republish_community_list(transport, Some(&twin.identity.community_id)).await {
689 Ok(true) => {}
690 _ => super::v2::service::republish_community_list_durable(Some(twin.identity.community_id)),
691 }
692 // Stamp the owner's OWN chats as v2 + notify the UI — the wizard doesn't fold its own
693 // carrier, so without this the owner's client would show the stale v1 row until a
694 // later fold/boot. Same finalize the member path uses (idempotent if a self-fold beat us).
695 spawn_finalize_migration(v1_cid, v2_hex.clone());
696 Ok(v2_hex)
697}
698
699/// Post-flip finalize: stamp the stitched chats as the v2 community (name/metadata,
700/// `proto_version` → 2 monotonic, dissolved=false — the ROOM is alive on v2 even though the
701/// v1 row is sealed) and tell the UI. Spawned (SessionGuard captured BEFORE the spawn, per
702/// the multi-account contract) so no caller's lock context can deadlock the STATE lock.
703pub fn spawn_finalize_migration(v1_cid: String, v2_hex: String) {
704 let session = SessionGuard::capture();
705 tokio::spawn(async move {
706 let v2_id = CommunityId(crate::simd::hex::hex_to_bytes_32(&v2_hex));
707 let Ok(Some(twin)) = crate::db::community::load_community_v2(&v2_id) else { return };
708 if !session.is_valid() {
709 return;
710 }
711 crate::register_v2_chats_inner(&twin, &session).await;
712 // Subscribe to the v2 twin's realtime planes — the flip re-pointed the DB but a
713 // migrating MEMBER was never live-listening on the new community, so the owner's
714 // subsequent messages wouldn't arrive (they can still SEND — that path is stateless).
715 // Idempotent for the owner (already following the twin they created). Mirrors the
716 // normal v2-join tail (enqueue_follow + refresh_subscription).
717 super::v2::realtime::enqueue_follow(&twin.identity.community_id);
718 if let Some(client) = crate::state::nostr_client() {
719 super::v2::realtime::refresh_subscription(&client).await;
720 }
721 crate::emit_event(
722 "community_migrated",
723 &serde_json::json!({ "v1_community_id": v1_cid, "v2_community_id": v2_hex }),
724 );
725 });
726}
727
728/// Boot / account-swap maintenance: (1) re-drive every held pointer whose flip hasn't
729/// landed (crash recovery, stale-root retry, unopenable-`m` retry — `drive_migration` is
730/// idempotent and its held-v2 dedup makes the "joined but never flipped" crash a pure
731/// flip on re-run); (2) probe every sealed pointer-less community for a payload the client
732/// missed (the upgrade-lag sweep). Call at boot and after an account swap.
733pub async fn run_migration_maintenance<T: Transport + ?Sized>(transport: &T) -> Vec<String> {
734 let session = SessionGuard::capture();
735 let mut flipped = Vec::new();
736 for cid in crate::db::community::migration_flip_candidates().unwrap_or_default() {
737 // The candidate list was pre-fetched: after a swap it describes the WRONG account.
738 if !session.is_valid() {
739 return flipped;
740 }
741 let Ok(Some(community)) = crate::db::community::load_community(&CommunityId(
742 crate::simd::hex::hex_to_bytes_32(&cid),
743 )) else {
744 continue;
745 };
746 match drive_migration(transport, &community).await {
747 Ok(Some(v2)) => {
748 spawn_finalize_migration(cid, v2.clone());
749 flipped.push(v2);
750 }
751 Ok(None) => {}
752 Err(e) => crate::log_warn!("migration retry for {cid}: {e}"),
753 }
754 }
755 flipped.extend(sweep_dissolved_for_migration(transport).await);
756 flipped
757}
758
759/// Boot / account-swap sweep: for every SEALED, pointer-less-checked v1 community, re-probe
760/// the rotation-stable dissolved coordinate (relays retain the event; the client kept only
761/// the `dissolved` flag). Extract + persist any migration payload and drive the flip; a
762/// plain `{}` dissolution is marked checked so it is never re-probed. This is the recovery
763/// path for a member who folded the tombstone on a build that predated migration support.
764pub async fn sweep_dissolved_for_migration<T: Transport + ?Sized>(transport: &T) -> Vec<String> {
765 let session = SessionGuard::capture();
766 let mut flipped = Vec::new();
767 let candidates = crate::db::community::migration_sweep_candidates().unwrap_or_default();
768 for cid in candidates {
769 // Pre-fetched candidates + a network probe per iteration: re-check the session both
770 // before each community and again between the probe and any write, so a mid-sweep
771 // swap can't persist pointers/checked markers into the new account's rows.
772 if !session.is_valid() {
773 return flipped;
774 }
775 let Ok(Some(community)) = crate::db::community::load_community(&CommunityId(
776 crate::simd::hex::hex_to_bytes_32(&cid),
777 )) else {
778 continue;
779 };
780 let Some(owner) = super::service::proven_owner_hex(&community) else {
781 let _ = crate::db::community::set_migration_checked(&cid);
782 continue;
783 };
784 let records = super::service::dissolved_tombstone_records(transport, &community).await;
785 if !session.is_valid() {
786 return flipped;
787 }
788 match select_pointer(&records, &owner) {
789 Some((_, raw)) => {
790 let _ = crate::db::community::set_migration_pointer(&cid, &raw);
791 // Re-load so `server_root_epoch` etc. reflect any prior catch-up.
792 if let Ok(Some(fresh)) = crate::db::community::load_community(&community.id) {
793 if let Ok(Some(v2)) = drive_migration(transport, &fresh).await {
794 spawn_finalize_migration(cid.clone(), v2.clone());
795 flipped.push(v2);
796 }
797 }
798 }
799 None => {
800 // Plain dissolution vs relay-miss vs stranger-only records. Mark checked
801 // (stop re-probing) ONLY when the OWNER's own tombstone is present but carries
802 // no payload — a genuine plain dissolution. A non-owner tombstone is
803 // member-mintable, so a partial-relay probe returning only a stranger's record
804 // must NOT converge the sweep (a real owner carrier could still be unfetched).
805 let owner_sealed = records.iter().any(|d| d.author.to_hex() == owner);
806 if owner_sealed {
807 let _ = crate::db::community::set_migration_checked(&cid);
808 }
809 }
810 }
811 }
812 flipped
813}
814
815#[cfg(test)]
816mod tests {
817 use super::*;
818 use crate::community::{roster, CommunityId};
819 use nostr_sdk::prelude::*;
820
821 /// `v1_snapshot_members` seeds v1's authoritative memberlist: the owner and a roster
822 /// admin are seeded (the DB re-asserts them), a banned member never is. Uses the DB source
823 /// of truth so the v2 seed can't diverge from what v1 shows.
824 #[test]
825 fn snapshot_member_set_is_v1_memberlist_minus_banned() {
826 let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
827 crate::db::close_database();
828 crate::db::clear_id_caches();
829 let acct = Keys::generate().public_key().to_bech32().unwrap();
830 let tmp = tempfile::tempdir().unwrap();
831 std::fs::create_dir_all(tmp.path().join(&acct)).unwrap();
832 crate::db::set_app_data_dir(tmp.path().to_path_buf());
833 crate::db::set_current_account(acct.clone()).unwrap();
834 crate::db::init_database(&acct).unwrap();
835
836 let owner = Keys::generate();
837 let admin = Keys::generate();
838 let banned = Keys::generate();
839
840 let mut c = crate::community::Community::create("HQ", "general", vec![]);
841 let cid = c.id.to_hex();
842 {
843 c.owner_attestation = Some(crate::community::owner::build_owner_attestation_unsigned(owner.public_key(), &cid)
844 .finalize(&owner).unwrap().as_json());
845 }
846 crate::db::community::save_community(&c).unwrap();
847 crate::db::community::set_community_banlist(&cid, &[banned.public_key().to_hex()], 1).unwrap();
848 use crate::community::roles::{CommunityRoles, MemberGrant, Role};
849 let role = Role::admin("aa".repeat(32));
850 crate::db::community::set_community_roles(&cid, &CommunityRoles {
851 roles: vec![role.clone()],
852 grants: vec![
853 MemberGrant { member: admin.public_key().to_hex(), role_ids: vec![role.role_id.clone()] },
854 // A banned member with a stale grant must still be excluded.
855 MemberGrant { member: banned.public_key().to_hex(), role_ids: vec![role.role_id] },
856 ],
857 }, 1).unwrap();
858
859 let members = v1_snapshot_members(&cid, &owner.public_key().to_hex());
860 let has = |k: &Keys| members.iter().any(|m| *m == k.public_key());
861 assert!(has(&owner), "owner is always seeded");
862 assert!(has(&admin), "a roster admin is seeded (re-asserted by v1's memberlist)");
863 assert!(!has(&banned), "a banned member is never seeded, even with a stale grant");
864
865 crate::db::close_database();
866 }
867
868 /// The drive-in-flight claim is exclusive: a second claim on the same cid is refused
869 /// while the first is held, released on drop so a later drive can proceed, and
870 /// per-cid independent. This claim is what serializes the wizard against the owner's
871 /// own carrier self-fold, and boot maintenance against a live fold.
872 #[test]
873 fn drive_claim_is_exclusive_and_releases_on_drop() {
874 // DRIVE_INFLIGHT is process-global: serialize against every other session/DB test.
875 let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
876 clear_drive_inflight();
877 let cid = "ab".repeat(32);
878 let other = "cd".repeat(32);
879
880 let first = DriveClaim::take(&cid).expect("a free cid claims");
881 assert!(DriveClaim::take(&cid).is_none(), "a second claim on the same cid is refused");
882 let _independent = DriveClaim::take(&other).expect("a different cid claims freely");
883
884 drop(first);
885 let reclaimed = DriveClaim::take(&cid).expect("drop releases the claim for a later drive");
886 assert!(DriveClaim::take(&other).is_none(), "the other cid is still independently held");
887
888 drop(reclaimed);
889 clear_drive_inflight();
890 }
891
892 /// Drop is generation-aware. An account swap clears the set, so a stale drive still
893 /// unwinding must NOT remove the claim the NEW account's drive just inserted for the
894 /// same cid — that would let a second same-generation drive run concurrently and
895 /// re-open the channel-less-save prune race the claim exists to prevent.
896 #[test]
897 fn drive_claim_drop_is_generation_aware() {
898 // Bumps the global session generation — hold the suite guard so no concurrent test
899 // sees its own SessionGuard spuriously invalidated.
900 let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
901 clear_drive_inflight();
902 let cid = "ef".repeat(32);
903
904 let stale = DriveClaim::take(&cid).expect("old account's drive claims");
905 // The swap: generation advances and the set is cleared (production `swap_session`).
906 crate::state::bump_session_generation();
907 clear_drive_inflight();
908 let fresh = DriveClaim::take(&cid).expect("the new account's drive claims the same cid");
909
910 // The old drive finally unwinds. Its Drop must decline to touch the live claim.
911 drop(stale);
912 assert!(
913 DriveClaim::take(&cid).is_none(),
914 "a stale generation's Drop must not release the current account's claim"
915 );
916
917 // The current claim still releases normally.
918 drop(fresh);
919 assert!(DriveClaim::take(&cid).is_some(), "a valid-generation Drop releases");
920 clear_drive_inflight();
921 }
922
923 /// The state ladder, priority-ordered. The load-bearing case is the SELF-SEAL WINDOW:
924 /// the owner's own carrier fold sets dissolved=1 while the ledger still says the flip is
925 /// pending. A dissolved-first ladder hides the row entirely and strands the owner in the
926 /// one state the resumable wizard was built to recover from.
927 #[test]
928 fn migration_state_ladder_is_priority_ordered() {
929 // migrated is terminal and outranks everything, including a stale ledger row.
930 assert_eq!(migration_state(true, 0, false, true, true), "migrated");
931 assert_eq!(migration_state(true, PHASE_CARRIER_PUBLISHED, true, true, true), "migrated");
932
933 // THE SELF-SEAL WINDOW: sealed v1 + pending ledger + owner ⇒ Resume, never "dissolved".
934 assert_eq!(
935 migration_state(false, PHASE_CARRIER_PUBLISHED, true, true, true),
936 "in_progress",
937 "an owner mid-migration must be offered Resume even though their carrier sealed v1"
938 );
939 assert!(
940 migration_eligible(false, PHASE_CARRIER_PUBLISHED, true, true),
941 "the sealed-but-resumable community stays eligible so the command isn't refused"
942 );
943
944 // A plain dissolution (no ledger) is terminal for the row.
945 assert_eq!(migration_state(false, 0, true, true, true), "dissolved");
946 assert!(!migration_eligible(false, 0, true, true), "a plainly dissolved community is not migratable");
947
948 // A MEMBER never sees an in-progress row: ledger rows only exist on the wizard's own
949 // account, and the is_owner bind makes that structural rather than incidental.
950 assert_eq!(migration_state(false, PHASE_TWIN_MINTED, false, false, true), "not_owner");
951 assert!(!migration_eligible(false, PHASE_TWIN_MINTED, false, false));
952
953 // Owner, clean community: the timelock decides.
954 assert_eq!(migration_state(false, 0, false, true, true), "ready");
955 assert_eq!(migration_state(false, 0, false, true, false), "locked");
956 assert!(migration_eligible(false, 0, false, true), "eligibility is the ownership+fence question, not the clock");
957 }
958
959 /// The timelock is a real gate on the wizard, not just a UI hint: the boundary second
960 /// flips it, and every earlier instant is locked.
961 #[test]
962 fn wizard_timelock_boundary() {
963 assert!(!wizard_unlocked(0));
964 assert!(!wizard_unlocked(MIGRATION_UNLOCK_AT - 1));
965 assert!(wizard_unlocked(MIGRATION_UNLOCK_AT), "unlocks exactly at the boundary");
966 assert!(wizard_unlocked(MIGRATION_UNLOCK_AT + 86_400));
967 }
968
969 fn signpost() -> MigrationSignpost {
970 MigrationSignpost {
971 v2_community_id: "aa".repeat(32),
972 owner_xonly: "bb".repeat(32),
973 owner_salt: "cc".repeat(32),
974 relays: vec!["wss://relay.example.com".into()],
975 name: "Team Rocket".into(),
976 primary_channel: "dd".repeat(32),
977 root_epoch: 3,
978 }
979 }
980
981 #[test]
982 fn payload_roundtrip() {
983 let content = build_migration_content(&signpost(), Some("bTEyMw==".into())).unwrap();
984 let p = parse_migration_payload(&content).unwrap();
985 assert_eq!(p.signpost, signpost());
986 assert_eq!(p.m.as_deref(), Some("bTEyMw=="));
987 }
988
989 #[test]
990 fn plain_dissolution_is_no_payload() {
991 assert!(parse_migration_payload("{}").is_none());
992 assert!(parse_migration_payload("").is_none());
993 assert!(parse_migration_payload("not json at all").is_none());
994 }
995
996 #[test]
997 fn bad_hex_rejected() {
998 for field in ["v2_community_id", "owner_xonly", "owner_salt", "primary_channel"] {
999 let mut sp = signpost();
1000 match field {
1001 "v2_community_id" => sp.v2_community_id = "zz".repeat(32),
1002 "owner_xonly" => sp.owner_xonly = "short".into(),
1003 "owner_salt" => sp.owner_salt = String::new(),
1004 _ => sp.primary_channel = "gg".repeat(32),
1005 }
1006 let content = build_migration_content(&sp, None).unwrap();
1007 assert!(parse_migration_payload(&content).is_none(), "field {field} accepted");
1008 }
1009 }
1010
1011 #[test]
1012 fn bounds_enforced() {
1013 // Oversized m → the whole payload is malformed (fail-safe: plain dissolution).
1014 let content = build_migration_content(&signpost(), Some("A".repeat(MAX_M_B64 + 1))).unwrap();
1015 assert!(parse_migration_payload(&content).is_none());
1016 // Oversized content string → None before any parse.
1017 assert!(parse_migration_payload(&"x".repeat(MAX_PAYLOAD_CONTENT + 1)).is_none());
1018 // Hostile relay list degrades by truncation, never amplifies.
1019 let mut sp = signpost();
1020 sp.relays = (0..40).map(|i| format!("wss://r{i}.example.com")).collect();
1021 sp.name = "n".repeat(500);
1022 let p = parse_migration_payload(&build_migration_content(&sp, None).unwrap()).unwrap();
1023 assert_eq!(p.signpost.relays.len(), crate::community::MAX_COMMUNITY_RELAYS);
1024 assert_eq!(p.signpost.name.chars().count(), MAX_SIGNPOST_NAME);
1025 }
1026
1027 #[test]
1028 fn m_seal_open_multi_root() {
1029 let old_root = [7u8; 32];
1030 let new_root = [8u8; 32];
1031 let sealed = seal_m(&old_root, b"join material").unwrap();
1032 // Newest-first try still finds the older archived root.
1033 let held = vec![(1u64, old_root), (2u64, new_root)];
1034 assert_eq!(open_m(&held, &sealed).unwrap(), b"join material");
1035 // No held root opens it → None (the read-cut member's experience).
1036 assert!(open_m(&[(2u64, new_root)], &sealed).is_none());
1037 }
1038
1039 #[test]
1040 fn seal_errors_past_nip44_cap() {
1041 assert!(seal_m(&[1u8; 32], &vec![0u8; 70_000]).is_err());
1042 }
1043
1044 /// v0.4.0-ACCEPTANCE PIN (the retrofit-certainty condition): an extended tombstone must
1045 /// be accepted as a PLAIN dissolution by the exact shipped code paths — signer extracted
1046 /// at the probe, collected by the fold, content untouched — with a fat payload aboard.
1047 #[test]
1048 fn v040_accepts_extended_tombstone_as_plain_dissolution() {
1049 let owner = Keys::generate();
1050 let cid = CommunityId([0x42u8; 32]);
1051 // ~10 KB of key material — a realistic large community.
1052 let m = Some(base64_simd::STANDARD.encode_to_string(vec![0xabu8; 7_500]));
1053 let content = build_migration_content(&signpost(), m).unwrap();
1054 let inner = roster::build_group_dissolved_edition_with_content(&owner, &cid, 1_753_000_000, &content).unwrap();
1055
1056 // Probe path (dissolved coordinate, id-derived envelope) — v0.4.0's cross-epoch open.
1057 let outer = roster::seal_dissolved_edition(&Keys::generate(), &inner, &cid).unwrap();
1058 let signer = roster::dissolved_tombstone_signer(&outer, &cid).expect("v0.4.0 probe must accept");
1059 assert_eq!(signer, owner.public_key());
1060
1061 // Fold path — dissolved_by (the v0.4.0 seal signal) collects the owner, and the
1062 // v0.4.1 extension carries the content verbatim.
1063 let folded = roster::fold_roster(&[inner.clone()], &cid, &std::collections::HashMap::new());
1064 assert!(folded.dissolved_by.contains(&owner.public_key()));
1065 let rec = folded.dissolved_editions.iter().find(|d| d.author == owner.public_key()).unwrap();
1066 assert_eq!(rec.content, content);
1067
1068 // And the payload-aware probe extracts the same record.
1069 let opened = roster::dissolved_tombstone_open(&outer, &cid).unwrap();
1070 assert_eq!(opened.content, content);
1071 assert_eq!(opened.author, owner.public_key());
1072 }
1073
1074 /// pin: a NEWER payload-less `{}` tombstone seals but never shadows the keys.
1075 #[test]
1076 fn payloadless_never_shadows_the_pointer() {
1077 let owner = Keys::generate();
1078 let stranger = Keys::generate();
1079 let cid = CommunityId([0x24u8; 32]);
1080 let content = build_migration_content(&signpost(), Some("bTEyMw==".into())).unwrap();
1081 let with_payload = roster::build_group_dissolved_edition_with_content(&owner, &cid, 100, &content).unwrap();
1082 let plain_newer = roster::build_group_dissolved_edition(&owner, &cid, 200).unwrap();
1083 let forged = roster::build_group_dissolved_edition_with_content(&stranger, &cid, 300, &content).unwrap();
1084
1085 let folded = roster::fold_roster(&[plain_newer, with_payload, forged], &cid, &std::collections::HashMap::new());
1086 let (p, raw) = select_pointer(&folded.dissolved_editions, &owner.public_key().to_hex()).expect("payload survives");
1087 assert_eq!(p.m.as_deref(), Some("bTEyMw=="));
1088 assert_eq!(parse_migration_payload(&raw).unwrap(), p);
1089 // A stranger's payload alone is never selected.
1090 assert!(select_pointer(&folded.dissolved_editions, &Keys::generate().public_key().to_hex()).is_none());
1091 }
1092
1093 #[test]
1094 fn newest_payload_carrier_wins_with_id_tiebreak() {
1095 let owner = Keys::generate();
1096 let cid = CommunityId([0x33u8; 32]);
1097 let mut sp_old = signpost();
1098 sp_old.name = "old".into();
1099 let mut sp_new = signpost();
1100 sp_new.name = "new".into();
1101 let a = roster::build_group_dissolved_edition_with_content(
1102 &owner, &cid, 100, &build_migration_content(&sp_old, None).unwrap()).unwrap();
1103 let b = roster::build_group_dissolved_edition_with_content(
1104 &owner, &cid, 200, &build_migration_content(&sp_new, None).unwrap()).unwrap();
1105 let folded = roster::fold_roster(&[a, b], &cid, &std::collections::HashMap::new());
1106 let (p, _) = select_pointer(&folded.dissolved_editions, &owner.public_key().to_hex()).unwrap();
1107 assert_eq!(p.signpost.name, "new");
1108 }
1109}