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