Skip to content

Commit 05dec16

Browse files
authored
Merge pull request #3647 from moisesPompilio/2827_issue
Add deterministic random bytes in `override_random_bytes`
2 parents 5fe72b5 + f8d1126 commit 05dec16

File tree

6 files changed

+31
-34
lines changed

6 files changed

+31
-34
lines changed

lightning/src/ln/functional_test_utils.rs

+11
Original file line numberDiff line numberDiff line change
@@ -3265,6 +3265,10 @@ pub fn fail_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_path: &
32653265
}
32663266

32673267
pub fn create_chanmon_cfgs(node_count: usize) -> Vec<TestChanMonCfg> {
3268+
create_chanmon_cfgs_with_keys(node_count, None)
3269+
}
3270+
3271+
pub fn create_chanmon_cfgs_with_keys(node_count: usize, predefined_keys_ids: Option<Vec<[u8; 32]>>) -> Vec<TestChanMonCfg> {
32683272
let mut chan_mon_cfgs = Vec::new();
32693273
for i in 0..node_count {
32703274
let tx_broadcaster = test_utils::TestBroadcaster::new(Network::Testnet);
@@ -3276,6 +3280,13 @@ pub fn create_chanmon_cfgs(node_count: usize) -> Vec<TestChanMonCfg> {
32763280
let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
32773281
let scorer = RwLock::new(test_utils::TestScorer::new());
32783282

3283+
// Set predefined keys_id if provided
3284+
if let Some(keys_ids) = &predefined_keys_ids {
3285+
if let Some(keys_id) = keys_ids.get(i) {
3286+
keys_manager.set_next_keys_id(*keys_id);
3287+
}
3288+
}
3289+
32793290
chan_mon_cfgs.push(TestChanMonCfg { tx_broadcaster, fee_estimator, chain_source, logger, persister, keys_manager, scorer });
32803291
}
32813292

lightning/src/ln/monitor_tests.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -2313,7 +2313,11 @@ fn test_claimable_balance_correct_while_payment_pending() {
23132313

23142314
fn do_test_restored_packages_retry(check_old_monitor_retries_after_upgrade: bool) {
23152315
// Tests that we'll retry packages that were previously timelocked after we've restored them.
2316-
let chanmon_cfgs = create_chanmon_cfgs(2);
2316+
let node0_key_id = <[u8; 32]>::from_hex("0000000000000000000000004D49E5DA0000000000000000000000000000002A").unwrap();
2317+
let node1_key_id = <[u8; 32]>::from_hex("0000000000000000000000004D49E5DAD000D6201F116BAFD379F1D61DF161B9").unwrap();
2318+
let predefined_keys_ids = Some(vec![node0_key_id, node1_key_id]);
2319+
2320+
let chanmon_cfgs = create_chanmon_cfgs_with_keys(2, predefined_keys_ids);
23172321
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
23182322
let persister;
23192323
let new_chain_monitor;
@@ -2323,10 +2327,6 @@ fn do_test_restored_packages_retry(check_old_monitor_retries_after_upgrade: bool
23232327

23242328
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
23252329

2326-
// Reset our RNG counters to mirror the RNG output from when this test was written.
2327-
nodes[0].keys_manager.backing.inner.set_counter(0x1_0000_0004);
2328-
nodes[1].keys_manager.backing.inner.set_counter(0x1_0000_0004);
2329-
23302330
// Open a channel, lock in an HTLC, and immediately broadcast the commitment transaction. This
23312331
// ensures that the HTLC timeout package is held until we reach its expiration height.
23322332
let (_, _, chan_id, funding_tx) = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 50_000_000);

lightning/src/sign/mod.rs

-7
Original file line numberDiff line numberDiff line change
@@ -2365,13 +2365,6 @@ impl RandomBytes {
23652365
pub fn new(seed: [u8; 32]) -> Self {
23662366
Self { seed, index: AtomicCounter::new() }
23672367
}
2368-
2369-
#[cfg(test)]
2370-
/// Force the counter to a value to produce the same output again. Mostly useful in tests where
2371-
/// we need to maintain behavior with a previous version which didn't use as much RNG output.
2372-
pub(crate) fn set_counter(&self, count: u64) {
2373-
self.index.set_counter(count);
2374-
}
23752368
}
23762369

23772370
impl EntropySource for RandomBytes {

lightning/src/util/atomic_counter.rs

-12
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,4 @@ impl AtomicCounter {
3333
*mtx - 1
3434
}
3535
}
36-
#[cfg(test)]
37-
pub(crate) fn set_counter(&self, count: u64) {
38-
#[cfg(target_has_atomic = "64")]
39-
{
40-
self.counter.store(count, Ordering::Release);
41-
}
42-
#[cfg(not(target_has_atomic = "64"))]
43-
{
44-
let mut mtx = self.counter.lock().unwrap();
45-
*mtx = count;
46-
}
47-
}
4836
}

lightning/src/util/dyn_signer.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,6 @@ delegate!(DynKeysInterface, OutputSpender, inner,
244244
pub trait DynKeysInterfaceTrait:
245245
NodeSigner + OutputSpender + SignerProvider<EcdsaSigner = DynSigner> + EntropySource + Send + Sync
246246
{
247-
#[cfg(test)]
248-
fn set_counter(&self, _count: u64) {}
249247
}
250248

251249
#[cfg(taproot)]
@@ -258,8 +256,6 @@ pub trait DynKeysInterfaceTrait:
258256
+ Send
259257
+ Sync
260258
{
261-
#[cfg(test)]
262-
fn set_counter(&self, _count: u64) {}
263259
}
264260

265261
/// A dyn wrapper for PhantomKeysManager
@@ -320,9 +316,4 @@ delegate!(DynPhantomKeysInterface, OutputSpender, inner,
320316
) -> Result<Transaction, ()>
321317
);
322318

323-
impl DynKeysInterfaceTrait for DynPhantomKeysInterface {
324-
#[cfg(test)]
325-
fn set_counter(&self, count: u64) {
326-
self.inner.inner.entropy_source.set_counter(count);
327-
}
328-
}
319+
impl DynKeysInterfaceTrait for DynPhantomKeysInterface {}

lightning/src/util/test_utils.rs

+14
Original file line numberDiff line numberDiff line change
@@ -1496,6 +1496,7 @@ pub struct TestKeysInterface {
14961496
expectations: Mutex<Option<VecDeque<OnGetShutdownScriptpubkey>>>,
14971497
pub unavailable_signers_ops: Mutex<HashMap<[u8; 32], HashSet<SignerOp>>>,
14981498
pub next_signer_disabled_ops: Mutex<HashSet<SignerOp>>,
1499+
pub override_next_keys_id: Mutex<Option<[u8; 32]>>,
14991500
}
15001501

15011502
impl EntropySource for TestKeysInterface {
@@ -1546,6 +1547,13 @@ impl SignerProvider for TestKeysInterface {
15461547
type TaprootSigner = TestChannelSigner;
15471548

15481549
fn generate_channel_keys_id(&self, inbound: bool, user_channel_id: u128) -> [u8; 32] {
1550+
let mut override_keys = self.override_next_keys_id.lock().unwrap();
1551+
1552+
if let Some(keys_id) = *override_keys {
1553+
// Reset after use
1554+
*override_keys = None;
1555+
return keys_id;
1556+
}
15491557
self.backing.generate_channel_keys_id(inbound, user_channel_id)
15501558
}
15511559

@@ -1625,6 +1633,7 @@ impl TestKeysInterface {
16251633
expectations: Mutex::new(None),
16261634
unavailable_signers_ops: Mutex::new(new_hash_map()),
16271635
next_signer_disabled_ops: Mutex::new(new_hash_set()),
1636+
override_next_keys_id: Mutex::new(None),
16281637
}
16291638
}
16301639

@@ -1652,6 +1661,11 @@ impl TestKeysInterface {
16521661
let cell = states.get(&keys_id).unwrap();
16531662
Arc::clone(cell)
16541663
}
1664+
1665+
pub fn set_next_keys_id(&self, keys_id: [u8; 32]) -> &Self {
1666+
*self.override_next_keys_id.lock().unwrap() = Some(keys_id);
1667+
self
1668+
}
16551669
}
16561670

16571671
impl Drop for TestKeysInterface {

0 commit comments

Comments
 (0)