@@ -6066,22 +6066,14 @@ impl<SP: Deref> FundedChannel<SP> where
6066
6066
);
6067
6067
update_add_count += 1;
6068
6068
},
6069
- Err(e) => {
6070
- match e {
6071
- ChannelError::Ignore(ref msg) => {
6072
- log_info!(logger, "Failed to send HTLC with payment_hash {} due to {} in channel {}", &payment_hash, msg, &self.context.channel_id());
6073
- // If we fail to send here, then this HTLC should
6074
- // be failed backwards. Failing to send here
6075
- // indicates that this HTLC may keep being put back
6076
- // into the holding cell without ever being
6077
- // successfully forwarded/failed/fulfilled, causing
6078
- // our counterparty to eventually close on us.
6079
- htlcs_to_fail.push((source.clone(), *payment_hash));
6080
- },
6081
- _ => {
6082
- panic!("Got a non-IgnoreError action trying to send holding cell HTLC");
6083
- },
6084
- }
6069
+ Err((_, msg)) => {
6070
+ log_info!(logger, "Failed to send HTLC with payment_hash {} due to {} in channel {}", &payment_hash, msg, &self.context.channel_id());
6071
+ // If we fail to send here, then this HTLC should be failed
6072
+ // backwards. Failing to send here indicates that this HTLC may
6073
+ // keep being put back into the holding cell without ever being
6074
+ // successfully forwarded/failed/fulfilled, causing our
6075
+ // counterparty to eventually close on us.
6076
+ htlcs_to_fail.push((source.clone(), *payment_hash));
6085
6077
}
6086
6078
}
6087
6079
None
@@ -8746,22 +8738,19 @@ impl<SP: Deref> FundedChannel<SP> where
8746
8738
/// Queues up an outbound HTLC to send by placing it in the holding cell. You should call
8747
8739
/// [`Self::maybe_free_holding_cell_htlcs`] in order to actually generate and send the
8748
8740
/// commitment update.
8749
- ///
8750
- /// `Err`s will only be [`ChannelError::Ignore`].
8751
8741
pub fn queue_add_htlc<F: Deref, L: Deref>(
8752
8742
&mut self, amount_msat: u64, payment_hash: PaymentHash, cltv_expiry: u32, source: HTLCSource,
8753
8743
onion_routing_packet: msgs::OnionPacket, skimmed_fee_msat: Option<u64>,
8754
8744
blinding_point: Option<PublicKey>, fee_estimator: &LowerBoundedFeeEstimator<F>, logger: &L
8755
- ) -> Result<(), ChannelError >
8745
+ ) -> Result<(), (LocalHTLCFailureReason, String) >
8756
8746
where F::Target: FeeEstimator, L::Target: Logger
8757
8747
{
8758
8748
self
8759
8749
.send_htlc(amount_msat, payment_hash, cltv_expiry, source, onion_routing_packet, true,
8760
8750
skimmed_fee_msat, blinding_point, fee_estimator, logger)
8761
8751
.map(|msg_opt| assert!(msg_opt.is_none(), "We forced holding cell?"))
8762
8752
.map_err(|err| {
8763
- if let ChannelError::Ignore(_) = err { /* fine */ }
8764
- else { debug_assert!(false, "Queueing cannot trigger channel failure"); }
8753
+ debug_assert!(err.0.is_temporary(), "Queuing HTLC should return temporary error");
8765
8754
err
8766
8755
})
8767
8756
}
@@ -8781,38 +8770,40 @@ impl<SP: Deref> FundedChannel<SP> where
8781
8770
/// You MUST call [`Self::send_commitment_no_state_update`] prior to calling any other methods
8782
8771
/// on this [`FundedChannel`] if `force_holding_cell` is false.
8783
8772
///
8784
- /// `Err`s will only be [`ChannelError::Ignore`] .
8773
+ /// `Err`' s will always be temporary channel failures .
8785
8774
fn send_htlc<F: Deref, L: Deref>(
8786
8775
&mut self, amount_msat: u64, payment_hash: PaymentHash, cltv_expiry: u32, source: HTLCSource,
8787
8776
onion_routing_packet: msgs::OnionPacket, mut force_holding_cell: bool,
8788
8777
skimmed_fee_msat: Option<u64>, blinding_point: Option<PublicKey>,
8789
8778
fee_estimator: &LowerBoundedFeeEstimator<F>, logger: &L
8790
- ) -> Result<Option<msgs::UpdateAddHTLC>, ChannelError >
8779
+ ) -> Result<Option<msgs::UpdateAddHTLC>, (LocalHTLCFailureReason, String) >
8791
8780
where F::Target: FeeEstimator, L::Target: Logger
8792
8781
{
8793
8782
if !matches!(self.context.channel_state, ChannelState::ChannelReady(_)) ||
8794
8783
self.context.channel_state.is_local_shutdown_sent() ||
8795
8784
self.context.channel_state.is_remote_shutdown_sent()
8796
8785
{
8797
- return Err(ChannelError::Ignore("Cannot send HTLC until channel is fully established and we haven't started shutting down".to_owned()));
8786
+ return Err((LocalHTLCFailureReason::ChannelNotReady,
8787
+ "Cannot send HTLC until channel is fully established and we haven't started shutting down".to_owned()));
8798
8788
}
8799
8789
let channel_total_msat = self.funding.get_value_satoshis() * 1000;
8800
8790
if amount_msat > channel_total_msat {
8801
- return Err(ChannelError::Ignore(format!("Cannot send amount {}, because it is more than the total value of the channel {}", amount_msat, channel_total_msat)));
8791
+ return Err((LocalHTLCFailureReason::AmountExceedsCapacity,
8792
+ format!("Cannot send amount {}, because it is more than the total value of the channel {}", amount_msat, channel_total_msat)));
8802
8793
}
8803
8794
8804
8795
if amount_msat == 0 {
8805
- return Err(ChannelError::Ignore( "Cannot send 0-msat HTLC".to_owned()));
8796
+ return Err((LocalHTLCFailureReason::ZeroAmount, "Cannot send 0-msat HTLC".to_owned()));
8806
8797
}
8807
8798
8808
8799
let available_balances = self.get_available_balances(fee_estimator);
8809
8800
if amount_msat < available_balances.next_outbound_htlc_minimum_msat {
8810
- return Err(ChannelError::Ignore( format!("Cannot send less than our next-HTLC minimum - {} msat",
8801
+ return Err((LocalHTLCFailureReason::LiquidityMinimum, format!("Cannot send less than our next-HTLC minimum - {} msat",
8811
8802
available_balances.next_outbound_htlc_minimum_msat)));
8812
8803
}
8813
8804
8814
8805
if amount_msat > available_balances.next_outbound_htlc_limit_msat {
8815
- return Err(ChannelError::Ignore( format!("Cannot send more than our next-HTLC maximum - {} msat",
8806
+ return Err((LocalHTLCFailureReason::LiquidityMaximum, format!("Cannot send more than our next-HTLC maximum - {} msat",
8816
8807
available_balances.next_outbound_htlc_limit_msat)));
8817
8808
}
8818
8809
@@ -8823,7 +8814,8 @@ impl<SP: Deref> FundedChannel<SP> where
8823
8814
// disconnected during the time the previous hop was doing the commitment dance we may
8824
8815
// end up getting here after the forwarding delay. In any case, returning an
8825
8816
// IgnoreError will get ChannelManager to do the right thing and fail backwards now.
8826
- return Err(ChannelError::Ignore("Cannot send an HTLC while disconnected from channel counterparty".to_owned()));
8817
+ return Err((LocalHTLCFailureReason::PeerOffline,
8818
+ "Cannot send an HTLC while disconnected from channel counterparty".to_owned()));
8827
8819
}
8828
8820
8829
8821
let need_holding_cell = !self.context.channel_state.can_generate_new_commitment();
@@ -9112,8 +9104,8 @@ impl<SP: Deref> FundedChannel<SP> where
9112
9104
{
9113
9105
let send_res = self.send_htlc(amount_msat, payment_hash, cltv_expiry, source,
9114
9106
onion_routing_packet, false, skimmed_fee_msat, None, fee_estimator, logger);
9115
- if let Err(e) = &send_res { if let ChannelError::Ignore(_) = e {} else { debug_assert!(false, "Sending cannot trigger channel failure"); } }
9116
- match send_res? {
9107
+ // All [`LocalHTLCFailureReason`] errors are temporary, so they are [` ChannelError::Ignore`].
9108
+ match send_res.map_err(|(_, msg)| ChannelError::Ignore(msg)) ? {
9117
9109
Some(_) => {
9118
9110
let monitor_update = self.build_commitment_no_status_check(logger);
9119
9111
self.monitor_updating_paused(false, true, false, Vec::new(), Vec::new(), Vec::new());
0 commit comments