5aa48c32bf07686aba4adad53b9615a6cdd91bb1
[rust-lightning] / lightning / src / ln / msgs.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Wire messages, traits representing wire message handlers, and a few error types live here.
11 //!
12 //! For a normal node you probably don't need to use anything here, however, if you wish to split a
13 //! node into an internet-facing route/message socket handling daemon and a separate daemon (or
14 //! server entirely) which handles only channel-related messages you may wish to implement
15 //! ChannelMessageHandler yourself and use it to re-serialize messages and pass them across
16 //! daemons/servers.
17 //!
18 //! Note that if you go with such an architecture (instead of passing raw socket events to a
19 //! non-internet-facing system) you trust the frontend internet-facing system to not lie about the
20 //! source node_id of the message, however this does allow you to significantly reduce bandwidth
21 //! between the systems as routing messages can represent a significant chunk of bandwidth usage
22 //! (especially for non-channel-publicly-announcing nodes). As an alternate design which avoids
23 //! this issue, if you have sufficient bidirectional bandwidth between your systems, you may send
24 //! raw socket events into your non-internet-facing system and then send routing events back to
25 //! track the network on the less-secure system.
26
27 use bitcoin::secp256k1::PublicKey;
28 use bitcoin::secp256k1::ecdsa::Signature;
29 use bitcoin::secp256k1;
30 use bitcoin::blockdata::script::Script;
31 use bitcoin::hash_types::{Txid, BlockHash};
32
33 use ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
34
35 use prelude::*;
36 use core::fmt;
37 use core::fmt::Debug;
38 use io::{self, Read};
39 use io_extras::read_to_end;
40
41 use util::events::MessageSendEventsProvider;
42 use util::logger;
43 use util::ser::{Readable, Writeable, Writer, FixedLengthReader, HighZeroBytesDroppedVarInt};
44
45 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
46
47 /// 21 million * 10^8 * 1000
48 pub(crate) const MAX_VALUE_MSAT: u64 = 21_000_000_0000_0000_000;
49
50 /// An error in decoding a message or struct.
51 #[derive(Clone, Debug, PartialEq)]
52 pub enum DecodeError {
53         /// A version byte specified something we don't know how to handle.
54         /// Includes unknown realm byte in an OnionHopData packet
55         UnknownVersion,
56         /// Unknown feature mandating we fail to parse message (eg TLV with an even, unknown type)
57         UnknownRequiredFeature,
58         /// Value was invalid, eg a byte which was supposed to be a bool was something other than a 0
59         /// or 1, a public key/private key/signature was invalid, text wasn't UTF-8, TLV was
60         /// syntactically incorrect, etc
61         InvalidValue,
62         /// Buffer too short
63         ShortRead,
64         /// A length descriptor in the packet didn't describe the later data correctly
65         BadLengthDescriptor,
66         /// Error from std::io
67         Io(/// (C-not exported) as ErrorKind doesn't have a reasonable mapping
68         io::ErrorKind),
69         /// The message included zlib-compressed values, which we don't support.
70         UnsupportedCompression,
71 }
72
73 /// An init message to be sent or received from a peer
74 #[derive(Clone, Debug, PartialEq)]
75 pub struct Init {
76         /// The relevant features which the sender supports
77         pub features: InitFeatures,
78         /// The receipient's network address. This adds the option to report a remote IP address
79         /// back to a connecting peer using the init message. A node can decide to use that information
80         /// to discover a potential update to its public IPv4 address (NAT) and use
81         /// that for a node_announcement update message containing the new address.
82         pub remote_network_address: Option<NetAddress>,
83 }
84
85 /// An error message to be sent or received from a peer
86 #[derive(Clone, Debug, PartialEq)]
87 pub struct ErrorMessage {
88         /// The channel ID involved in the error.
89         ///
90         /// All-0s indicates a general error unrelated to a specific channel, after which all channels
91         /// with the sending peer should be closed.
92         pub channel_id: [u8; 32],
93         /// A possibly human-readable error description.
94         /// The string should be sanitized before it is used (e.g. emitted to logs or printed to
95         /// stdout). Otherwise, a well crafted error message may trigger a security vulnerability in
96         /// the terminal emulator or the logging subsystem.
97         pub data: String,
98 }
99
100 /// A warning message to be sent or received from a peer
101 #[derive(Clone, Debug, PartialEq)]
102 pub struct WarningMessage {
103         /// The channel ID involved in the warning.
104         ///
105         /// All-0s indicates a warning unrelated to a specific channel.
106         pub channel_id: [u8; 32],
107         /// A possibly human-readable warning description.
108         /// The string should be sanitized before it is used (e.g. emitted to logs or printed to
109         /// stdout). Otherwise, a well crafted error message may trigger a security vulnerability in
110         /// the terminal emulator or the logging subsystem.
111         pub data: String,
112 }
113
114 /// A ping message to be sent or received from a peer
115 #[derive(Clone, Debug, PartialEq)]
116 pub struct Ping {
117         /// The desired response length
118         pub ponglen: u16,
119         /// The ping packet size.
120         /// This field is not sent on the wire. byteslen zeros are sent.
121         pub byteslen: u16,
122 }
123
124 /// A pong message to be sent or received from a peer
125 #[derive(Clone, Debug, PartialEq)]
126 pub struct Pong {
127         /// The pong packet size.
128         /// This field is not sent on the wire. byteslen zeros are sent.
129         pub byteslen: u16,
130 }
131
132 /// An open_channel message to be sent or received from a peer
133 #[derive(Clone, Debug, PartialEq)]
134 pub struct OpenChannel {
135         /// The genesis hash of the blockchain where the channel is to be opened
136         pub chain_hash: BlockHash,
137         /// A temporary channel ID, until the funding outpoint is announced
138         pub temporary_channel_id: [u8; 32],
139         /// The channel value
140         pub funding_satoshis: u64,
141         /// The amount to push to the counterparty as part of the open, in milli-satoshi
142         pub push_msat: u64,
143         /// The threshold below which outputs on transactions broadcast by sender will be omitted
144         pub dust_limit_satoshis: u64,
145         /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
146         pub max_htlc_value_in_flight_msat: u64,
147         /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
148         pub channel_reserve_satoshis: u64,
149         /// The minimum HTLC size incoming to sender, in milli-satoshi
150         pub htlc_minimum_msat: u64,
151         /// The feerate per 1000-weight of sender generated transactions, until updated by update_fee
152         pub feerate_per_kw: u32,
153         /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
154         pub to_self_delay: u16,
155         /// The maximum number of inbound HTLCs towards sender
156         pub max_accepted_htlcs: u16,
157         /// The sender's key controlling the funding transaction
158         pub funding_pubkey: PublicKey,
159         /// Used to derive a revocation key for transactions broadcast by counterparty
160         pub revocation_basepoint: PublicKey,
161         /// A payment key to sender for transactions broadcast by counterparty
162         pub payment_point: PublicKey,
163         /// Used to derive a payment key to sender for transactions broadcast by sender
164         pub delayed_payment_basepoint: PublicKey,
165         /// Used to derive an HTLC payment key to sender
166         pub htlc_basepoint: PublicKey,
167         /// The first to-be-broadcast-by-sender transaction's per commitment point
168         pub first_per_commitment_point: PublicKey,
169         /// Channel flags
170         pub channel_flags: u8,
171         /// Optionally, a request to pre-set the to-sender output's scriptPubkey for when we collaboratively close
172         pub shutdown_scriptpubkey: OptionalField<Script>,
173         /// The channel type that this channel will represent. If none is set, we derive the channel
174         /// type from the intersection of our feature bits with our counterparty's feature bits from
175         /// the Init message.
176         pub channel_type: Option<ChannelTypeFeatures>,
177 }
178
179 /// An accept_channel message to be sent or received from a peer
180 #[derive(Clone, Debug, PartialEq)]
181 pub struct AcceptChannel {
182         /// A temporary channel ID, until the funding outpoint is announced
183         pub temporary_channel_id: [u8; 32],
184         /// The threshold below which outputs on transactions broadcast by sender will be omitted
185         pub dust_limit_satoshis: u64,
186         /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
187         pub max_htlc_value_in_flight_msat: u64,
188         /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
189         pub channel_reserve_satoshis: u64,
190         /// The minimum HTLC size incoming to sender, in milli-satoshi
191         pub htlc_minimum_msat: u64,
192         /// Minimum depth of the funding transaction before the channel is considered open
193         pub minimum_depth: u32,
194         /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
195         pub to_self_delay: u16,
196         /// The maximum number of inbound HTLCs towards sender
197         pub max_accepted_htlcs: u16,
198         /// The sender's key controlling the funding transaction
199         pub funding_pubkey: PublicKey,
200         /// Used to derive a revocation key for transactions broadcast by counterparty
201         pub revocation_basepoint: PublicKey,
202         /// A payment key to sender for transactions broadcast by counterparty
203         pub payment_point: PublicKey,
204         /// Used to derive a payment key to sender for transactions broadcast by sender
205         pub delayed_payment_basepoint: PublicKey,
206         /// Used to derive an HTLC payment key to sender for transactions broadcast by counterparty
207         pub htlc_basepoint: PublicKey,
208         /// The first to-be-broadcast-by-sender transaction's per commitment point
209         pub first_per_commitment_point: PublicKey,
210         /// Optionally, a request to pre-set the to-sender output's scriptPubkey for when we collaboratively close
211         pub shutdown_scriptpubkey: OptionalField<Script>,
212         /// The channel type that this channel will represent. If none is set, we derive the channel
213         /// type from the intersection of our feature bits with our counterparty's feature bits from
214         /// the Init message.
215         ///
216         /// This is required to match the equivalent field in [`OpenChannel::channel_type`].
217         pub channel_type: Option<ChannelTypeFeatures>,
218 }
219
220 /// A funding_created message to be sent or received from a peer
221 #[derive(Clone, Debug, PartialEq)]
222 pub struct FundingCreated {
223         /// A temporary channel ID, until the funding is established
224         pub temporary_channel_id: [u8; 32],
225         /// The funding transaction ID
226         pub funding_txid: Txid,
227         /// The specific output index funding this channel
228         pub funding_output_index: u16,
229         /// The signature of the channel initiator (funder) on the initial commitment transaction
230         pub signature: Signature,
231 }
232
233 /// A funding_signed message to be sent or received from a peer
234 #[derive(Clone, Debug, PartialEq)]
235 pub struct FundingSigned {
236         /// The channel ID
237         pub channel_id: [u8; 32],
238         /// The signature of the channel acceptor (fundee) on the initial commitment transaction
239         pub signature: Signature,
240 }
241
242 /// A funding_locked message to be sent or received from a peer
243 #[derive(Clone, Debug, PartialEq)]
244 pub struct FundingLocked {
245         /// The channel ID
246         pub channel_id: [u8; 32],
247         /// The per-commitment point of the second commitment transaction
248         pub next_per_commitment_point: PublicKey,
249         /// If set, provides a short_channel_id alias for this channel. The sender will accept payments
250         /// to be forwarded over this SCID and forward them to this messages' recipient.
251         pub short_channel_id_alias: Option<u64>,
252 }
253
254 /// A shutdown message to be sent or received from a peer
255 #[derive(Clone, Debug, PartialEq)]
256 pub struct Shutdown {
257         /// The channel ID
258         pub channel_id: [u8; 32],
259         /// The destination of this peer's funds on closing.
260         /// Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
261         pub scriptpubkey: Script,
262 }
263
264 /// The minimum and maximum fees which the sender is willing to place on the closing transaction.
265 /// This is provided in [`ClosingSigned`] by both sides to indicate the fee range they are willing
266 /// to use.
267 #[derive(Clone, Debug, PartialEq)]
268 pub struct ClosingSignedFeeRange {
269         /// The minimum absolute fee, in satoshis, which the sender is willing to place on the closing
270         /// transaction.
271         pub min_fee_satoshis: u64,
272         /// The maximum absolute fee, in satoshis, which the sender is willing to place on the closing
273         /// transaction.
274         pub max_fee_satoshis: u64,
275 }
276
277 /// A closing_signed message to be sent or received from a peer
278 #[derive(Clone, Debug, PartialEq)]
279 pub struct ClosingSigned {
280         /// The channel ID
281         pub channel_id: [u8; 32],
282         /// The proposed total fee for the closing transaction
283         pub fee_satoshis: u64,
284         /// A signature on the closing transaction
285         pub signature: Signature,
286         /// The minimum and maximum fees which the sender is willing to accept, provided only by new
287         /// nodes.
288         pub fee_range: Option<ClosingSignedFeeRange>,
289 }
290
291 /// An update_add_htlc message to be sent or received from a peer
292 #[derive(Clone, Debug, PartialEq)]
293 pub struct UpdateAddHTLC {
294         /// The channel ID
295         pub channel_id: [u8; 32],
296         /// The HTLC ID
297         pub htlc_id: u64,
298         /// The HTLC value in milli-satoshi
299         pub amount_msat: u64,
300         /// The payment hash, the pre-image of which controls HTLC redemption
301         pub payment_hash: PaymentHash,
302         /// The expiry height of the HTLC
303         pub cltv_expiry: u32,
304         pub(crate) onion_routing_packet: OnionPacket,
305 }
306
307 /// An update_fulfill_htlc message to be sent or received from a peer
308 #[derive(Clone, Debug, PartialEq)]
309 pub struct UpdateFulfillHTLC {
310         /// The channel ID
311         pub channel_id: [u8; 32],
312         /// The HTLC ID
313         pub htlc_id: u64,
314         /// The pre-image of the payment hash, allowing HTLC redemption
315         pub payment_preimage: PaymentPreimage,
316 }
317
318 /// An update_fail_htlc message to be sent or received from a peer
319 #[derive(Clone, Debug, PartialEq)]
320 pub struct UpdateFailHTLC {
321         /// The channel ID
322         pub channel_id: [u8; 32],
323         /// The HTLC ID
324         pub htlc_id: u64,
325         pub(crate) reason: OnionErrorPacket,
326 }
327
328 /// An update_fail_malformed_htlc message to be sent or received from a peer
329 #[derive(Clone, Debug, PartialEq)]
330 pub struct UpdateFailMalformedHTLC {
331         /// The channel ID
332         pub channel_id: [u8; 32],
333         /// The HTLC ID
334         pub htlc_id: u64,
335         pub(crate) sha256_of_onion: [u8; 32],
336         /// The failure code
337         pub failure_code: u16,
338 }
339
340 /// A commitment_signed message to be sent or received from a peer
341 #[derive(Clone, Debug, PartialEq)]
342 pub struct CommitmentSigned {
343         /// The channel ID
344         pub channel_id: [u8; 32],
345         /// A signature on the commitment transaction
346         pub signature: Signature,
347         /// Signatures on the HTLC transactions
348         pub htlc_signatures: Vec<Signature>,
349 }
350
351 /// A revoke_and_ack message to be sent or received from a peer
352 #[derive(Clone, Debug, PartialEq)]
353 pub struct RevokeAndACK {
354         /// The channel ID
355         pub channel_id: [u8; 32],
356         /// The secret corresponding to the per-commitment point
357         pub per_commitment_secret: [u8; 32],
358         /// The next sender-broadcast commitment transaction's per-commitment point
359         pub next_per_commitment_point: PublicKey,
360 }
361
362 /// An update_fee message to be sent or received from a peer
363 #[derive(Clone, Debug, PartialEq)]
364 pub struct UpdateFee {
365         /// The channel ID
366         pub channel_id: [u8; 32],
367         /// Fee rate per 1000-weight of the transaction
368         pub feerate_per_kw: u32,
369 }
370
371 #[derive(Clone, Debug, PartialEq)]
372 /// Proof that the sender knows the per-commitment secret of the previous commitment transaction.
373 /// This is used to convince the recipient that the channel is at a certain commitment
374 /// number even if they lost that data due to a local failure.  Of course, the peer may lie
375 /// and even later commitments may have been revoked.
376 pub struct DataLossProtect {
377         /// Proof that the sender knows the per-commitment secret of a specific commitment transaction
378         /// belonging to the recipient
379         pub your_last_per_commitment_secret: [u8; 32],
380         /// The sender's per-commitment point for their current commitment transaction
381         pub my_current_per_commitment_point: PublicKey,
382 }
383
384 /// A channel_reestablish message to be sent or received from a peer
385 #[derive(Clone, Debug, PartialEq)]
386 pub struct ChannelReestablish {
387         /// The channel ID
388         pub channel_id: [u8; 32],
389         /// The next commitment number for the sender
390         pub next_local_commitment_number: u64,
391         /// The next commitment number for the recipient
392         pub next_remote_commitment_number: u64,
393         /// Optionally, a field proving that next_remote_commitment_number-1 has been revoked
394         pub data_loss_protect: OptionalField<DataLossProtect>,
395 }
396
397 /// An announcement_signatures message to be sent or received from a peer
398 #[derive(Clone, Debug, PartialEq)]
399 pub struct AnnouncementSignatures {
400         /// The channel ID
401         pub channel_id: [u8; 32],
402         /// The short channel ID
403         pub short_channel_id: u64,
404         /// A signature by the node key
405         pub node_signature: Signature,
406         /// A signature by the funding key
407         pub bitcoin_signature: Signature,
408 }
409
410 /// An address which can be used to connect to a remote peer
411 #[derive(Clone, Debug, PartialEq)]
412 pub enum NetAddress {
413         /// An IPv4 address/port on which the peer is listening.
414         IPv4 {
415                 /// The 4-byte IPv4 address
416                 addr: [u8; 4],
417                 /// The port on which the node is listening
418                 port: u16,
419         },
420         /// An IPv6 address/port on which the peer is listening.
421         IPv6 {
422                 /// The 16-byte IPv6 address
423                 addr: [u8; 16],
424                 /// The port on which the node is listening
425                 port: u16,
426         },
427         /// An old-style Tor onion address/port on which the peer is listening.
428         ///
429         /// This field is deprecated and the Tor network generally no longer supports V2 Onion
430         /// addresses. Thus, the details are not parsed here.
431         OnionV2([u8; 12]),
432         /// A new-style Tor onion address/port on which the peer is listening.
433         /// To create the human-readable "hostname", concatenate ed25519_pubkey, checksum, and version,
434         /// wrap as base32 and append ".onion".
435         OnionV3 {
436                 /// The ed25519 long-term public key of the peer
437                 ed25519_pubkey: [u8; 32],
438                 /// The checksum of the pubkey and version, as included in the onion address
439                 checksum: u16,
440                 /// The version byte, as defined by the Tor Onion v3 spec.
441                 version: u8,
442                 /// The port on which the node is listening
443                 port: u16,
444         },
445 }
446 impl NetAddress {
447         /// Gets the ID of this address type. Addresses in node_announcement messages should be sorted
448         /// by this.
449         pub(crate) fn get_id(&self) -> u8 {
450                 match self {
451                         &NetAddress::IPv4 {..} => { 1 },
452                         &NetAddress::IPv6 {..} => { 2 },
453                         &NetAddress::OnionV2(_) => { 3 },
454                         &NetAddress::OnionV3 {..} => { 4 },
455                 }
456         }
457
458         /// Strict byte-length of address descriptor, 1-byte type not recorded
459         fn len(&self) -> u16 {
460                 match self {
461                         &NetAddress::IPv4 { .. } => { 6 },
462                         &NetAddress::IPv6 { .. } => { 18 },
463                         &NetAddress::OnionV2(_) => { 12 },
464                         &NetAddress::OnionV3 { .. } => { 37 },
465                 }
466         }
467
468         /// The maximum length of any address descriptor, not including the 1-byte type
469         pub(crate) const MAX_LEN: u16 = 37;
470 }
471
472 impl Writeable for NetAddress {
473         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
474                 match self {
475                         &NetAddress::IPv4 { ref addr, ref port } => {
476                                 1u8.write(writer)?;
477                                 addr.write(writer)?;
478                                 port.write(writer)?;
479                         },
480                         &NetAddress::IPv6 { ref addr, ref port } => {
481                                 2u8.write(writer)?;
482                                 addr.write(writer)?;
483                                 port.write(writer)?;
484                         },
485                         &NetAddress::OnionV2(bytes) => {
486                                 3u8.write(writer)?;
487                                 bytes.write(writer)?;
488                         },
489                         &NetAddress::OnionV3 { ref ed25519_pubkey, ref checksum, ref version, ref port } => {
490                                 4u8.write(writer)?;
491                                 ed25519_pubkey.write(writer)?;
492                                 checksum.write(writer)?;
493                                 version.write(writer)?;
494                                 port.write(writer)?;
495                         }
496                 }
497                 Ok(())
498         }
499 }
500
501 impl Readable for Result<NetAddress, u8> {
502         fn read<R: Read>(reader: &mut R) -> Result<Result<NetAddress, u8>, DecodeError> {
503                 let byte = <u8 as Readable>::read(reader)?;
504                 match byte {
505                         1 => {
506                                 Ok(Ok(NetAddress::IPv4 {
507                                         addr: Readable::read(reader)?,
508                                         port: Readable::read(reader)?,
509                                 }))
510                         },
511                         2 => {
512                                 Ok(Ok(NetAddress::IPv6 {
513                                         addr: Readable::read(reader)?,
514                                         port: Readable::read(reader)?,
515                                 }))
516                         },
517                         3 => Ok(Ok(NetAddress::OnionV2(Readable::read(reader)?))),
518                         4 => {
519                                 Ok(Ok(NetAddress::OnionV3 {
520                                         ed25519_pubkey: Readable::read(reader)?,
521                                         checksum: Readable::read(reader)?,
522                                         version: Readable::read(reader)?,
523                                         port: Readable::read(reader)?,
524                                 }))
525                         },
526                         _ => return Ok(Err(byte)),
527                 }
528         }
529 }
530
531 impl Readable for NetAddress {
532         fn read<R: Read>(reader: &mut R) -> Result<NetAddress, DecodeError> {
533                 match Readable::read(reader) {
534                         Ok(Ok(res)) => Ok(res),
535                         Ok(Err(_)) => Err(DecodeError::UnknownVersion),
536                         Err(e) => Err(e),
537                 }
538         }
539 }
540
541
542 /// The unsigned part of a node_announcement
543 #[derive(Clone, Debug, PartialEq)]
544 pub struct UnsignedNodeAnnouncement {
545         /// The advertised features
546         pub features: NodeFeatures,
547         /// A strictly monotonic announcement counter, with gaps allowed
548         pub timestamp: u32,
549         /// The node_id this announcement originated from (don't rebroadcast the node_announcement back
550         /// to this node).
551         pub node_id: PublicKey,
552         /// An RGB color for UI purposes
553         pub rgb: [u8; 3],
554         /// An alias, for UI purposes.  This should be sanitized before use.  There is no guarantee
555         /// of uniqueness.
556         pub alias: [u8; 32],
557         /// List of addresses on which this node is reachable
558         pub addresses: Vec<NetAddress>,
559         pub(crate) excess_address_data: Vec<u8>,
560         pub(crate) excess_data: Vec<u8>,
561 }
562 #[derive(Clone, Debug, PartialEq)]
563 /// A node_announcement message to be sent or received from a peer
564 pub struct NodeAnnouncement {
565         /// The signature by the node key
566         pub signature: Signature,
567         /// The actual content of the announcement
568         pub contents: UnsignedNodeAnnouncement,
569 }
570
571 /// The unsigned part of a channel_announcement
572 #[derive(Clone, Debug, PartialEq)]
573 pub struct UnsignedChannelAnnouncement {
574         /// The advertised channel features
575         pub features: ChannelFeatures,
576         /// The genesis hash of the blockchain where the channel is to be opened
577         pub chain_hash: BlockHash,
578         /// The short channel ID
579         pub short_channel_id: u64,
580         /// One of the two node_ids which are endpoints of this channel
581         pub node_id_1: PublicKey,
582         /// The other of the two node_ids which are endpoints of this channel
583         pub node_id_2: PublicKey,
584         /// The funding key for the first node
585         pub bitcoin_key_1: PublicKey,
586         /// The funding key for the second node
587         pub bitcoin_key_2: PublicKey,
588         pub(crate) excess_data: Vec<u8>,
589 }
590 /// A channel_announcement message to be sent or received from a peer
591 #[derive(Clone, Debug, PartialEq)]
592 pub struct ChannelAnnouncement {
593         /// Authentication of the announcement by the first public node
594         pub node_signature_1: Signature,
595         /// Authentication of the announcement by the second public node
596         pub node_signature_2: Signature,
597         /// Proof of funding UTXO ownership by the first public node
598         pub bitcoin_signature_1: Signature,
599         /// Proof of funding UTXO ownership by the second public node
600         pub bitcoin_signature_2: Signature,
601         /// The actual announcement
602         pub contents: UnsignedChannelAnnouncement,
603 }
604
605 /// The unsigned part of a channel_update
606 #[derive(Clone, Debug, PartialEq)]
607 pub struct UnsignedChannelUpdate {
608         /// The genesis hash of the blockchain where the channel is to be opened
609         pub chain_hash: BlockHash,
610         /// The short channel ID
611         pub short_channel_id: u64,
612         /// A strictly monotonic announcement counter, with gaps allowed, specific to this channel
613         pub timestamp: u32,
614         /// Channel flags
615         pub flags: u8,
616         /// The number of blocks such that if:
617         /// `incoming_htlc.cltv_expiry < outgoing_htlc.cltv_expiry + cltv_expiry_delta`
618         /// then we need to fail the HTLC backwards. When forwarding an HTLC, cltv_expiry_delta determines
619         /// the outgoing HTLC's minimum cltv_expiry value -- so, if an incoming HTLC comes in with a
620         /// cltv_expiry of 100000, and the node we're forwarding to has a cltv_expiry_delta value of 10,
621         /// then we'll check that the outgoing HTLC's cltv_expiry value is at least 100010 before
622         /// forwarding. Note that the HTLC sender is the one who originally sets this value when
623         /// constructing the route.
624         pub cltv_expiry_delta: u16,
625         /// The minimum HTLC size incoming to sender, in milli-satoshi
626         pub htlc_minimum_msat: u64,
627         /// Optionally, the maximum HTLC value incoming to sender, in milli-satoshi
628         pub htlc_maximum_msat: OptionalField<u64>,
629         /// The base HTLC fee charged by sender, in milli-satoshi
630         pub fee_base_msat: u32,
631         /// The amount to fee multiplier, in micro-satoshi
632         pub fee_proportional_millionths: u32,
633         /// Excess data which was signed as a part of the message which we do not (yet) understand how
634         /// to decode. This is stored to ensure forward-compatibility as new fields are added to the
635         /// lightning gossip
636         pub excess_data: Vec<u8>,
637 }
638 /// A channel_update message to be sent or received from a peer
639 #[derive(Clone, Debug, PartialEq)]
640 pub struct ChannelUpdate {
641         /// A signature of the channel update
642         pub signature: Signature,
643         /// The actual channel update
644         pub contents: UnsignedChannelUpdate,
645 }
646
647 /// A query_channel_range message is used to query a peer for channel
648 /// UTXOs in a range of blocks. The recipient of a query makes a best
649 /// effort to reply to the query using one or more reply_channel_range
650 /// messages.
651 #[derive(Clone, Debug, PartialEq)]
652 pub struct QueryChannelRange {
653         /// The genesis hash of the blockchain being queried
654         pub chain_hash: BlockHash,
655         /// The height of the first block for the channel UTXOs being queried
656         pub first_blocknum: u32,
657         /// The number of blocks to include in the query results
658         pub number_of_blocks: u32,
659 }
660
661 /// A reply_channel_range message is a reply to a query_channel_range
662 /// message. Multiple reply_channel_range messages can be sent in reply
663 /// to a single query_channel_range message. The query recipient makes a
664 /// best effort to respond based on their local network view which may
665 /// not be a perfect view of the network. The short_channel_ids in the
666 /// reply are encoded. We only support encoding_type=0 uncompressed
667 /// serialization and do not support encoding_type=1 zlib serialization.
668 #[derive(Clone, Debug, PartialEq)]
669 pub struct ReplyChannelRange {
670         /// The genesis hash of the blockchain being queried
671         pub chain_hash: BlockHash,
672         /// The height of the first block in the range of the reply
673         pub first_blocknum: u32,
674         /// The number of blocks included in the range of the reply
675         pub number_of_blocks: u32,
676         /// True when this is the final reply for a query
677         pub sync_complete: bool,
678         /// The short_channel_ids in the channel range
679         pub short_channel_ids: Vec<u64>,
680 }
681
682 /// A query_short_channel_ids message is used to query a peer for
683 /// routing gossip messages related to one or more short_channel_ids.
684 /// The query recipient will reply with the latest, if available,
685 /// channel_announcement, channel_update and node_announcement messages
686 /// it maintains for the requested short_channel_ids followed by a
687 /// reply_short_channel_ids_end message. The short_channel_ids sent in
688 /// this query are encoded. We only support encoding_type=0 uncompressed
689 /// serialization and do not support encoding_type=1 zlib serialization.
690 #[derive(Clone, Debug, PartialEq)]
691 pub struct QueryShortChannelIds {
692         /// The genesis hash of the blockchain being queried
693         pub chain_hash: BlockHash,
694         /// The short_channel_ids that are being queried
695         pub short_channel_ids: Vec<u64>,
696 }
697
698 /// A reply_short_channel_ids_end message is sent as a reply to a
699 /// query_short_channel_ids message. The query recipient makes a best
700 /// effort to respond based on their local network view which may not be
701 /// a perfect view of the network.
702 #[derive(Clone, Debug, PartialEq)]
703 pub struct ReplyShortChannelIdsEnd {
704         /// The genesis hash of the blockchain that was queried
705         pub chain_hash: BlockHash,
706         /// Indicates if the query recipient maintains up-to-date channel
707         /// information for the chain_hash
708         pub full_information: bool,
709 }
710
711 /// A gossip_timestamp_filter message is used by a node to request
712 /// gossip relay for messages in the requested time range when the
713 /// gossip_queries feature has been negotiated.
714 #[derive(Clone, Debug, PartialEq)]
715 pub struct GossipTimestampFilter {
716         /// The genesis hash of the blockchain for channel and node information
717         pub chain_hash: BlockHash,
718         /// The starting unix timestamp
719         pub first_timestamp: u32,
720         /// The range of information in seconds
721         pub timestamp_range: u32,
722 }
723
724 /// Encoding type for data compression of collections in gossip queries.
725 /// We do not support encoding_type=1 zlib serialization defined in BOLT #7.
726 enum EncodingType {
727         Uncompressed = 0x00,
728 }
729
730 /// Used to put an error message in a LightningError
731 #[derive(Clone, Debug)]
732 pub enum ErrorAction {
733         /// The peer took some action which made us think they were useless. Disconnect them.
734         DisconnectPeer {
735                 /// An error message which we should make an effort to send before we disconnect.
736                 msg: Option<ErrorMessage>
737         },
738         /// The peer did something harmless that we weren't able to process, just log and ignore
739         // New code should *not* use this. New code must use IgnoreAndLog, below!
740         IgnoreError,
741         /// The peer did something harmless that we weren't able to meaningfully process.
742         /// If the error is logged, log it at the given level.
743         IgnoreAndLog(logger::Level),
744         /// The peer provided us with a gossip message which we'd already seen. In most cases this
745         /// should be ignored, but it may result in the message being forwarded if it is a duplicate of
746         /// our own channel announcements.
747         IgnoreDuplicateGossip,
748         /// The peer did something incorrect. Tell them.
749         SendErrorMessage {
750                 /// The message to send.
751                 msg: ErrorMessage,
752         },
753         /// The peer did something incorrect. Tell them without closing any channels.
754         SendWarningMessage {
755                 /// The message to send.
756                 msg: WarningMessage,
757                 /// The peer may have done something harmless that we weren't able to meaningfully process,
758                 /// though we should still tell them about it.
759                 /// If this event is logged, log it at the given level.
760                 log_level: logger::Level,
761         },
762 }
763
764 /// An Err type for failure to process messages.
765 #[derive(Clone, Debug)]
766 pub struct LightningError {
767         /// A human-readable message describing the error
768         pub err: String,
769         /// The action which should be taken against the offending peer.
770         pub action: ErrorAction,
771 }
772
773 /// Struct used to return values from revoke_and_ack messages, containing a bunch of commitment
774 /// transaction updates if they were pending.
775 #[derive(Clone, Debug, PartialEq)]
776 pub struct CommitmentUpdate {
777         /// update_add_htlc messages which should be sent
778         pub update_add_htlcs: Vec<UpdateAddHTLC>,
779         /// update_fulfill_htlc messages which should be sent
780         pub update_fulfill_htlcs: Vec<UpdateFulfillHTLC>,
781         /// update_fail_htlc messages which should be sent
782         pub update_fail_htlcs: Vec<UpdateFailHTLC>,
783         /// update_fail_malformed_htlc messages which should be sent
784         pub update_fail_malformed_htlcs: Vec<UpdateFailMalformedHTLC>,
785         /// An update_fee message which should be sent
786         pub update_fee: Option<UpdateFee>,
787         /// Finally, the commitment_signed message which should be sent
788         pub commitment_signed: CommitmentSigned,
789 }
790
791 /// Messages could have optional fields to use with extended features
792 /// As we wish to serialize these differently from Option<T>s (Options get a tag byte, but
793 /// OptionalFeild simply gets Present if there are enough bytes to read into it), we have a
794 /// separate enum type for them.
795 /// (C-not exported) due to a free generic in T
796 #[derive(Clone, Debug, PartialEq)]
797 pub enum OptionalField<T> {
798         /// Optional field is included in message
799         Present(T),
800         /// Optional field is absent in message
801         Absent
802 }
803
804 /// A trait to describe an object which can receive channel messages.
805 ///
806 /// Messages MAY be called in parallel when they originate from different their_node_ids, however
807 /// they MUST NOT be called in parallel when the two calls have the same their_node_id.
808 pub trait ChannelMessageHandler : MessageSendEventsProvider {
809         //Channel init:
810         /// Handle an incoming open_channel message from the given peer.
811         fn handle_open_channel(&self, their_node_id: &PublicKey, their_features: InitFeatures, msg: &OpenChannel);
812         /// Handle an incoming accept_channel message from the given peer.
813         fn handle_accept_channel(&self, their_node_id: &PublicKey, their_features: InitFeatures, msg: &AcceptChannel);
814         /// Handle an incoming funding_created message from the given peer.
815         fn handle_funding_created(&self, their_node_id: &PublicKey, msg: &FundingCreated);
816         /// Handle an incoming funding_signed message from the given peer.
817         fn handle_funding_signed(&self, their_node_id: &PublicKey, msg: &FundingSigned);
818         /// Handle an incoming funding_locked message from the given peer.
819         fn handle_funding_locked(&self, their_node_id: &PublicKey, msg: &FundingLocked);
820
821         // Channl close:
822         /// Handle an incoming shutdown message from the given peer.
823         fn handle_shutdown(&self, their_node_id: &PublicKey, their_features: &InitFeatures, msg: &Shutdown);
824         /// Handle an incoming closing_signed message from the given peer.
825         fn handle_closing_signed(&self, their_node_id: &PublicKey, msg: &ClosingSigned);
826
827         // HTLC handling:
828         /// Handle an incoming update_add_htlc message from the given peer.
829         fn handle_update_add_htlc(&self, their_node_id: &PublicKey, msg: &UpdateAddHTLC);
830         /// Handle an incoming update_fulfill_htlc message from the given peer.
831         fn handle_update_fulfill_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFulfillHTLC);
832         /// Handle an incoming update_fail_htlc message from the given peer.
833         fn handle_update_fail_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFailHTLC);
834         /// Handle an incoming update_fail_malformed_htlc message from the given peer.
835         fn handle_update_fail_malformed_htlc(&self, their_node_id: &PublicKey, msg: &UpdateFailMalformedHTLC);
836         /// Handle an incoming commitment_signed message from the given peer.
837         fn handle_commitment_signed(&self, their_node_id: &PublicKey, msg: &CommitmentSigned);
838         /// Handle an incoming revoke_and_ack message from the given peer.
839         fn handle_revoke_and_ack(&self, their_node_id: &PublicKey, msg: &RevokeAndACK);
840
841         /// Handle an incoming update_fee message from the given peer.
842         fn handle_update_fee(&self, their_node_id: &PublicKey, msg: &UpdateFee);
843
844         // Channel-to-announce:
845         /// Handle an incoming announcement_signatures message from the given peer.
846         fn handle_announcement_signatures(&self, their_node_id: &PublicKey, msg: &AnnouncementSignatures);
847
848         // Connection loss/reestablish:
849         /// Indicates a connection to the peer failed/an existing connection was lost. If no connection
850         /// is believed to be possible in the future (eg they're sending us messages we don't
851         /// understand or indicate they require unknown feature bits), no_connection_possible is set
852         /// and any outstanding channels should be failed.
853         fn peer_disconnected(&self, their_node_id: &PublicKey, no_connection_possible: bool);
854
855         /// Handle a peer reconnecting, possibly generating channel_reestablish message(s).
856         fn peer_connected(&self, their_node_id: &PublicKey, msg: &Init);
857         /// Handle an incoming channel_reestablish message from the given peer.
858         fn handle_channel_reestablish(&self, their_node_id: &PublicKey, msg: &ChannelReestablish);
859
860         /// Handle an incoming channel update from the given peer.
861         fn handle_channel_update(&self, their_node_id: &PublicKey, msg: &ChannelUpdate);
862
863         // Error:
864         /// Handle an incoming error message from the given peer.
865         fn handle_error(&self, their_node_id: &PublicKey, msg: &ErrorMessage);
866 }
867
868 /// A trait to describe an object which can receive routing messages.
869 ///
870 /// # Implementor DoS Warnings
871 ///
872 /// For `gossip_queries` messages there are potential DoS vectors when handling
873 /// inbound queries. Implementors using an on-disk network graph should be aware of
874 /// repeated disk I/O for queries accessing different parts of the network graph.
875 pub trait RoutingMessageHandler : MessageSendEventsProvider {
876         /// Handle an incoming node_announcement message, returning true if it should be forwarded on,
877         /// false or returning an Err otherwise.
878         fn handle_node_announcement(&self, msg: &NodeAnnouncement) -> Result<bool, LightningError>;
879         /// Handle a channel_announcement message, returning true if it should be forwarded on, false
880         /// or returning an Err otherwise.
881         fn handle_channel_announcement(&self, msg: &ChannelAnnouncement) -> Result<bool, LightningError>;
882         /// Handle an incoming channel_update message, returning true if it should be forwarded on,
883         /// false or returning an Err otherwise.
884         fn handle_channel_update(&self, msg: &ChannelUpdate) -> Result<bool, LightningError>;
885         /// Gets a subset of the channel announcements and updates required to dump our routing table
886         /// to a remote node, starting at the short_channel_id indicated by starting_point and
887         /// including the batch_amount entries immediately higher in numerical value than starting_point.
888         fn get_next_channel_announcements(&self, starting_point: u64, batch_amount: u8) -> Vec<(ChannelAnnouncement, Option<ChannelUpdate>, Option<ChannelUpdate>)>;
889         /// Gets a subset of the node announcements required to dump our routing table to a remote node,
890         /// starting at the node *after* the provided publickey and including batch_amount entries
891         /// immediately higher (as defined by <PublicKey as Ord>::cmp) than starting_point.
892         /// If None is provided for starting_point, we start at the first node.
893         fn get_next_node_announcements(&self, starting_point: Option<&PublicKey>, batch_amount: u8) -> Vec<NodeAnnouncement>;
894         /// Called when a connection is established with a peer. This can be used to
895         /// perform routing table synchronization using a strategy defined by the
896         /// implementor.
897         fn peer_connected(&self, their_node_id: &PublicKey, init: &Init);
898         /// Handles the reply of a query we initiated to learn about channels
899         /// for a given range of blocks. We can expect to receive one or more
900         /// replies to a single query.
901         fn handle_reply_channel_range(&self, their_node_id: &PublicKey, msg: ReplyChannelRange) -> Result<(), LightningError>;
902         /// Handles the reply of a query we initiated asking for routing gossip
903         /// messages for a list of channels. We should receive this message when
904         /// a node has completed its best effort to send us the pertaining routing
905         /// gossip messages.
906         fn handle_reply_short_channel_ids_end(&self, their_node_id: &PublicKey, msg: ReplyShortChannelIdsEnd) -> Result<(), LightningError>;
907         /// Handles when a peer asks us to send a list of short_channel_ids
908         /// for the requested range of blocks.
909         fn handle_query_channel_range(&self, their_node_id: &PublicKey, msg: QueryChannelRange) -> Result<(), LightningError>;
910         /// Handles when a peer asks us to send routing gossip messages for a
911         /// list of short_channel_ids.
912         fn handle_query_short_channel_ids(&self, their_node_id: &PublicKey, msg: QueryShortChannelIds) -> Result<(), LightningError>;
913 }
914
915 mod fuzzy_internal_msgs {
916         use prelude::*;
917         use ln::{PaymentPreimage, PaymentSecret};
918
919         // These types aren't intended to be pub, but are exposed for direct fuzzing (as we deserialize
920         // them from untrusted input):
921         #[derive(Clone)]
922         pub(crate) struct FinalOnionHopData {
923                 pub(crate) payment_secret: PaymentSecret,
924                 /// The total value, in msat, of the payment as received by the ultimate recipient.
925                 /// Message serialization may panic if this value is more than 21 million Bitcoin.
926                 pub(crate) total_msat: u64,
927         }
928
929         pub(crate) enum OnionHopDataFormat {
930                 Legacy { // aka Realm-0
931                         short_channel_id: u64,
932                 },
933                 NonFinalNode {
934                         short_channel_id: u64,
935                 },
936                 FinalNode {
937                         payment_data: Option<FinalOnionHopData>,
938                         keysend_preimage: Option<PaymentPreimage>,
939                 },
940         }
941
942         pub struct OnionHopData {
943                 pub(crate) format: OnionHopDataFormat,
944                 /// The value, in msat, of the payment after this hop's fee is deducted.
945                 /// Message serialization may panic if this value is more than 21 million Bitcoin.
946                 pub(crate) amt_to_forward: u64,
947                 pub(crate) outgoing_cltv_value: u32,
948                 // 12 bytes of 0-padding for Legacy format
949         }
950
951         pub struct DecodedOnionErrorPacket {
952                 pub(crate) hmac: [u8; 32],
953                 pub(crate) failuremsg: Vec<u8>,
954                 pub(crate) pad: Vec<u8>,
955         }
956 }
957 #[cfg(fuzzing)]
958 pub use self::fuzzy_internal_msgs::*;
959 #[cfg(not(fuzzing))]
960 pub(crate) use self::fuzzy_internal_msgs::*;
961
962 #[derive(Clone)]
963 pub(crate) struct OnionPacket {
964         pub(crate) version: u8,
965         /// In order to ensure we always return an error on Onion decode in compliance with BOLT 4, we
966         /// have to deserialize OnionPackets contained in UpdateAddHTLCs even if the ephemeral public
967         /// key (here) is bogus, so we hold a Result instead of a PublicKey as we'd like.
968         pub(crate) public_key: Result<PublicKey, secp256k1::Error>,
969         pub(crate) hop_data: [u8; 20*65],
970         pub(crate) hmac: [u8; 32],
971 }
972
973 impl PartialEq for OnionPacket {
974         fn eq(&self, other: &OnionPacket) -> bool {
975                 for (i, j) in self.hop_data.iter().zip(other.hop_data.iter()) {
976                         if i != j { return false; }
977                 }
978                 self.version == other.version &&
979                         self.public_key == other.public_key &&
980                         self.hmac == other.hmac
981         }
982 }
983
984 impl fmt::Debug for OnionPacket {
985         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
986                 f.write_fmt(format_args!("OnionPacket version {} with hmac {:?}", self.version, &self.hmac[..]))
987         }
988 }
989
990 #[derive(Clone, Debug, PartialEq)]
991 pub(crate) struct OnionErrorPacket {
992         // This really should be a constant size slice, but the spec lets these things be up to 128KB?
993         // (TODO) We limit it in decode to much lower...
994         pub(crate) data: Vec<u8>,
995 }
996
997 impl fmt::Display for DecodeError {
998         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
999                 match *self {
1000                         DecodeError::UnknownVersion => f.write_str("Unknown realm byte in Onion packet"),
1001                         DecodeError::UnknownRequiredFeature => f.write_str("Unknown required feature preventing decode"),
1002                         DecodeError::InvalidValue => f.write_str("Nonsense bytes didn't map to the type they were interpreted as"),
1003                         DecodeError::ShortRead => f.write_str("Packet extended beyond the provided bytes"),
1004                         DecodeError::BadLengthDescriptor => f.write_str("A length descriptor in the packet didn't describe the later data correctly"),
1005                         DecodeError::Io(ref e) => fmt::Debug::fmt(e, f),
1006                         DecodeError::UnsupportedCompression => f.write_str("We don't support receiving messages with zlib-compressed fields"),
1007                 }
1008         }
1009 }
1010
1011 impl From<io::Error> for DecodeError {
1012         fn from(e: io::Error) -> Self {
1013                 if e.kind() == io::ErrorKind::UnexpectedEof {
1014                         DecodeError::ShortRead
1015                 } else {
1016                         DecodeError::Io(e.kind())
1017                 }
1018         }
1019 }
1020
1021 impl Writeable for OptionalField<Script> {
1022         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1023                 match *self {
1024                         OptionalField::Present(ref script) => {
1025                                 // Note that Writeable for script includes the 16-bit length tag for us
1026                                 script.write(w)?;
1027                         },
1028                         OptionalField::Absent => {}
1029                 }
1030                 Ok(())
1031         }
1032 }
1033
1034 impl Readable for OptionalField<Script> {
1035         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1036                 match <u16 as Readable>::read(r) {
1037                         Ok(len) => {
1038                                 let mut buf = vec![0; len as usize];
1039                                 r.read_exact(&mut buf)?;
1040                                 Ok(OptionalField::Present(Script::from(buf)))
1041                         },
1042                         Err(DecodeError::ShortRead) => Ok(OptionalField::Absent),
1043                         Err(e) => Err(e)
1044                 }
1045         }
1046 }
1047
1048 impl Writeable for OptionalField<u64> {
1049         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1050                 match *self {
1051                         OptionalField::Present(ref value) => {
1052                                 value.write(w)?;
1053                         },
1054                         OptionalField::Absent => {}
1055                 }
1056                 Ok(())
1057         }
1058 }
1059
1060 impl Readable for OptionalField<u64> {
1061         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1062                 let value: u64 = Readable::read(r)?;
1063                 Ok(OptionalField::Present(value))
1064         }
1065 }
1066
1067
1068 impl_writeable_msg!(AcceptChannel, {
1069         temporary_channel_id,
1070         dust_limit_satoshis,
1071         max_htlc_value_in_flight_msat,
1072         channel_reserve_satoshis,
1073         htlc_minimum_msat,
1074         minimum_depth,
1075         to_self_delay,
1076         max_accepted_htlcs,
1077         funding_pubkey,
1078         revocation_basepoint,
1079         payment_point,
1080         delayed_payment_basepoint,
1081         htlc_basepoint,
1082         first_per_commitment_point,
1083         shutdown_scriptpubkey
1084 }, {
1085         (1, channel_type, option),
1086 });
1087
1088 impl_writeable_msg!(AnnouncementSignatures, {
1089         channel_id,
1090         short_channel_id,
1091         node_signature,
1092         bitcoin_signature
1093 }, {});
1094
1095 impl Writeable for ChannelReestablish {
1096         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1097                 self.channel_id.write(w)?;
1098                 self.next_local_commitment_number.write(w)?;
1099                 self.next_remote_commitment_number.write(w)?;
1100                 match self.data_loss_protect {
1101                         OptionalField::Present(ref data_loss_protect) => {
1102                                 (*data_loss_protect).your_last_per_commitment_secret.write(w)?;
1103                                 (*data_loss_protect).my_current_per_commitment_point.write(w)?;
1104                         },
1105                         OptionalField::Absent => {}
1106                 }
1107                 Ok(())
1108         }
1109 }
1110
1111 impl Readable for ChannelReestablish{
1112         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1113                 Ok(Self {
1114                         channel_id: Readable::read(r)?,
1115                         next_local_commitment_number: Readable::read(r)?,
1116                         next_remote_commitment_number: Readable::read(r)?,
1117                         data_loss_protect: {
1118                                 match <[u8; 32] as Readable>::read(r) {
1119                                         Ok(your_last_per_commitment_secret) =>
1120                                                 OptionalField::Present(DataLossProtect {
1121                                                         your_last_per_commitment_secret,
1122                                                         my_current_per_commitment_point: Readable::read(r)?,
1123                                                 }),
1124                                         Err(DecodeError::ShortRead) => OptionalField::Absent,
1125                                         Err(e) => return Err(e)
1126                                 }
1127                         }
1128                 })
1129         }
1130 }
1131
1132 impl_writeable_msg!(ClosingSigned,
1133         { channel_id, fee_satoshis, signature },
1134         { (1, fee_range, option) }
1135 );
1136
1137 impl_writeable!(ClosingSignedFeeRange, {
1138         min_fee_satoshis,
1139         max_fee_satoshis
1140 });
1141
1142 impl_writeable_msg!(CommitmentSigned, {
1143         channel_id,
1144         signature,
1145         htlc_signatures
1146 }, {});
1147
1148 impl_writeable!(DecodedOnionErrorPacket, {
1149         hmac,
1150         failuremsg,
1151         pad
1152 });
1153
1154 impl_writeable_msg!(FundingCreated, {
1155         temporary_channel_id,
1156         funding_txid,
1157         funding_output_index,
1158         signature
1159 }, {});
1160
1161 impl_writeable_msg!(FundingSigned, {
1162         channel_id,
1163         signature
1164 }, {});
1165
1166 impl_writeable_msg!(FundingLocked, {
1167         channel_id,
1168         next_per_commitment_point,
1169 }, {
1170         (1, short_channel_id_alias, option),
1171 });
1172
1173 impl Writeable for Init {
1174         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1175                 // global_features gets the bottom 13 bits of our features, and local_features gets all of
1176                 // our relevant feature bits. This keeps us compatible with old nodes.
1177                 self.features.write_up_to_13(w)?;
1178                 self.features.write(w)?;
1179                 encode_tlv_stream!(w, {
1180                         (3, self.remote_network_address, option)
1181                 });
1182                 Ok(())
1183         }
1184 }
1185
1186 impl Readable for Init {
1187         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1188                 let global_features: InitFeatures = Readable::read(r)?;
1189                 let features: InitFeatures = Readable::read(r)?;
1190                 let mut remote_network_address: Option<NetAddress> = None;
1191                 decode_tlv_stream!(r, {
1192                         (3, remote_network_address, option)
1193                 });
1194                 Ok(Init {
1195                         features: features.or(global_features),
1196                         remote_network_address,
1197                 })
1198         }
1199 }
1200
1201 impl_writeable_msg!(OpenChannel, {
1202         chain_hash,
1203         temporary_channel_id,
1204         funding_satoshis,
1205         push_msat,
1206         dust_limit_satoshis,
1207         max_htlc_value_in_flight_msat,
1208         channel_reserve_satoshis,
1209         htlc_minimum_msat,
1210         feerate_per_kw,
1211         to_self_delay,
1212         max_accepted_htlcs,
1213         funding_pubkey,
1214         revocation_basepoint,
1215         payment_point,
1216         delayed_payment_basepoint,
1217         htlc_basepoint,
1218         first_per_commitment_point,
1219         channel_flags,
1220         shutdown_scriptpubkey
1221 }, {
1222         (1, channel_type, option),
1223 });
1224
1225 impl_writeable_msg!(RevokeAndACK, {
1226         channel_id,
1227         per_commitment_secret,
1228         next_per_commitment_point
1229 }, {});
1230
1231 impl_writeable_msg!(Shutdown, {
1232         channel_id,
1233         scriptpubkey
1234 }, {});
1235
1236 impl_writeable_msg!(UpdateFailHTLC, {
1237         channel_id,
1238         htlc_id,
1239         reason
1240 }, {});
1241
1242 impl_writeable_msg!(UpdateFailMalformedHTLC, {
1243         channel_id,
1244         htlc_id,
1245         sha256_of_onion,
1246         failure_code
1247 }, {});
1248
1249 impl_writeable_msg!(UpdateFee, {
1250         channel_id,
1251         feerate_per_kw
1252 }, {});
1253
1254 impl_writeable_msg!(UpdateFulfillHTLC, {
1255         channel_id,
1256         htlc_id,
1257         payment_preimage
1258 }, {});
1259
1260 // Note that this is written as a part of ChannelManager objects, and thus cannot change its
1261 // serialization format in a way which assumes we know the total serialized length/message end
1262 // position.
1263 impl_writeable!(OnionErrorPacket, {
1264         data
1265 });
1266
1267 // Note that this is written as a part of ChannelManager objects, and thus cannot change its
1268 // serialization format in a way which assumes we know the total serialized length/message end
1269 // position.
1270 impl Writeable for OnionPacket {
1271         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1272                 self.version.write(w)?;
1273                 match self.public_key {
1274                         Ok(pubkey) => pubkey.write(w)?,
1275                         Err(_) => [0u8;33].write(w)?,
1276                 }
1277                 w.write_all(&self.hop_data)?;
1278                 self.hmac.write(w)?;
1279                 Ok(())
1280         }
1281 }
1282
1283 impl Readable for OnionPacket {
1284         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1285                 Ok(OnionPacket {
1286                         version: Readable::read(r)?,
1287                         public_key: {
1288                                 let mut buf = [0u8;33];
1289                                 r.read_exact(&mut buf)?;
1290                                 PublicKey::from_slice(&buf)
1291                         },
1292                         hop_data: Readable::read(r)?,
1293                         hmac: Readable::read(r)?,
1294                 })
1295         }
1296 }
1297
1298 impl_writeable_msg!(UpdateAddHTLC, {
1299         channel_id,
1300         htlc_id,
1301         amount_msat,
1302         payment_hash,
1303         cltv_expiry,
1304         onion_routing_packet
1305 }, {});
1306
1307 impl Writeable for FinalOnionHopData {
1308         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1309                 self.payment_secret.0.write(w)?;
1310                 HighZeroBytesDroppedVarInt(self.total_msat).write(w)
1311         }
1312 }
1313
1314 impl Readable for FinalOnionHopData {
1315         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1316                 let secret: [u8; 32] = Readable::read(r)?;
1317                 let amt: HighZeroBytesDroppedVarInt<u64> = Readable::read(r)?;
1318                 Ok(Self { payment_secret: PaymentSecret(secret), total_msat: amt.0 })
1319         }
1320 }
1321
1322 impl Writeable for OnionHopData {
1323         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1324                 match self.format {
1325                         OnionHopDataFormat::Legacy { short_channel_id } => {
1326                                 0u8.write(w)?;
1327                                 short_channel_id.write(w)?;
1328                                 self.amt_to_forward.write(w)?;
1329                                 self.outgoing_cltv_value.write(w)?;
1330                                 w.write_all(&[0;12])?;
1331                         },
1332                         OnionHopDataFormat::NonFinalNode { short_channel_id } => {
1333                                 encode_varint_length_prefixed_tlv!(w, {
1334                                         (2, HighZeroBytesDroppedVarInt(self.amt_to_forward), required),
1335                                         (4, HighZeroBytesDroppedVarInt(self.outgoing_cltv_value), required),
1336                                         (6, short_channel_id, required)
1337                                 });
1338                         },
1339                         OnionHopDataFormat::FinalNode { ref payment_data, ref keysend_preimage } => {
1340                                 encode_varint_length_prefixed_tlv!(w, {
1341                                         (2, HighZeroBytesDroppedVarInt(self.amt_to_forward), required),
1342                                         (4, HighZeroBytesDroppedVarInt(self.outgoing_cltv_value), required),
1343                                         (8, payment_data, option),
1344                                         (5482373484, keysend_preimage, option)
1345                                 });
1346                         },
1347                 }
1348                 Ok(())
1349         }
1350 }
1351
1352 impl Readable for OnionHopData {
1353         fn read<R: Read>(mut r: &mut R) -> Result<Self, DecodeError> {
1354                 use bitcoin::consensus::encode::{Decodable, Error, VarInt};
1355                 let v: VarInt = Decodable::consensus_decode(&mut r)
1356                         .map_err(|e| match e {
1357                                 Error::Io(ioe) => DecodeError::from(ioe),
1358                                 _ => DecodeError::InvalidValue
1359                         })?;
1360                 const LEGACY_ONION_HOP_FLAG: u64 = 0;
1361                 let (format, amt, cltv_value) = if v.0 != LEGACY_ONION_HOP_FLAG {
1362                         let mut rd = FixedLengthReader::new(r, v.0);
1363                         let mut amt = HighZeroBytesDroppedVarInt(0u64);
1364                         let mut cltv_value = HighZeroBytesDroppedVarInt(0u32);
1365                         let mut short_id: Option<u64> = None;
1366                         let mut payment_data: Option<FinalOnionHopData> = None;
1367                         let mut keysend_preimage: Option<PaymentPreimage> = None;
1368                         // The TLV type is chosen to be compatible with lnd and c-lightning.
1369                         decode_tlv_stream!(&mut rd, {
1370                                 (2, amt, required),
1371                                 (4, cltv_value, required),
1372                                 (6, short_id, option),
1373                                 (8, payment_data, option),
1374                                 (5482373484, keysend_preimage, option)
1375                         });
1376                         rd.eat_remaining().map_err(|_| DecodeError::ShortRead)?;
1377                         let format = if let Some(short_channel_id) = short_id {
1378                                 if payment_data.is_some() { return Err(DecodeError::InvalidValue); }
1379                                 OnionHopDataFormat::NonFinalNode {
1380                                         short_channel_id,
1381                                 }
1382                         } else {
1383                                 if let &Some(ref data) = &payment_data {
1384                                         if data.total_msat > MAX_VALUE_MSAT {
1385                                                 return Err(DecodeError::InvalidValue);
1386                                         }
1387                                 }
1388                                 OnionHopDataFormat::FinalNode {
1389                                         payment_data,
1390                                         keysend_preimage,
1391                                 }
1392                         };
1393                         (format, amt.0, cltv_value.0)
1394                 } else {
1395                         let format = OnionHopDataFormat::Legacy {
1396                                 short_channel_id: Readable::read(r)?,
1397                         };
1398                         let amt: u64 = Readable::read(r)?;
1399                         let cltv_value: u32 = Readable::read(r)?;
1400                         r.read_exact(&mut [0; 12])?;
1401                         (format, amt, cltv_value)
1402                 };
1403
1404                 if amt > MAX_VALUE_MSAT {
1405                         return Err(DecodeError::InvalidValue);
1406                 }
1407                 Ok(OnionHopData {
1408                         format,
1409                         amt_to_forward: amt,
1410                         outgoing_cltv_value: cltv_value,
1411                 })
1412         }
1413 }
1414
1415 impl Writeable for Ping {
1416         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1417                 self.ponglen.write(w)?;
1418                 vec![0u8; self.byteslen as usize].write(w)?; // size-unchecked write
1419                 Ok(())
1420         }
1421 }
1422
1423 impl Readable for Ping {
1424         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1425                 Ok(Ping {
1426                         ponglen: Readable::read(r)?,
1427                         byteslen: {
1428                                 let byteslen = Readable::read(r)?;
1429                                 r.read_exact(&mut vec![0u8; byteslen as usize][..])?;
1430                                 byteslen
1431                         }
1432                 })
1433         }
1434 }
1435
1436 impl Writeable for Pong {
1437         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1438                 vec![0u8; self.byteslen as usize].write(w)?; // size-unchecked write
1439                 Ok(())
1440         }
1441 }
1442
1443 impl Readable for Pong {
1444         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1445                 Ok(Pong {
1446                         byteslen: {
1447                                 let byteslen = Readable::read(r)?;
1448                                 r.read_exact(&mut vec![0u8; byteslen as usize][..])?;
1449                                 byteslen
1450                         }
1451                 })
1452         }
1453 }
1454
1455 impl Writeable for UnsignedChannelAnnouncement {
1456         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1457                 self.features.write(w)?;
1458                 self.chain_hash.write(w)?;
1459                 self.short_channel_id.write(w)?;
1460                 self.node_id_1.write(w)?;
1461                 self.node_id_2.write(w)?;
1462                 self.bitcoin_key_1.write(w)?;
1463                 self.bitcoin_key_2.write(w)?;
1464                 w.write_all(&self.excess_data[..])?;
1465                 Ok(())
1466         }
1467 }
1468
1469 impl Readable for UnsignedChannelAnnouncement {
1470         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1471                 Ok(Self {
1472                         features: Readable::read(r)?,
1473                         chain_hash: Readable::read(r)?,
1474                         short_channel_id: Readable::read(r)?,
1475                         node_id_1: Readable::read(r)?,
1476                         node_id_2: Readable::read(r)?,
1477                         bitcoin_key_1: Readable::read(r)?,
1478                         bitcoin_key_2: Readable::read(r)?,
1479                         excess_data: read_to_end(r)?,
1480                 })
1481         }
1482 }
1483
1484 impl_writeable!(ChannelAnnouncement, {
1485         node_signature_1,
1486         node_signature_2,
1487         bitcoin_signature_1,
1488         bitcoin_signature_2,
1489         contents
1490 });
1491
1492 impl Writeable for UnsignedChannelUpdate {
1493         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1494                 let mut message_flags: u8 = 0;
1495                 if let OptionalField::Present(_) = self.htlc_maximum_msat {
1496                         message_flags = 1;
1497                 }
1498                 self.chain_hash.write(w)?;
1499                 self.short_channel_id.write(w)?;
1500                 self.timestamp.write(w)?;
1501                 let all_flags = self.flags as u16 | ((message_flags as u16) << 8);
1502                 all_flags.write(w)?;
1503                 self.cltv_expiry_delta.write(w)?;
1504                 self.htlc_minimum_msat.write(w)?;
1505                 self.fee_base_msat.write(w)?;
1506                 self.fee_proportional_millionths.write(w)?;
1507                 self.htlc_maximum_msat.write(w)?;
1508                 w.write_all(&self.excess_data[..])?;
1509                 Ok(())
1510         }
1511 }
1512
1513 impl Readable for UnsignedChannelUpdate {
1514         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1515                 let has_htlc_maximum_msat;
1516                 Ok(Self {
1517                         chain_hash: Readable::read(r)?,
1518                         short_channel_id: Readable::read(r)?,
1519                         timestamp: Readable::read(r)?,
1520                         flags: {
1521                                 let flags: u16 = Readable::read(r)?;
1522                                 let message_flags = flags >> 8;
1523                                 has_htlc_maximum_msat = (message_flags as i32 & 1) == 1;
1524                                 flags as u8
1525                         },
1526                         cltv_expiry_delta: Readable::read(r)?,
1527                         htlc_minimum_msat: Readable::read(r)?,
1528                         fee_base_msat: Readable::read(r)?,
1529                         fee_proportional_millionths: Readable::read(r)?,
1530                         htlc_maximum_msat: if has_htlc_maximum_msat { Readable::read(r)? } else { OptionalField::Absent },
1531                         excess_data: read_to_end(r)?,
1532                 })
1533         }
1534 }
1535
1536 impl_writeable!(ChannelUpdate, {
1537         signature,
1538         contents
1539 });
1540
1541 impl Writeable for ErrorMessage {
1542         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1543                 self.channel_id.write(w)?;
1544                 (self.data.len() as u16).write(w)?;
1545                 w.write_all(self.data.as_bytes())?;
1546                 Ok(())
1547         }
1548 }
1549
1550 impl Readable for ErrorMessage {
1551         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1552                 Ok(Self {
1553                         channel_id: Readable::read(r)?,
1554                         data: {
1555                                 let sz: usize = <u16 as Readable>::read(r)? as usize;
1556                                 let mut data = Vec::with_capacity(sz);
1557                                 data.resize(sz, 0);
1558                                 r.read_exact(&mut data)?;
1559                                 match String::from_utf8(data) {
1560                                         Ok(s) => s,
1561                                         Err(_) => return Err(DecodeError::InvalidValue),
1562                                 }
1563                         }
1564                 })
1565         }
1566 }
1567
1568 impl Writeable for WarningMessage {
1569         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1570                 self.channel_id.write(w)?;
1571                 (self.data.len() as u16).write(w)?;
1572                 w.write_all(self.data.as_bytes())?;
1573                 Ok(())
1574         }
1575 }
1576
1577 impl Readable for WarningMessage {
1578         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1579                 Ok(Self {
1580                         channel_id: Readable::read(r)?,
1581                         data: {
1582                                 let sz: usize = <u16 as Readable>::read(r)? as usize;
1583                                 let mut data = Vec::with_capacity(sz);
1584                                 data.resize(sz, 0);
1585                                 r.read_exact(&mut data)?;
1586                                 match String::from_utf8(data) {
1587                                         Ok(s) => s,
1588                                         Err(_) => return Err(DecodeError::InvalidValue),
1589                                 }
1590                         }
1591                 })
1592         }
1593 }
1594
1595 impl Writeable for UnsignedNodeAnnouncement {
1596         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1597                 self.features.write(w)?;
1598                 self.timestamp.write(w)?;
1599                 self.node_id.write(w)?;
1600                 w.write_all(&self.rgb)?;
1601                 self.alias.write(w)?;
1602
1603                 let mut addr_len = 0;
1604                 for addr in self.addresses.iter() {
1605                         addr_len += 1 + addr.len();
1606                 }
1607                 (addr_len + self.excess_address_data.len() as u16).write(w)?;
1608                 for addr in self.addresses.iter() {
1609                         addr.write(w)?;
1610                 }
1611                 w.write_all(&self.excess_address_data[..])?;
1612                 w.write_all(&self.excess_data[..])?;
1613                 Ok(())
1614         }
1615 }
1616
1617 impl Readable for UnsignedNodeAnnouncement {
1618         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1619                 let features: NodeFeatures = Readable::read(r)?;
1620                 let timestamp: u32 = Readable::read(r)?;
1621                 let node_id: PublicKey = Readable::read(r)?;
1622                 let mut rgb = [0; 3];
1623                 r.read_exact(&mut rgb)?;
1624                 let alias: [u8; 32] = Readable::read(r)?;
1625
1626                 let addr_len: u16 = Readable::read(r)?;
1627                 let mut addresses: Vec<NetAddress> = Vec::new();
1628                 let mut addr_readpos = 0;
1629                 let mut excess = false;
1630                 let mut excess_byte = 0;
1631                 loop {
1632                         if addr_len <= addr_readpos { break; }
1633                         match Readable::read(r) {
1634                                 Ok(Ok(addr)) => {
1635                                         if addr_len < addr_readpos + 1 + addr.len() {
1636                                                 return Err(DecodeError::BadLengthDescriptor);
1637                                         }
1638                                         addr_readpos += (1 + addr.len()) as u16;
1639                                         addresses.push(addr);
1640                                 },
1641                                 Ok(Err(unknown_descriptor)) => {
1642                                         excess = true;
1643                                         excess_byte = unknown_descriptor;
1644                                         break;
1645                                 },
1646                                 Err(DecodeError::ShortRead) => return Err(DecodeError::BadLengthDescriptor),
1647                                 Err(e) => return Err(e),
1648                         }
1649                 }
1650
1651                 let mut excess_data = vec![];
1652                 let excess_address_data = if addr_readpos < addr_len {
1653                         let mut excess_address_data = vec![0; (addr_len - addr_readpos) as usize];
1654                         r.read_exact(&mut excess_address_data[if excess { 1 } else { 0 }..])?;
1655                         if excess {
1656                                 excess_address_data[0] = excess_byte;
1657                         }
1658                         excess_address_data
1659                 } else {
1660                         if excess {
1661                                 excess_data.push(excess_byte);
1662                         }
1663                         Vec::new()
1664                 };
1665                 excess_data.extend(read_to_end(r)?.iter());
1666                 Ok(UnsignedNodeAnnouncement {
1667                         features,
1668                         timestamp,
1669                         node_id,
1670                         rgb,
1671                         alias,
1672                         addresses,
1673                         excess_address_data,
1674                         excess_data,
1675                 })
1676         }
1677 }
1678
1679 impl_writeable!(NodeAnnouncement, {
1680         signature,
1681         contents
1682 });
1683
1684 impl Readable for QueryShortChannelIds {
1685         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1686                 let chain_hash: BlockHash = Readable::read(r)?;
1687
1688                 let encoding_len: u16 = Readable::read(r)?;
1689                 let encoding_type: u8 = Readable::read(r)?;
1690
1691                 // Must be encoding_type=0 uncompressed serialization. We do not
1692                 // support encoding_type=1 zlib serialization.
1693                 if encoding_type != EncodingType::Uncompressed as u8 {
1694                         return Err(DecodeError::UnsupportedCompression);
1695                 }
1696
1697                 // We expect the encoding_len to always includes the 1-byte
1698                 // encoding_type and that short_channel_ids are 8-bytes each
1699                 if encoding_len == 0 || (encoding_len - 1) % 8 != 0 {
1700                         return Err(DecodeError::InvalidValue);
1701                 }
1702
1703                 // Read short_channel_ids (8-bytes each), for the u16 encoding_len
1704                 // less the 1-byte encoding_type
1705                 let short_channel_id_count: u16 = (encoding_len - 1)/8;
1706                 let mut short_channel_ids = Vec::with_capacity(short_channel_id_count as usize);
1707                 for _ in 0..short_channel_id_count {
1708                         short_channel_ids.push(Readable::read(r)?);
1709                 }
1710
1711                 Ok(QueryShortChannelIds {
1712                         chain_hash,
1713                         short_channel_ids,
1714                 })
1715         }
1716 }
1717
1718 impl Writeable for QueryShortChannelIds {
1719         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1720                 // Calculated from 1-byte encoding_type plus 8-bytes per short_channel_id
1721                 let encoding_len: u16 = 1 + self.short_channel_ids.len() as u16 * 8;
1722
1723                 self.chain_hash.write(w)?;
1724                 encoding_len.write(w)?;
1725
1726                 // We only support type=0 uncompressed serialization
1727                 (EncodingType::Uncompressed as u8).write(w)?;
1728
1729                 for scid in self.short_channel_ids.iter() {
1730                         scid.write(w)?;
1731                 }
1732
1733                 Ok(())
1734         }
1735 }
1736
1737 impl_writeable_msg!(ReplyShortChannelIdsEnd, {
1738         chain_hash,
1739         full_information,
1740 }, {});
1741
1742 impl QueryChannelRange {
1743         /**
1744          * Calculates the overflow safe ending block height for the query.
1745          * Overflow returns `0xffffffff`, otherwise returns `first_blocknum + number_of_blocks`
1746          */
1747         pub fn end_blocknum(&self) -> u32 {
1748                 match self.first_blocknum.checked_add(self.number_of_blocks) {
1749                         Some(block) => block,
1750                         None => u32::max_value(),
1751                 }
1752         }
1753 }
1754
1755 impl_writeable_msg!(QueryChannelRange, {
1756         chain_hash,
1757         first_blocknum,
1758         number_of_blocks
1759 }, {});
1760
1761 impl Readable for ReplyChannelRange {
1762         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
1763                 let chain_hash: BlockHash = Readable::read(r)?;
1764                 let first_blocknum: u32 = Readable::read(r)?;
1765                 let number_of_blocks: u32 = Readable::read(r)?;
1766                 let sync_complete: bool = Readable::read(r)?;
1767
1768                 let encoding_len: u16 = Readable::read(r)?;
1769                 let encoding_type: u8 = Readable::read(r)?;
1770
1771                 // Must be encoding_type=0 uncompressed serialization. We do not
1772                 // support encoding_type=1 zlib serialization.
1773                 if encoding_type != EncodingType::Uncompressed as u8 {
1774                         return Err(DecodeError::UnsupportedCompression);
1775                 }
1776
1777                 // We expect the encoding_len to always includes the 1-byte
1778                 // encoding_type and that short_channel_ids are 8-bytes each
1779                 if encoding_len == 0 || (encoding_len - 1) % 8 != 0 {
1780                         return Err(DecodeError::InvalidValue);
1781                 }
1782
1783                 // Read short_channel_ids (8-bytes each), for the u16 encoding_len
1784                 // less the 1-byte encoding_type
1785                 let short_channel_id_count: u16 = (encoding_len - 1)/8;
1786                 let mut short_channel_ids = Vec::with_capacity(short_channel_id_count as usize);
1787                 for _ in 0..short_channel_id_count {
1788                         short_channel_ids.push(Readable::read(r)?);
1789                 }
1790
1791                 Ok(ReplyChannelRange {
1792                         chain_hash,
1793                         first_blocknum,
1794                         number_of_blocks,
1795                         sync_complete,
1796                         short_channel_ids
1797                 })
1798         }
1799 }
1800
1801 impl Writeable for ReplyChannelRange {
1802         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1803                 let encoding_len: u16 = 1 + self.short_channel_ids.len() as u16 * 8;
1804                 self.chain_hash.write(w)?;
1805                 self.first_blocknum.write(w)?;
1806                 self.number_of_blocks.write(w)?;
1807                 self.sync_complete.write(w)?;
1808
1809                 encoding_len.write(w)?;
1810                 (EncodingType::Uncompressed as u8).write(w)?;
1811                 for scid in self.short_channel_ids.iter() {
1812                         scid.write(w)?;
1813                 }
1814
1815                 Ok(())
1816         }
1817 }
1818
1819 impl_writeable_msg!(GossipTimestampFilter, {
1820         chain_hash,
1821         first_timestamp,
1822         timestamp_range,
1823 }, {});
1824
1825 #[cfg(test)]
1826 mod tests {
1827         use hex;
1828         use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
1829         use ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
1830         use ln::msgs;
1831         use ln::msgs::{FinalOnionHopData, OptionalField, OnionErrorPacket, OnionHopDataFormat};
1832         use util::ser::{Writeable, Readable};
1833
1834         use bitcoin::hashes::hex::FromHex;
1835         use bitcoin::util::address::Address;
1836         use bitcoin::network::constants::Network;
1837         use bitcoin::blockdata::script::Builder;
1838         use bitcoin::blockdata::opcodes;
1839         use bitcoin::hash_types::{Txid, BlockHash};
1840
1841         use bitcoin::secp256k1::{PublicKey,SecretKey};
1842         use bitcoin::secp256k1::{Secp256k1, Message};
1843
1844         use io::Cursor;
1845         use prelude::*;
1846
1847         #[test]
1848         fn encoding_channel_reestablish_no_secret() {
1849                 let cr = msgs::ChannelReestablish {
1850                         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],
1851                         next_local_commitment_number: 3,
1852                         next_remote_commitment_number: 4,
1853                         data_loss_protect: OptionalField::Absent,
1854                 };
1855
1856                 let encoded_value = cr.encode();
1857                 assert_eq!(
1858                         encoded_value,
1859                         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]
1860                 );
1861         }
1862
1863         #[test]
1864         fn encoding_channel_reestablish_with_secret() {
1865                 let public_key = {
1866                         let secp_ctx = Secp256k1::new();
1867                         PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap())
1868                 };
1869
1870                 let cr = msgs::ChannelReestablish {
1871                         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],
1872                         next_local_commitment_number: 3,
1873                         next_remote_commitment_number: 4,
1874                         data_loss_protect: OptionalField::Present(msgs::DataLossProtect { your_last_per_commitment_secret: [9;32], my_current_per_commitment_point: public_key}),
1875                 };
1876
1877                 let encoded_value = cr.encode();
1878                 assert_eq!(
1879                         encoded_value,
1880                         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]
1881                 );
1882         }
1883
1884         macro_rules! get_keys_from {
1885                 ($slice: expr, $secp_ctx: expr) => {
1886                         {
1887                                 let privkey = SecretKey::from_slice(&hex::decode($slice).unwrap()[..]).unwrap();
1888                                 let pubkey = PublicKey::from_secret_key(&$secp_ctx, &privkey);
1889                                 (privkey, pubkey)
1890                         }
1891                 }
1892         }
1893
1894         macro_rules! get_sig_on {
1895                 ($privkey: expr, $ctx: expr, $string: expr) => {
1896                         {
1897                                 let sighash = Message::from_slice(&$string.into_bytes()[..]).unwrap();
1898                                 $ctx.sign_ecdsa(&sighash, &$privkey)
1899                         }
1900                 }
1901         }
1902
1903         #[test]
1904         fn encoding_announcement_signatures() {
1905                 let secp_ctx = Secp256k1::new();
1906                 let (privkey, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1907                 let sig_1 = get_sig_on!(privkey, secp_ctx, String::from("01010101010101010101010101010101"));
1908                 let sig_2 = get_sig_on!(privkey, secp_ctx, String::from("02020202020202020202020202020202"));
1909                 let announcement_signatures = msgs::AnnouncementSignatures {
1910                         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],
1911                         short_channel_id: 2316138423780173,
1912                         node_signature: sig_1,
1913                         bitcoin_signature: sig_2,
1914                 };
1915
1916                 let encoded_value = announcement_signatures.encode();
1917                 assert_eq!(encoded_value, hex::decode("040000000000000005000000000000000600000000000000070000000000000000083a840000034dd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073acf9953cef4700860f5967838eba2bae89288ad188ebf8b20bf995c3ea53a26df1876d0a3a0e13172ba286a673140190c02ba9da60a2e43a745188c8a83c7f3ef").unwrap());
1918         }
1919
1920         fn do_encoding_channel_announcement(unknown_features_bits: bool, excess_data: bool) {
1921                 let secp_ctx = Secp256k1::new();
1922                 let (privkey_1, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1923                 let (privkey_2, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
1924                 let (privkey_3, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
1925                 let (privkey_4, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
1926                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1927                 let sig_2 = get_sig_on!(privkey_2, secp_ctx, String::from("01010101010101010101010101010101"));
1928                 let sig_3 = get_sig_on!(privkey_3, secp_ctx, String::from("01010101010101010101010101010101"));
1929                 let sig_4 = get_sig_on!(privkey_4, secp_ctx, String::from("01010101010101010101010101010101"));
1930                 let mut features = ChannelFeatures::known();
1931                 if unknown_features_bits {
1932                         features = ChannelFeatures::from_le_bytes(vec![0xFF, 0xFF]);
1933                 }
1934                 let unsigned_channel_announcement = msgs::UnsignedChannelAnnouncement {
1935                         features,
1936                         chain_hash: BlockHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap(),
1937                         short_channel_id: 2316138423780173,
1938                         node_id_1: pubkey_1,
1939                         node_id_2: pubkey_2,
1940                         bitcoin_key_1: pubkey_3,
1941                         bitcoin_key_2: pubkey_4,
1942                         excess_data: if excess_data { vec![10, 0, 0, 20, 0, 0, 30, 0, 0, 40] } else { Vec::new() },
1943                 };
1944                 let channel_announcement = msgs::ChannelAnnouncement {
1945                         node_signature_1: sig_1,
1946                         node_signature_2: sig_2,
1947                         bitcoin_signature_1: sig_3,
1948                         bitcoin_signature_2: sig_4,
1949                         contents: unsigned_channel_announcement,
1950                 };
1951                 let encoded_value = channel_announcement.encode();
1952                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a1735b6a427e80d5fe7cd90a2f4ee08dc9c27cda7c35a4172e5d85b12c49d4232537e98f9b1f3c5e6989a8b9644e90e8918127680dbd0d4043510840fc0f1e11a216c280b5395a2546e7e4b2663e04f811622f15a4f91e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d2692b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap();
1953                 if unknown_features_bits {
1954                         target_value.append(&mut hex::decode("0002ffff").unwrap());
1955                 } else {
1956                         target_value.append(&mut hex::decode("0000").unwrap());
1957                 }
1958                 target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
1959                 target_value.append(&mut hex::decode("00083a840000034d031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b").unwrap());
1960                 if excess_data {
1961                         target_value.append(&mut hex::decode("0a00001400001e000028").unwrap());
1962                 }
1963                 assert_eq!(encoded_value, target_value);
1964         }
1965
1966         #[test]
1967         fn encoding_channel_announcement() {
1968                 do_encoding_channel_announcement(true, false);
1969                 do_encoding_channel_announcement(false, true);
1970                 do_encoding_channel_announcement(false, false);
1971                 do_encoding_channel_announcement(true, true);
1972         }
1973
1974         fn do_encoding_node_announcement(unknown_features_bits: bool, ipv4: bool, ipv6: bool, onionv2: bool, onionv3: bool, excess_address_data: bool, excess_data: bool) {
1975                 let secp_ctx = Secp256k1::new();
1976                 let (privkey_1, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
1977                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
1978                 let features = if unknown_features_bits {
1979                         NodeFeatures::from_le_bytes(vec![0xFF, 0xFF])
1980                 } else {
1981                         // Set to some features we may support
1982                         NodeFeatures::from_le_bytes(vec![2 | 1 << 5])
1983                 };
1984                 let mut addresses = Vec::new();
1985                 if ipv4 {
1986                         addresses.push(msgs::NetAddress::IPv4 {
1987                                 addr: [255, 254, 253, 252],
1988                                 port: 9735
1989                         });
1990                 }
1991                 if ipv6 {
1992                         addresses.push(msgs::NetAddress::IPv6 {
1993                                 addr: [255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240],
1994                                 port: 9735
1995                         });
1996                 }
1997                 if onionv2 {
1998                         addresses.push(msgs::NetAddress::OnionV2(
1999                                 [255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 38, 7]
2000                         ));
2001                 }
2002                 if onionv3 {
2003                         addresses.push(msgs::NetAddress::OnionV3 {
2004                                 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],
2005                                 checksum: 32,
2006                                 version: 16,
2007                                 port: 9735
2008                         });
2009                 }
2010                 let mut addr_len = 0;
2011                 for addr in &addresses {
2012                         addr_len += addr.len() + 1;
2013                 }
2014                 let unsigned_node_announcement = msgs::UnsignedNodeAnnouncement {
2015                         features,
2016                         timestamp: 20190119,
2017                         node_id: pubkey_1,
2018                         rgb: [32; 3],
2019                         alias: [16;32],
2020                         addresses,
2021                         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() },
2022                         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() },
2023                 };
2024                 addr_len += unsigned_node_announcement.excess_address_data.len() as u16;
2025                 let node_announcement = msgs::NodeAnnouncement {
2026                         signature: sig_1,
2027                         contents: unsigned_node_announcement,
2028                 };
2029                 let encoded_value = node_announcement.encode();
2030                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2031                 if unknown_features_bits {
2032                         target_value.append(&mut hex::decode("0002ffff").unwrap());
2033                 } else {
2034                         target_value.append(&mut hex::decode("000122").unwrap());
2035                 }
2036                 target_value.append(&mut hex::decode("013413a7031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f2020201010101010101010101010101010101010101010101010101010101010101010").unwrap());
2037                 target_value.append(&mut vec![(addr_len >> 8) as u8, addr_len as u8]);
2038                 if ipv4 {
2039                         target_value.append(&mut hex::decode("01fffefdfc2607").unwrap());
2040                 }
2041                 if ipv6 {
2042                         target_value.append(&mut hex::decode("02fffefdfcfbfaf9f8f7f6f5f4f3f2f1f02607").unwrap());
2043                 }
2044                 if onionv2 {
2045                         target_value.append(&mut hex::decode("03fffefdfcfbfaf9f8f7f62607").unwrap());
2046                 }
2047                 if onionv3 {
2048                         target_value.append(&mut hex::decode("04fffefdfcfbfaf9f8f7f6f5f4f3f2f1f0efeeedecebeae9e8e7e6e5e4e3e2e1e00020102607").unwrap());
2049                 }
2050                 if excess_address_data {
2051                         target_value.append(&mut hex::decode("216c280b5395a2546e7e4b2663e04f811622f15a4f92e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d269").unwrap());
2052                 }
2053                 if excess_data {
2054                         target_value.append(&mut hex::decode("3b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap());
2055                 }
2056                 assert_eq!(encoded_value, target_value);
2057         }
2058
2059         #[test]
2060         fn encoding_node_announcement() {
2061                 do_encoding_node_announcement(true, true, true, true, true, true, true);
2062                 do_encoding_node_announcement(false, false, false, false, false, false, false);
2063                 do_encoding_node_announcement(false, true, false, false, false, false, false);
2064                 do_encoding_node_announcement(false, false, true, false, false, false, false);
2065                 do_encoding_node_announcement(false, false, false, true, false, false, false);
2066                 do_encoding_node_announcement(false, false, false, false, true, false, false);
2067                 do_encoding_node_announcement(false, false, false, false, false, true, false);
2068                 do_encoding_node_announcement(false, true, false, true, false, true, false);
2069                 do_encoding_node_announcement(false, false, true, false, true, false, false);
2070         }
2071
2072         fn do_encoding_channel_update(direction: bool, disable: bool, htlc_maximum_msat: bool, excess_data: bool) {
2073                 let secp_ctx = Secp256k1::new();
2074                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2075                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
2076                 let unsigned_channel_update = msgs::UnsignedChannelUpdate {
2077                         chain_hash: BlockHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap(),
2078                         short_channel_id: 2316138423780173,
2079                         timestamp: 20190119,
2080                         flags: if direction { 1 } else { 0 } | if disable { 1 << 1 } else { 0 },
2081                         cltv_expiry_delta: 144,
2082                         htlc_minimum_msat: 1000000,
2083                         htlc_maximum_msat: if htlc_maximum_msat { OptionalField::Present(131355275467161) } else { OptionalField::Absent },
2084                         fee_base_msat: 10000,
2085                         fee_proportional_millionths: 20,
2086                         excess_data: if excess_data { vec![0, 0, 0, 0, 59, 154, 202, 0] } else { Vec::new() }
2087                 };
2088                 let channel_update = msgs::ChannelUpdate {
2089                         signature: sig_1,
2090                         contents: unsigned_channel_update
2091                 };
2092                 let encoded_value = channel_update.encode();
2093                 let mut target_value = hex::decode("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2094                 target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
2095                 target_value.append(&mut hex::decode("00083a840000034d013413a7").unwrap());
2096                 if htlc_maximum_msat {
2097                         target_value.append(&mut hex::decode("01").unwrap());
2098                 } else {
2099                         target_value.append(&mut hex::decode("00").unwrap());
2100                 }
2101                 target_value.append(&mut hex::decode("00").unwrap());
2102                 if direction {
2103                         let flag = target_value.last_mut().unwrap();
2104                         *flag = 1;
2105                 }
2106                 if disable {
2107                         let flag = target_value.last_mut().unwrap();
2108                         *flag = *flag | 1 << 1;
2109                 }
2110                 target_value.append(&mut hex::decode("009000000000000f42400000271000000014").unwrap());
2111                 if htlc_maximum_msat {
2112                         target_value.append(&mut hex::decode("0000777788889999").unwrap());
2113                 }
2114                 if excess_data {
2115                         target_value.append(&mut hex::decode("000000003b9aca00").unwrap());
2116                 }
2117                 assert_eq!(encoded_value, target_value);
2118         }
2119
2120         #[test]
2121         fn encoding_channel_update() {
2122                 do_encoding_channel_update(false, false, false, false);
2123                 do_encoding_channel_update(false, false, false, true);
2124                 do_encoding_channel_update(true, false, false, false);
2125                 do_encoding_channel_update(true, false, false, true);
2126                 do_encoding_channel_update(false, true, false, false);
2127                 do_encoding_channel_update(false, true, false, true);
2128                 do_encoding_channel_update(false, false, true, false);
2129                 do_encoding_channel_update(false, false, true, true);
2130                 do_encoding_channel_update(true, true, true, false);
2131                 do_encoding_channel_update(true, true, true, true);
2132         }
2133
2134         fn do_encoding_open_channel(random_bit: bool, shutdown: bool, incl_chan_type: bool) {
2135                 let secp_ctx = Secp256k1::new();
2136                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2137                 let (_, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
2138                 let (_, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
2139                 let (_, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
2140                 let (_, pubkey_5) = get_keys_from!("0505050505050505050505050505050505050505050505050505050505050505", secp_ctx);
2141                 let (_, pubkey_6) = get_keys_from!("0606060606060606060606060606060606060606060606060606060606060606", secp_ctx);
2142                 let open_channel = msgs::OpenChannel {
2143                         chain_hash: BlockHash::from_hex("6fe28c0ab6f1b372c1a6a246ae63f74f931e8365e15a089c68d6190000000000").unwrap(),
2144                         temporary_channel_id: [2; 32],
2145                         funding_satoshis: 1311768467284833366,
2146                         push_msat: 2536655962884945560,
2147                         dust_limit_satoshis: 3608586615801332854,
2148                         max_htlc_value_in_flight_msat: 8517154655701053848,
2149                         channel_reserve_satoshis: 8665828695742877976,
2150                         htlc_minimum_msat: 2316138423780173,
2151                         feerate_per_kw: 821716,
2152                         to_self_delay: 49340,
2153                         max_accepted_htlcs: 49340,
2154                         funding_pubkey: pubkey_1,
2155                         revocation_basepoint: pubkey_2,
2156                         payment_point: pubkey_3,
2157                         delayed_payment_basepoint: pubkey_4,
2158                         htlc_basepoint: pubkey_5,
2159                         first_per_commitment_point: pubkey_6,
2160                         channel_flags: if random_bit { 1 << 5 } else { 0 },
2161                         shutdown_scriptpubkey: if shutdown { OptionalField::Present(Address::p2pkh(&::bitcoin::PublicKey{compressed: true, inner: pubkey_1}, Network::Testnet).script_pubkey()) } else { OptionalField::Absent },
2162                         channel_type: if incl_chan_type { Some(ChannelTypeFeatures::empty()) } else { None },
2163                 };
2164                 let encoded_value = open_channel.encode();
2165                 let mut target_value = Vec::new();
2166                 target_value.append(&mut hex::decode("000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f").unwrap());
2167                 target_value.append(&mut hex::decode("02020202020202020202020202020202020202020202020202020202020202021234567890123456233403289122369832144668701144767633030896203198784335490624111800083a840000034d000c89d4c0bcc0bc031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b0362c0a046dacce86ddd0343c6d3c7c79c2208ba0d9c9cf24a6d046d21d21f90f703f006a18d5653c4edf5391ff23a61f03ff83d237e880ee61187fa9f379a028e0a").unwrap());
2168                 if random_bit {
2169                         target_value.append(&mut hex::decode("20").unwrap());
2170                 } else {
2171                         target_value.append(&mut hex::decode("00").unwrap());
2172                 }
2173                 if shutdown {
2174                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
2175                 }
2176                 if incl_chan_type {
2177                         target_value.append(&mut hex::decode("0100").unwrap());
2178                 }
2179                 assert_eq!(encoded_value, target_value);
2180         }
2181
2182         #[test]
2183         fn encoding_open_channel() {
2184                 do_encoding_open_channel(false, false, false);
2185                 do_encoding_open_channel(false, false, true);
2186                 do_encoding_open_channel(false, true, false);
2187                 do_encoding_open_channel(false, true, true);
2188                 do_encoding_open_channel(true, false, false);
2189                 do_encoding_open_channel(true, false, true);
2190                 do_encoding_open_channel(true, true, false);
2191                 do_encoding_open_channel(true, true, true);
2192         }
2193
2194         fn do_encoding_accept_channel(shutdown: bool) {
2195                 let secp_ctx = Secp256k1::new();
2196                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2197                 let (_, pubkey_2) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
2198                 let (_, pubkey_3) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
2199                 let (_, pubkey_4) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
2200                 let (_, pubkey_5) = get_keys_from!("0505050505050505050505050505050505050505050505050505050505050505", secp_ctx);
2201                 let (_, pubkey_6) = get_keys_from!("0606060606060606060606060606060606060606060606060606060606060606", secp_ctx);
2202                 let accept_channel = msgs::AcceptChannel {
2203                         temporary_channel_id: [2; 32],
2204                         dust_limit_satoshis: 1311768467284833366,
2205                         max_htlc_value_in_flight_msat: 2536655962884945560,
2206                         channel_reserve_satoshis: 3608586615801332854,
2207                         htlc_minimum_msat: 2316138423780173,
2208                         minimum_depth: 821716,
2209                         to_self_delay: 49340,
2210                         max_accepted_htlcs: 49340,
2211                         funding_pubkey: pubkey_1,
2212                         revocation_basepoint: pubkey_2,
2213                         payment_point: pubkey_3,
2214                         delayed_payment_basepoint: pubkey_4,
2215                         htlc_basepoint: pubkey_5,
2216                         first_per_commitment_point: pubkey_6,
2217                         shutdown_scriptpubkey: if shutdown { OptionalField::Present(Address::p2pkh(&::bitcoin::PublicKey{compressed: true, inner: pubkey_1}, Network::Testnet).script_pubkey()) } else { OptionalField::Absent },
2218                         channel_type: None,
2219                 };
2220                 let encoded_value = accept_channel.encode();
2221                 let mut target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020212345678901234562334032891223698321446687011447600083a840000034d000c89d4c0bcc0bc031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f024d4b6cd1361032ca9bd2aeb9d900aa4d45d9ead80ac9423374c451a7254d076602531fe6068134503d2723133227c867ac8fa6c83c537e9a44c3c5bdbdcb1fe33703462779ad4aad39514614751a71085f2f10e1c7a593e4e030efb5b8721ce55b0b0362c0a046dacce86ddd0343c6d3c7c79c2208ba0d9c9cf24a6d046d21d21f90f703f006a18d5653c4edf5391ff23a61f03ff83d237e880ee61187fa9f379a028e0a").unwrap();
2222                 if shutdown {
2223                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
2224                 }
2225                 assert_eq!(encoded_value, target_value);
2226         }
2227
2228         #[test]
2229         fn encoding_accept_channel() {
2230                 do_encoding_accept_channel(false);
2231                 do_encoding_accept_channel(true);
2232         }
2233
2234         #[test]
2235         fn encoding_funding_created() {
2236                 let secp_ctx = Secp256k1::new();
2237                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2238                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
2239                 let funding_created = msgs::FundingCreated {
2240                         temporary_channel_id: [2; 32],
2241                         funding_txid: Txid::from_hex("c2d4449afa8d26140898dd54d3390b057ba2a5afcf03ba29d7dc0d8b9ffe966e").unwrap(),
2242                         funding_output_index: 255,
2243                         signature: sig_1,
2244                 };
2245                 let encoded_value = funding_created.encode();
2246                 let target_value = hex::decode("02020202020202020202020202020202020202020202020202020202020202026e96fe9f8b0ddcd729ba03cfafa5a27b050b39d354dd980814268dfa9a44d4c200ffd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2247                 assert_eq!(encoded_value, target_value);
2248         }
2249
2250         #[test]
2251         fn encoding_funding_signed() {
2252                 let secp_ctx = Secp256k1::new();
2253                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2254                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
2255                 let funding_signed = msgs::FundingSigned {
2256                         channel_id: [2; 32],
2257                         signature: sig_1,
2258                 };
2259                 let encoded_value = funding_signed.encode();
2260                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2261                 assert_eq!(encoded_value, target_value);
2262         }
2263
2264         #[test]
2265         fn encoding_funding_locked() {
2266                 let secp_ctx = Secp256k1::new();
2267                 let (_, pubkey_1,) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2268                 let funding_locked = msgs::FundingLocked {
2269                         channel_id: [2; 32],
2270                         next_per_commitment_point: pubkey_1,
2271                         short_channel_id_alias: None,
2272                 };
2273                 let encoded_value = funding_locked.encode();
2274                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f").unwrap();
2275                 assert_eq!(encoded_value, target_value);
2276         }
2277
2278         fn do_encoding_shutdown(script_type: u8) {
2279                 let secp_ctx = Secp256k1::new();
2280                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2281                 let script = Builder::new().push_opcode(opcodes::OP_TRUE).into_script();
2282                 let shutdown = msgs::Shutdown {
2283                         channel_id: [2; 32],
2284                         scriptpubkey:
2285                                      if script_type == 1 { Address::p2pkh(&::bitcoin::PublicKey{compressed: true, inner: pubkey_1}, Network::Testnet).script_pubkey() }
2286                                 else if script_type == 2 { Address::p2sh(&script, Network::Testnet).unwrap().script_pubkey() }
2287                                 else if script_type == 3 { Address::p2wpkh(&::bitcoin::PublicKey{compressed: true, inner: pubkey_1}, Network::Testnet).unwrap().script_pubkey() }
2288                                 else                     { Address::p2wsh(&script, Network::Testnet).script_pubkey() },
2289                 };
2290                 let encoded_value = shutdown.encode();
2291                 let mut target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202").unwrap();
2292                 if script_type == 1 {
2293                         target_value.append(&mut hex::decode("001976a91479b000887626b294a914501a4cd226b58b23598388ac").unwrap());
2294                 } else if script_type == 2 {
2295                         target_value.append(&mut hex::decode("0017a914da1745e9b549bd0bfa1a569971c77eba30cd5a4b87").unwrap());
2296                 } else if script_type == 3 {
2297                         target_value.append(&mut hex::decode("0016001479b000887626b294a914501a4cd226b58b235983").unwrap());
2298                 } else if script_type == 4 {
2299                         target_value.append(&mut hex::decode("002200204ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260").unwrap());
2300                 }
2301                 assert_eq!(encoded_value, target_value);
2302         }
2303
2304         #[test]
2305         fn encoding_shutdown() {
2306                 do_encoding_shutdown(1);
2307                 do_encoding_shutdown(2);
2308                 do_encoding_shutdown(3);
2309                 do_encoding_shutdown(4);
2310         }
2311
2312         #[test]
2313         fn encoding_closing_signed() {
2314                 let secp_ctx = Secp256k1::new();
2315                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2316                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
2317                 let closing_signed = msgs::ClosingSigned {
2318                         channel_id: [2; 32],
2319                         fee_satoshis: 2316138423780173,
2320                         signature: sig_1,
2321                         fee_range: None,
2322                 };
2323                 let encoded_value = closing_signed.encode();
2324                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034dd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2325                 assert_eq!(encoded_value, target_value);
2326                 assert_eq!(msgs::ClosingSigned::read(&mut Cursor::new(&target_value)).unwrap(), closing_signed);
2327
2328                 let closing_signed_with_range = msgs::ClosingSigned {
2329                         channel_id: [2; 32],
2330                         fee_satoshis: 2316138423780173,
2331                         signature: sig_1,
2332                         fee_range: Some(msgs::ClosingSignedFeeRange {
2333                                 min_fee_satoshis: 0xdeadbeef,
2334                                 max_fee_satoshis: 0x1badcafe01234567,
2335                         }),
2336                 };
2337                 let encoded_value_with_range = closing_signed_with_range.encode();
2338                 let target_value_with_range = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034dd977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a011000000000deadbeef1badcafe01234567").unwrap();
2339                 assert_eq!(encoded_value_with_range, target_value_with_range);
2340                 assert_eq!(msgs::ClosingSigned::read(&mut Cursor::new(&target_value_with_range)).unwrap(),
2341                         closing_signed_with_range);
2342         }
2343
2344         #[test]
2345         fn encoding_update_add_htlc() {
2346                 let secp_ctx = Secp256k1::new();
2347                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2348                 let onion_routing_packet = msgs::OnionPacket {
2349                         version: 255,
2350                         public_key: Ok(pubkey_1),
2351                         hop_data: [1; 20*65],
2352                         hmac: [2; 32]
2353                 };
2354                 let update_add_htlc = msgs::UpdateAddHTLC {
2355                         channel_id: [2; 32],
2356                         htlc_id: 2316138423780173,
2357                         amount_msat: 3608586615801332854,
2358                         payment_hash: PaymentHash([1; 32]),
2359                         cltv_expiry: 821716,
2360                         onion_routing_packet
2361                 };
2362                 let encoded_value = update_add_htlc.encode();
2363                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d32144668701144760101010101010101010101010101010101010101010101010101010101010101000c89d4ff031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010202020202020202020202020202020202020202020202020202020202020202").unwrap();
2364                 assert_eq!(encoded_value, target_value);
2365         }
2366
2367         #[test]
2368         fn encoding_update_fulfill_htlc() {
2369                 let update_fulfill_htlc = msgs::UpdateFulfillHTLC {
2370                         channel_id: [2; 32],
2371                         htlc_id: 2316138423780173,
2372                         payment_preimage: PaymentPreimage([1; 32]),
2373                 };
2374                 let encoded_value = update_fulfill_htlc.encode();
2375                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d0101010101010101010101010101010101010101010101010101010101010101").unwrap();
2376                 assert_eq!(encoded_value, target_value);
2377         }
2378
2379         #[test]
2380         fn encoding_update_fail_htlc() {
2381                 let reason = OnionErrorPacket {
2382                         data: [1; 32].to_vec(),
2383                 };
2384                 let update_fail_htlc = msgs::UpdateFailHTLC {
2385                         channel_id: [2; 32],
2386                         htlc_id: 2316138423780173,
2387                         reason
2388                 };
2389                 let encoded_value = update_fail_htlc.encode();
2390                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d00200101010101010101010101010101010101010101010101010101010101010101").unwrap();
2391                 assert_eq!(encoded_value, target_value);
2392         }
2393
2394         #[test]
2395         fn encoding_update_fail_malformed_htlc() {
2396                 let update_fail_malformed_htlc = msgs::UpdateFailMalformedHTLC {
2397                         channel_id: [2; 32],
2398                         htlc_id: 2316138423780173,
2399                         sha256_of_onion: [1; 32],
2400                         failure_code: 255
2401                 };
2402                 let encoded_value = update_fail_malformed_htlc.encode();
2403                 let target_value = hex::decode("020202020202020202020202020202020202020202020202020202020202020200083a840000034d010101010101010101010101010101010101010101010101010101010101010100ff").unwrap();
2404                 assert_eq!(encoded_value, target_value);
2405         }
2406
2407         fn do_encoding_commitment_signed(htlcs: bool) {
2408                 let secp_ctx = Secp256k1::new();
2409                 let (privkey_1, _) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2410                 let (privkey_2, _) = get_keys_from!("0202020202020202020202020202020202020202020202020202020202020202", secp_ctx);
2411                 let (privkey_3, _) = get_keys_from!("0303030303030303030303030303030303030303030303030303030303030303", secp_ctx);
2412                 let (privkey_4, _) = get_keys_from!("0404040404040404040404040404040404040404040404040404040404040404", secp_ctx);
2413                 let sig_1 = get_sig_on!(privkey_1, secp_ctx, String::from("01010101010101010101010101010101"));
2414                 let sig_2 = get_sig_on!(privkey_2, secp_ctx, String::from("01010101010101010101010101010101"));
2415                 let sig_3 = get_sig_on!(privkey_3, secp_ctx, String::from("01010101010101010101010101010101"));
2416                 let sig_4 = get_sig_on!(privkey_4, secp_ctx, String::from("01010101010101010101010101010101"));
2417                 let commitment_signed = msgs::CommitmentSigned {
2418                         channel_id: [2; 32],
2419                         signature: sig_1,
2420                         htlc_signatures: if htlcs { vec![sig_2, sig_3, sig_4] } else { Vec::new() },
2421                 };
2422                 let encoded_value = commitment_signed.encode();
2423                 let mut target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a").unwrap();
2424                 if htlcs {
2425                         target_value.append(&mut hex::decode("00031735b6a427e80d5fe7cd90a2f4ee08dc9c27cda7c35a4172e5d85b12c49d4232537e98f9b1f3c5e6989a8b9644e90e8918127680dbd0d4043510840fc0f1e11a216c280b5395a2546e7e4b2663e04f811622f15a4f91e83aa2e92ba2a573c139142c54ae63072a1ec1ee7dc0c04bde5c847806172aa05c92c22ae8e308d1d2692b12cc195ce0a2d1bda6a88befa19fa07f51caa75ce83837f28965600b8aacab0855ffb0e741ec5f7c41421e9829a9d48611c8c831f71be5ea73e66594977ffd").unwrap());
2426                 } else {
2427                         target_value.append(&mut hex::decode("0000").unwrap());
2428                 }
2429                 assert_eq!(encoded_value, target_value);
2430         }
2431
2432         #[test]
2433         fn encoding_commitment_signed() {
2434                 do_encoding_commitment_signed(true);
2435                 do_encoding_commitment_signed(false);
2436         }
2437
2438         #[test]
2439         fn encoding_revoke_and_ack() {
2440                 let secp_ctx = Secp256k1::new();
2441                 let (_, pubkey_1) = get_keys_from!("0101010101010101010101010101010101010101010101010101010101010101", secp_ctx);
2442                 let raa = msgs::RevokeAndACK {
2443                         channel_id: [2; 32],
2444                         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],
2445                         next_per_commitment_point: pubkey_1,
2446                 };
2447                 let encoded_value = raa.encode();
2448                 let target_value = hex::decode("02020202020202020202020202020202020202020202020202020202020202020101010101010101010101010101010101010101010101010101010101010101031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f").unwrap();
2449                 assert_eq!(encoded_value, target_value);
2450         }
2451
2452         #[test]
2453         fn encoding_update_fee() {
2454                 let update_fee = msgs::UpdateFee {
2455                         channel_id: [2; 32],
2456                         feerate_per_kw: 20190119,
2457                 };
2458                 let encoded_value = update_fee.encode();
2459                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202013413a7").unwrap();
2460                 assert_eq!(encoded_value, target_value);
2461         }
2462
2463         #[test]
2464         fn encoding_init() {
2465                 assert_eq!(msgs::Init {
2466                         features: InitFeatures::from_le_bytes(vec![0xFF, 0xFF, 0xFF]),
2467                         remote_network_address: None,
2468                 }.encode(), hex::decode("00023fff0003ffffff").unwrap());
2469                 assert_eq!(msgs::Init {
2470                         features: InitFeatures::from_le_bytes(vec![0xFF]),
2471                         remote_network_address: None,
2472                 }.encode(), hex::decode("0001ff0001ff").unwrap());
2473                 assert_eq!(msgs::Init {
2474                         features: InitFeatures::from_le_bytes(vec![]),
2475                         remote_network_address: None,
2476                 }.encode(), hex::decode("00000000").unwrap());
2477
2478                 let init_msg = msgs::Init { features: InitFeatures::from_le_bytes(vec![]),
2479                         remote_network_address: Some(msgs::NetAddress::IPv4 {
2480                                 addr: [127, 0, 0, 1],
2481                                 port: 1000,
2482                         }),
2483                 };
2484                 let encoded_value = init_msg.encode();
2485                 let target_value = hex::decode("000000000307017f00000103e8").unwrap();
2486                 assert_eq!(encoded_value, target_value);
2487                 assert_eq!(msgs::Init::read(&mut Cursor::new(&target_value)).unwrap(), init_msg);
2488         }
2489
2490         #[test]
2491         fn encoding_error() {
2492                 let error = msgs::ErrorMessage {
2493                         channel_id: [2; 32],
2494                         data: String::from("rust-lightning"),
2495                 };
2496                 let encoded_value = error.encode();
2497                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202000e727573742d6c696768746e696e67").unwrap();
2498                 assert_eq!(encoded_value, target_value);
2499         }
2500
2501         #[test]
2502         fn encoding_warning() {
2503                 let error = msgs::WarningMessage {
2504                         channel_id: [2; 32],
2505                         data: String::from("rust-lightning"),
2506                 };
2507                 let encoded_value = error.encode();
2508                 let target_value = hex::decode("0202020202020202020202020202020202020202020202020202020202020202000e727573742d6c696768746e696e67").unwrap();
2509                 assert_eq!(encoded_value, target_value);
2510         }
2511
2512         #[test]
2513         fn encoding_ping() {
2514                 let ping = msgs::Ping {
2515                         ponglen: 64,
2516                         byteslen: 64
2517                 };
2518                 let encoded_value = ping.encode();
2519                 let target_value = hex::decode("0040004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap();
2520                 assert_eq!(encoded_value, target_value);
2521         }
2522
2523         #[test]
2524         fn encoding_pong() {
2525                 let pong = msgs::Pong {
2526                         byteslen: 64
2527                 };
2528                 let encoded_value = pong.encode();
2529                 let target_value = hex::decode("004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap();
2530                 assert_eq!(encoded_value, target_value);
2531         }
2532
2533         #[test]
2534         fn encoding_legacy_onion_hop_data() {
2535                 let msg = msgs::OnionHopData {
2536                         format: OnionHopDataFormat::Legacy {
2537                                 short_channel_id: 0xdeadbeef1bad1dea,
2538                         },
2539                         amt_to_forward: 0x0badf00d01020304,
2540                         outgoing_cltv_value: 0xffffffff,
2541                 };
2542                 let encoded_value = msg.encode();
2543                 let target_value = hex::decode("00deadbeef1bad1dea0badf00d01020304ffffffff000000000000000000000000").unwrap();
2544                 assert_eq!(encoded_value, target_value);
2545         }
2546
2547         #[test]
2548         fn encoding_nonfinal_onion_hop_data() {
2549                 let mut msg = msgs::OnionHopData {
2550                         format: OnionHopDataFormat::NonFinalNode {
2551                                 short_channel_id: 0xdeadbeef1bad1dea,
2552                         },
2553                         amt_to_forward: 0x0badf00d01020304,
2554                         outgoing_cltv_value: 0xffffffff,
2555                 };
2556                 let encoded_value = msg.encode();
2557                 let target_value = hex::decode("1a02080badf00d010203040404ffffffff0608deadbeef1bad1dea").unwrap();
2558                 assert_eq!(encoded_value, target_value);
2559                 msg = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2560                 if let OnionHopDataFormat::NonFinalNode { short_channel_id } = msg.format {
2561                         assert_eq!(short_channel_id, 0xdeadbeef1bad1dea);
2562                 } else { panic!(); }
2563                 assert_eq!(msg.amt_to_forward, 0x0badf00d01020304);
2564                 assert_eq!(msg.outgoing_cltv_value, 0xffffffff);
2565         }
2566
2567         #[test]
2568         fn encoding_final_onion_hop_data() {
2569                 let mut msg = msgs::OnionHopData {
2570                         format: OnionHopDataFormat::FinalNode {
2571                                 payment_data: None,
2572                                 keysend_preimage: None,
2573                         },
2574                         amt_to_forward: 0x0badf00d01020304,
2575                         outgoing_cltv_value: 0xffffffff,
2576                 };
2577                 let encoded_value = msg.encode();
2578                 let target_value = hex::decode("1002080badf00d010203040404ffffffff").unwrap();
2579                 assert_eq!(encoded_value, target_value);
2580                 msg = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2581                 if let OnionHopDataFormat::FinalNode { payment_data: None, .. } = msg.format { } else { panic!(); }
2582                 assert_eq!(msg.amt_to_forward, 0x0badf00d01020304);
2583                 assert_eq!(msg.outgoing_cltv_value, 0xffffffff);
2584         }
2585
2586         #[test]
2587         fn encoding_final_onion_hop_data_with_secret() {
2588                 let expected_payment_secret = PaymentSecret([0x42u8; 32]);
2589                 let mut msg = msgs::OnionHopData {
2590                         format: OnionHopDataFormat::FinalNode {
2591                                 payment_data: Some(FinalOnionHopData {
2592                                         payment_secret: expected_payment_secret,
2593                                         total_msat: 0x1badca1f
2594                                 }),
2595                                 keysend_preimage: None,
2596                         },
2597                         amt_to_forward: 0x0badf00d01020304,
2598                         outgoing_cltv_value: 0xffffffff,
2599                 };
2600                 let encoded_value = msg.encode();
2601                 let target_value = hex::decode("3602080badf00d010203040404ffffffff082442424242424242424242424242424242424242424242424242424242424242421badca1f").unwrap();
2602                 assert_eq!(encoded_value, target_value);
2603                 msg = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2604                 if let OnionHopDataFormat::FinalNode {
2605                         payment_data: Some(FinalOnionHopData {
2606                                 payment_secret,
2607                                 total_msat: 0x1badca1f
2608                         }),
2609                         keysend_preimage: None,
2610                 } = msg.format {
2611                         assert_eq!(payment_secret, expected_payment_secret);
2612                 } else { panic!(); }
2613                 assert_eq!(msg.amt_to_forward, 0x0badf00d01020304);
2614                 assert_eq!(msg.outgoing_cltv_value, 0xffffffff);
2615         }
2616
2617         #[test]
2618         fn query_channel_range_end_blocknum() {
2619                 let tests: Vec<(u32, u32, u32)> = vec![
2620                         (10000, 1500, 11500),
2621                         (0, 0xffffffff, 0xffffffff),
2622                         (1, 0xffffffff, 0xffffffff),
2623                 ];
2624
2625                 for (first_blocknum, number_of_blocks, expected) in tests.into_iter() {
2626                         let sut = msgs::QueryChannelRange {
2627                                 chain_hash: BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap(),
2628                                 first_blocknum,
2629                                 number_of_blocks,
2630                         };
2631                         assert_eq!(sut.end_blocknum(), expected);
2632                 }
2633         }
2634
2635         #[test]
2636         fn encoding_query_channel_range() {
2637                 let mut query_channel_range = msgs::QueryChannelRange {
2638                         chain_hash: BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap(),
2639                         first_blocknum: 100000,
2640                         number_of_blocks: 1500,
2641                 };
2642                 let encoded_value = query_channel_range.encode();
2643                 let target_value = hex::decode("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206000186a0000005dc").unwrap();
2644                 assert_eq!(encoded_value, target_value);
2645
2646                 query_channel_range = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2647                 assert_eq!(query_channel_range.first_blocknum, 100000);
2648                 assert_eq!(query_channel_range.number_of_blocks, 1500);
2649         }
2650
2651         #[test]
2652         fn encoding_reply_channel_range() {
2653                 do_encoding_reply_channel_range(0);
2654                 do_encoding_reply_channel_range(1);
2655         }
2656
2657         fn do_encoding_reply_channel_range(encoding_type: u8) {
2658                 let mut target_value = hex::decode("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206000b8a06000005dc01").unwrap();
2659                 let expected_chain_hash = BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap();
2660                 let mut reply_channel_range = msgs::ReplyChannelRange {
2661                         chain_hash: expected_chain_hash,
2662                         first_blocknum: 756230,
2663                         number_of_blocks: 1500,
2664                         sync_complete: true,
2665                         short_channel_ids: vec![0x000000000000008e, 0x0000000000003c69, 0x000000000045a6c4],
2666                 };
2667
2668                 if encoding_type == 0 {
2669                         target_value.append(&mut hex::decode("001900000000000000008e0000000000003c69000000000045a6c4").unwrap());
2670                         let encoded_value = reply_channel_range.encode();
2671                         assert_eq!(encoded_value, target_value);
2672
2673                         reply_channel_range = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2674                         assert_eq!(reply_channel_range.chain_hash, expected_chain_hash);
2675                         assert_eq!(reply_channel_range.first_blocknum, 756230);
2676                         assert_eq!(reply_channel_range.number_of_blocks, 1500);
2677                         assert_eq!(reply_channel_range.sync_complete, true);
2678                         assert_eq!(reply_channel_range.short_channel_ids[0], 0x000000000000008e);
2679                         assert_eq!(reply_channel_range.short_channel_ids[1], 0x0000000000003c69);
2680                         assert_eq!(reply_channel_range.short_channel_ids[2], 0x000000000045a6c4);
2681                 } else {
2682                         target_value.append(&mut hex::decode("001601789c636000833e08659309a65878be010010a9023a").unwrap());
2683                         let result: Result<msgs::ReplyChannelRange, msgs::DecodeError> = Readable::read(&mut Cursor::new(&target_value[..]));
2684                         assert!(result.is_err(), "Expected decode failure with unsupported zlib encoding");
2685                 }
2686         }
2687
2688         #[test]
2689         fn encoding_query_short_channel_ids() {
2690                 do_encoding_query_short_channel_ids(0);
2691                 do_encoding_query_short_channel_ids(1);
2692         }
2693
2694         fn do_encoding_query_short_channel_ids(encoding_type: u8) {
2695                 let mut target_value = hex::decode("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206").unwrap();
2696                 let expected_chain_hash = BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap();
2697                 let mut query_short_channel_ids = msgs::QueryShortChannelIds {
2698                         chain_hash: expected_chain_hash,
2699                         short_channel_ids: vec![0x0000000000008e, 0x0000000000003c69, 0x000000000045a6c4],
2700                 };
2701
2702                 if encoding_type == 0 {
2703                         target_value.append(&mut hex::decode("001900000000000000008e0000000000003c69000000000045a6c4").unwrap());
2704                         let encoded_value = query_short_channel_ids.encode();
2705                         assert_eq!(encoded_value, target_value);
2706
2707                         query_short_channel_ids = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2708                         assert_eq!(query_short_channel_ids.chain_hash, expected_chain_hash);
2709                         assert_eq!(query_short_channel_ids.short_channel_ids[0], 0x000000000000008e);
2710                         assert_eq!(query_short_channel_ids.short_channel_ids[1], 0x0000000000003c69);
2711                         assert_eq!(query_short_channel_ids.short_channel_ids[2], 0x000000000045a6c4);
2712                 } else {
2713                         target_value.append(&mut hex::decode("001601789c636000833e08659309a65878be010010a9023a").unwrap());
2714                         let result: Result<msgs::QueryShortChannelIds, msgs::DecodeError> = Readable::read(&mut Cursor::new(&target_value[..]));
2715                         assert!(result.is_err(), "Expected decode failure with unsupported zlib encoding");
2716                 }
2717         }
2718
2719         #[test]
2720         fn encoding_reply_short_channel_ids_end() {
2721                 let expected_chain_hash = BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap();
2722                 let mut reply_short_channel_ids_end = msgs::ReplyShortChannelIdsEnd {
2723                         chain_hash: expected_chain_hash,
2724                         full_information: true,
2725                 };
2726                 let encoded_value = reply_short_channel_ids_end.encode();
2727                 let target_value = hex::decode("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e220601").unwrap();
2728                 assert_eq!(encoded_value, target_value);
2729
2730                 reply_short_channel_ids_end = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2731                 assert_eq!(reply_short_channel_ids_end.chain_hash, expected_chain_hash);
2732                 assert_eq!(reply_short_channel_ids_end.full_information, true);
2733         }
2734
2735         #[test]
2736         fn encoding_gossip_timestamp_filter(){
2737                 let expected_chain_hash = BlockHash::from_hex("06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f").unwrap();
2738                 let mut gossip_timestamp_filter = msgs::GossipTimestampFilter {
2739                         chain_hash: expected_chain_hash,
2740                         first_timestamp: 1590000000,
2741                         timestamp_range: 0xffff_ffff,
2742                 };
2743                 let encoded_value = gossip_timestamp_filter.encode();
2744                 let target_value = hex::decode("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e22065ec57980ffffffff").unwrap();
2745                 assert_eq!(encoded_value, target_value);
2746
2747                 gossip_timestamp_filter = Readable::read(&mut Cursor::new(&target_value[..])).unwrap();
2748                 assert_eq!(gossip_timestamp_filter.chain_hash, expected_chain_hash);
2749                 assert_eq!(gossip_timestamp_filter.first_timestamp, 1590000000);
2750                 assert_eq!(gossip_timestamp_filter.timestamp_range, 0xffff_ffff);
2751         }
2752 }