mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Merge pull request #217 from TheBlueMatt/2018-10-msg-resp-overhaul
Send ChannelManager messages out-of-band to ensure ordered delivery
This commit is contained in:
commit
3609ba5c20
7 changed files with 1224 additions and 938 deletions
File diff suppressed because one or more lines are too long
|
@ -13,9 +13,9 @@ use secp256k1;
|
|||
use crypto::digest::Digest;
|
||||
|
||||
use ln::msgs;
|
||||
use ln::msgs::{ErrorAction, HandleError, RAACommitmentOrder};
|
||||
use ln::msgs::{ErrorAction, HandleError};
|
||||
use ln::channelmonitor::ChannelMonitor;
|
||||
use ln::channelmanager::{PendingHTLCStatus, HTLCSource, PendingForwardHTLCInfo, HTLCFailReason, HTLCFailureMsg};
|
||||
use ln::channelmanager::{PendingHTLCStatus, HTLCSource, HTLCFailReason, HTLCFailureMsg, PendingForwardHTLCInfo, RAACommitmentOrder};
|
||||
use ln::chan_utils::{TxCreationKeys,HTLCOutputInCommitment,HTLC_SUCCESS_TX_WEIGHT,HTLC_TIMEOUT_TX_WEIGHT};
|
||||
use ln::chan_utils;
|
||||
use chain::chaininterface::{FeeEstimator,ConfirmationTarget};
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -168,6 +168,7 @@ pub struct Pong {
|
|||
}
|
||||
|
||||
/// An open_channel message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct OpenChannel {
|
||||
pub(crate) chain_hash: Sha256dHash,
|
||||
pub(crate) temporary_channel_id: [u8; 32],
|
||||
|
@ -191,6 +192,7 @@ pub struct OpenChannel {
|
|||
}
|
||||
|
||||
/// An accept_channel message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct AcceptChannel {
|
||||
pub(crate) temporary_channel_id: [u8; 32],
|
||||
pub(crate) dust_limit_satoshis: u64,
|
||||
|
@ -210,6 +212,7 @@ pub struct AcceptChannel {
|
|||
}
|
||||
|
||||
/// A funding_created message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct FundingCreated {
|
||||
pub(crate) temporary_channel_id: [u8; 32],
|
||||
pub(crate) funding_txid: Sha256dHash,
|
||||
|
@ -218,6 +221,7 @@ pub struct FundingCreated {
|
|||
}
|
||||
|
||||
/// A funding_signed message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct FundingSigned {
|
||||
pub(crate) channel_id: [u8; 32],
|
||||
pub(crate) signature: Signature,
|
||||
|
@ -231,12 +235,14 @@ pub struct FundingLocked {
|
|||
}
|
||||
|
||||
/// A shutdown message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct Shutdown {
|
||||
pub(crate) channel_id: [u8; 32],
|
||||
pub(crate) scriptpubkey: Script,
|
||||
}
|
||||
|
||||
/// A closing_signed message to be sent or received from a peer
|
||||
#[derive(Clone)]
|
||||
pub struct ClosingSigned {
|
||||
pub(crate) channel_id: [u8; 32],
|
||||
pub(crate) fee_satoshis: u64,
|
||||
|
@ -296,20 +302,20 @@ pub struct RevokeAndACK {
|
|||
}
|
||||
|
||||
/// An update_fee message to be sent or received from a peer
|
||||
#[derive(PartialEq)]
|
||||
#[derive(PartialEq, Clone)]
|
||||
pub struct UpdateFee {
|
||||
pub(crate) channel_id: [u8; 32],
|
||||
pub(crate) feerate_per_kw: u32,
|
||||
}
|
||||
|
||||
#[derive(PartialEq)]
|
||||
#[derive(PartialEq, Clone)]
|
||||
pub(crate) struct DataLossProtect {
|
||||
pub(crate) your_last_per_commitment_secret: [u8; 32],
|
||||
pub(crate) my_current_per_commitment_point: PublicKey,
|
||||
}
|
||||
|
||||
/// A channel_reestablish message to be sent or received from a peer
|
||||
#[derive(PartialEq)]
|
||||
#[derive(PartialEq, Clone)]
|
||||
pub struct ChannelReestablish {
|
||||
pub(crate) channel_id: [u8; 32],
|
||||
pub(crate) next_local_commitment_number: u64,
|
||||
|
@ -467,7 +473,7 @@ pub struct HandleError { //TODO: rename me
|
|||
|
||||
/// Struct used to return values from revoke_and_ack messages, containing a bunch of commitment
|
||||
/// transaction updates if they were pending.
|
||||
#[derive(PartialEq)]
|
||||
#[derive(PartialEq, Clone)]
|
||||
pub struct CommitmentUpdate {
|
||||
pub(crate) update_add_htlcs: Vec<UpdateAddHTLC>,
|
||||
pub(crate) update_fulfill_htlcs: Vec<UpdateFulfillHTLC>,
|
||||
|
@ -505,40 +511,28 @@ pub enum HTLCFailChannelUpdate {
|
|||
}
|
||||
}
|
||||
|
||||
/// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
|
||||
/// be sent in the order they appear in the return value, however sometimes the order needs to be
|
||||
/// variable at runtime (eg handle_channel_reestablish needs to re-send messages in the order they
|
||||
/// were originally sent). In those cases, this enum is also returned.
|
||||
#[derive(Clone, PartialEq)]
|
||||
pub enum RAACommitmentOrder {
|
||||
/// Send the CommitmentUpdate messages first
|
||||
CommitmentFirst,
|
||||
/// Send the RevokeAndACK message first
|
||||
RevokeAndACKFirst,
|
||||
}
|
||||
|
||||
/// A trait to describe an object which can receive channel messages.
|
||||
///
|
||||
/// Messages MAY be called in parallel when they originate from different their_node_ids, however
|
||||
/// they MUST NOT be called in parallel when the two calls have the same their_node_id.
|
||||
pub trait ChannelMessageHandler : events::EventsProvider + Send + Sync {
|
||||
pub trait ChannelMessageHandler : events::MessageSendEventsProvider + Send + Sync {
|
||||
//Channel init:
|
||||
/// Handle an incoming open_channel message from the given peer.
|
||||
fn handle_open_channel(&self, their_node_id: &PublicKey, msg: &OpenChannel) -> Result<AcceptChannel, HandleError>;
|
||||
fn handle_open_channel(&self, their_node_id: &PublicKey, msg: &OpenChannel) -> Result<(), HandleError>;
|
||||
/// Handle an incoming accept_channel message from the given peer.
|
||||
fn handle_accept_channel(&self, their_node_id: &PublicKey, msg: &AcceptChannel) -> Result<(), HandleError>;
|
||||
/// Handle an incoming funding_created message from the given peer.
|
||||
fn handle_funding_created(&self, their_node_id: &PublicKey, msg: &FundingCreated) -> Result<FundingSigned, HandleError>;
|
||||
fn handle_funding_created(&self, their_node_id: &PublicKey, msg: &FundingCreated) -> Result<(), HandleError>;
|
||||
/// Handle an incoming funding_signed message from the given peer.
|
||||
fn handle_funding_signed(&self, their_node_id: &PublicKey, msg: &FundingSigned) -> Result<(), HandleError>;
|
||||
/// Handle an incoming funding_locked message from the given peer.
|
||||
fn handle_funding_locked(&self, their_node_id: &PublicKey, msg: &FundingLocked) -> Result<Option<AnnouncementSignatures>, HandleError>;
|
||||
fn handle_funding_locked(&self, their_node_id: &PublicKey, msg: &FundingLocked) -> Result<(), HandleError>;
|
||||
|
||||
// Channl close:
|
||||
/// Handle an incoming shutdown message from the given peer.
|
||||
fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown) -> Result<(Option<Shutdown>, Option<ClosingSigned>), HandleError>;
|
||||
fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown) -> Result<(), HandleError>;
|
||||
/// Handle an incoming closing_signed message from the given peer.
|
||||
fn handle_closing_signed(&self, their_node_id: &PublicKey, msg: &ClosingSigned) -> Result<Option<ClosingSigned>, HandleError>;
|
||||
fn handle_closing_signed(&self, their_node_id: &PublicKey, msg: &ClosingSigned) -> Result<(), HandleError>;
|
||||
|
||||
// HTLC handling:
|
||||
/// Handle an incoming update_add_htlc message from the given peer.
|
||||
|
@ -550,9 +544,9 @@ pub trait ChannelMessageHandler : events::EventsProvider + Send + Sync {
|
|||
/// Handle an incoming update_fail_malformed_htlc message from the given peer.
|
||||
fn handle_update_fail_malformed_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFailMalformedHTLC) -> Result<(), HandleError>;
|
||||
/// Handle an incoming commitment_signed message from the given peer.
|
||||
fn handle_commitment_signed(&self, their_node_id: &PublicKey, msg: &CommitmentSigned) -> Result<(RevokeAndACK, Option<CommitmentSigned>), HandleError>;
|
||||
fn handle_commitment_signed(&self, their_node_id: &PublicKey, msg: &CommitmentSigned) -> Result<(), HandleError>;
|
||||
/// Handle an incoming revoke_and_ack message from the given peer.
|
||||
fn handle_revoke_and_ack(&self, their_node_id: &PublicKey, msg: &RevokeAndACK) -> Result<Option<CommitmentUpdate>, HandleError>;
|
||||
fn handle_revoke_and_ack(&self, their_node_id: &PublicKey, msg: &RevokeAndACK) -> Result<(), HandleError>;
|
||||
|
||||
/// Handle an incoming update_fee message from the given peer.
|
||||
fn handle_update_fee(&self, their_node_id: &PublicKey, msg: &UpdateFee) -> Result<(), HandleError>;
|
||||
|
@ -569,9 +563,9 @@ pub trait ChannelMessageHandler : events::EventsProvider + Send + Sync {
|
|||
fn peer_disconnected(&self, their_node_id: &PublicKey, no_connection_possible: bool);
|
||||
|
||||
/// Handle a peer reconnecting, possibly generating channel_reestablish message(s).
|
||||
fn peer_connected(&self, their_node_id: &PublicKey) -> Vec<ChannelReestablish>;
|
||||
fn peer_connected(&self, their_node_id: &PublicKey);
|
||||
/// Handle an incoming channel_reestablish message from the given peer.
|
||||
fn handle_channel_reestablish(&self, their_node_id: &PublicKey, msg: &ChannelReestablish) -> Result<(Option<FundingLocked>, Option<RevokeAndACK>, Option<CommitmentUpdate>, RAACommitmentOrder), HandleError>;
|
||||
fn handle_channel_reestablish(&self, their_node_id: &PublicKey, msg: &ChannelReestablish) -> Result<(), HandleError>;
|
||||
|
||||
// Error:
|
||||
/// Handle an incoming error message from the given peer.
|
||||
|
|
|
@ -12,13 +12,13 @@ use ln::msgs;
|
|||
use util::ser::{Writeable, Writer, Readable};
|
||||
use ln::peer_channel_encryptor::{PeerChannelEncryptor,NextNoiseStep};
|
||||
use util::byte_utils;
|
||||
use util::events::{EventsProvider,Event};
|
||||
use util::events::{MessageSendEvent};
|
||||
use util::logger::Logger;
|
||||
|
||||
use std::collections::{HashMap,hash_map,LinkedList};
|
||||
use std::collections::{HashMap,hash_map,HashSet,LinkedList};
|
||||
use std::sync::{Arc, Mutex};
|
||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||
use std::{cmp,error,mem,hash,fmt};
|
||||
use std::{cmp,error,hash,fmt};
|
||||
|
||||
/// Provides references to trait impls which handle different types of messages.
|
||||
pub struct MessageHandler {
|
||||
|
@ -106,17 +106,22 @@ struct Peer {
|
|||
|
||||
struct PeerHolder<Descriptor: SocketDescriptor> {
|
||||
peers: HashMap<Descriptor, Peer>,
|
||||
/// Added to by do_read_event for cases where we pushed a message onto the send buffer but
|
||||
/// didn't call do_attempt_write_data to avoid reentrancy. Cleared in process_events()
|
||||
peers_needing_send: HashSet<Descriptor>,
|
||||
/// Only add to this set when noise completes:
|
||||
node_id_to_descriptor: HashMap<PublicKey, Descriptor>,
|
||||
}
|
||||
struct MutPeerHolder<'a, Descriptor: SocketDescriptor + 'a> {
|
||||
peers: &'a mut HashMap<Descriptor, Peer>,
|
||||
peers_needing_send: &'a mut HashSet<Descriptor>,
|
||||
node_id_to_descriptor: &'a mut HashMap<PublicKey, Descriptor>,
|
||||
}
|
||||
impl<Descriptor: SocketDescriptor> PeerHolder<Descriptor> {
|
||||
fn borrow_parts(&mut self) -> MutPeerHolder<Descriptor> {
|
||||
MutPeerHolder {
|
||||
peers: &mut self.peers,
|
||||
peers_needing_send: &mut self.peers_needing_send,
|
||||
node_id_to_descriptor: &mut self.node_id_to_descriptor,
|
||||
}
|
||||
}
|
||||
|
@ -127,7 +132,6 @@ impl<Descriptor: SocketDescriptor> PeerHolder<Descriptor> {
|
|||
pub struct PeerManager<Descriptor: SocketDescriptor> {
|
||||
message_handler: MessageHandler,
|
||||
peers: Mutex<PeerHolder<Descriptor>>,
|
||||
pending_events: Mutex<Vec<Event>>,
|
||||
our_node_secret: SecretKey,
|
||||
initial_syncs_sent: AtomicUsize,
|
||||
logger: Arc<Logger>,
|
||||
|
@ -163,8 +167,11 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
pub fn new(message_handler: MessageHandler, our_node_secret: SecretKey, logger: Arc<Logger>) -> PeerManager<Descriptor> {
|
||||
PeerManager {
|
||||
message_handler: message_handler,
|
||||
peers: Mutex::new(PeerHolder { peers: HashMap::new(), node_id_to_descriptor: HashMap::new() }),
|
||||
pending_events: Mutex::new(Vec::new()),
|
||||
peers: Mutex::new(PeerHolder {
|
||||
peers: HashMap::new(),
|
||||
peers_needing_send: HashSet::new(),
|
||||
node_id_to_descriptor: HashMap::new()
|
||||
}),
|
||||
our_node_secret: our_node_secret,
|
||||
initial_syncs_sent: AtomicUsize::new(0),
|
||||
logger,
|
||||
|
@ -190,7 +197,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
/// Note that if an Err is returned here you MUST NOT call disconnect_event for the new
|
||||
/// descriptor but must disconnect the connection immediately.
|
||||
///
|
||||
/// Returns some bytes to send to the remote node.
|
||||
/// Returns a small number of bytes to send to the remote node (currently always 50).
|
||||
///
|
||||
/// Panics if descriptor is duplicative with some other descriptor which has not yet has a
|
||||
/// disconnect_event.
|
||||
|
@ -300,16 +307,12 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
///
|
||||
/// May return an Err to indicate that the connection should be closed.
|
||||
///
|
||||
/// Will very likely call send_data on the descriptor passed in (or a descriptor handed into
|
||||
/// new_*_connection) before returning. Thus, be very careful with reentrancy issues! The
|
||||
/// invariants around calling write_event in case a write did not fully complete must still
|
||||
/// hold. Note that this function will often call send_data on many peers before returning, not
|
||||
/// just this peer!
|
||||
/// Will *not* call back into send_data on any descriptors to avoid reentrancy complexity.
|
||||
/// Thus, however, you almost certainly want to call process_events() after any read_event to
|
||||
/// generate send_data calls to handle responses.
|
||||
///
|
||||
/// If Ok(true) is returned, further read_events should not be triggered until a write_event on
|
||||
/// this file descriptor has resume_read set (preventing DoS issues in the send buffer). Note
|
||||
/// that this must be true even if a send_data call with resume_read=true was made during the
|
||||
/// course of this function!
|
||||
/// this file descriptor has resume_read set (preventing DoS issues in the send buffer).
|
||||
///
|
||||
/// Panics if the descriptor was not previously registered in a new_*_connection event.
|
||||
pub fn read_event(&self, peer_descriptor: &mut Descriptor, data: Vec<u8>) -> Result<bool, PeerHandleError> {
|
||||
|
@ -349,6 +352,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
{
|
||||
log_trace!(self, "Encoding and sending message of type {} to {}", $msg_code, log_pubkey!(peer.their_node_id.unwrap()));
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!($msg, $msg_code)[..]));
|
||||
peers.peers_needing_send.insert(peer_descriptor.clone());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -522,9 +526,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
}, 16);
|
||||
}
|
||||
|
||||
for msg in self.message_handler.chan_handler.peer_connected(&peer.their_node_id.unwrap()) {
|
||||
encode_and_send_msg!(msg, 136);
|
||||
}
|
||||
self.message_handler.chan_handler.peer_connected(&peer.their_node_id.unwrap());
|
||||
},
|
||||
17 => {
|
||||
let msg = try_potential_decodeerror!(msgs::ErrorMessage::read(&mut reader));
|
||||
|
@ -561,8 +563,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
// Channel control:
|
||||
32 => {
|
||||
let msg = try_potential_decodeerror!(msgs::OpenChannel::read(&mut reader));
|
||||
let resp = try_potential_handleerror!(self.message_handler.chan_handler.handle_open_channel(&peer.their_node_id.unwrap(), &msg));
|
||||
encode_and_send_msg!(resp, 33);
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_open_channel(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
33 => {
|
||||
let msg = try_potential_decodeerror!(msgs::AcceptChannel::read(&mut reader));
|
||||
|
@ -571,8 +572,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
|
||||
34 => {
|
||||
let msg = try_potential_decodeerror!(msgs::FundingCreated::read(&mut reader));
|
||||
let resp = try_potential_handleerror!(self.message_handler.chan_handler.handle_funding_created(&peer.their_node_id.unwrap(), &msg));
|
||||
encode_and_send_msg!(resp, 35);
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_funding_created(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
35 => {
|
||||
let msg = try_potential_decodeerror!(msgs::FundingSigned::read(&mut reader));
|
||||
|
@ -580,29 +580,16 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
},
|
||||
36 => {
|
||||
let msg = try_potential_decodeerror!(msgs::FundingLocked::read(&mut reader));
|
||||
let resp_option = try_potential_handleerror!(self.message_handler.chan_handler.handle_funding_locked(&peer.their_node_id.unwrap(), &msg));
|
||||
match resp_option {
|
||||
Some(resp) => encode_and_send_msg!(resp, 259),
|
||||
None => {},
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_funding_locked(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
|
||||
38 => {
|
||||
let msg = try_potential_decodeerror!(msgs::Shutdown::read(&mut reader));
|
||||
let resp_options = try_potential_handleerror!(self.message_handler.chan_handler.handle_shutdown(&peer.their_node_id.unwrap(), &msg));
|
||||
if let Some(resp) = resp_options.0 {
|
||||
encode_and_send_msg!(resp, 38);
|
||||
}
|
||||
if let Some(resp) = resp_options.1 {
|
||||
encode_and_send_msg!(resp, 39);
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_shutdown(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
39 => {
|
||||
let msg = try_potential_decodeerror!(msgs::ClosingSigned::read(&mut reader));
|
||||
let resp_option = try_potential_handleerror!(self.message_handler.chan_handler.handle_closing_signed(&peer.their_node_id.unwrap(), &msg));
|
||||
if let Some(resp) = resp_option {
|
||||
encode_and_send_msg!(resp, 39);
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_closing_signed(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
|
||||
128 => {
|
||||
|
@ -624,33 +611,11 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
|
||||
132 => {
|
||||
let msg = try_potential_decodeerror!(msgs::CommitmentSigned::read(&mut reader));
|
||||
let resps = try_potential_handleerror!(self.message_handler.chan_handler.handle_commitment_signed(&peer.their_node_id.unwrap(), &msg));
|
||||
encode_and_send_msg!(resps.0, 133);
|
||||
if let Some(resp) = resps.1 {
|
||||
encode_and_send_msg!(resp, 132);
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_commitment_signed(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
133 => {
|
||||
let msg = try_potential_decodeerror!(msgs::RevokeAndACK::read(&mut reader));
|
||||
let resp_option = try_potential_handleerror!(self.message_handler.chan_handler.handle_revoke_and_ack(&peer.their_node_id.unwrap(), &msg));
|
||||
match resp_option {
|
||||
Some(resps) => {
|
||||
for resp in resps.update_add_htlcs {
|
||||
encode_and_send_msg!(resp, 128);
|
||||
}
|
||||
for resp in resps.update_fulfill_htlcs {
|
||||
encode_and_send_msg!(resp, 130);
|
||||
}
|
||||
for resp in resps.update_fail_htlcs {
|
||||
encode_and_send_msg!(resp, 131);
|
||||
}
|
||||
if let Some(resp) = resps.update_fee {
|
||||
encode_and_send_msg!(resp, 134);
|
||||
}
|
||||
encode_and_send_msg!(resps.commitment_signed, 132);
|
||||
},
|
||||
None => {},
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_revoke_and_ack(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
134 => {
|
||||
let msg = try_potential_decodeerror!(msgs::UpdateFee::read(&mut reader));
|
||||
|
@ -658,45 +623,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
},
|
||||
136 => {
|
||||
let msg = try_potential_decodeerror!(msgs::ChannelReestablish::read(&mut reader));
|
||||
let (funding_locked, revoke_and_ack, commitment_update, order) = try_potential_handleerror!(self.message_handler.chan_handler.handle_channel_reestablish(&peer.their_node_id.unwrap(), &msg));
|
||||
if let Some(lock_msg) = funding_locked {
|
||||
encode_and_send_msg!(lock_msg, 36);
|
||||
}
|
||||
macro_rules! handle_raa { () => {
|
||||
if let Some(revoke_msg) = revoke_and_ack {
|
||||
encode_and_send_msg!(revoke_msg, 133);
|
||||
}
|
||||
} }
|
||||
macro_rules! handle_cu { () => {
|
||||
match commitment_update {
|
||||
Some(resps) => {
|
||||
for resp in resps.update_add_htlcs {
|
||||
encode_and_send_msg!(resp, 128);
|
||||
}
|
||||
for resp in resps.update_fulfill_htlcs {
|
||||
encode_and_send_msg!(resp, 130);
|
||||
}
|
||||
for resp in resps.update_fail_htlcs {
|
||||
encode_and_send_msg!(resp, 131);
|
||||
}
|
||||
if let Some(resp) = resps.update_fee {
|
||||
encode_and_send_msg!(resp, 134);
|
||||
}
|
||||
encode_and_send_msg!(resps.commitment_signed, 132);
|
||||
},
|
||||
None => {},
|
||||
}
|
||||
} }
|
||||
match order {
|
||||
msgs::RAACommitmentOrder::RevokeAndACKFirst => {
|
||||
handle_raa!();
|
||||
handle_cu!();
|
||||
},
|
||||
msgs::RAACommitmentOrder::CommitmentFirst => {
|
||||
handle_cu!();
|
||||
handle_raa!();
|
||||
},
|
||||
}
|
||||
try_potential_handleerror!(self.message_handler.chan_handler.handle_channel_reestablish(&peer.their_node_id.unwrap(), &msg));
|
||||
},
|
||||
|
||||
// Routing control:
|
||||
|
@ -749,22 +676,21 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
pause_read
|
||||
};
|
||||
|
||||
self.process_events();
|
||||
|
||||
Ok(pause_read)
|
||||
}
|
||||
|
||||
/// Checks for any events generated by our handlers and processes them. May be needed after eg
|
||||
/// calls to ChannelManager::process_pending_htlc_forward.
|
||||
/// Checks for any events generated by our handlers and processes them. Includes sending most
|
||||
/// response messages as well as messages generated by calls to handler functions directly (eg
|
||||
/// functions like ChannelManager::process_pending_htlc_forward or send_payment).
|
||||
pub fn process_events(&self) {
|
||||
let mut upstream_events = Vec::new();
|
||||
{
|
||||
// TODO: There are some DoS attacks here where you can flood someone's outbound send
|
||||
// buffer by doing things like announcing channels on another node. We should be willing to
|
||||
// drop optional-ish messages when send buffers get full!
|
||||
|
||||
let mut events_generated = self.message_handler.chan_handler.get_and_clear_pending_events();
|
||||
let mut peers = self.peers.lock().unwrap();
|
||||
let mut events_generated = self.message_handler.chan_handler.get_and_clear_pending_msg_events();
|
||||
let mut peers_lock = self.peers.lock().unwrap();
|
||||
let peers = peers_lock.borrow_parts();
|
||||
for event in events_generated.drain(..) {
|
||||
macro_rules! get_peer_for_forwarding {
|
||||
($node_id: expr, $handle_no_such_peer: block) => {
|
||||
|
@ -790,15 +716,17 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
}
|
||||
}
|
||||
match event {
|
||||
Event::FundingGenerationReady {..} => { /* Hand upstream */ },
|
||||
Event::FundingBroadcastSafe {..} => { /* Hand upstream */ },
|
||||
Event::PaymentReceived {..} => { /* Hand upstream */ },
|
||||
Event::PaymentSent {..} => { /* Hand upstream */ },
|
||||
Event::PaymentFailed {..} => { /* Hand upstream */ },
|
||||
Event::PendingHTLCsForwardable {..} => { /* Hand upstream */ },
|
||||
Event::SpendableOutputs { .. } => { /* Hand upstream */ },
|
||||
|
||||
Event::SendOpenChannel { ref node_id, ref msg } => {
|
||||
MessageSendEvent::SendAcceptChannel { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendAcceptChannel event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.temporary_channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: Drop the pending channel? (or just let it timeout, but that sucks)
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 33)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
},
|
||||
MessageSendEvent::SendOpenChannel { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendOpenChannel event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.temporary_channel_id));
|
||||
|
@ -807,9 +735,8 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 32)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::SendFundingCreated { ref node_id, ref msg } => {
|
||||
MessageSendEvent::SendFundingCreated { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendFundingCreated event in peer_handler for node {} for channel {} (which becomes {})",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.temporary_channel_id),
|
||||
|
@ -820,25 +747,40 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 34)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::SendFundingLocked { ref node_id, ref msg, ref announcement_sigs } => {
|
||||
log_trace!(self, "Handling SendFundingLocked event in peer_handler for node {}{} for channel {}",
|
||||
MessageSendEvent::SendFundingSigned { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendFundingSigned event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: generate a DiscardFunding event indicating to the wallet that
|
||||
//they should just throw away this funding transaction
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 35)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
},
|
||||
MessageSendEvent::SendFundingLocked { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendFundingLocked event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
if announcement_sigs.is_some() { " with announcement sigs" } else { "" },
|
||||
log_bytes!(msg.channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: Do whatever we're gonna do for handling dropped messages
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 36)));
|
||||
match announcement_sigs {
|
||||
&Some(ref announce_msg) => peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(announce_msg, 259))),
|
||||
&None => {},
|
||||
}
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
|
||||
MessageSendEvent::SendAnnouncementSignatures { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendAnnouncementSignatures event in peer_handler for node {} for channel {})",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: generate a DiscardFunding event indicating to the wallet that
|
||||
//they should just throw away this funding transaction
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 259)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
},
|
||||
MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
|
||||
log_trace!(self, "Handling UpdateHTLCs event in peer_handler for node {} with {} adds, {} fulfills, {} fails for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
update_add_htlcs.len(),
|
||||
|
@ -865,9 +807,8 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
}
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(commitment_signed, 132)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::SendRevokeAndACK { ref node_id, ref msg } => {
|
||||
MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendRevokeAndACK event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
|
@ -876,9 +817,18 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 133)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::SendShutdown { ref node_id, ref msg } => {
|
||||
MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendClosingSigned event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: Do whatever we're gonna do for handling dropped messages
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 39)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
},
|
||||
MessageSendEvent::SendShutdown { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling Shutdown event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
|
@ -887,9 +837,18 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 38)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
continue;
|
||||
},
|
||||
Event::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
|
||||
MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } => {
|
||||
log_trace!(self, "Handling SendChannelReestablish event in peer_handler for node {} for channel {}",
|
||||
log_pubkey!(node_id),
|
||||
log_bytes!(msg.channel_id));
|
||||
let (mut descriptor, peer) = get_peer_for_forwarding!(node_id, {
|
||||
//TODO: Do whatever we're gonna do for handling dropped messages
|
||||
});
|
||||
peer.pending_outbound_buffer.push_back(peer.channel_encryptor.encrypt_message(&encode_msg!(msg, 136)));
|
||||
Self::do_attempt_write_data(&mut descriptor, peer);
|
||||
},
|
||||
MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
|
||||
log_trace!(self, "Handling BroadcastChannelAnnouncement event in peer_handler for short channel id {}", msg.contents.short_channel_id);
|
||||
if self.message_handler.route_handler.handle_channel_announcement(msg).is_ok() && self.message_handler.route_handler.handle_channel_update(update_msg).is_ok() {
|
||||
let encoded_msg = encode_msg!(msg, 256);
|
||||
|
@ -912,9 +871,8 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
Self::do_attempt_write_data(&mut (*descriptor).clone(), peer);
|
||||
}
|
||||
}
|
||||
continue;
|
||||
},
|
||||
Event::BroadcastChannelUpdate { ref msg } => {
|
||||
MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
|
||||
log_trace!(self, "Handling BroadcastChannelUpdate event in peer_handler for short channel id {}", msg.contents.short_channel_id);
|
||||
if self.message_handler.route_handler.handle_channel_update(msg).is_ok() {
|
||||
let encoded_msg = encode_msg!(msg, 258);
|
||||
|
@ -927,17 +885,16 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
Self::do_attempt_write_data(&mut (*descriptor).clone(), peer);
|
||||
}
|
||||
}
|
||||
continue;
|
||||
},
|
||||
Event::PaymentFailureNetworkUpdate { ref update } => {
|
||||
MessageSendEvent::PaymentFailureNetworkUpdate { ref update } => {
|
||||
self.message_handler.route_handler.handle_htlc_fail_channel_update(update);
|
||||
continue;
|
||||
},
|
||||
Event::HandleError { ref node_id, ref action } => {
|
||||
MessageSendEvent::HandleError { ref node_id, ref action } => {
|
||||
if let Some(ref action) = *action {
|
||||
match *action {
|
||||
msgs::ErrorAction::DisconnectPeer { ref msg } => {
|
||||
if let Some(mut descriptor) = peers.node_id_to_descriptor.remove(node_id) {
|
||||
peers.peers_needing_send.remove(&descriptor);
|
||||
if let Some(mut peer) = peers.peers.remove(&descriptor) {
|
||||
if let Some(ref msg) = *msg {
|
||||
log_trace!(self, "Handling DisconnectPeer HandleError event in peer_handler for node {} with message {}",
|
||||
|
@ -955,9 +912,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
self.message_handler.chan_handler.peer_disconnected(&node_id, false);
|
||||
}
|
||||
},
|
||||
msgs::ErrorAction::IgnoreError => {
|
||||
continue;
|
||||
},
|
||||
msgs::ErrorAction::IgnoreError => {},
|
||||
msgs::ErrorAction::SendErrorMessage { ref msg } => {
|
||||
log_trace!(self, "Handling SendErrorMessage HandleError event in peer_handler for node {} with message {}",
|
||||
log_pubkey!(node_id),
|
||||
|
@ -972,17 +927,16 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
} else {
|
||||
log_error!(self, "Got no-action HandleError Event in peer_handler for node {}, no such events should ever be generated!", log_pubkey!(node_id));
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
upstream_events.push(event);
|
||||
}
|
||||
}
|
||||
|
||||
let mut pending_events = self.pending_events.lock().unwrap();
|
||||
for event in upstream_events.drain(..) {
|
||||
pending_events.push(event);
|
||||
for mut descriptor in peers.peers_needing_send.drain() {
|
||||
match peers.peers.get_mut(&descriptor) {
|
||||
Some(peer) => Self::do_attempt_write_data(&mut descriptor, peer),
|
||||
None => panic!("Inconsistent peers set state!"),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -998,6 +952,7 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
|
||||
fn disconnect_event_internal(&self, descriptor: &Descriptor, no_connection_possible: bool) {
|
||||
let mut peers = self.peers.lock().unwrap();
|
||||
peers.peers_needing_send.remove(descriptor);
|
||||
let peer_option = peers.peers.remove(descriptor);
|
||||
match peer_option {
|
||||
None => panic!("Descriptor for disconnect_event is not already known to PeerManager"),
|
||||
|
@ -1014,15 +969,6 @@ impl<Descriptor: SocketDescriptor> PeerManager<Descriptor> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<Descriptor: SocketDescriptor> EventsProvider for PeerManager<Descriptor> {
|
||||
fn get_and_clear_pending_events(&self) -> Vec<Event> {
|
||||
let mut pending_events = self.pending_events.lock().unwrap();
|
||||
let mut ret = Vec::new();
|
||||
mem::swap(&mut ret, &mut *pending_events);
|
||||
ret
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use ln::peer_handler::{PeerManager, MessageHandler, SocketDescriptor};
|
||||
|
@ -1094,7 +1040,7 @@ mod tests {
|
|||
let their_id = PublicKey::from_secret_key(&secp_ctx, &peers[1].our_node_secret);
|
||||
|
||||
let chan_handler = test_utils::TestChannelMessageHandler::new();
|
||||
chan_handler.pending_events.lock().unwrap().push(events::Event::HandleError {
|
||||
chan_handler.pending_events.lock().unwrap().push(events::MessageSendEvent::HandleError {
|
||||
node_id: their_id,
|
||||
action: Some(msgs::ErrorAction::DisconnectPeer { msg: None }),
|
||||
});
|
||||
|
|
|
@ -24,7 +24,6 @@ use std::time::Instant;
|
|||
|
||||
/// An Event which you should probably take some action in response to.
|
||||
pub enum Event {
|
||||
// Events a user will probably have to handle
|
||||
/// Used to indicate that the client should generate a funding transaction with the given
|
||||
/// parameters and then call ChannelManager::funding_transaction_generated.
|
||||
/// Generated in ChannelManager message handling.
|
||||
|
@ -97,13 +96,22 @@ pub enum Event {
|
|||
/// The outputs which you should store as spendable by you.
|
||||
outputs: Vec<SpendableOutputDescriptor>,
|
||||
},
|
||||
}
|
||||
|
||||
// Events indicating the network loop should send a message to a peer:
|
||||
// TODO: Move these into a separate struct and make a top-level enum
|
||||
/// Used to indicate that we've initialted a channel open and should send the open_channel
|
||||
/// An event generated by ChannelManager which indicates a message should be sent to a peer (or
|
||||
/// broadcast to most peers).
|
||||
/// These events are handled by PeerManager::process_events if you are using a PeerManager.
|
||||
pub enum MessageSendEvent {
|
||||
/// Used to indicate that we've accepted a channel open and should send the accept_channel
|
||||
/// message provided to the given peer.
|
||||
SendAcceptChannel {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::AcceptChannel,
|
||||
},
|
||||
/// Used to indicate that we've initiated a channel open and should send the open_channel
|
||||
/// message provided to the given peer.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
SendOpenChannel {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
|
@ -111,29 +119,35 @@ pub enum Event {
|
|||
msg: msgs::OpenChannel,
|
||||
},
|
||||
/// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
SendFundingCreated {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::FundingCreated,
|
||||
},
|
||||
/// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
|
||||
SendFundingSigned {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::FundingSigned,
|
||||
},
|
||||
/// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
SendFundingLocked {
|
||||
/// The node_id of the node which should receive these message(s)
|
||||
node_id: PublicKey,
|
||||
/// The funding_locked message which should be sent.
|
||||
msg: msgs::FundingLocked,
|
||||
/// An optional additional announcement_signatures message which should be sent.
|
||||
announcement_sigs: Option<msgs::AnnouncementSignatures>,
|
||||
},
|
||||
/// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
|
||||
SendAnnouncementSignatures {
|
||||
/// The node_id of the node which should receive these message(s)
|
||||
node_id: PublicKey,
|
||||
/// The announcement_signatures message which should be sent.
|
||||
msg: msgs::AnnouncementSignatures,
|
||||
},
|
||||
/// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
|
||||
/// message should be sent to the peer with the given node_id.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
UpdateHTLCs {
|
||||
/// The node_id of the node which should receive these message(s)
|
||||
node_id: PublicKey,
|
||||
|
@ -141,27 +155,35 @@ pub enum Event {
|
|||
updates: msgs::CommitmentUpdate,
|
||||
},
|
||||
/// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
SendRevokeAndACK {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::RevokeAndACK,
|
||||
},
|
||||
/// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
|
||||
SendClosingSigned {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::ClosingSigned,
|
||||
},
|
||||
/// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
SendShutdown {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::Shutdown,
|
||||
},
|
||||
/// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
|
||||
SendChannelReestablish {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// The message which should be sent.
|
||||
msg: msgs::ChannelReestablish,
|
||||
},
|
||||
/// Used to indicate that a channel_announcement and channel_update should be broadcast to all
|
||||
/// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
BroadcastChannelAnnouncement {
|
||||
/// The channel_announcement which should be sent.
|
||||
msg: msgs::ChannelAnnouncement,
|
||||
|
@ -169,17 +191,11 @@ pub enum Event {
|
|||
update_msg: msgs::ChannelUpdate,
|
||||
},
|
||||
/// Used to indicate that a channel_update should be broadcast to all peers.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
BroadcastChannelUpdate {
|
||||
/// The channel_update which should be sent.
|
||||
msg: msgs::ChannelUpdate,
|
||||
},
|
||||
|
||||
//Error handling
|
||||
/// Broadcast an error downstream to be handled
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
HandleError {
|
||||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
|
@ -188,14 +204,19 @@ pub enum Event {
|
|||
},
|
||||
/// When a payment fails we may receive updates back from the hop where it failed. In such
|
||||
/// cases this event is generated so that we can inform the router of this information.
|
||||
///
|
||||
/// This event is handled by PeerManager::process_events if you are using a PeerManager.
|
||||
PaymentFailureNetworkUpdate {
|
||||
/// The channel/node update which should be sent to router
|
||||
update: msgs::HTLCFailChannelUpdate,
|
||||
}
|
||||
}
|
||||
|
||||
/// A trait indicating an object may generate message send events
|
||||
pub trait MessageSendEventsProvider {
|
||||
/// Gets the list of pending events which were generated by previous actions, clearing the list
|
||||
/// in the process.
|
||||
fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
|
||||
}
|
||||
|
||||
/// A trait indicating an object may generate events
|
||||
pub trait EventsProvider {
|
||||
/// Gets the list of pending events which were generated by previous actions, clearing the list
|
||||
|
|
|
@ -74,7 +74,7 @@ impl chaininterface::BroadcasterInterface for TestBroadcaster {
|
|||
}
|
||||
|
||||
pub struct TestChannelMessageHandler {
|
||||
pub pending_events: Mutex<Vec<events::Event>>,
|
||||
pub pending_events: Mutex<Vec<events::MessageSendEvent>>,
|
||||
}
|
||||
|
||||
impl TestChannelMessageHandler {
|
||||
|
@ -86,25 +86,25 @@ impl TestChannelMessageHandler {
|
|||
}
|
||||
|
||||
impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
|
||||
fn handle_open_channel(&self, _their_node_id: &PublicKey, _msg: &msgs::OpenChannel) -> Result<msgs::AcceptChannel, HandleError> {
|
||||
fn handle_open_channel(&self, _their_node_id: &PublicKey, _msg: &msgs::OpenChannel) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_accept_channel(&self, _their_node_id: &PublicKey, _msg: &msgs::AcceptChannel) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_funding_created(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingCreated) -> Result<msgs::FundingSigned, HandleError> {
|
||||
fn handle_funding_created(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingCreated) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_funding_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingSigned) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_funding_locked(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingLocked) -> Result<Option<msgs::AnnouncementSignatures>, HandleError> {
|
||||
fn handle_funding_locked(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingLocked) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_shutdown(&self, _their_node_id: &PublicKey, _msg: &msgs::Shutdown) -> Result<(Option<msgs::Shutdown>, Option<msgs::ClosingSigned>), HandleError> {
|
||||
fn handle_shutdown(&self, _their_node_id: &PublicKey, _msg: &msgs::Shutdown) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_closing_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::ClosingSigned) -> Result<Option<msgs::ClosingSigned>, HandleError> {
|
||||
fn handle_closing_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::ClosingSigned) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_update_add_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateAddHTLC) -> Result<(), HandleError> {
|
||||
|
@ -119,10 +119,10 @@ impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
|
|||
fn handle_update_fail_malformed_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_commitment_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::CommitmentSigned) -> Result<(msgs::RevokeAndACK, Option<msgs::CommitmentSigned>), HandleError> {
|
||||
fn handle_commitment_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::CommitmentSigned) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, _msg: &msgs::RevokeAndACK) -> Result<Option<msgs::CommitmentUpdate>, HandleError> {
|
||||
fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, _msg: &msgs::RevokeAndACK) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_update_fee(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFee) -> Result<(), HandleError> {
|
||||
|
@ -131,18 +131,16 @@ impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
|
|||
fn handle_announcement_signatures(&self, _their_node_id: &PublicKey, _msg: &msgs::AnnouncementSignatures) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn handle_channel_reestablish(&self, _their_node_id: &PublicKey, _msg: &msgs::ChannelReestablish) -> Result<(Option<msgs::FundingLocked>, Option<msgs::RevokeAndACK>, Option<msgs::CommitmentUpdate>, msgs::RAACommitmentOrder), HandleError> {
|
||||
fn handle_channel_reestablish(&self, _their_node_id: &PublicKey, _msg: &msgs::ChannelReestablish) -> Result<(), HandleError> {
|
||||
Err(HandleError { err: "", action: None })
|
||||
}
|
||||
fn peer_disconnected(&self, _their_node_id: &PublicKey, _no_connection_possible: bool) {}
|
||||
fn peer_connected(&self, _their_node_id: &PublicKey) -> Vec<msgs::ChannelReestablish> {
|
||||
Vec::new()
|
||||
}
|
||||
fn peer_connected(&self, _their_node_id: &PublicKey) {}
|
||||
fn handle_error(&self, _their_node_id: &PublicKey, _msg: &msgs::ErrorMessage) {}
|
||||
}
|
||||
|
||||
impl events::EventsProvider for TestChannelMessageHandler {
|
||||
fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
|
||||
impl events::MessageSendEventsProvider for TestChannelMessageHandler {
|
||||
fn get_and_clear_pending_msg_events(&self) -> Vec<events::MessageSendEvent> {
|
||||
let mut pending_events = self.pending_events.lock().unwrap();
|
||||
let mut ret = Vec::new();
|
||||
mem::swap(&mut ret, &mut *pending_events);
|
||||
|
|
Loading…
Add table
Reference in a new issue