Fix some newly-introduced unused-$THING warnings
[rust-lightning] / src / ln / msgs.rs
1 //! Wire messages, traits representing wire message handlers, and a few error types live here.
2 //!
3 //! For a normal node you probably don't need to use anything here, however, if you wish to split a
4 //! node into an internet-facing route/message socket handling daemon and a separate daemon (or
5 //! server entirely) which handles only channel-related messages you may wish to implement
6 //! ChannelMessageHandler yourself and use it to re-serialize messages and pass them across
7 //! daemons/servers.
8 //!
9 //! Note that if you go with such an architecture (instead of passing raw socket events to a
10 //! non-internet-facing system) you trust the frontend internet-facing system to not lie about the
11 //! source node_id of the message, however this does allow you to significantly reduce bandwidth
12 //! between the systems as routing messages can represent a significant chunk of bandwidth usage
13 //! (especially for non-channel-publicly-announcing nodes). As an alternate design which avoids
14 //! this issue, if you have sufficient bidirectional bandwidth between your systems, you may send
15 //! raw socket events into your non-internet-facing system and then send routing events back to
16 //! track the network on the less-secure system.
17
18 use secp256k1::key::PublicKey;
19 use secp256k1::Signature;
20 use secp256k1;
21 use bitcoin_hashes::sha256d::Hash as Sha256dHash;
22 use bitcoin::blockdata::script::Script;
23
24 use std::error::Error;
25 use std::{cmp, fmt};
26 use std::io::Read;
27 use std::result::Result;
28
29 use util::events;
30 use util::ser::{Readable, Writeable, Writer};
31
32 use ln::channelmanager::{PaymentPreimage, PaymentHash};
33
34 /// An error in decoding a message or struct.
35 #[derive(Debug)]
36 pub enum DecodeError {
37         /// A version byte specified something we don't know how to handle.
38         /// Includes unknown realm byte in an OnionHopData packet
39         UnknownVersion,
40         /// Unknown feature mandating we fail to parse message
41         UnknownRequiredFeature,
42         /// Value was invalid, eg a byte which was supposed to be a bool was something other than a 0
43         /// or 1, a public key/private key/signature was invalid, text wasn't UTF-8, etc
44         InvalidValue,
45         /// Buffer too short
46         ShortRead,
47         /// node_announcement included more than one address of a given type!
48         ExtraAddressesPerType,
49         /// A length descriptor in the packet didn't describe the later data correctly
50         BadLengthDescriptor,
51         /// Error from std::io
52         Io(::std::io::Error),
53 }
54
55 /// Tracks localfeatures which are only in init messages
56 #[derive(Clone, PartialEq)]
57 pub struct LocalFeatures {
58         flags: Vec<u8>,
59 }
60
61 impl LocalFeatures {
62         /// Create a blank LocalFeatures flags (visibility extended for fuzz tests)
63         #[cfg(not(feature = "fuzztarget"))]
64         pub(crate) fn new() -> LocalFeatures {
65                 LocalFeatures {
66                         flags: vec![1 << 4],
67                 }
68         }
69         #[cfg(feature = "fuzztarget")]
70         pub fn new() -> LocalFeatures {
71                 LocalFeatures {
72                         flags: vec![1 << 4],
73                 }
74         }
75
76         pub(crate) fn supports_data_loss_protect(&self) -> bool {
77                 self.flags.len() > 0 && (self.flags[0] & 3) != 0
78         }
79         pub(crate) fn requires_data_loss_protect(&self) -> bool {
80                 self.flags.len() > 0 && (self.flags[0] & 1) != 0
81         }
82
83         pub(crate) fn initial_routing_sync(&self) -> bool {
84                 self.flags.len() > 0 && (self.flags[0] & (1 << 3)) != 0
85         }
86         pub(crate) fn set_initial_routing_sync(&mut self) {
87                 if self.flags.len() == 0 {
88                         self.flags.resize(1, 1 << 3);
89                 } else {
90                         self.flags[0] |= 1 << 3;
91                 }
92         }
93
94         pub(crate) fn supports_upfront_shutdown_script(&self) -> bool {
95                 self.flags.len() > 0 && (self.flags[0] & (3 << 4)) != 0
96         }
97         #[cfg(test)]
98         pub(crate) fn unset_upfront_shutdown_script(&mut self) {
99                 self.flags[0] ^= 1 << 4;
100         }
101
102         pub(crate) fn requires_unknown_bits(&self) -> bool {
103                 self.flags.iter().enumerate().any(|(idx, &byte)| {
104                         ( idx != 0 && (byte & 0x55) != 0 ) || ( idx == 0 && (byte & 0x14) != 0 )
105                 })
106         }
107
108         pub(crate) fn supports_unknown_bits(&self) -> bool {
109                 self.flags.iter().enumerate().any(|(idx, &byte)| {
110                         ( idx != 0 && byte != 0 ) || ( idx == 0 && (byte & 0xc4) != 0 )
111                 })
112         }
113 }
114
115 /// Tracks globalfeatures which are in init messages and routing announcements
116 #[derive(Clone, PartialEq, Debug)]
117 pub struct GlobalFeatures {
118         #[cfg(not(test))]
119         flags: Vec<u8>,
120         // Used to test encoding of diverse msgs
121         #[cfg(test)]
122         pub flags: Vec<u8>
123 }
124
125 impl GlobalFeatures {
126         pub(crate) fn new() -> GlobalFeatures {
127                 GlobalFeatures {
128                         flags: Vec::new(),
129                 }
130         }
131
132         pub(crate) fn requires_unknown_bits(&self) -> bool {
133                 for &byte in self.flags.iter() {
134                         if (byte & 0x55) != 0 {
135                                 return true;
136                         }
137                 }
138                 return false;
139         }
140
141         pub(crate) fn supports_unknown_bits(&self) -> bool {
142                 for &byte in self.flags.iter() {
143                         if byte != 0 {
144                                 return true;
145                         }
146                 }
147                 return false;
148         }
149 }
150
151 /// An init message to be sent or received from a peer
152 pub struct Init {
153         pub(crate) global_features: GlobalFeatures,
154         pub(crate) local_features: LocalFeatures,
155 }
156
157 /// An error message to be sent or received from a peer
158 #[derive(Clone)]
159 pub struct ErrorMessage {
160         pub(crate) channel_id: [u8; 32],
161         pub(crate) data: String,
162 }
163
164 /// A ping message to be sent or received from a peer
165 pub struct Ping {
166         pub(crate) ponglen: u16,
167         pub(crate) byteslen: u16,
168 }
169
170 /// A pong message to be sent or received from a peer
171 pub struct Pong {
172         pub(crate) byteslen: u16,
173 }
174
175 /// An open_channel message to be sent or received from a peer
176 #[derive(Clone)]
177 pub struct OpenChannel {
178         pub(crate) chain_hash: Sha256dHash,
179         pub(crate) temporary_channel_id: [u8; 32],
180         pub(crate) funding_satoshis: u64,
181         pub(crate) push_msat: u64,
182         pub(crate) dust_limit_satoshis: u64,
183         pub(crate) max_htlc_value_in_flight_msat: u64,
184         pub(crate) channel_reserve_satoshis: u64,
185         pub(crate) htlc_minimum_msat: u64,
186         pub(crate) feerate_per_kw: u32,
187         pub(crate) to_self_delay: u16,
188         pub(crate) max_accepted_htlcs: u16,
189         pub(crate) funding_pubkey: PublicKey,
190         pub(crate) revocation_basepoint: PublicKey,
191         pub(crate) payment_basepoint: PublicKey,
192         pub(crate) delayed_payment_basepoint: PublicKey,
193         pub(crate) htlc_basepoint: PublicKey,
194         pub(crate) first_per_commitment_point: PublicKey,
195         pub(crate) channel_flags: u8,
196         pub(crate) shutdown_scriptpubkey: OptionalField<Script>,
197 }
198
199 /// An accept_channel message to be sent or received from a peer
200 #[derive(Clone)]
201 pub struct AcceptChannel {
202         pub(crate) temporary_channel_id: [u8; 32],
203         pub(crate) dust_limit_satoshis: u64,
204         pub(crate) max_htlc_value_in_flight_msat: u64,
205         pub(crate) channel_reserve_satoshis: u64,
206         pub(crate) htlc_minimum_msat: u64,
207         pub(crate) minimum_depth: u32,
208         pub(crate) to_self_delay: u16,
209         pub(crate) max_accepted_htlcs: u16,
210         pub(crate) funding_pubkey: PublicKey,
211         pub(crate) revocation_basepoint: PublicKey,
212         pub(crate) payment_basepoint: PublicKey,
213         pub(crate) delayed_payment_basepoint: PublicKey,
214         pub(crate) htlc_basepoint: PublicKey,
215         pub(crate) first_per_commitment_point: PublicKey,
216         pub(crate) shutdown_scriptpubkey: OptionalField<Script>
217 }
218
219 /// A funding_created message to be sent or received from a peer
220 #[derive(Clone)]
221 pub struct FundingCreated {
222         pub(crate) temporary_channel_id: [u8; 32],
223         pub(crate) funding_txid: Sha256dHash,
224         pub(crate) funding_output_index: u16,
225         pub(crate) signature: Signature,
226 }
227
228 /// A funding_signed message to be sent or received from a peer
229 #[derive(Clone)]
230 pub struct FundingSigned {
231         pub(crate) channel_id: [u8; 32],
232         pub(crate) signature: Signature,
233 }
234
235 /// A funding_locked message to be sent or received from a peer
236 #[derive(Clone, PartialEq)]
237 pub struct FundingLocked {
238         pub(crate) channel_id: [u8; 32],
239         pub(crate) next_per_commitment_point: PublicKey,
240 }
241
242 /// A shutdown message to be sent or received from a peer
243 #[derive(Clone, PartialEq)]
244 pub struct Shutdown {
245         pub(crate) channel_id: [u8; 32],
246         pub(crate) scriptpubkey: Script,
247 }
248
249 /// A closing_signed message to be sent or received from a peer
250 #[derive(Clone, PartialEq)]
251 pub struct ClosingSigned {
252         pub(crate) channel_id: [u8; 32],
253         pub(crate) fee_satoshis: u64,
254         pub(crate) signature: Signature,
255 }
256
257 /// An update_add_htlc message to be sent or received from a peer
258 #[derive(Clone, PartialEq)]
259 pub struct UpdateAddHTLC {
260         pub(crate) channel_id: [u8; 32],
261         pub(crate) htlc_id: u64,
262         pub(crate) amount_msat: u64,
263         pub(crate) payment_hash: PaymentHash,
264         pub(crate) cltv_expiry: u32,
265         pub(crate) onion_routing_packet: OnionPacket,
266 }
267
268 /// An update_fulfill_htlc message to be sent or received from a peer
269 #[derive(Clone, PartialEq)]
270 pub struct UpdateFulfillHTLC {
271         pub(crate) channel_id: [u8; 32],
272         pub(crate) htlc_id: u64,
273         pub(crate) payment_preimage: PaymentPreimage,
274 }
275
276 /// An update_fail_htlc message to be sent or received from a peer
277 #[derive(Clone, PartialEq)]
278 pub struct UpdateFailHTLC {
279         pub(crate) channel_id: [u8; 32],
280         pub(crate) htlc_id: u64,
281         pub(crate) reason: OnionErrorPacket,
282 }
283
284 /// An update_fail_malformed_htlc message to be sent or received from a peer
285 #[derive(Clone, PartialEq)]
286 pub struct UpdateFailMalformedHTLC {
287         pub(crate) channel_id: [u8; 32],
288         pub(crate) htlc_id: u64,
289         pub(crate) sha256_of_onion: [u8; 32],
290         pub(crate) failure_code: u16,
291 }
292
293 /// A commitment_signed message to be sent or received from a peer
294 #[derive(Clone, PartialEq)]
295 pub struct CommitmentSigned {
296         pub(crate) channel_id: [u8; 32],
297         pub(crate) signature: Signature,
298         pub(crate) htlc_signatures: Vec<Signature>,
299 }
300
301 /// A revoke_and_ack message to be sent or received from a peer
302 #[derive(Clone, PartialEq)]
303 pub struct RevokeAndACK {
304         pub(crate) channel_id: [u8; 32],
305         pub(crate) per_commitment_secret: [u8; 32],
306         pub(crate) next_per_commitment_point: PublicKey,
307 }
308
309 /// An update_fee message to be sent or received from a peer
310 #[derive(PartialEq, Clone)]
311 pub struct UpdateFee {
312         pub(crate) channel_id: [u8; 32],
313         pub(crate) feerate_per_kw: u32,
314 }
315
316 #[derive(PartialEq, Clone)]
317 pub(crate) struct DataLossProtect {
318         pub(crate) your_last_per_commitment_secret: [u8; 32],
319         pub(crate) my_current_per_commitment_point: PublicKey,
320 }
321
322 /// A channel_reestablish message to be sent or received from a peer
323 #[derive(PartialEq, Clone)]
324 pub struct ChannelReestablish {
325         pub(crate) channel_id: [u8; 32],
326         pub(crate) next_local_commitment_number: u64,
327         pub(crate) next_remote_commitment_number: u64,
328         pub(crate) data_loss_protect: OptionalField<DataLossProtect>,
329 }
330
331 /// An announcement_signatures message to be sent or received from a peer
332 #[derive(PartialEq, Clone, Debug)]
333 pub struct AnnouncementSignatures {
334         pub(crate) channel_id: [u8; 32],
335         pub(crate) short_channel_id: u64,
336         pub(crate) node_signature: Signature,
337         pub(crate) bitcoin_signature: Signature,
338 }
339
340 /// An address which can be used to connect to a remote peer
341 #[derive(Clone, PartialEq, Debug)]
342 pub enum NetAddress {
343         /// An IPv4 address/port on which the peer is listening.
344         IPv4 {
345                 /// The 4-byte IPv4 address
346                 addr: [u8; 4],
347                 /// The port on which the node is listening
348                 port: u16,
349         },
350         /// An IPv6 address/port on which the peer is listening.
351         IPv6 {
352                 /// The 16-byte IPv6 address
353                 addr: [u8; 16],
354                 /// The port on which the node is listening
355                 port: u16,
356         },
357         /// An old-style Tor onion address/port on which the peer is listening.
358         OnionV2 {
359                 /// The bytes (usually encoded in base32 with ".onion" appended)
360                 addr: [u8; 10],
361                 /// The port on which the node is listening
362                 port: u16,
363         },
364         /// A new-style Tor onion address/port on which the peer is listening.
365         /// To create the human-readable "hostname", concatenate ed25519_pubkey, checksum, and version,
366         /// wrap as base32 and append ".onion".
367         OnionV3 {
368                 /// The ed25519 long-term public key of the peer
369                 ed25519_pubkey: [u8; 32],
370                 /// The checksum of the pubkey and version, as included in the onion address
371                 checksum: u16,
372                 /// The version byte, as defined by the Tor Onion v3 spec.
373                 version: u8,
374                 /// The port on which the node is listening
375                 port: u16,
376         },
377 }
378 impl NetAddress {
379         fn get_id(&self) -> u8 {
380                 match self {
381                         &NetAddress::IPv4 {..} => { 1 },
382                         &NetAddress::IPv6 {..} => { 2 },
383                         &NetAddress::OnionV2 {..} => { 3 },
384                         &NetAddress::OnionV3 {..} => { 4 },
385                 }
386         }
387
388         /// Strict byte-length of address descriptor, 1-byte type not recorded
389         fn len(&self) -> u16 {
390                 match self {
391                         &NetAddress::IPv4 { .. } => { 6 },
392                         &NetAddress::IPv6 { .. } => { 18 },
393                         &NetAddress::OnionV2 { .. } => { 12 },
394                         &NetAddress::OnionV3 { .. } => { 37 },
395                 }
396         }
397 }
398
399 impl Writeable for NetAddress {
400         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
401                 match self {
402                         &NetAddress::IPv4 { ref addr, ref port } => {
403                                 1u8.write(writer)?;
404                                 addr.write(writer)?;
405                                 port.write(writer)?;
406                         },
407                         &NetAddress::IPv6 { ref addr, ref port } => {
408                                 2u8.write(writer)?;
409                                 addr.write(writer)?;
410                                 port.write(writer)?;
411                         },
412                         &NetAddress::OnionV2 { ref addr, ref port } => {
413                                 3u8.write(writer)?;
414                                 addr.write(writer)?;
415                                 port.write(writer)?;
416                         },
417                         &NetAddress::OnionV3 { ref ed25519_pubkey, ref checksum, ref version, ref port } => {
418                                 4u8.write(writer)?;
419                                 ed25519_pubkey.write(writer)?;
420                                 checksum.write(writer)?;
421                                 version.write(writer)?;
422                                 port.write(writer)?;
423                         }
424                 }
425                 Ok(())
426         }
427 }
428
429 impl<R: ::std::io::Read>  Readable<R> for Result<NetAddress, u8> {
430         fn read(reader: &mut R) -> Result<Result<NetAddress, u8>, DecodeError> {
431                 let byte = <u8 as Readable<R>>::read(reader)?;
432                 match byte {
433                         1 => {
434                                 Ok(Ok(NetAddress::IPv4 {
435                                         addr: Readable::read(reader)?,
436                                         port: Readable::read(reader)?,
437                                 }))
438                         },
439                         2 => {
440                                 Ok(Ok(NetAddress::IPv6 {
441                                         addr: Readable::read(reader)?,
442                                         port: Readable::read(reader)?,
443                                 }))
444                         },
445                         3 => {
446                                 Ok(Ok(NetAddress::OnionV2 {
447                                         addr: Readable::read(reader)?,
448                                         port: Readable::read(reader)?,
449                                 }))
450                         },
451                         4 => {
452                                 Ok(Ok(NetAddress::OnionV3 {
453                                         ed25519_pubkey: Readable::read(reader)?,
454                                         checksum: Readable::read(reader)?,
455                                         version: Readable::read(reader)?,
456                                         port: Readable::read(reader)?,
457                                 }))
458                         },
459                         _ => return Ok(Err(byte)),
460                 }
461         }
462 }
463
464 // Only exposed as broadcast of node_announcement should be filtered by node_id
465 /// The unsigned part of a node_announcement
466 #[derive(PartialEq, Clone, Debug)]
467 pub struct UnsignedNodeAnnouncement {
468         pub(crate) features: GlobalFeatures,
469         pub(crate) timestamp: u32,
470         /// The node_id this announcement originated from (don't rebroadcast the node_announcement back
471         /// to this node).
472         pub        node_id: PublicKey,
473         pub(crate) rgb: [u8; 3],
474         pub(crate) alias: [u8; 32],
475         /// List of addresses on which this node is reachable. Note that you may only have up to one
476         /// address of each type, if you have more, they may be silently discarded or we may panic!
477         pub(crate) addresses: Vec<NetAddress>,
478         pub(crate) excess_address_data: Vec<u8>,
479         pub(crate) excess_data: Vec<u8>,
480 }
481 #[derive(PartialEq, Clone)]
482 /// A node_announcement message to be sent or received from a peer
483 pub struct NodeAnnouncement {
484         pub(crate) signature: Signature,
485         pub(crate) contents: UnsignedNodeAnnouncement,
486 }
487
488 // Only exposed as broadcast of channel_announcement should be filtered by node_id
489 /// The unsigned part of a channel_announcement
490 #[derive(PartialEq, Clone, Debug)]
491 pub struct UnsignedChannelAnnouncement {
492         pub(crate) features: GlobalFeatures,
493         pub(crate) chain_hash: Sha256dHash,
494         pub(crate) short_channel_id: u64,
495         /// One of the two node_ids which are endpoints of this channel
496         pub        node_id_1: PublicKey,
497         /// The other of the two node_ids which are endpoints of this channel
498         pub        node_id_2: PublicKey,
499         pub(crate) bitcoin_key_1: PublicKey,
500         pub(crate) bitcoin_key_2: PublicKey,
501         pub(crate) excess_data: Vec<u8>,
502 }
503 /// A channel_announcement message to be sent or received from a peer
504 #[derive(PartialEq, Clone, Debug)]
505 pub struct ChannelAnnouncement {
506         pub(crate) node_signature_1: Signature,
507         pub(crate) node_signature_2: Signature,
508         pub(crate) bitcoin_signature_1: Signature,
509         pub(crate) bitcoin_signature_2: Signature,
510         pub(crate) contents: UnsignedChannelAnnouncement,
511 }
512
513 #[derive(PartialEq, Clone, Debug)]
514 pub(crate) struct UnsignedChannelUpdate {
515         pub(crate) chain_hash: Sha256dHash,
516         pub(crate) short_channel_id: u64,
517         pub(crate) timestamp: u32,
518         pub(crate) flags: u16,
519         pub(crate) cltv_expiry_delta: u16,
520         pub(crate) htlc_minimum_msat: u64,
521         pub(crate) fee_base_msat: u32,
522         pub(crate) fee_proportional_millionths: u32,
523         pub(crate) excess_data: Vec<u8>,
524 }
525 /// A channel_update message to be sent or received from a peer
526 #[derive(PartialEq, Clone, Debug)]
527 pub struct ChannelUpdate {
528         pub(crate) signature: Signature,
529         pub(crate) contents: UnsignedChannelUpdate,
530 }
531
532 /// Used to put an error message in a HandleError
533 #[derive(Clone)]
534 pub enum ErrorAction {
535         /// The peer took some action which made us think they were useless. Disconnect them.
536         DisconnectPeer {
537                 /// An error message which we should make an effort to send before we disconnect.
538                 msg: Option<ErrorMessage>
539         },
540         /// The peer did something harmless that we weren't able to process, just log and ignore
541         IgnoreError,
542         /// The peer did something incorrect. Tell them.
543         SendErrorMessage {
544                 /// The message to send.
545                 msg: ErrorMessage
546         },
547 }
548
549 /// An Err type for failure to process messages.
550 pub struct HandleError { //TODO: rename me
551         /// A human-readable message describing the error
552         pub err: &'static str,
553         /// The action which should be taken against the offending peer.
554         pub action: Option<ErrorAction>, //TODO: Make this required
555 }
556
557 /// Struct used to return values from revoke_and_ack messages, containing a bunch of commitment
558 /// transaction updates if they were pending.
559 #[derive(PartialEq, Clone)]
560 pub struct CommitmentUpdate {
561         /// update_add_htlc messages which should be sent
562         pub update_add_htlcs: Vec<UpdateAddHTLC>,
563         /// update_fulfill_htlc messages which should be sent
564         pub update_fulfill_htlcs: Vec<UpdateFulfillHTLC>,
565         /// update_fail_htlc messages which should be sent
566         pub update_fail_htlcs: Vec<UpdateFailHTLC>,
567         /// update_fail_malformed_htlc messages which should be sent
568         pub update_fail_malformed_htlcs: Vec<UpdateFailMalformedHTLC>,
569         /// An update_fee message which should be sent
570         pub update_fee: Option<UpdateFee>,
571         /// Finally, the commitment_signed message which should be sent
572         pub commitment_signed: CommitmentSigned,
573 }
574
575 /// The information we received from a peer along the route of a payment we originated. This is
576 /// returned by ChannelMessageHandler::handle_update_fail_htlc to be passed into
577 /// RoutingMessageHandler::handle_htlc_fail_channel_update to update our network map.
578 #[derive(Clone)]
579 pub enum HTLCFailChannelUpdate {
580         /// We received an error which included a full ChannelUpdate message.
581         ChannelUpdateMessage {
582                 /// The unwrapped message we received
583                 msg: ChannelUpdate,
584         },
585         /// We received an error which indicated only that a channel has been closed
586         ChannelClosed {
587                 /// The short_channel_id which has now closed.
588                 short_channel_id: u64,
589                 /// when this true, this channel should be permanently removed from the
590                 /// consideration. Otherwise, this channel can be restored as new channel_update is received
591                 is_permanent: bool,
592         },
593         /// We received an error which indicated only that a node has failed
594         NodeFailure {
595                 /// The node_id that has failed.
596                 node_id: PublicKey,
597                 /// when this true, node should be permanently removed from the
598                 /// consideration. Otherwise, the channels connected to this node can be
599                 /// restored as new channel_update is received
600                 is_permanent: bool,
601         }
602 }
603
604 /// Messages could have optional fields to use with extended features
605 /// As we wish to serialize these differently from Option<T>s (Options get a tag byte, but
606 /// OptionalFeild simply gets Present if there are enough bytes to read into it), we have a
607 /// separate enum type for them.
608 #[derive(Clone, PartialEq)]
609 pub enum OptionalField<T> {
610         /// Optional field is included in message
611         Present(T),
612         /// Optional field is absent in message
613         Absent
614 }
615
616 /// A trait to describe an object which can receive channel messages.
617 ///
618 /// Messages MAY be called in parallel when they originate from different their_node_ids, however
619 /// they MUST NOT be called in parallel when the two calls have the same their_node_id.
620 pub trait ChannelMessageHandler : events::MessageSendEventsProvider + Send + Sync {
621         //Channel init:
622         /// Handle an incoming open_channel message from the given peer.
623         fn handle_open_channel(&self, their_node_id: &PublicKey, their_local_features: LocalFeatures, msg: &OpenChannel) -> Result<(), HandleError>;
624         /// Handle an incoming accept_channel message from the given peer.
625         fn handle_accept_channel(&self, their_node_id: &PublicKey, their_local_features: LocalFeatures, msg: &AcceptChannel) -> Result<(), HandleError>;
626         /// Handle an incoming funding_created message from the given peer.
627         fn handle_funding_created(&self, their_node_id: &PublicKey, msg: &FundingCreated) -> Result<(), HandleError>;
628         /// Handle an incoming funding_signed message from the given peer.
629         fn handle_funding_signed(&self, their_node_id: &PublicKey, msg: &FundingSigned) -> Result<(), HandleError>;
630         /// Handle an incoming funding_locked message from the given peer.
631         fn handle_funding_locked(&self, their_node_id: &PublicKey, msg: &FundingLocked) -> Result<(), HandleError>;
632
633         // Channl close:
634         /// Handle an incoming shutdown message from the given peer.
635         fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown) -> Result<(), HandleError>;
636         /// Handle an incoming closing_signed message from the given peer.
637         fn handle_closing_signed(&self, their_node_id: &PublicKey, msg: &ClosingSigned) -> Result<(), HandleError>;
638
639         // HTLC handling:
640         /// Handle an incoming update_add_htlc message from the given peer.
641         fn handle_update_add_htlc(&self, their_node_id: &PublicKey, msg: &UpdateAddHTLC) -> Result<(), HandleError>;
642         /// Handle an incoming update_fulfill_htlc message from the given peer.
643         fn handle_update_fulfill_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFulfillHTLC) -> Result<(), HandleError>;
644         /// Handle an incoming update_fail_htlc message from the given peer.
645         fn handle_update_fail_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFailHTLC) -> Result<(), HandleError>;
646         /// Handle an incoming update_fail_malformed_htlc message from the given peer.
647         fn handle_update_fail_malformed_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFailMalformedHTLC) -> Result<(), HandleError>;
648         /// Handle an incoming commitment_signed message from the given peer.
649         fn handle_commitment_signed(&self, their_node_id: &PublicKey, msg: &CommitmentSigned) -> Result<(), HandleError>;
650         /// Handle an incoming revoke_and_ack message from the given peer.
651         fn handle_revoke_and_ack(&self, their_node_id: &PublicKey, msg: &RevokeAndACK) -> Result<(), HandleError>;
652
653         /// Handle an incoming update_fee message from the given peer.
654         fn handle_update_fee(&self, their_node_id: &PublicKey, msg: &UpdateFee) -> Result<(), HandleError>;
655
656         // Channel-to-announce:
657         /// Handle an incoming announcement_signatures message from the given peer.
658         fn handle_announcement_signatures(&self, their_node_id: &PublicKey, msg: &AnnouncementSignatures) -> Result<(), HandleError>;
659
660         // Connection loss/reestablish:
661         /// Indicates a connection to the peer failed/an existing connection was lost. If no connection
662         /// is believed to be possible in the future (eg they're sending us messages we don't
663         /// understand or indicate they require unknown feature bits), no_connection_possible is set
664         /// and any outstanding channels should be failed.
665         fn peer_disconnected(&self, their_node_id: &PublicKey, no_connection_possible: bool);
666
667         /// Handle a peer reconnecting, possibly generating channel_reestablish message(s).
668         fn peer_connected(&self, their_node_id: &PublicKey);
669         /// Handle an incoming channel_reestablish message from the given peer.
670         fn handle_channel_reestablish(&self, their_node_id: &PublicKey, msg: &ChannelReestablish) -> Result<(), HandleError>;
671
672         // Error:
673         /// Handle an incoming error message from the given peer.
674         fn handle_error(&self, their_node_id: &PublicKey, msg: &ErrorMessage);
675 }
676
677 /// A trait to describe an object which can receive routing messages.
678 pub trait RoutingMessageHandler : Send + Sync {
679         /// Handle an incoming node_announcement message, returning true if it should be forwarded on,
680         /// false or returning an Err otherwise.
681         fn handle_node_announcement(&self, msg: &NodeAnnouncement) -> Result<bool, HandleError>;
682         /// Handle a channel_announcement message, returning true if it should be forwarded on, false
683         /// or returning an Err otherwise.
684         fn handle_channel_announcement(&self, msg: &ChannelAnnouncement) -> Result<bool, HandleError>;
685         /// Handle an incoming channel_update message, returning true if it should be forwarded on,
686         /// false or returning an Err otherwise.
687         fn handle_channel_update(&self, msg: &ChannelUpdate) -> Result<bool, HandleError>;
688         /// Handle some updates to the route graph that we learned due to an outbound failed payment.
689         fn handle_htlc_fail_channel_update(&self, update: &HTLCFailChannelUpdate);
690         /// Gets a subset of the channel announcements and updates required to dump our routing table
691         /// to a remote node, starting at the short_channel_id indicated by starting_point and
692         /// including batch_amount entries.
693         fn get_next_channel_announcements(&self, starting_point: u64, batch_amount: u8) -> Vec<(ChannelAnnouncement, ChannelUpdate, ChannelUpdate)>;
694         /// Gets a subset of the node announcements required to dump our routing table to a remote node,
695         /// starting at the node *after* the provided publickey and including batch_amount entries.
696         /// If None is provided for starting_point, we start at the first node.
697         fn get_next_node_announcements(&self, starting_point: Option<&PublicKey>, batch_amount: u8) -> Vec<NodeAnnouncement>;
698 }
699
700 pub(crate) struct OnionRealm0HopData {
701         pub(crate) short_channel_id: u64,
702         pub(crate) amt_to_forward: u64,
703         pub(crate) outgoing_cltv_value: u32,
704         // 12 bytes of 0-padding
705 }
706
707 mod fuzzy_internal_msgs {
708         // These types aren't intended to be pub, but are exposed for direct fuzzing (as we deserialize
709         // them from untrusted input):
710
711         use super::OnionRealm0HopData;
712         pub struct OnionHopData {
713                 pub(crate) realm: u8,
714                 pub(crate) data: OnionRealm0HopData,
715                 pub(crate) hmac: [u8; 32],
716         }
717         unsafe impl ::util::internal_traits::NoDealloc for OnionHopData{}
718
719         pub struct DecodedOnionErrorPacket {
720                 pub(crate) hmac: [u8; 32],
721                 pub(crate) failuremsg: Vec<u8>,
722                 pub(crate) pad: Vec<u8>,
723         }
724 }
725 #[cfg(feature = "fuzztarget")]
726 pub use self::fuzzy_internal_msgs::*;
727 #[cfg(not(feature = "fuzztarget"))]
728 pub(crate) use self::fuzzy_internal_msgs::*;
729
730 #[derive(Clone)]
731 pub(crate) struct OnionPacket {
732         pub(crate) version: u8,
733         /// In order to ensure we always return an error on Onion decode in compliance with BOLT 4, we
734         /// have to deserialize OnionPackets contained in UpdateAddHTLCs even if the ephemeral public
735         /// key (here) is bogus, so we hold a Result instead of a PublicKey as we'd like.
736         pub(crate) public_key: Result<PublicKey, secp256k1::Error>,
737         pub(crate) hop_data: [u8; 20*65],
738         pub(crate) hmac: [u8; 32],
739 }
740
741 impl PartialEq for OnionPacket {
742         fn eq(&self, other: &OnionPacket) -> bool {
743                 for (i, j) in self.hop_data.iter().zip(other.hop_data.iter()) {
744                         if i != j { return false; }
745                 }
746                 self.version == other.version &&
747                         self.public_key == other.public_key &&
748                         self.hmac == other.hmac
749         }
750 }
751
752 #[derive(Clone, PartialEq)]
753 pub(crate) struct OnionErrorPacket {
754         // This really should be a constant size slice, but the spec lets these things be up to 128KB?
755         // (TODO) We limit it in decode to much lower...
756         pub(crate) data: Vec<u8>,
757 }
758
759 impl Error for DecodeError {
760         fn description(&self) -> &str {
761                 match *self {
762                         DecodeError::UnknownVersion => "Unknown realm byte in Onion packet",
763                         DecodeError::UnknownRequiredFeature => "Unknown required feature preventing decode",
764                         DecodeError::InvalidValue => "Nonsense bytes didn't map to the type they were interpreted as",
765                         DecodeError::ShortRead => "Packet extended beyond the provided bytes",
766                         DecodeError::ExtraAddressesPerType => "More than one address of a single type",
767                         DecodeError::BadLengthDescriptor => "A length descriptor in the packet didn't describe the later data correctly",
768                         DecodeError::Io(ref e) => e.description(),
769                 }
770         }
771 }
772 impl fmt::Display for DecodeError {
773         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
774                 f.write_str(self.description())
775         }
776 }
777
778 impl fmt::Debug for HandleError {
779         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
780                 f.write_str(self.err)
781         }
782 }
783
784 impl From<::std::io::Error> for DecodeError {
785         fn from(e: ::std::io::Error) -> Self {
786                 if e.kind() == ::std::io::ErrorKind::UnexpectedEof {
787                         DecodeError::ShortRead
788                 } else {
789                         DecodeError::Io(e)
790                 }
791         }
792 }
793
794 impl Writeable for OptionalField<Script> {
795         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
796                 match *self {
797                         OptionalField::Present(ref script) => {
798                                 // Note that Writeable for script includes the 16-bit length tag for us
799                                 script.write(w)?;
800                         },
801                         OptionalField::Absent => {}
802                 }
803                 Ok(())
804         }
805 }
806
807 impl<R: Read> Readable<R> for OptionalField<Script> {
808         fn read(r: &mut R) -> Result<Self, DecodeError> {
809                 match <u16 as Readable<R>>::read(r) {
810                         Ok(len) => {
811                                 let mut buf = vec![0; len as usize];
812                                 r.read_exact(&mut buf)?;
813                                 Ok(OptionalField::Present(Script::from(buf)))
814                         },
815                         Err(DecodeError::ShortRead) => Ok(OptionalField::Absent),
816                         Err(e) => Err(e)
817                 }
818         }
819 }
820
821 impl_writeable_len_match!(AcceptChannel, {
822                 {AcceptChannel{ shutdown_scriptpubkey: OptionalField::Present(ref script), .. }, 270 + 2 + script.len()},
823                 {_, 270}
824         }, {
825         temporary_channel_id,
826         dust_limit_satoshis,
827         max_htlc_value_in_flight_msat,
828         channel_reserve_satoshis,
829         htlc_minimum_msat,
830         minimum_depth,
831         to_self_delay,
832         max_accepted_htlcs,
833         funding_pubkey,
834         revocation_basepoint,
835         payment_basepoint,
836         delayed_payment_basepoint,
837         htlc_basepoint,
838         first_per_commitment_point,
839         shutdown_scriptpubkey
840 });
841
842 impl_writeable!(AnnouncementSignatures, 32+8+64*2, {
843         channel_id,
844         short_channel_id,
845         node_signature,
846         bitcoin_signature
847 });
848
849 impl Writeable for ChannelReestablish {
850         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
851                 w.size_hint(if let OptionalField::Present(..) = self.data_loss_protect { 32+2*8+33+32 } else { 32+2*8 });
852                 self.channel_id.write(w)?;
853                 self.next_local_commitment_number.write(w)?;
854                 self.next_remote_commitment_number.write(w)?;
855                 match self.data_loss_protect {
856                         OptionalField::Present(ref data_loss_protect) => {
857                                 (*data_loss_protect).your_last_per_commitment_secret.write(w)?;
858                                 (*data_loss_protect).my_current_per_commitment_point.write(w)?;
859                         },
860                         OptionalField::Absent => {}
861                 }
862                 Ok(())
863         }
864 }
865
866 impl<R: Read> Readable<R> for ChannelReestablish{
867         fn read(r: &mut R) -> Result<Self, DecodeError> {
868                 Ok(Self {
869                         channel_id: Readable::read(r)?,
870                         next_local_commitment_number: Readable::read(r)?,
871                         next_remote_commitment_number: Readable::read(r)?,
872                         data_loss_protect: {
873                                 match <[u8; 32] as Readable<R>>::read(r) {
874                                         Ok(your_last_per_commitment_secret) =>
875                                                 OptionalField::Present(DataLossProtect {
876                                                         your_last_per_commitment_secret,
877                                                         my_current_per_commitment_point: Readable::read(r)?,
878                                                 }),
879                                         Err(DecodeError::ShortRead) => OptionalField::Absent,
880                                         Err(e) => return Err(e)
881                                 }
882                         }
883                 })
884         }
885 }
886
887 impl_writeable!(ClosingSigned, 32+8+64, {
888         channel_id,
889         fee_satoshis,
890         signature
891 });
892
893 impl_writeable_len_match!(CommitmentSigned, {
894                 { CommitmentSigned { ref htlc_signatures, .. }, 32+64+2+htlc_signatures.len()*64 }
895         }, {
896         channel_id,
897         signature,
898         htlc_signatures
899 });
900
901 impl_writeable_len_match!(DecodedOnionErrorPacket, {
902                 { DecodedOnionErrorPacket { ref failuremsg, ref pad, .. }, 32 + 4 + failuremsg.len() + pad.len() }
903         }, {
904         hmac,
905         failuremsg,
906         pad
907 });
908
909 impl_writeable!(FundingCreated, 32+32+2+64, {
910         temporary_channel_id,
911         funding_txid,
912         funding_output_index,
913         signature
914 });
915
916 impl_writeable!(FundingSigned, 32+64, {
917         channel_id,
918         signature
919 });
920
921 impl_writeable!(FundingLocked, 32+33, {
922         channel_id,
923         next_per_commitment_point
924 });
925
926 impl_writeable_len_match!(GlobalFeatures, {
927                 { GlobalFeatures { ref flags }, flags.len() + 2 }
928         }, {
929         flags
930 });
931
932 impl_writeable_len_match!(LocalFeatures, {
933                 { LocalFeatures { ref flags }, flags.len() + 2 }
934         }, {
935         flags
936 });
937
938 impl_writeable_len_match!(Init, {
939                 { Init { ref global_features, ref local_features }, global_features.flags.len() + local_features.flags.len() + 4 }
940         }, {
941         global_features,
942         local_features
943 });
944
945 impl_writeable_len_match!(OpenChannel, {
946                 { OpenChannel { shutdown_scriptpubkey: OptionalField::Present(ref script), .. }, 319 + 2 + script.len() },
947                 { _, 319 }
948         }, {
949         chain_hash,
950         temporary_channel_id,
951         funding_satoshis,
952         push_msat,
953         dust_limit_satoshis,
954         max_htlc_value_in_flight_msat,
955         channel_reserve_satoshis,
956         htlc_minimum_msat,
957         feerate_per_kw,
958         to_self_delay,
959         max_accepted_htlcs,
960         funding_pubkey,
961         revocation_basepoint,
962         payment_basepoint,
963         delayed_payment_basepoint,
964         htlc_basepoint,
965         first_per_commitment_point,
966         channel_flags,
967         shutdown_scriptpubkey
968 });
969
970 impl_writeable!(RevokeAndACK, 32+32+33, {
971         channel_id,
972         per_commitment_secret,
973         next_per_commitment_point
974 });
975
976 impl_writeable_len_match!(Shutdown, {
977                 { Shutdown { ref scriptpubkey, .. }, 32 + 2 + scriptpubkey.len() }
978         }, {
979         channel_id,
980         scriptpubkey
981 });
982
983 impl_writeable_len_match!(UpdateFailHTLC, {
984                 { UpdateFailHTLC { ref reason, .. }, 32 + 10 + reason.data.len() }
985         }, {
986         channel_id,
987         htlc_id,
988         reason
989 });
990
991 impl_writeable!(UpdateFailMalformedHTLC, 32+8+32+2, {
992         channel_id,
993         htlc_id,
994         sha256_of_onion,
995         failure_code
996 });
997
998 impl_writeable!(UpdateFee, 32+4, {
999         channel_id,
1000         feerate_per_kw
1001 });
1002
1003 impl_writeable!(UpdateFulfillHTLC, 32+8+32, {
1004         channel_id,
1005         htlc_id,
1006         payment_preimage
1007 });
1008
1009 impl_writeable_len_match!(OnionErrorPacket, {
1010                 { OnionErrorPacket { ref data, .. }, 2 + data.len() }
1011         }, {
1012         data
1013 });
1014
1015 impl Writeable for OnionPacket {
1016         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1017                 w.size_hint(1 + 33 + 20*65 + 32);
1018                 self.version.write(w)?;
1019                 match self.public_key {
1020                         Ok(pubkey) => pubkey.write(w)?,
1021                         Err(_) => [0u8;33].write(w)?,
1022                 }
1023                 w.write_all(&self.hop_data)?;
1024                 self.hmac.write(w)?;
1025                 Ok(())
1026         }
1027 }
1028
1029 impl<R: Read> Readable<R> for OnionPacket {
1030         fn read(r: &mut R) -> Result<Self, DecodeError> {
1031                 Ok(OnionPacket {
1032                         version: Readable::read(r)?,
1033                         public_key: {
1034                                 let mut buf = [0u8;33];
1035                                 r.read_exact(&mut buf)?;
1036                                 PublicKey::from_slice(&buf)
1037                         },
1038                         hop_data: Readable::read(r)?,
1039                         hmac: Readable::read(r)?,
1040                 })
1041         }
1042 }
1043
1044 impl_writeable!(UpdateAddHTLC, 32+8+8+32+4+1366, {
1045         channel_id,
1046         htlc_id,
1047         amount_msat,
1048         payment_hash,
1049         cltv_expiry,
1050         onion_routing_packet
1051 });
1052
1053 impl Writeable for OnionRealm0HopData {
1054         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1055                 w.size_hint(32);
1056                 self.short_channel_id.write(w)?;
1057                 self.amt_to_forward.write(w)?;
1058                 self.outgoing_cltv_value.write(w)?;
1059                 w.write_all(&[0;12])?;
1060                 Ok(())
1061         }
1062 }
1063
1064 impl<R: Read> Readable<R> for OnionRealm0HopData {
1065         fn read(r: &mut R) -> Result<Self, DecodeError> {
1066                 Ok(OnionRealm0HopData {
1067                         short_channel_id: Readable::read(r)?,
1068                         amt_to_forward: Readable::read(r)?,
1069                         outgoing_cltv_value: {
1070                                 let v: u32 = Readable::read(r)?;
1071                                 r.read_exact(&mut [0; 12])?;
1072                                 v
1073                         }
1074                 })
1075         }
1076 }
1077
1078 impl Writeable for OnionHopData {
1079         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1080                 w.size_hint(65);
1081                 self.realm.write(w)?;
1082                 self.data.write(w)?;
1083                 self.hmac.write(w)?;
1084                 Ok(())
1085         }
1086 }
1087
1088 impl<R: Read> Readable<R> for OnionHopData {
1089         fn read(r: &mut R) -> Result<Self, DecodeError> {
1090                 Ok(OnionHopData {
1091                         realm: {
1092                                 let r: u8 = Readable::read(r)?;
1093                                 if r != 0 {
1094                                         return Err(DecodeError::UnknownVersion);
1095                                 }
1096                                 r
1097                         },
1098                         data: Readable::read(r)?,
1099                         hmac: Readable::read(r)?,
1100                 })
1101         }
1102 }
1103
1104 impl Writeable for Ping {
1105         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1106                 w.size_hint(self.byteslen as usize + 4);
1107                 self.ponglen.write(w)?;
1108                 vec![0u8; self.byteslen as usize].write(w)?; // size-unchecked write
1109                 Ok(())
1110         }
1111 }
1112
1113 impl<R: Read> Readable<R> for Ping {
1114         fn read(r: &mut R) -> Result<Self, DecodeError> {
1115                 Ok(Ping {
1116                         ponglen: Readable::read(r)?,
1117                         byteslen: {
1118                                 let byteslen = Readable::read(r)?;
1119                                 r.read_exact(&mut vec![0u8; byteslen as usize][..])?;
1120                                 byteslen
1121                         }
1122                 })
1123         }
1124 }
1125
1126 impl Writeable for Pong {
1127         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1128                 w.size_hint(self.byteslen as usize + 2);
1129                 vec![0u8; self.byteslen as usize].write(w)?; // size-unchecked write
1130                 Ok(())
1131         }
1132 }
1133
1134 impl<R: Read> Readable<R> for Pong {
1135         fn read(r: &mut R) -> Result<Self, DecodeError> {
1136                 Ok(Pong {
1137                         byteslen: {
1138                                 let byteslen = Readable::read(r)?;
1139                                 r.read_exact(&mut vec![0u8; byteslen as usize][..])?;
1140                                 byteslen
1141                         }
1142                 })
1143         }
1144 }
1145
1146 impl Writeable for UnsignedChannelAnnouncement {
1147         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1148                 w.size_hint(2 + 2*32 + 4*33 + self.features.flags.len() + self.excess_data.len());
1149                 self.features.write(w)?;
1150                 self.chain_hash.write(w)?;
1151                 self.short_channel_id.write(w)?;
1152                 self.node_id_1.write(w)?;
1153                 self.node_id_2.write(w)?;
1154                 self.bitcoin_key_1.write(w)?;
1155                 self.bitcoin_key_2.write(w)?;
1156                 w.write_all(&self.excess_data[..])?;
1157                 Ok(())
1158         }
1159 }
1160
1161 impl<R: Read> Readable<R> for UnsignedChannelAnnouncement {
1162         fn read(r: &mut R) -> Result<Self, DecodeError> {
1163                 Ok(Self {
1164                         features: {
1165                                 let f: GlobalFeatures = Readable::read(r)?;
1166                                 if f.requires_unknown_bits() {
1167                                         return Err(DecodeError::UnknownRequiredFeature);
1168                                 }
1169                                 f
1170                         },
1171                         chain_hash: Readable::read(r)?,
1172                         short_channel_id: Readable::read(r)?,
1173                         node_id_1: Readable::read(r)?,
1174                         node_id_2: Readable::read(r)?,
1175                         bitcoin_key_1: Readable::read(r)?,
1176                         bitcoin_key_2: Readable::read(r)?,
1177                         excess_data: {
1178                                 let mut excess_data = vec![];
1179                                 r.read_to_end(&mut excess_data)?;
1180                                 excess_data
1181                         },
1182                 })
1183         }
1184 }
1185
1186 impl_writeable_len_match!(ChannelAnnouncement, {
1187                 { ChannelAnnouncement { contents: UnsignedChannelAnnouncement {ref features, ref excess_data, ..}, .. },
1188                         2 + 2*32 + 4*33 + features.flags.len() + excess_data.len() + 4*64 }
1189         }, {
1190         node_signature_1,
1191         node_signature_2,
1192         bitcoin_signature_1,
1193         bitcoin_signature_2,
1194         contents
1195 });
1196
1197 impl Writeable for UnsignedChannelUpdate {
1198         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1199                 w.size_hint(64 + self.excess_data.len());
1200                 self.chain_hash.write(w)?;
1201                 self.short_channel_id.write(w)?;
1202                 self.timestamp.write(w)?;
1203                 self.flags.write(w)?;
1204                 self.cltv_expiry_delta.write(w)?;
1205                 self.htlc_minimum_msat.write(w)?;
1206                 self.fee_base_msat.write(w)?;
1207                 self.fee_proportional_millionths.write(w)?;
1208                 w.write_all(&self.excess_data[..])?;
1209                 Ok(())
1210         }
1211 }
1212
1213 impl<R: Read> Readable<R> for UnsignedChannelUpdate {
1214         fn read(r: &mut R) -> Result<Self, DecodeError> {
1215                 Ok(Self {
1216                         chain_hash: Readable::read(r)?,
1217                         short_channel_id: Readable::read(r)?,
1218                         timestamp: Readable::read(r)?,
1219                         flags: Readable::read(r)?,
1220                         cltv_expiry_delta: Readable::read(r)?,
1221                         htlc_minimum_msat: Readable::read(r)?,
1222                         fee_base_msat: Readable::read(r)?,
1223                         fee_proportional_millionths: Readable::read(r)?,
1224                         excess_data: {
1225                                 let mut excess_data = vec![];
1226                                 r.read_to_end(&mut excess_data)?;
1227                                 excess_data
1228                         },
1229                 })
1230         }
1231 }
1232
1233 impl_writeable_len_match!(ChannelUpdate, {
1234                 { ChannelUpdate { contents: UnsignedChannelUpdate {ref excess_data, ..}, .. },
1235                         64 + excess_data.len() + 64 }
1236         }, {
1237         signature,
1238         contents
1239 });
1240
1241 impl Writeable for ErrorMessage {
1242         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1243                 w.size_hint(32 + 2 + self.data.len());
1244                 self.channel_id.write(w)?;
1245                 (self.data.len() as u16).write(w)?;
1246                 w.write_all(self.data.as_bytes())?;
1247                 Ok(())
1248         }
1249 }
1250
1251 impl<R: Read> Readable<R> for ErrorMessage {
1252         fn read(r: &mut R) -> Result<Self, DecodeError> {
1253                 Ok(Self {
1254                         channel_id: Readable::read(r)?,
1255                         data: {
1256                                 let mut sz: usize = <u16 as Readable<R>>::read(r)? as usize;
1257                                 let mut data = vec![];
1258                                 let data_len = r.read_to_end(&mut data)?;
1259                                 sz = cmp::min(data_len, sz);
1260                                 match String::from_utf8(data[..sz as usize].to_vec()) {
1261                                         Ok(s) => s,
1262                                         Err(_) => return Err(DecodeError::InvalidValue),
1263                                 }
1264                         }
1265                 })
1266         }
1267 }
1268
1269 impl Writeable for UnsignedNodeAnnouncement {
1270         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
1271                 w.size_hint(64 + 76 + self.features.flags.len() + self.addresses.len()*38 + self.excess_address_data.len() + self.excess_data.len());
1272                 self.features.write(w)?;
1273                 self.timestamp.write(w)?;
1274                 self.node_id.write(w)?;
1275                 w.write_all(&self.rgb)?;
1276                 self.alias.write(w)?;
1277
1278                 let mut addrs_to_encode = self.addresses.clone();
1279                 addrs_to_encode.sort_unstable_by(|a, b| { a.get_id().cmp(&b.get_id()) });
1280                 addrs_to_encode.dedup_by(|a, b| { a.get_id() == b.get_id() });
1281                 let mut addr_len = 0;
1282                 for addr in &addrs_to_encode {
1283                         addr_len += 1 + addr.len();
1284                 }
1285                 (addr_len + self.excess_address_data.len() as u16).write(w)?;
1286                 for addr in addrs_to_encode {
1287                         addr.write(w)?;
1288                 }
1289                 w.write_all(&self.excess_address_data[..])?;
1290                 w.write_all(&self.excess_data[..])?;
1291                 Ok(())
1292         }
1293 }
1294
1295 impl<R: Read> Readable<R> for UnsignedNodeAnnouncement {
1296         fn read(r: &mut R) -> Result<Self, DecodeError> {
1297                 let features: GlobalFeatures = Readable::read(r)?;
1298                 if features.requires_unknown_bits() {
1299                         return Err(DecodeError::UnknownRequiredFeature);
1300                 }
1301                 let timestamp: u32 = Readable::read(r)?;
1302                 let node_id: PublicKey = Readable::read(r)?;
1303                 let mut rgb = [0; 3];
1304                 r.read_exact(&mut rgb)?;
1305                 let alias: [u8; 32] = Readable::read(r)?;
1306
1307                 let addr_len: u16 = Readable::read(r)?;
1308                 let mut addresses: Vec<NetAddress> = Vec::with_capacity(4);
1309                 let mut addr_readpos = 0;
1310                 let mut excess = false;
1311                 let mut excess_byte = 0;
1312                 loop {
1313                         if addr_len <= addr_readpos { break; }
1314                         match Readable::read(r) {
1315                                 Ok(Ok(addr)) => {
1316                                         match addr {
1317                                                 NetAddress::IPv4 { .. } => {
1318                                                         if addresses.len() > 0 {
1319                                                                 return Err(DecodeError::ExtraAddressesPerType);
1320                                                         }
1321                                                 },
1322                                                 NetAddress::IPv6 { .. } => {
1323                                                         if addresses.len() > 1 || (addresses.len() == 1 && addresses[0].get_id() != 1) {
1324                                                                 return Err(DecodeError::ExtraAddressesPerType);
1325                                                         }
1326                                                 },
1327                                                 NetAddress::OnionV2 { .. } => {
1328                                                         if addresses.len() > 2 || (addresses.len() > 0 && addresses.last().unwrap().get_id() > 2) {
1329                                                                 return Err(DecodeError::ExtraAddressesPerType);
1330                                                         }
1331                                                 },
1332                                                 NetAddress::OnionV3 { .. } => {
1333                                                         if addresses.len() > 3 || (addresses.len() > 0 && addresses.last().unwrap().get_id() > 3) {
1334                                                                 return Err(DecodeError::ExtraAddressesPerType);
1335                                                         }
1336                                                 },
1337                                         }
1338                                         if addr_len < addr_readpos + 1 + addr.len() {
1339                                                 return Err(DecodeError::BadLengthDescriptor);
1340                                         }
1341                                         addr_readpos += (1 + addr.len()) as u16;
1342                                         addresses.push(addr);
1343                                 },
1344                                 Ok(Err(unknown_descriptor)) => {
1345                                         excess = true;
1346                                         excess_byte = unknown_descriptor;
1347                                         break;
1348                                 },
1349                                 Err(DecodeError::ShortRead) => return Err(DecodeError::BadLengthDescriptor),
1350                                 Err(e) => return Err(e),
1351                         }
1352                 }
1353
1354                 let mut excess_data = vec![];
1355                 let excess_address_data = if addr_readpos < addr_len {
1356                         let mut excess_address_data = vec![0; (addr_len - addr_readpos) as usize];
1357                         r.read_exact(&mut excess_address_data[if excess { 1 } else { 0 }..])?;
1358                         if excess {
1359                                 excess_address_data[0] = excess_byte;
1360                         }
1361                         excess_address_data
1362                 } else {
1363                         if excess {
1364                                 excess_data.push(excess_byte);
1365                         }
1366                         Vec::new()
1367                 };
1368                 r.read_to_end(&mut excess_data)?;
1369                 Ok(UnsignedNodeAnnouncement {
1370                         features,
1371                         timestamp,
1372                         node_id,
1373                         rgb,
1374                         alias,
1375                         addresses,
1376                         excess_address_data,
1377                         excess_data,
1378                 })
1379         }
1380 }
1381
1382 impl_writeable_len_match!(NodeAnnouncement, {
1383                 { NodeAnnouncement { contents: UnsignedNodeAnnouncement { ref features, ref addresses, ref excess_address_data, ref excess_data, ..}, .. },
1384                         64 + 76 + features.flags.len() + addresses.len()*38 + excess_address_data.len() + excess_data.len() }
1385         }, {
1386         signature,
1387         contents
1388 });
1389
1390 #[cfg(test)]
1391 mod tests {
1392         use hex;
1393         use ln::msgs;
1394         use ln::msgs::{GlobalFeatures, LocalFeatures, OptionalField, OnionErrorPacket};
1395         use ln::channelmanager::{PaymentPreimage, PaymentHash};
1396         use util::ser::Writeable;
1397
1398         use bitcoin_hashes::sha256d::Hash as Sha256dHash;
1399         use bitcoin_hashes::hex::FromHex;
1400         use bitcoin::util::address::Address;
1401         use bitcoin::network::constants::Network;
1402         use bitcoin::blockdata::script::Builder;
1403         use bitcoin::blockdata::opcodes;
1404
1405         use secp256k1::key::{PublicKey,SecretKey};
1406         use secp256k1::{Secp256k1, Message};
1407
1408         #[test]
1409         fn encoding_channel_reestablish_no_secret() {
1410                 let cr = msgs::ChannelReestablish {
1411                         channel_id: [4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0],
1412                         next_local_commitment_number: 3,
1413                         next_remote_commitment_number: 4,
1414                         data_loss_protect: OptionalField::Absent,
1415                 };
1416
1417                 let encoded_value = cr.encode();
1418                 assert_eq!(
1419                         encoded_value,
1420                         vec![4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4]
1421                 );
1422         }
1423
1424         #[test]
1425         fn encoding_channel_reestablish_with_secret() {
1426                 let public_key = {
1427                         let secp_ctx = Secp256k1::new();
1428                         PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap())
1429                 };
1430
1431                 let cr = msgs::ChannelReestablish {
1432                         channel_id: [4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0],
1433                         next_local_commitment_number: 3,
1434                         next_remote_commitment_number: 4,
1435                         data_loss_protect: OptionalField::Present(msgs::DataLossProtect { your_last_per_commitment_secret: [9;32], my_current_per_commitment_point: public_key}),
1436                 };
1437
1438                 let encoded_value = cr.encode();
1439                 assert_eq!(
1440                         encoded_value,
1441                         vec![4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 27, 132, 197, 86, 123, 18, 100, 64, 153, 93, 62, 213, 170, 186, 5, 101, 215, 30, 24, 52, 96, 72, 25, 255, 156, 23, 245, 233, 213, 221, 7, 143]
1442                 );
1443         }
1444
1445         macro_rules! get_keys_from {
1446                 ($slice: expr, $secp_ctx: expr) => {
1447                         {
1448                                 let privkey = SecretKey::from_slice(&hex::decode($slice).unwrap()[..]).unwrap();
1449                                 let pubkey = PublicKey::from_secret_key(&$secp_ctx, &privkey);
1450                                 (privkey, pubkey)
1451                         }
1452                 }
1453         }
1454
1455         macro_rules! get_sig_on {
1456                 ($privkey: expr, $ctx: expr, $string: expr) => {
1457                         {
1458                                 let sighash = Message::from_slice(&$string.into_bytes()[..]).unwrap();
1459                                 $ctx.sign(&sighash, &$privkey)
1460                         }
1461                 }
1462         }
1463
1464         #[test]
1465         fn encoding_announcement_signatures() {
1466                 let secp_ctx = Secp256k1::new();
1467                 let (privkey, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1468                 let sig_1 = get_sig_on!(privkey, secp_ctx, String::from("01010101010101010101010101010101"));
1469                 let sig_2 = get_sig_on!(privkey, secp_ctx, String::from("02020202020202020202020202020202"));
1470                 let announcement_signatures = msgs::AnnouncementSignatures {
1471                         channel_id: [4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0],
1472                         short_channel_id: 2316138423780173,
1473                         node_signature: sig_1,
1474                         bitcoin_signature: sig_2,
1475                 };
1476
1477                 let encoded_value = announcement_signatures.encode();
1478                 assert_eq!(encoded_value, hex::decode("040000000000000005000000000000000600000000000000070000000000000000083a840000034dd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073acf9953cef4700860f5967838eba2bae89288ad188ebf8b20bf995c3ea53a26df1876d0a3a0e13172ba286a673140190c02ba9da60a2e43a745188c8a83c7f3ef").unwrap());
1479         }
1480
1481         fn do_encoding_channel_announcement(unknown_features_bits: bool, non_bitcoin_chain_hash: bool, excess_data: bool) {
1482                 let secp_ctx = Secp256k1::new();
1483                 let (privkey_1, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1484                 let (privkey_2, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
1485                 let (privkey_3, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
1486                 let (privkey_4, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
1487                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1488                 let sig_2 = get_sig_on!(privkey_2, secp_ctx, String::from("01010101010101010101010101010101"));
1489                 let sig_3 = get_sig_on!(privkey_3, secp_ctx, String::from("01010101010101010101010101010101"));
1490                 let sig_4 = get_sig_on!(privkey_4, secp_ctx, String::from("01010101010101010101010101010101"));
1491                 let mut features = GlobalFeatures::new();
1492                 if unknown_features_bits {
1493                         features.flags = vec![0xFF, 0xFF];
1494                 }
1495                 let unsigned_channel_announcement = msgs::UnsignedChannelAnnouncement {
1496                         features,
1497                         chain_hash: if !non_bitcoin_chain_hash { Sha256dHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap() } else { Sha256dHash::from_hex("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943").unwrap() },
1498                         short_channel_id: 2316138423780173,
1499                         node_id_1: pubkey_1,
1500                         node_id_2: pubkey_2,
1501                         bitcoin_key_1: pubkey_3,
1502                         bitcoin_key_2: pubkey_4,
1503                         excess_data: if excess_data { vec![10, 0, 0, 20, 0, 0, 30, 0, 0, 40] } else { Vec::new() },
1504                 };
1505                 let channel_announcement = msgs::ChannelAnnouncement {
1506                         node_signature_1: sig_1,
1507                         node_signature_2: sig_2,
1508                         bitcoin_signature_1: sig_3,
1509                         bitcoin_signature_2: sig_4,
1510                         contents: unsigned_channel_announcement,
1511                 };
1512                 let encoded_value = channel_announcement.encode();
1513                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a1735b6a427e80d5fe7cd90a2f4ee08dc9c27cda7c35a4172e5d85b12c49d4232537e98f9b1f3c5e6989a8b9644e90e8918127680dbd0d4043510840fc0f1e11a216c280b5395a2546e7e4b2663e04f811622f15a4f91e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d2692b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap();
1514                 if unknown_features_bits {
1515                         target_value.append(&mut hex::decode("0002ffff").unwrap());
1516                 } else {
1517                         target_value.append(&mut hex::decode("0000").unwrap());
1518                 }
1519                 if non_bitcoin_chain_hash {
1520                         target_value.append(&mut hex::decode("43497fd7f826957108f4a30fd9cec3aeba79972084e90ead01ea330900000000").unwrap());
1521                 } else {
1522                         target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
1523                 }
1524                 target_value.append(&mut hex::decode("00083a840000034d031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b").unwrap());
1525                 if excess_data {
1526                         target_value.append(&mut hex::decode("0a00001400001e000028").unwrap());
1527                 }
1528                 assert_eq!(encoded_value, target_value);
1529         }
1530
1531         #[test]
1532         fn encoding_channel_announcement() {
1533                 do_encoding_channel_announcement(false, false, false);
1534                 do_encoding_channel_announcement(true, false, false);
1535                 do_encoding_channel_announcement(true, true, false);
1536                 do_encoding_channel_announcement(true, true, true);
1537                 do_encoding_channel_announcement(false, true, true);
1538                 do_encoding_channel_announcement(false, false, true);
1539                 do_encoding_channel_announcement(false, true, false);
1540                 do_encoding_channel_announcement(true, false, true);
1541         }
1542
1543         fn do_encoding_node_announcement(unknown_features_bits: bool, ipv4: bool, ipv6: bool, onionv2: bool, onionv3: bool, excess_address_data: bool, excess_data: bool) {
1544                 let secp_ctx = Secp256k1::new();
1545                 let (privkey_1, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1546                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1547                 let mut features = GlobalFeatures::new();
1548                 if unknown_features_bits {
1549                         features.flags = vec![0xFF, 0xFF];
1550                 }
1551                 let mut addresses = Vec::new();
1552                 if ipv4 {
1553                         addresses.push(msgs::NetAddress::IPv4 {
1554                                 addr: [255, 254, 253, 252],
1555                                 port: 9735
1556                         });
1557                 }
1558                 if ipv6 {
1559                         addresses.push(msgs::NetAddress::IPv6 {
1560                                 addr: [255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240],
1561                                 port: 9735
1562                         });
1563                 }
1564                 if onionv2 {
1565                         addresses.push(msgs::NetAddress::OnionV2 {
1566                                 addr: [255, 254, 253, 252, 251, 250, 249, 248, 247, 246],
1567                                 port: 9735
1568                         });
1569                 }
1570                 if onionv3 {
1571                         addresses.push(msgs::NetAddress::OnionV3 {
1572                                 ed25519_pubkey: [255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240, 239, 238, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 224],
1573                                 checksum: 32,
1574                                 version: 16,
1575                                 port: 9735
1576                         });
1577                 }
1578                 let mut addr_len = 0;
1579                 for addr in &addresses {
1580                         addr_len += addr.len() + 1;
1581                 }
1582                 let unsigned_node_announcement = msgs::UnsignedNodeAnnouncement {
1583                         features,
1584                         timestamp: 20190119,
1585                         node_id: pubkey_1,
1586                         rgb: [32; 3],
1587                         alias: [16;32],
1588                         addresses,
1589                         excess_address_data: if excess_address_data { vec![33, 108, 40, 11, 83, 149, 162, 84, 110, 126, 75, 38, 99, 224, 79, 129, 22, 34, 241, 90, 79, 146, 232, 58, 162, 233, 43, 162, 165, 115, 193, 57, 20, 44, 84, 174, 99, 7, 42, 30, 193, 238, 125, 192, 192, 75, 222, 92, 132, 120, 6, 23, 42, 160, 92, 146, 194, 42, 232, 227, 8, 209, 210, 105] } else { Vec::new() },
1590                         excess_data: if excess_data { vec![59, 18, 204, 25, 92, 224, 162, 209, 189, 166, 168, 139, 239, 161, 159, 160, 127, 81, 202, 167, 92, 232, 56, 55, 242, 137, 101, 96, 11, 138, 172, 171, 8, 85, 255, 176, 231, 65, 236, 95, 124, 65, 66, 30, 152, 41, 169, 212, 134, 17, 200, 200, 49, 247, 27, 229, 234, 115, 230, 101, 148, 151, 127, 253] } else { Vec::new() },
1591                 };
1592                 addr_len += unsigned_node_announcement.excess_address_data.len() as u16;
1593                 let node_announcement = msgs::NodeAnnouncement {
1594                         signature: sig_1,
1595                         contents: unsigned_node_announcement,
1596                 };
1597                 let encoded_value = node_announcement.encode();
1598                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1599                 if unknown_features_bits {
1600                         target_value.append(&mut hex::decode("0002ffff").unwrap());
1601                 } else {
1602                         target_value.append(&mut hex::decode("0000").unwrap());
1603                 }
1604                 target_value.append(&mut hex::decode("013413a7031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f2020201010101010101010101010101010101010101010101010101010101010101010").unwrap());
1605                 target_value.append(&mut vec![(addr_len >> 8) as u8, addr_len as u8]);
1606                 if ipv4 {
1607                         target_value.append(&mut hex::decode("01fffefdfc2607").unwrap());
1608                 }
1609                 if ipv6 {
1610                         target_value.append(&mut hex::decode("02fffefdfcfbfaf9f8f7f6f5f4f3f2f1f02607").unwrap());
1611                 }
1612                 if onionv2 {
1613                         target_value.append(&mut hex::decode("03fffefdfcfbfaf9f8f7f62607").unwrap());
1614                 }
1615                 if onionv3 {
1616                         target_value.append(&mut hex::decode("04fffefdfcfbfaf9f8f7f6f5f4f3f2f1f0efeeedecebeae9e8e7e6e5e4e3e2e1e00020102607").unwrap());
1617                 }
1618                 if excess_address_data {
1619                         target_value.append(&mut hex::decode("216c280b5395a2546e7e4b2663e04f811622f15a4f92e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d269").unwrap());
1620                 }
1621                 if excess_data {
1622                         target_value.append(&mut hex::decode("3b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap());
1623                 }
1624                 assert_eq!(encoded_value, target_value);
1625         }
1626
1627         #[test]
1628         fn encoding_node_announcement() {
1629                 do_encoding_node_announcement(true, true, true, true, true, true, true);
1630                 do_encoding_node_announcement(false, false, false, false, false, false, false);
1631                 do_encoding_node_announcement(false, true, false, false, false, false, false);
1632                 do_encoding_node_announcement(false, false, true, false, false, false, false);
1633                 do_encoding_node_announcement(false, false, false, true, false, false, false);
1634                 do_encoding_node_announcement(false, false, false, false, true, false, false);
1635                 do_encoding_node_announcement(false, false, false, false, false, true, false);
1636                 do_encoding_node_announcement(false, true, false, true, false, true, false);
1637                 do_encoding_node_announcement(false, false, true, false, true, false, false);
1638         }
1639
1640         fn do_encoding_channel_update(non_bitcoin_chain_hash: bool, direction: bool, disable: bool, htlc_maximum_msat: bool) {
1641                 let secp_ctx = Secp256k1::new();
1642                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1643                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1644                 let unsigned_channel_update = msgs::UnsignedChannelUpdate {
1645                         chain_hash: if !non_bitcoin_chain_hash { Sha256dHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap() } else { Sha256dHash::from_hex("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943").unwrap() },
1646                         short_channel_id: 2316138423780173,
1647                         timestamp: 20190119,
1648                         flags: if direction { 1 } else { 0 } | if disable { 1 << 1 } else { 0 } | if htlc_maximum_msat { 1 << 8 } else { 0 },
1649                         cltv_expiry_delta: 144,
1650                         htlc_minimum_msat: 1000000,
1651                         fee_base_msat: 10000,
1652                         fee_proportional_millionths: 20,
1653                         excess_data: if htlc_maximum_msat { vec![0, 0, 0, 0, 59, 154, 202, 0] } else { Vec::new() }
1654                 };
1655                 let channel_update = msgs::ChannelUpdate {
1656                         signature: sig_1,
1657                         contents: unsigned_channel_update
1658                 };
1659                 let encoded_value = channel_update.encode();
1660                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1661                 if non_bitcoin_chain_hash {
1662                         target_value.append(&mut hex::decode("43497fd7f826957108f4a30fd9cec3aeba79972084e90ead01ea330900000000").unwrap());
1663                 } else {
1664                         target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
1665                 }
1666                 target_value.append(&mut hex::decode("00083a840000034d013413a7").unwrap());
1667                 if htlc_maximum_msat {
1668                         target_value.append(&mut hex::decode("01").unwrap());
1669                 } else {
1670                         target_value.append(&mut hex::decode("00").unwrap());
1671                 }
1672                 target_value.append(&mut hex::decode("00").unwrap());
1673                 if direction {
1674                         let flag = target_value.last_mut().unwrap();
1675                         *flag = 1;
1676                 }
1677                 if disable {
1678                         let flag = target_value.last_mut().unwrap();
1679                         *flag = *flag | 1 << 1;
1680                 }
1681                 target_value.append(&mut hex::decode("009000000000000f42400000271000000014").unwrap());
1682                 if htlc_maximum_msat {
1683                         target_value.append(&mut hex::decode("000000003b9aca00").unwrap());
1684                 }
1685                 assert_eq!(encoded_value, target_value);
1686         }
1687
1688         #[test]
1689         fn encoding_channel_update() {
1690                 do_encoding_channel_update(false, false, false, false);
1691                 do_encoding_channel_update(true, false, false, false);
1692                 do_encoding_channel_update(false, true, false, false);
1693                 do_encoding_channel_update(false, false, true, false);
1694                 do_encoding_channel_update(false, false, false, true);
1695                 do_encoding_channel_update(true, true, true, true);
1696         }
1697
1698         fn do_encoding_open_channel(non_bitcoin_chain_hash: bool, random_bit: bool, shutdown: bool) {
1699                 let secp_ctx = Secp256k1::new();
1700                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1701                 let (_, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
1702                 let (_, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
1703                 let (_, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
1704                 let (_, pubkey_5) = get_keys_from!("0505050505050505050505050505050505050505050505050505050505050505", secp_ctx);
1705                 let (_, pubkey_6) = get_keys_from!("0606060606060606060606060606060606060606060606060606060606060606", secp_ctx);
1706                 let open_channel = msgs::OpenChannel {
1707                         chain_hash: if !non_bitcoin_chain_hash { Sha256dHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap() } else { Sha256dHash::from_hex("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943").unwrap() },
1708                         temporary_channel_id: [2; 32],
1709                         funding_satoshis: 1311768467284833366,
1710                         push_msat: 2536655962884945560,
1711                         dust_limit_satoshis: 3608586615801332854,
1712                         max_htlc_value_in_flight_msat: 8517154655701053848,
1713                         channel_reserve_satoshis: 8665828695742877976,
1714                         htlc_minimum_msat: 2316138423780173,
1715                         feerate_per_kw: 821716,
1716                         to_self_delay: 49340,
1717                         max_accepted_htlcs: 49340,
1718                         funding_pubkey: pubkey_1,
1719                         revocation_basepoint: pubkey_2,
1720                         payment_basepoint: pubkey_3,
1721                         delayed_payment_basepoint: pubkey_4,
1722                         htlc_basepoint: pubkey_5,
1723                         first_per_commitment_point: pubkey_6,
1724                         channel_flags: if random_bit { 1 << 5 } else { 0 },
1725                         shutdown_scriptpubkey: if shutdown { OptionalField::Present(Address::p2pkh(&::bitcoin::PublicKey{compressed: true, key: pubkey_1}, Network::Testnet).script_pubkey()) } else { OptionalField::Absent }
1726                 };
1727                 let encoded_value = open_channel.encode();
1728                 let mut target_value = Vec::new();
1729                 if non_bitcoin_chain_hash {
1730                         target_value.append(&mut hex::decode("43497fd7f826957108f4a30fd9cec3aeba79972084e90ead01ea330900000000").unwrap());
1731                 } else {
1732                         target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
1733                 }
1734                 target_value.append(&mut hex::decode("02020202020202020202020202020202020202020202020202020202020202021234567890123456233403289122369832144668701144767633030896203198784335490624111800083a840000034d000c89d4c0bcc0bc031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b0362c0a046dacce86ddd0343c6d3c7c79c2208ba0d9c9cf24a6d046d21d21f90f703f006a18d5653c4edf5391ff23a61f03ff83d237e880ee61187fa9f379a028e0a").unwrap());
1735                 if random_bit {
1736                         target_value.append(&mut hex::decode("20").unwrap());
1737                 } else {
1738                         target_value.append(&mut hex::decode("00").unwrap());
1739                 }
1740                 if shutdown {
1741                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
1742                 }
1743                 assert_eq!(encoded_value, target_value);
1744         }
1745
1746         #[test]
1747         fn encoding_open_channel() {
1748                 do_encoding_open_channel(false, false, false);
1749                 do_encoding_open_channel(true, false, false);
1750                 do_encoding_open_channel(false, true, false);
1751                 do_encoding_open_channel(false, false, true);
1752                 do_encoding_open_channel(true, true, true);
1753         }
1754
1755         fn do_encoding_accept_channel(shutdown: bool) {
1756                 let secp_ctx = Secp256k1::new();
1757                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1758                 let (_, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
1759                 let (_, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
1760                 let (_, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
1761                 let (_, pubkey_5) = get_keys_from!("0505050505050505050505050505050505050505050505050505050505050505", secp_ctx);
1762                 let (_, pubkey_6) = get_keys_from!("0606060606060606060606060606060606060606060606060606060606060606", secp_ctx);
1763                 let accept_channel = msgs::AcceptChannel {
1764                         temporary_channel_id: [2; 32],
1765                         dust_limit_satoshis: 1311768467284833366,
1766                         max_htlc_value_in_flight_msat: 2536655962884945560,
1767                         channel_reserve_satoshis: 3608586615801332854,
1768                         htlc_minimum_msat: 2316138423780173,
1769                         minimum_depth: 821716,
1770                         to_self_delay: 49340,
1771                         max_accepted_htlcs: 49340,
1772                         funding_pubkey: pubkey_1,
1773                         revocation_basepoint: pubkey_2,
1774                         payment_basepoint: pubkey_3,
1775                         delayed_payment_basepoint: pubkey_4,
1776                         htlc_basepoint: pubkey_5,
1777                         first_per_commitment_point: pubkey_6,
1778                         shutdown_scriptpubkey: if shutdown { OptionalField::Present(Address::p2pkh(&::bitcoin::PublicKey{compressed: true, key: pubkey_1}, Network::Testnet).script_pubkey()) } else { OptionalField::Absent }
1779                 };
1780                 let encoded_value = accept_channel.encode();
1781                 let mut target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020212345678901234562334032891223698321446687011447600083a840000034d000c89d4c0bcc0bc031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b0362c0a046dacce86ddd0343c6d3c7c79c2208ba0d9c9cf24a6d046d21d21f90f703f006a18d5653c4edf5391ff23a61f03ff83d237e880ee61187fa9f379a028e0a").unwrap();
1782                 if shutdown {
1783                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
1784                 }
1785                 assert_eq!(encoded_value, target_value);
1786         }
1787
1788         #[test]
1789         fn encoding_accept_channel() {
1790                 do_encoding_accept_channel(false);
1791                 do_encoding_accept_channel(true);
1792         }
1793
1794         #[test]
1795         fn encoding_funding_created() {
1796                 let secp_ctx = Secp256k1::new();
1797                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1798                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1799                 let funding_created = msgs::FundingCreated {
1800                         temporary_channel_id: [2; 32],
1801                         funding_txid: Sha256dHash::from_hex("c2d4449afa8d26140898dd54d3390b057ba2a5afcf03ba29d7dc0d8b9ffe966e").unwrap(),
1802                         funding_output_index: 255,
1803                         signature: sig_1,
1804                 };
1805                 let encoded_value = funding_created.encode();
1806                 let target_value = hex::decode("02020202020202020202020202020202020202020202020202020202020202026e96fe9f8b0ddcd729ba03cfafa5a27b050b39d354dd980814268dfa9a44d4c200ffd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1807                 assert_eq!(encoded_value, target_value);
1808         }
1809
1810         #[test]
1811         fn encoding_funding_signed() {
1812                 let secp_ctx = Secp256k1::new();
1813                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1814                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1815                 let funding_signed = msgs::FundingSigned {
1816                         channel_id: [2; 32],
1817                         signature: sig_1,
1818                 };
1819                 let encoded_value = funding_signed.encode();
1820                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1821                 assert_eq!(encoded_value, target_value);
1822         }
1823
1824         #[test]
1825         fn encoding_funding_locked() {
1826                 let secp_ctx = Secp256k1::new();
1827                 let (_, pubkey_1,) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1828                 let funding_locked = msgs::FundingLocked {
1829                         channel_id: [2; 32],
1830                         next_per_commitment_point: pubkey_1,
1831                 };
1832                 let encoded_value = funding_locked.encode();
1833                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f").unwrap();
1834                 assert_eq!(encoded_value, target_value);
1835         }
1836
1837         fn do_encoding_shutdown(script_type: u8) {
1838                 let secp_ctx = Secp256k1::new();
1839                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1840                 let script = Builder::new().push_opcode(opcodes::OP_TRUE).into_script();
1841                 let shutdown = msgs::Shutdown {
1842                         channel_id: [2; 32],
1843                         scriptpubkey: if script_type == 1 { Address::p2pkh(&::bitcoin::PublicKey{compressed: true, key: pubkey_1}, Network::Testnet).script_pubkey() } else if script_type == 2 { Address::p2sh(&script, Network::Testnet).script_pubkey() } else if script_type == 3 { Address::p2wpkh(&::bitcoin::PublicKey{compressed: true, key: pubkey_1}, Network::Testnet).script_pubkey() } else { Address::p2wsh(&script, Network::Testnet).script_pubkey() },
1844                 };
1845                 let encoded_value = shutdown.encode();
1846                 let mut target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202").unwrap();
1847                 if script_type == 1 {
1848                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
1849                 } else if script_type == 2 {
1850                         target_value.append(&mut hex::decode("0017a914da1745e9b549bd0bfa1a569971c77eba30cd5a4b87").unwrap());
1851                 } else if script_type == 3 {
1852                         target_value.append(&mut hex::decode("0016001479b000887626b294a914501a4cd226b58b235983").unwrap());
1853                 } else if script_type == 4 {
1854                         target_value.append(&mut hex::decode("002200204ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260").unwrap());
1855                 }
1856                 assert_eq!(encoded_value, target_value);
1857         }
1858
1859         #[test]
1860         fn encoding_shutdown() {
1861                 do_encoding_shutdown(1);
1862                 do_encoding_shutdown(2);
1863                 do_encoding_shutdown(3);
1864                 do_encoding_shutdown(4);
1865         }
1866
1867         #[test]
1868         fn encoding_closing_signed() {
1869                 let secp_ctx = Secp256k1::new();
1870                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1871                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1872                 let closing_signed = msgs::ClosingSigned {
1873                         channel_id: [2; 32],
1874                         fee_satoshis: 2316138423780173,
1875                         signature: sig_1,
1876                 };
1877                 let encoded_value = closing_signed.encode();
1878                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034dd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1879                 assert_eq!(encoded_value, target_value);
1880         }
1881
1882         #[test]
1883         fn encoding_update_add_htlc() {
1884                 let secp_ctx = Secp256k1::new();
1885                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1886                 let onion_routing_packet = msgs::OnionPacket {
1887                         version: 255,
1888                         public_key: Ok(pubkey_1),
1889                         hop_data: [1; 20*65],
1890                         hmac: [2; 32]
1891                 };
1892                 let update_add_htlc = msgs::UpdateAddHTLC {
1893                         channel_id: [2; 32],
1894                         htlc_id: 2316138423780173,
1895                         amount_msat: 3608586615801332854,
1896                         payment_hash: PaymentHash([1; 32]),
1897                         cltv_expiry: 821716,
1898                         onion_routing_packet
1899                 };
1900                 let encoded_value = update_add_htlc.encode();
1901                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d32144668701144760101010101010101010101010101010101010101010101010101010101010101000c89d4ff031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010202020202020202020202020202020202020202020202020202020202020202").unwrap();
1902                 assert_eq!(encoded_value, target_value);
1903         }
1904
1905         #[test]
1906         fn encoding_update_fulfill_htlc() {
1907                 let update_fulfill_htlc = msgs::UpdateFulfillHTLC {
1908                         channel_id: [2; 32],
1909                         htlc_id: 2316138423780173,
1910                         payment_preimage: PaymentPreimage([1; 32]),
1911                 };
1912                 let encoded_value = update_fulfill_htlc.encode();
1913                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d0101010101010101010101010101010101010101010101010101010101010101").unwrap();
1914                 assert_eq!(encoded_value, target_value);
1915         }
1916
1917         #[test]
1918         fn encoding_update_fail_htlc() {
1919                 let reason = OnionErrorPacket {
1920                         data: [1; 32].to_vec(),
1921                 };
1922                 let update_fail_htlc = msgs::UpdateFailHTLC {
1923                         channel_id: [2; 32],
1924                         htlc_id: 2316138423780173,
1925                         reason
1926                 };
1927                 let encoded_value = update_fail_htlc.encode();
1928                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d00200101010101010101010101010101010101010101010101010101010101010101").unwrap();
1929                 assert_eq!(encoded_value, target_value);
1930         }
1931
1932         #[test]
1933         fn encoding_update_fail_malformed_htlc() {
1934                 let update_fail_malformed_htlc = msgs::UpdateFailMalformedHTLC {
1935                         channel_id: [2; 32],
1936                         htlc_id: 2316138423780173,
1937                         sha256_of_onion: [1; 32],
1938                         failure_code: 255
1939                 };
1940                 let encoded_value = update_fail_malformed_htlc.encode();
1941                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d010101010101010101010101010101010101010101010101010101010101010100ff").unwrap();
1942                 assert_eq!(encoded_value, target_value);
1943         }
1944
1945         fn do_encoding_commitment_signed(htlcs: bool) {
1946                 let secp_ctx = Secp256k1::new();
1947                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1948                 let (privkey_2, _) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
1949                 let (privkey_3, _) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
1950                 let (privkey_4, _) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
1951                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1952                 let sig_2 = get_sig_on!(privkey_2, secp_ctx, String::from("01010101010101010101010101010101"));
1953                 let sig_3 = get_sig_on!(privkey_3, secp_ctx, String::from("01010101010101010101010101010101"));
1954                 let sig_4 = get_sig_on!(privkey_4, secp_ctx, String::from("01010101010101010101010101010101"));
1955                 let commitment_signed = msgs::CommitmentSigned {
1956                         channel_id: [2; 32],
1957                         signature: sig_1,
1958                         htlc_signatures: if htlcs { vec![sig_2, sig_3, sig_4] } else { Vec::new() },
1959                 };
1960                 let encoded_value = commitment_signed.encode();
1961                 let mut target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
1962                 if htlcs {
1963                         target_value.append(&mut hex::decode("00031735b6a427e80d5fe7cd90a2f4ee08dc9c27cda7c35a4172e5d85b12c49d4232537e98f9b1f3c5e6989a8b9644e90e8918127680dbd0d4043510840fc0f1e11a216c280b5395a2546e7e4b2663e04f811622f15a4f91e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d2692b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap());
1964                 } else {
1965                         target_value.append(&mut hex::decode("0000").unwrap());
1966                 }
1967                 assert_eq!(encoded_value, target_value);
1968         }
1969
1970         #[test]
1971         fn encoding_commitment_signed() {
1972                 do_encoding_commitment_signed(true);
1973                 do_encoding_commitment_signed(false);
1974         }
1975
1976         #[test]
1977         fn encoding_revoke_and_ack() {
1978                 let secp_ctx = Secp256k1::new();
1979                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1980                 let raa = msgs::RevokeAndACK {
1981                         channel_id: [2; 32],
1982                         per_commitment_secret: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
1983                         next_per_commitment_point: pubkey_1,
1984                 };
1985                 let encoded_value = raa.encode();
1986                 let target_value = hex::decode("02020202020202020202020202020202020202020202020202020202020202020101010101010101010101010101010101010101010101010101010101010101031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f").unwrap();
1987                 assert_eq!(encoded_value, target_value);
1988         }
1989
1990         #[test]
1991         fn encoding_update_fee() {
1992                 let update_fee = msgs::UpdateFee {
1993                         channel_id: [2; 32],
1994                         feerate_per_kw: 20190119,
1995                 };
1996                 let encoded_value = update_fee.encode();
1997                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202013413a7").unwrap();
1998                 assert_eq!(encoded_value, target_value);
1999         }
2000
2001         fn do_encoding_init(unknown_global_bits: bool, initial_routing_sync: bool) {
2002                 let mut global = GlobalFeatures::new();
2003                 if unknown_global_bits {
2004                         global.flags = vec![0xFF, 0xFF];
2005                 }
2006                 let mut local = LocalFeatures::new();
2007                 if initial_routing_sync {
2008                         local.set_initial_routing_sync();
2009                 }
2010                 let init = msgs::Init {
2011                         global_features: global,
2012                         local_features: local,
2013                 };
2014                 let encoded_value = init.encode();
2015                 let mut target_value = Vec::new();
2016                 if unknown_global_bits {
2017                         target_value.append(&mut hex::decode("0002ffff").unwrap());
2018                 } else {
2019                         target_value.append(&mut hex::decode("0000").unwrap());
2020                 }
2021                 if initial_routing_sync {
2022                         target_value.append(&mut hex::decode("000118").unwrap());
2023                 } else {
2024                         target_value.append(&mut hex::decode("000110").unwrap());
2025                 }
2026                 assert_eq!(encoded_value, target_value);
2027         }
2028
2029         #[test]
2030         fn encoding_init() {
2031                 do_encoding_init(false, false);
2032                 do_encoding_init(true, false);
2033                 do_encoding_init(false, true);
2034                 do_encoding_init(true, true);
2035         }
2036
2037         #[test]
2038         fn encoding_error() {
2039                 let error = msgs::ErrorMessage {
2040                         channel_id: [2; 32],
2041                         data: String::from("rust-lightning"),
2042                 };
2043                 let encoded_value = error.encode();
2044                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202000e727573742d6c696768746e696e67").unwrap();
2045                 assert_eq!(encoded_value, target_value);
2046         }
2047
2048         #[test]
2049         fn encoding_ping() {
2050                 let ping = msgs::Ping {
2051                         ponglen: 64,
2052                         byteslen: 64
2053                 };
2054                 let encoded_value = ping.encode();
2055                 let target_value = hex::decode("0040004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap();
2056                 assert_eq!(encoded_value, target_value);
2057         }
2058
2059         #[test]
2060         fn encoding_pong() {
2061                 let pong = msgs::Pong {
2062                         byteslen: 64
2063                 };
2064                 let encoded_value = pong.encode();
2065                 let target_value = hex::decode("004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap();
2066                 assert_eq!(encoded_value, target_value);
2067         }
2068 }