-
Notifications
You must be signed in to change notification settings - Fork 411
(Fix and) Test that txn pay at least a minimum relay fee in functional tests #716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1054,8 +1054,30 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
} | ||
|
||
#[inline] | ||
fn get_closing_transaction_weight(a_scriptpubkey: &Script, b_scriptpubkey: &Script) -> u64 { | ||
(4 + 1 + 36 + 4 + 1 + 1 + 2*(8+1) + 4 + a_scriptpubkey.len() as u64 + b_scriptpubkey.len() as u64)*4 + 2 + 1 + 1 + 2*(1 + 72) | ||
fn get_closing_transaction_weight(&self, a_scriptpubkey: Option<&Script>, b_scriptpubkey: Option<&Script>) -> u64 { | ||
let mut ret = | ||
(4 + // version | ||
1 + // input count | ||
36 + // prevout | ||
1 + // script length (0) | ||
4 + // sequence | ||
1 + // output count | ||
4 // lock time | ||
)*4 + // * 4 for non-witness parts | ||
2 + // witness marker and flag | ||
1 + // witness element count | ||
4 + // 4 element lengths (2 sigs, multisig dummy, and witness script) | ||
TheBlueMatt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
self.get_funding_redeemscript().len() as u64 + // funding witness script | ||
2*(1 + 71); // two signatures + sighash type flags | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC aren't Bitcoin standard (BIP66) ECDSA sigs at most 72? I think we can trigger new asserts as they check real-transaction-weight There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm...you may be right, but tests aren't failing. Is it because low-s means we never sign something with an S that has the high bit set (so never need a 0-byte prefix in S)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After an extended conversation on IRC today, we noted that secp's verify function will fail for high-S, and low-S' requirement is that the S field is <0x7F...., which always has the top bit unset, implying 71 bytes for the DER signature, so I think this is fine. I went ahead and added a comment noting this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are each of the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Multisig dummy is counted a few lines up (see comment), both signatures have sighash flags, so hence the 2 here. |
||
if let Some(spk) = a_scriptpubkey { | ||
ret += ((8+1) + // output values and script length | ||
spk.len() as u64) * 4; // scriptpubkey and witness multiplier | ||
} | ||
if let Some(spk) = b_scriptpubkey { | ||
ret += ((8+1) + // output values and script length | ||
spk.len() as u64) * 4; // scriptpubkey and witness multiplier | ||
} | ||
ret | ||
} | ||
|
||
#[inline] | ||
|
@@ -2880,13 +2902,14 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
if self.feerate_per_kw > proposed_feerate { | ||
proposed_feerate = self.feerate_per_kw; | ||
} | ||
let tx_weight = Self::get_closing_transaction_weight(&self.get_closing_scriptpubkey(), self.counterparty_shutdown_scriptpubkey.as_ref().unwrap()); | ||
let tx_weight = self.get_closing_transaction_weight(Some(&self.get_closing_scriptpubkey()), Some(self.counterparty_shutdown_scriptpubkey.as_ref().unwrap())); | ||
let proposed_total_fee_satoshis = proposed_feerate as u64 * tx_weight / 1000; | ||
|
||
let (closing_tx, total_fee_satoshis) = self.build_closing_transaction(proposed_total_fee_satoshis, false); | ||
let sig = self.holder_keys | ||
.sign_closing_transaction(&closing_tx, &self.secp_ctx) | ||
.ok(); | ||
assert!(closing_tx.get_weight() as u64 <= tx_weight); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we assert somewhere we never sign 0-outputs closing transactions ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, I don't think so. I'm not sure what we could do in a world where both sides decide their closing transaction is dust...it feels...more than a bit awkward but you can't stop the closing process and there's not a lot of value in broadcasting it... |
||
if sig.is_none() { return None; } | ||
|
||
self.last_sent_closing_fee = Some((proposed_feerate, total_fee_satoshis, sig.clone().unwrap())); | ||
|
@@ -3007,7 +3030,7 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
if !self.pending_inbound_htlcs.is_empty() || !self.pending_outbound_htlcs.is_empty() { | ||
return Err(ChannelError::Close("Remote end sent us a closing_signed while there were still pending HTLCs".to_owned())); | ||
} | ||
if msg.fee_satoshis > 21000000 * 10000000 { //this is required to stop potential overflow in build_closing_transaction | ||
if msg.fee_satoshis > 21_000_000 * 1_0000_0000 { //this is required to stop potential overflow in build_closing_transaction | ||
return Err(ChannelError::Close("Remote tried to send us a closing tx with > 21 million BTC fee".to_owned())); | ||
} | ||
|
||
|
@@ -3031,9 +3054,14 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
}, | ||
}; | ||
|
||
let closing_tx_max_weight = self.get_closing_transaction_weight( | ||
if let Some(oup) = closing_tx.output.get(0) { Some(&oup.script_pubkey) } else { None }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why would this ever not have 0/1 outputs? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Close outputs can be dust, causing that channel party's balance to be burned to fees at close. |
||
if let Some(oup) = closing_tx.output.get(1) { Some(&oup.script_pubkey) } else { None }); | ||
if let Some((_, last_fee, sig)) = self.last_sent_closing_fee { | ||
if last_fee == msg.fee_satoshis { | ||
self.build_signed_closing_transaction(&mut closing_tx, &msg.signature, &sig); | ||
assert!(closing_tx.get_weight() as u64 <= closing_tx_max_weight); | ||
debug_assert!(closing_tx.get_weight() as u64 >= closing_tx_max_weight - 2); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What the reason of this 2 of allowed diff ? Further as the pre-computed weight is done with the knowledge of number of outputs shouldn't assert be strictly equal to effective transaction weight ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Signature sizes are variable, here we let it drop by 1 byte, though they could theoretically be even smaller. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: maybe could've used a comment on this point |
||
self.channel_state = ChannelState::ShutdownComplete as u32; | ||
self.update_time_counter += 1; | ||
return Ok((None, Some(closing_tx))); | ||
|
@@ -3042,11 +3070,12 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
|
||
macro_rules! propose_new_feerate { | ||
($new_feerate: expr) => { | ||
let closing_tx_max_weight = Self::get_closing_transaction_weight(&self.get_closing_scriptpubkey(), self.counterparty_shutdown_scriptpubkey.as_ref().unwrap()); | ||
let (closing_tx, used_total_fee) = self.build_closing_transaction($new_feerate as u64 * closing_tx_max_weight / 1000, false); | ||
let tx_weight = self.get_closing_transaction_weight(Some(&self.get_closing_scriptpubkey()), Some(self.counterparty_shutdown_scriptpubkey.as_ref().unwrap())); | ||
let (closing_tx, used_total_fee) = self.build_closing_transaction($new_feerate as u64 * tx_weight / 1000, false); | ||
let sig = self.holder_keys | ||
.sign_closing_transaction(&closing_tx, &self.secp_ctx) | ||
.map_err(|_| ChannelError::Close("External signer refused to sign closing transaction".to_owned()))?; | ||
assert!(closing_tx.get_weight() as u64 <= tx_weight); | ||
self.last_sent_closing_fee = Some(($new_feerate, used_total_fee, sig.clone())); | ||
return Ok((Some(msgs::ClosingSigned { | ||
channel_id: self.channel_id, | ||
|
@@ -3056,10 +3085,10 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
} | ||
} | ||
|
||
let proposed_sat_per_kw = msg.fee_satoshis * 1000 / closing_tx.get_weight() as u64; | ||
let mut min_feerate = 253; | ||
TheBlueMatt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if self.channel_outbound { | ||
let max_feerate = fee_estimator.get_est_sat_per_1000_weight(ConfirmationTarget::Normal); | ||
if (proposed_sat_per_kw as u32) > max_feerate { | ||
if (msg.fee_satoshis as u64) > max_feerate as u64 * closing_tx_max_weight / 1000 { | ||
if let Some((last_feerate, _, _)) = self.last_sent_closing_fee { | ||
if max_feerate <= last_feerate { | ||
return Err(ChannelError::Close(format!("Unable to come to consensus about closing feerate, remote wanted something higher ({}) than our Normal feerate ({})", last_feerate, max_feerate))); | ||
|
@@ -3068,21 +3097,23 @@ impl<ChanSigner: ChannelKeys> Channel<ChanSigner> { | |
propose_new_feerate!(max_feerate); | ||
} | ||
} else { | ||
let min_feerate = fee_estimator.get_est_sat_per_1000_weight(ConfirmationTarget::Background); | ||
if (proposed_sat_per_kw as u32) < min_feerate { | ||
if let Some((last_feerate, _, _)) = self.last_sent_closing_fee { | ||
if min_feerate >= last_feerate { | ||
return Err(ChannelError::Close(format!("Unable to come to consensus about closing feerate, remote wanted something lower ({}) than our Background feerate ({}).", last_feerate, min_feerate))); | ||
} | ||
min_feerate = fee_estimator.get_est_sat_per_1000_weight(ConfirmationTarget::Background); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we update min_feerate to Background feerate only if it's superior to min-relay-fee ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The feerate API is very explicit that it must always return at least 253. We probably should check it at every callsite (via some wrapper), but this isn't any different for now. |
||
} | ||
if (msg.fee_satoshis as u64) < min_feerate as u64 * closing_tx_max_weight / 1000 { | ||
if let Some((last_feerate, _, _)) = self.last_sent_closing_fee { | ||
if min_feerate >= last_feerate { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If its ==, that means the last time we proposed something to our counterparty it was already |
||
return Err(ChannelError::Close(format!("Unable to come to consensus about closing feerate, remote wanted something lower ({}) than our Background feerate ({}).", last_feerate, min_feerate))); | ||
} | ||
propose_new_feerate!(min_feerate); | ||
} | ||
propose_new_feerate!(min_feerate); | ||
} | ||
|
||
let sig = self.holder_keys | ||
.sign_closing_transaction(&closing_tx, &self.secp_ctx) | ||
.map_err(|_| ChannelError::Close("External signer refused to sign closing transaction".to_owned()))?; | ||
self.build_signed_closing_transaction(&mut closing_tx, &msg.signature, &sig); | ||
assert!(closing_tx.get_weight() as u64 <= closing_tx_max_weight); | ||
debug_assert!(closing_tx.get_weight() as u64 >= closing_tx_max_weight - 2); | ||
|
||
self.channel_state = ChannelState::ShutdownComplete as u32; | ||
self.update_time_counter += 1; | ||
|
Uh oh!
There was an error while loading. Please reload this page.