-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Add Orchard note commitment tree.
- Loading branch information
Showing
8 changed files
with
349 additions
and
83 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
154 changes: 154 additions & 0 deletions
154
zcash_client_sqlite/src/wallet/init/migrations/orchard_shardtree.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
//! This migration adds tables to the wallet database that are needed to persist Orchard note | ||
//! commitment tree data using the `shardtree` crate. | ||
use std::collections::HashSet; | ||
|
||
use rusqlite::{self, named_params, OptionalExtension}; | ||
use schemer; | ||
use schemer_rusqlite::RusqliteMigration; | ||
|
||
use tracing::debug; | ||
use uuid::Uuid; | ||
|
||
use zcash_client_backend::data_api::scanning::ScanPriority; | ||
use zcash_protocol::consensus::{self, BlockHeight, NetworkUpgrade}; | ||
|
||
use crate::wallet::{ | ||
init::{migrations::received_notes_nullable_nf, WalletMigrationError}, | ||
scan_queue_extrema, | ||
scanning::priority_code, | ||
}; | ||
|
||
pub(super) const MIGRATION_ID: Uuid = Uuid::from_u128(0x3a6487f7_e068_42bb_9d12_6bb8dbe6da00); | ||
|
||
pub(super) struct Migration<P> { | ||
pub(super) params: P, | ||
} | ||
|
||
impl<P> schemer::Migration for Migration<P> { | ||
fn id(&self) -> Uuid { | ||
MIGRATION_ID | ||
} | ||
|
||
fn dependencies(&self) -> HashSet<Uuid> { | ||
[received_notes_nullable_nf::MIGRATION_ID] | ||
.into_iter() | ||
.collect() | ||
} | ||
|
||
fn description(&self) -> &'static str { | ||
"Add support for storage of Orchard note commitment tree data using the `shardtree` crate." | ||
} | ||
} | ||
|
||
impl<P: consensus::Parameters> RusqliteMigration for Migration<P> { | ||
type Error = WalletMigrationError; | ||
|
||
fn up(&self, transaction: &rusqlite::Transaction) -> Result<(), WalletMigrationError> { | ||
// Add shard persistence | ||
debug!("Creating tables for Orchard shard persistence"); | ||
transaction.execute_batch( | ||
"CREATE TABLE orchard_tree_shards ( | ||
shard_index INTEGER PRIMARY KEY, | ||
subtree_end_height INTEGER, | ||
root_hash BLOB, | ||
shard_data BLOB, | ||
contains_marked INTEGER, | ||
CONSTRAINT root_unique UNIQUE (root_hash) | ||
); | ||
CREATE TABLE orchard_tree_cap ( | ||
-- cap_id exists only to be able to take advantage of `ON CONFLICT` | ||
-- upsert functionality; the table will only ever contain one row | ||
cap_id INTEGER PRIMARY KEY, | ||
cap_data BLOB NOT NULL | ||
);", | ||
)?; | ||
|
||
// Add checkpoint persistence | ||
debug!("Creating tables for checkpoint persistence"); | ||
transaction.execute_batch( | ||
"CREATE TABLE orchard_tree_checkpoints ( | ||
checkpoint_id INTEGER PRIMARY KEY, | ||
position INTEGER | ||
); | ||
CREATE TABLE orchard_tree_checkpoint_marks_removed ( | ||
checkpoint_id INTEGER NOT NULL, | ||
mark_removed_position INTEGER NOT NULL, | ||
FOREIGN KEY (checkpoint_id) REFERENCES orchard_tree_checkpoints(checkpoint_id) | ||
ON DELETE CASCADE, | ||
CONSTRAINT spend_position_unique UNIQUE (checkpoint_id, mark_removed_position) | ||
);", | ||
)?; | ||
|
||
// Treat the current best-known chain tip height as the height to use for Orchard | ||
// initialization, bounded below by NU5 activation. | ||
if let Some(orchard_init_height) = scan_queue_extrema(transaction)?.and_then(|r| { | ||
self.params | ||
.activation_height(NetworkUpgrade::Nu5) | ||
.map(|orchard_activation| std::cmp::max(orchard_activation, *r.end())) | ||
}) { | ||
// If a scan range exists that contains the Orchard init height, split it in two at the | ||
// init height. | ||
if let Some((start, end, range_priority)) = transaction | ||
.query_row_and_then( | ||
"SELECT block_range_start, block_range_end, priority | ||
FROM scan_queue | ||
WHERE block_range_start <= :orchard_init_height | ||
AND block_range_end > :orchard_init_height", | ||
named_params![":orchard_init_height": u32::from(orchard_init_height)], | ||
|row| { | ||
let start = BlockHeight::from(row.get::<_, u32>(0)?); | ||
let end = BlockHeight::from(row.get::<_, u32>(1)?); | ||
let range_priority: i64 = row.get(2)?; | ||
Ok((start, end, range_priority)) | ||
}, | ||
) | ||
.optional()? | ||
{ | ||
transaction.execute( | ||
"DELETE from scan_queue WHERE block_range_start = :start", | ||
named_params![":start": u32::from(start)], | ||
)?; | ||
// Rewrite the start of the scan range to be exactly what it was prior to the | ||
// change. | ||
transaction.execute( | ||
"INSERT INTO scan_queue (block_range_start, block_range_end, priority) | ||
VALUES (:block_range_start, :block_range_end, :priority)", | ||
named_params![ | ||
":block_range_start": u32::from(start), | ||
":block_range_end": u32::from(orchard_init_height), | ||
":priority": range_priority, | ||
], | ||
)?; | ||
// Rewrite the remainder of the range to have priority `Historic` | ||
transaction.execute( | ||
"INSERT INTO scan_queue (block_range_start, block_range_end, priority) | ||
VALUES (:block_range_start, :block_range_end, :priority)", | ||
named_params![ | ||
":block_range_start": u32::from(orchard_init_height), | ||
":block_range_end": u32::from(end), | ||
":priority": priority_code(&ScanPriority::Historic), | ||
], | ||
)?; | ||
// Rewrite any scanned ranges above the end of the first Orchard | ||
// range to have priority `Historic` | ||
transaction.execute( | ||
"UPDATE scan_queue SET priority = :historic | ||
WHERE :block_range_start >= :orchard_initial_range_end | ||
AND priority = :scanned", | ||
named_params![ | ||
":historic": priority_code(&ScanPriority::Historic), | ||
":orchard_initial_range_end": u32::from(end), | ||
":scanned": priority_code(&ScanPriority::Scanned), | ||
], | ||
)?; | ||
} | ||
} | ||
|
||
Ok(()) | ||
} | ||
|
||
fn down(&self, _transaction: &rusqlite::Transaction) -> Result<(), WalletMigrationError> { | ||
Err(WalletMigrationError::CannotRevert(MIGRATION_ID)) | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
zcash_client_sqlite/src/wallet/init/migrations/shardtree_support.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.