1 // This file is Copyright its original authors, visible in version control
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
10 //! Some macros that implement [`Readable`]/[`Writeable`] traits for lightning messages.
11 //! They also handle serialization and deserialization of TLVs.
13 //! [`Readable`]: crate::util::ser::Readable
14 //! [`Writeable`]: crate::util::ser::Writeable
16 /// Implements serialization for a single TLV record.
17 /// This is exported for use by other exported macros, do not use directly.
20 macro_rules! _encode_tlv {
21 ($stream: expr, $type: expr, $field: expr, (default_value, $default: expr)) => {
22 $crate::_encode_tlv!($stream, $type, $field, required)
24 ($stream: expr, $type: expr, $field: expr, (static_value, $value: expr)) => {
25 let _ = &$field; // Ensure we "use" the $field
27 ($stream: expr, $type: expr, $field: expr, required) => {
28 BigSize($type).write($stream)?;
29 BigSize($field.serialized_length() as u64).write($stream)?;
30 $field.write($stream)?;
32 ($stream: expr, $type: expr, $field: expr, vec_type) => {
33 $crate::_encode_tlv!($stream, $type, $crate::util::ser::WithoutLength(&$field), required);
35 ($stream: expr, $optional_type: expr, $optional_field: expr, option) => {
36 if let Some(ref field) = $optional_field {
37 BigSize($optional_type).write($stream)?;
38 BigSize(field.serialized_length() as u64).write($stream)?;
39 field.write($stream)?;
42 ($stream: expr, $type: expr, $field: expr, optional_vec) => {
43 if !$field.is_empty() {
44 $crate::_encode_tlv!($stream, $type, $field, vec_type);
47 ($stream: expr, $type: expr, $field: expr, upgradable_required) => {
48 $crate::_encode_tlv!($stream, $type, $field, required);
50 ($stream: expr, $type: expr, $field: expr, upgradable_option) => {
51 $crate::_encode_tlv!($stream, $type, $field, option);
53 ($stream: expr, $type: expr, $field: expr, (option, encoding: ($fieldty: ty, $encoding: ident))) => {
54 $crate::_encode_tlv!($stream, $type, $field.map(|f| $encoding(f)), option);
56 ($stream: expr, $type: expr, $field: expr, (option, encoding: $fieldty: ty)) => {
57 $crate::_encode_tlv!($stream, $type, $field, option);
59 ($stream: expr, $type: expr, $field: expr, (option: $trait: ident $(, $read_arg: expr)?)) => {
60 // Just a read-mapped type
61 $crate::_encode_tlv!($stream, $type, $field, option);
65 /// Panics if the last seen TLV type is not numerically less than the TLV type currently being checked.
66 /// This is exported for use by other exported macros, do not use directly.
69 macro_rules! _check_encoded_tlv_order {
70 ($last_type: expr, $type: expr, (static_value, $value: expr)) => { };
71 ($last_type: expr, $type: expr, $fieldty: tt) => {
72 if let Some(t) = $last_type {
73 #[allow(unused_comparisons)] // Note that $type may be 0 making the following comparison always false
74 (debug_assert!(t < $type))
76 $last_type = Some($type);
80 /// Implements the TLVs serialization part in a [`Writeable`] implementation of a struct.
82 /// This should be called inside a method which returns `Result<_, `[`io::Error`]`>`, such as
83 /// [`Writeable::write`]. It will only return an `Err` if the stream `Err`s or [`Writeable::write`]
84 /// on one of the fields `Err`s.
86 /// `$stream` must be a `&mut `[`Writer`] which will receive the bytes for each TLV in the stream.
88 /// Fields MUST be sorted in `$type`-order.
90 /// Note that the lightning TLV requirements require that a single type not appear more than once,
91 /// that TLVs are sorted in type-ascending order, and that any even types be understood by the
94 /// Any `option` fields which have a value of `None` will not be serialized at all.
98 /// # use lightning::encode_tlv_stream;
99 /// # fn write<W: lightning::util::ser::Writer> (stream: &mut W) -> Result<(), lightning::io::Error> {
100 /// let mut required_value = 0u64;
101 /// let mut optional_value: Option<u64> = None;
102 /// encode_tlv_stream!(stream, {
103 /// (0, required_value, required),
104 /// (1, Some(42u64), option),
105 /// (2, optional_value, option),
107 /// // At this point `required_value` has been written as a TLV of type 0, `42u64` has been written
108 /// // as a TLV of type 1 (indicating the reader may ignore it if it is not understood), and *no*
109 /// // TLV is written with type 2.
114 /// [`Writeable`]: crate::util::ser::Writeable
115 /// [`io::Error`]: crate::io::Error
116 /// [`Writeable::write`]: crate::util::ser::Writeable::write
117 /// [`Writer`]: crate::util::ser::Writer
119 macro_rules! encode_tlv_stream {
120 ($stream: expr, {$(($type: expr, $field: expr, $fieldty: tt)),* $(,)*}) => { {
121 #[allow(unused_imports)]
123 ln::msgs::DecodeError,
126 util::ser::Writeable,
130 $crate::_encode_tlv!($stream, $type, $field, $fieldty);
133 #[allow(unused_mut, unused_variables, unused_assignments)]
134 #[cfg(debug_assertions)]
136 let mut last_seen: Option<u64> = None;
138 $crate::_check_encoded_tlv_order!(last_seen, $type, $fieldty);
144 /// Adds the length of the serialized field to a [`LengthCalculatingWriter`].
145 /// This is exported for use by other exported macros, do not use directly.
147 /// [`LengthCalculatingWriter`]: crate::util::ser::LengthCalculatingWriter
150 macro_rules! _get_varint_length_prefixed_tlv_length {
151 ($len: expr, $type: expr, $field: expr, (default_value, $default: expr)) => {
152 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $field, required)
154 ($len: expr, $type: expr, $field: expr, (static_value, $value: expr)) => {
156 ($len: expr, $type: expr, $field: expr, required) => {
157 BigSize($type).write(&mut $len).expect("No in-memory data may fail to serialize");
158 let field_len = $field.serialized_length();
159 BigSize(field_len as u64).write(&mut $len).expect("No in-memory data may fail to serialize");
162 ($len: expr, $type: expr, $field: expr, vec_type) => {
163 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $crate::util::ser::WithoutLength(&$field), required);
165 ($len: expr, $optional_type: expr, $optional_field: expr, option) => {
166 if let Some(ref field) = $optional_field {
167 BigSize($optional_type).write(&mut $len).expect("No in-memory data may fail to serialize");
168 let field_len = field.serialized_length();
169 BigSize(field_len as u64).write(&mut $len).expect("No in-memory data may fail to serialize");
173 ($len: expr, $type: expr, $field: expr, optional_vec) => {
174 if !$field.is_empty() {
175 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $field, vec_type);
178 ($len: expr, $type: expr, $field: expr, (option: $trait: ident $(, $read_arg: expr)?)) => {
179 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $field, option);
181 ($len: expr, $type: expr, $field: expr, upgradable_required) => {
182 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $field, required);
184 ($len: expr, $type: expr, $field: expr, upgradable_option) => {
185 $crate::_get_varint_length_prefixed_tlv_length!($len, $type, $field, option);
189 /// See the documentation of [`write_tlv_fields`].
190 /// This is exported for use by other exported macros, do not use directly.
193 macro_rules! _encode_varint_length_prefixed_tlv {
194 ($stream: expr, {$(($type: expr, $field: expr, $fieldty: tt)),*}) => { {
195 use $crate::util::ser::BigSize;
198 let mut len = $crate::util::ser::LengthCalculatingWriter(0);
200 $crate::_get_varint_length_prefixed_tlv_length!(len, $type, $field, $fieldty);
204 BigSize(len as u64).write($stream)?;
205 $crate::encode_tlv_stream!($stream, { $(($type, $field, $fieldty)),* });
209 /// Errors if there are missing required TLV types between the last seen type and the type currently being processed.
210 /// This is exported for use by other exported macros, do not use directly.
213 macro_rules! _check_decoded_tlv_order {
214 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, (default_value, $default: expr)) => {{
215 #[allow(unused_comparisons)] // Note that $type may be 0 making the second comparison always false
216 let invalid_order = ($last_seen_type.is_none() || $last_seen_type.unwrap() < $type) && $typ.0 > $type;
218 $field = $default.into();
221 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, (static_value, $value: expr)) => {
223 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, required) => {{
224 #[allow(unused_comparisons)] // Note that $type may be 0 making the second comparison always false
225 let invalid_order = ($last_seen_type.is_none() || $last_seen_type.unwrap() < $type) && $typ.0 > $type;
227 return Err(DecodeError::InvalidValue);
230 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, (required: $trait: ident $(, $read_arg: expr)?)) => {{
231 $crate::_check_decoded_tlv_order!($last_seen_type, $typ, $type, $field, required);
233 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, option) => {{
236 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, vec_type) => {{
239 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, optional_vec) => {{
242 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, upgradable_required) => {{
243 _check_decoded_tlv_order!($last_seen_type, $typ, $type, $field, required)
245 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, upgradable_option) => {{
248 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, (option: $trait: ident $(, $read_arg: expr)?)) => {{
251 ($last_seen_type: expr, $typ: expr, $type: expr, $field: ident, (option, encoding: $encoding: tt)) => {{
256 /// Errors if there are missing required TLV types after the last seen type.
257 /// This is exported for use by other exported macros, do not use directly.
260 macro_rules! _check_missing_tlv {
261 ($last_seen_type: expr, $type: expr, $field: ident, (default_value, $default: expr)) => {{
262 #[allow(unused_comparisons)] // Note that $type may be 0 making the second comparison always false
263 let missing_req_type = $last_seen_type.is_none() || $last_seen_type.unwrap() < $type;
264 if missing_req_type {
265 $field = $default.into();
268 ($last_seen_type: expr, $type: expr, $field: expr, (static_value, $value: expr)) => {
271 ($last_seen_type: expr, $type: expr, $field: ident, required) => {{
272 #[allow(unused_comparisons)] // Note that $type may be 0 making the second comparison always false
273 let missing_req_type = $last_seen_type.is_none() || $last_seen_type.unwrap() < $type;
274 if missing_req_type {
275 return Err(DecodeError::InvalidValue);
278 ($last_seen_type: expr, $type: expr, $field: ident, (required: $trait: ident $(, $read_arg: expr)?)) => {{
279 $crate::_check_missing_tlv!($last_seen_type, $type, $field, required);
281 ($last_seen_type: expr, $type: expr, $field: ident, vec_type) => {{
284 ($last_seen_type: expr, $type: expr, $field: ident, option) => {{
287 ($last_seen_type: expr, $type: expr, $field: ident, optional_vec) => {{
290 ($last_seen_type: expr, $type: expr, $field: ident, upgradable_required) => {{
291 _check_missing_tlv!($last_seen_type, $type, $field, required)
293 ($last_seen_type: expr, $type: expr, $field: ident, upgradable_option) => {{
296 ($last_seen_type: expr, $type: expr, $field: ident, (option: $trait: ident $(, $read_arg: expr)?)) => {{
299 ($last_seen_type: expr, $type: expr, $field: ident, (option, encoding: $encoding: tt)) => {{
304 /// Implements deserialization for a single TLV record.
305 /// This is exported for use by other exported macros, do not use directly.
308 macro_rules! _decode_tlv {
309 ($reader: expr, $field: ident, (default_value, $default: expr)) => {{
310 $crate::_decode_tlv!($reader, $field, required)
312 ($reader: expr, $field: ident, (static_value, $value: expr)) => {{
314 ($reader: expr, $field: ident, required) => {{
315 $field = $crate::util::ser::Readable::read(&mut $reader)?;
317 ($reader: expr, $field: ident, (required: $trait: ident $(, $read_arg: expr)?)) => {{
318 $field = $trait::read(&mut $reader $(, $read_arg)*)?;
320 ($reader: expr, $field: ident, vec_type) => {{
321 let f: $crate::util::ser::WithoutLength<Vec<_>> = $crate::util::ser::Readable::read(&mut $reader)?;
324 ($reader: expr, $field: ident, option) => {{
325 $field = Some($crate::util::ser::Readable::read(&mut $reader)?);
327 ($reader: expr, $field: ident, optional_vec) => {{
328 $crate::_decode_tlv!($reader, $field, vec_type);
330 // `upgradable_required` indicates we're reading a required TLV that may have been upgraded
331 // without backwards compat. We'll error if the field is missing, and return `Ok(None)` if the
332 // field is present but we can no longer understand it.
333 // Note that this variant can only be used within a `MaybeReadable` read.
334 ($reader: expr, $field: ident, upgradable_required) => {{
335 $field = match $crate::util::ser::MaybeReadable::read(&mut $reader)? {
340 // `upgradable_option` indicates we're reading an Option-al TLV that may have been upgraded
341 // without backwards compat. $field will be None if the TLV is missing or if the field is present
342 // but we can no longer understand it.
343 ($reader: expr, $field: ident, upgradable_option) => {{
344 $field = $crate::util::ser::MaybeReadable::read(&mut $reader)?;
346 ($reader: expr, $field: ident, (option: $trait: ident $(, $read_arg: expr)?)) => {{
347 $field = Some($trait::read(&mut $reader $(, $read_arg)*)?);
349 ($reader: expr, $field: ident, (option, encoding: ($fieldty: ty, $encoding: ident, $encoder:ty))) => {{
350 $crate::_decode_tlv!($reader, $field, (option, encoding: ($fieldty, $encoding)));
352 ($reader: expr, $field: ident, (option, encoding: ($fieldty: ty, $encoding: ident))) => {{
354 let field: $encoding<$fieldty> = ser::Readable::read(&mut $reader)?;
358 ($reader: expr, $field: ident, (option, encoding: $fieldty: ty)) => {{
359 $crate::_decode_tlv!($reader, $field, option);
363 /// Checks if `$val` matches `$type`.
364 /// This is exported for use by other exported macros, do not use directly.
367 macro_rules! _decode_tlv_stream_match_check {
368 ($val: ident, $type: expr, (static_value, $value: expr)) => { false };
369 ($val: ident, $type: expr, $fieldty: tt) => { $val == $type }
372 /// Implements the TLVs deserialization part in a [`Readable`] implementation of a struct.
374 /// This should be called inside a method which returns `Result<_, `[`DecodeError`]`>`, such as
375 /// [`Readable::read`]. It will either return an `Err` or ensure all `required` fields have been
376 /// read and optionally read `optional` fields.
378 /// `$stream` must be a [`Read`] and will be fully consumed, reading until no more bytes remain
379 /// (i.e. it returns [`DecodeError::ShortRead`]).
381 /// Fields MUST be sorted in `$type`-order.
383 /// Note that the lightning TLV requirements require that a single type not appear more than once,
384 /// that TLVs are sorted in type-ascending order, and that any even types be understood by the
389 /// # use lightning::decode_tlv_stream;
390 /// # fn read<R: lightning::io::Read> (stream: R) -> Result<(), lightning::ln::msgs::DecodeError> {
391 /// let mut required_value = 0u64;
392 /// let mut optional_value: Option<u64> = None;
393 /// decode_tlv_stream!(stream, {
394 /// (0, required_value, required),
395 /// (2, optional_value, option),
397 /// // At this point, `required_value` has been overwritten with the TLV with type 0.
398 /// // `optional_value` may have been overwritten, setting it to `Some` if a TLV with type 2 was
404 /// [`Readable`]: crate::util::ser::Readable
405 /// [`DecodeError`]: crate::ln::msgs::DecodeError
406 /// [`Readable::read`]: crate::util::ser::Readable::read
407 /// [`Read`]: crate::io::Read
408 /// [`DecodeError::ShortRead`]: crate::ln::msgs::DecodeError::ShortRead
410 macro_rules! decode_tlv_stream {
411 ($stream: expr, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}) => {
412 let rewind = |_, _| { unreachable!() };
413 $crate::_decode_tlv_stream_range!($stream, .., rewind, {$(($type, $field, $fieldty)),*});
417 /// Similar to [`decode_tlv_stream`] with a custom TLV decoding capabilities.
419 /// `$decode_custom_tlv` is a closure that may be optionally provided to handle custom message types.
420 /// If it is provided, it will be called with the custom type and the [`FixedLengthReader`] containing
421 /// the message contents. It should return `Ok(true)` if the custom message is successfully parsed,
422 /// `Ok(false)` if the message type is unknown, and `Err(`[`DecodeError`]`)` if parsing fails.
424 /// [`FixedLengthReader`]: crate::util::ser::FixedLengthReader
425 /// [`DecodeError`]: crate::ln::msgs::DecodeError
426 macro_rules! decode_tlv_stream_with_custom_tlv_decode {
427 ($stream: expr, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}
428 $(, $decode_custom_tlv: expr)?) => { {
429 let rewind = |_, _| { unreachable!() };
430 _decode_tlv_stream_range!(
431 $stream, .., rewind, {$(($type, $field, $fieldty)),*} $(, $decode_custom_tlv)?
438 macro_rules! _decode_tlv_stream_range {
439 ($stream: expr, $range: expr, $rewind: ident, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}
440 $(, $decode_custom_tlv: expr)?) => { {
441 use $crate::ln::msgs::DecodeError;
442 let mut last_seen_type: Option<u64> = None;
443 let mut stream_ref = $stream;
445 use $crate::util::ser;
447 // First decode the type of this TLV:
448 let typ: ser::BigSize = {
449 // We track whether any bytes were read during the consensus_decode call to
450 // determine whether we should break or return ShortRead if we get an
451 // UnexpectedEof. This should in every case be largely cosmetic, but its nice to
452 // pass the TLV test vectors exactly, which require this distinction.
453 let mut tracking_reader = ser::ReadTrackingReader::new(&mut stream_ref);
454 match <$crate::util::ser::BigSize as $crate::util::ser::Readable>::read(&mut tracking_reader) {
455 Err(DecodeError::ShortRead) => {
456 if !tracking_reader.have_read {
459 return Err(DecodeError::ShortRead);
462 Err(e) => return Err(e),
463 Ok(t) => if core::ops::RangeBounds::contains(&$range, &t.0) { t } else {
464 drop(tracking_reader);
466 // Assumes the type id is minimally encoded, which is enforced on read.
467 use $crate::util::ser::Writeable;
468 let bytes_read = t.serialized_length();
469 $rewind(stream_ref, bytes_read);
475 // Types must be unique and monotonically increasing:
476 match last_seen_type {
477 Some(t) if typ.0 <= t => {
478 return Err(DecodeError::InvalidValue);
482 // As we read types, make sure we hit every required type between `last_seen_type` and `typ`:
484 $crate::_check_decoded_tlv_order!(last_seen_type, typ, $type, $field, $fieldty);
486 last_seen_type = Some(typ.0);
488 // Finally, read the length and value itself:
489 let length: ser::BigSize = $crate::util::ser::Readable::read(&mut stream_ref)?;
490 let mut s = ser::FixedLengthReader::new(&mut stream_ref, length.0);
492 $(_t if $crate::_decode_tlv_stream_match_check!(_t, $type, $fieldty) => {
493 $crate::_decode_tlv!(s, $field, $fieldty);
494 if s.bytes_remain() {
495 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
496 return Err(DecodeError::InvalidValue);
501 if $decode_custom_tlv(t, &mut s)? {
502 // If a custom TLV was successfully read (i.e. decode_custom_tlv returns true),
503 // continue to the next TLV read.
509 return Err(DecodeError::UnknownRequiredFeature);
515 // Make sure we got to each required type after we've read every TLV:
517 $crate::_check_missing_tlv!(last_seen_type, $type, $field, $fieldty);
522 /// Implements [`Readable`]/[`Writeable`] for a message struct that may include non-TLV and
523 /// TLV-encoded parts.
525 /// This is useful to implement a [`CustomMessageReader`].
527 /// Currently `$fieldty` may only be `option`, i.e., `$tlvfield` is optional field.
531 /// # use lightning::impl_writeable_msg;
532 /// struct MyCustomMessage {
533 /// pub field_1: u32,
534 /// pub field_2: bool,
535 /// pub field_3: String,
536 /// pub tlv_optional_integer: Option<u32>,
539 /// impl_writeable_msg!(MyCustomMessage, {
544 /// (1, tlv_optional_integer, option),
548 /// [`Readable`]: crate::util::ser::Readable
549 /// [`Writeable`]: crate::util::ser::Writeable
550 /// [`CustomMessageReader`]: crate::ln::wire::CustomMessageReader
552 macro_rules! impl_writeable_msg {
553 ($st:ident, {$($field:ident),* $(,)*}, {$(($type: expr, $tlvfield: ident, $fieldty: tt)),* $(,)*}) => {
554 impl $crate::util::ser::Writeable for $st {
555 fn write<W: $crate::util::ser::Writer>(&self, w: &mut W) -> Result<(), $crate::io::Error> {
556 $( self.$field.write(w)?; )*
557 $crate::encode_tlv_stream!(w, {$(($type, self.$tlvfield, $fieldty)),*});
561 impl $crate::util::ser::Readable for $st {
562 fn read<R: $crate::io::Read>(r: &mut R) -> Result<Self, $crate::ln::msgs::DecodeError> {
563 $(let $field = $crate::util::ser::Readable::read(r)?;)*
564 $($crate::_init_tlv_field_var!($tlvfield, $fieldty);)*
565 $crate::decode_tlv_stream!(r, {$(($type, $tlvfield, $fieldty)),*});
575 macro_rules! impl_writeable {
576 ($st:ident, {$($field:ident),*}) => {
577 impl $crate::util::ser::Writeable for $st {
578 fn write<W: $crate::util::ser::Writer>(&self, w: &mut W) -> Result<(), $crate::io::Error> {
579 $( self.$field.write(w)?; )*
584 fn serialized_length(&self) -> usize {
585 let mut len_calc = 0;
586 $( len_calc += self.$field.serialized_length(); )*
591 impl $crate::util::ser::Readable for $st {
592 fn read<R: $crate::io::Read>(r: &mut R) -> Result<Self, $crate::ln::msgs::DecodeError> {
594 $($field: $crate::util::ser::Readable::read(r)?),*
601 /// Write out two bytes to indicate the version of an object.
603 /// $this_version represents a unique version of a type. Incremented whenever the type's
604 /// serialization format has changed or has a new interpretation. Used by a type's reader to
605 /// determine how to interpret fields or if it can understand a serialized object.
607 /// $min_version_that_can_read_this is the minimum reader version which can understand this
608 /// serialized object. Previous versions will simply err with a [`DecodeError::UnknownVersion`].
610 /// Updates to either `$this_version` or `$min_version_that_can_read_this` should be included in
613 /// Both version fields can be specific to this type of object.
615 /// [`DecodeError::UnknownVersion`]: crate::ln::msgs::DecodeError::UnknownVersion
616 macro_rules! write_ver_prefix {
617 ($stream: expr, $this_version: expr, $min_version_that_can_read_this: expr) => {
618 $stream.write_all(&[$this_version; 1])?;
619 $stream.write_all(&[$min_version_that_can_read_this; 1])?;
623 /// Writes out a suffix to an object as a length-prefixed TLV stream which contains potentially
624 /// backwards-compatible, optional fields which old nodes can happily ignore.
626 /// It is written out in TLV format and, as with all TLV fields, unknown even fields cause a
627 /// [`DecodeError::UnknownRequiredFeature`] error, with unknown odd fields ignored.
629 /// This is the preferred method of adding new fields that old nodes can ignore and still function
632 /// [`DecodeError::UnknownRequiredFeature`]: crate::ln::msgs::DecodeError::UnknownRequiredFeature
634 macro_rules! write_tlv_fields {
635 ($stream: expr, {$(($type: expr, $field: expr, $fieldty: tt)),* $(,)*}) => {
636 $crate::_encode_varint_length_prefixed_tlv!($stream, {$(($type, $field, $fieldty)),*})
640 /// Reads a prefix added by [`write_ver_prefix`], above. Takes the current version of the
641 /// serialization logic for this object. This is compared against the
642 /// `$min_version_that_can_read_this` added by [`write_ver_prefix`].
643 macro_rules! read_ver_prefix {
644 ($stream: expr, $this_version: expr) => { {
645 let ver: u8 = Readable::read($stream)?;
646 let min_ver: u8 = Readable::read($stream)?;
647 if min_ver > $this_version {
648 return Err(DecodeError::UnknownVersion);
654 /// Reads a suffix added by [`write_tlv_fields`].
656 /// [`write_tlv_fields`]: crate::write_tlv_fields
658 macro_rules! read_tlv_fields {
659 ($stream: expr, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}) => { {
660 let tlv_len: $crate::util::ser::BigSize = $crate::util::ser::Readable::read($stream)?;
661 let mut rd = $crate::util::ser::FixedLengthReader::new($stream, tlv_len.0);
662 $crate::decode_tlv_stream!(&mut rd, {$(($type, $field, $fieldty)),*});
663 rd.eat_remaining().map_err(|_| $crate::ln::msgs::DecodeError::ShortRead)?;
667 /// Initializes the struct fields.
669 /// This is exported for use by other exported macros, do not use directly.
672 macro_rules! _init_tlv_based_struct_field {
673 ($field: ident, (default_value, $default: expr)) => {
676 ($field: ident, (static_value, $value: expr)) => {
679 ($field: ident, option) => {
682 ($field: ident, (option: $trait: ident $(, $read_arg: expr)?)) => {
683 $crate::_init_tlv_based_struct_field!($field, option)
685 ($field: ident, upgradable_required) => {
688 ($field: ident, upgradable_option) => {
691 ($field: ident, required) => {
694 ($field: ident, vec_type) => {
697 ($field: ident, optional_vec) => {
702 /// Initializes the variable we are going to read the TLV into.
704 /// This is exported for use by other exported macros, do not use directly.
707 macro_rules! _init_tlv_field_var {
708 ($field: ident, (default_value, $default: expr)) => {
709 let mut $field = $crate::util::ser::RequiredWrapper(None);
711 ($field: ident, (static_value, $value: expr)) => {
714 ($field: ident, required) => {
715 let mut $field = $crate::util::ser::RequiredWrapper(None);
717 ($field: ident, (required: $trait: ident $(, $read_arg: expr)?)) => {
718 $crate::_init_tlv_field_var!($field, required);
720 ($field: ident, vec_type) => {
721 let mut $field = Some(Vec::new());
723 ($field: ident, option) => {
724 let mut $field = None;
726 ($field: ident, optional_vec) => {
727 let mut $field = Some(Vec::new());
729 ($field: ident, (option: $trait: ident $(, $read_arg: expr)?)) => {
730 $crate::_init_tlv_field_var!($field, option);
732 ($field: ident, upgradable_required) => {
733 let mut $field = $crate::util::ser::UpgradableRequired(None);
735 ($field: ident, upgradable_option) => {
736 let mut $field = None;
740 /// Equivalent to running [`_init_tlv_field_var`] then [`read_tlv_fields`].
742 /// This is exported for use by other exported macros, do not use directly.
745 macro_rules! _init_and_read_tlv_fields {
746 ($reader: ident, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}) => {
748 $crate::_init_tlv_field_var!($field, $fieldty);
751 $crate::read_tlv_fields!($reader, {
752 $(($type, $field, $fieldty)),*
757 /// Implements [`Readable`]/[`Writeable`] for a struct storing it as a set of TLVs
758 /// If `$fieldty` is `required`, then `$field` is a required field that is not an [`Option`] nor a [`Vec`].
759 /// If `$fieldty` is `(default_value, $default)`, then `$field` will be set to `$default` if not present.
760 /// If `$fieldty` is `option`, then `$field` is optional field.
761 /// If `$fieldty` is `optional_vec`, then `$field` is a [`Vec`], which needs to have its individual elements serialized.
762 /// Note that for `optional_vec` no bytes are written if the vec is empty
766 /// # use lightning::impl_writeable_tlv_based;
767 /// struct LightningMessage {
768 /// tlv_integer: u32,
769 /// tlv_default_integer: u32,
770 /// tlv_optional_integer: Option<u32>,
771 /// tlv_vec_type_integer: Vec<u32>,
774 /// impl_writeable_tlv_based!(LightningMessage, {
775 /// (0, tlv_integer, required),
776 /// (1, tlv_default_integer, (default_value, 7)),
777 /// (2, tlv_optional_integer, option),
778 /// (3, tlv_vec_type_integer, optional_vec),
782 /// [`Readable`]: crate::util::ser::Readable
783 /// [`Writeable`]: crate::util::ser::Writeable
785 macro_rules! impl_writeable_tlv_based {
786 ($st: ident, {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}) => {
787 impl $crate::util::ser::Writeable for $st {
788 fn write<W: $crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), $crate::io::Error> {
789 $crate::write_tlv_fields!(writer, {
790 $(($type, self.$field, $fieldty)),*
796 fn serialized_length(&self) -> usize {
797 use $crate::util::ser::BigSize;
800 let mut len = $crate::util::ser::LengthCalculatingWriter(0);
802 $crate::_get_varint_length_prefixed_tlv_length!(len, $type, self.$field, $fieldty);
806 let mut len_calc = $crate::util::ser::LengthCalculatingWriter(0);
807 BigSize(len as u64).write(&mut len_calc).expect("No in-memory data may fail to serialize");
812 impl $crate::util::ser::Readable for $st {
813 fn read<R: $crate::io::Read>(reader: &mut R) -> Result<Self, $crate::ln::msgs::DecodeError> {
814 $crate::_init_and_read_tlv_fields!(reader, {
815 $(($type, $field, $fieldty)),*
819 $field: $crate::_init_tlv_based_struct_field!($field, $fieldty)
827 /// Defines a struct for a TLV stream and a similar struct using references for non-primitive types,
828 /// implementing [`Readable`] for the former and [`Writeable`] for the latter. Useful as an
829 /// intermediary format when reading or writing a type encoded as a TLV stream. Note that each field
830 /// representing a TLV record has its type wrapped with an [`Option`]. A tuple consisting of a type
831 /// and a serialization wrapper may be given in place of a type when custom serialization is
834 /// [`Readable`]: crate::util::ser::Readable
835 /// [`Writeable`]: crate::util::ser::Writeable
836 macro_rules! tlv_stream {
837 ($name:ident, $nameref:ident, $range:expr, {
838 $(($type:expr, $field:ident : $fieldty:tt)),* $(,)*
841 pub(super) struct $name {
843 pub(super) $field: Option<tlv_record_type!($fieldty)>,
847 #[cfg_attr(test, derive(PartialEq))]
849 pub(super) struct $nameref<'a> {
851 pub(super) $field: Option<tlv_record_ref_type!($fieldty)>,
855 impl<'a> $crate::util::ser::Writeable for $nameref<'a> {
856 fn write<W: $crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), $crate::io::Error> {
857 encode_tlv_stream!(writer, {
858 $(($type, self.$field, (option, encoding: $fieldty))),*
864 impl $crate::util::ser::SeekReadable for $name {
865 fn read<R: $crate::io::Read + $crate::io::Seek>(reader: &mut R) -> Result<Self, $crate::ln::msgs::DecodeError> {
867 _init_tlv_field_var!($field, option);
869 let rewind = |cursor: &mut R, offset: usize| {
870 cursor.seek($crate::io::SeekFrom::Current(-(offset as i64))).expect("");
872 _decode_tlv_stream_range!(reader, $range, rewind, {
873 $(($type, $field, (option, encoding: $fieldty))),*
886 macro_rules! tlv_record_type {
887 (($type:ty, $wrapper:ident)) => { $type };
888 (($type:ty, $wrapper:ident, $encoder:ty)) => { $type };
889 ($type:ty) => { $type };
892 macro_rules! tlv_record_ref_type {
895 ((u16, $wrapper: ident)) => { u16 };
896 ((u32, $wrapper: ident)) => { u32 };
897 ((u64, $wrapper: ident)) => { u64 };
898 (($type:ty, $wrapper:ident)) => { &'a $type };
899 (($type:ty, $wrapper:ident, $encoder:ty)) => { $encoder };
900 ($type:ty) => { &'a $type };
905 macro_rules! _impl_writeable_tlv_based_enum_common {
906 ($st: ident, $(($variant_id: expr, $variant_name: ident) =>
907 {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}
909 $(($tuple_variant_id: expr, $tuple_variant_name: ident)),* $(,)*) => {
910 impl $crate::util::ser::Writeable for $st {
911 fn write<W: $crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), $crate::io::Error> {
913 $($st::$variant_name { $(ref $field),* } => {
914 let id: u8 = $variant_id;
916 $crate::write_tlv_fields!(writer, {
917 $(($type, *$field, $fieldty)),*
920 $($st::$tuple_variant_name (ref field) => {
921 let id: u8 = $tuple_variant_id;
923 field.write(writer)?;
932 /// Implement [`Readable`] and [`Writeable`] for an enum, with struct variants stored as TLVs and tuple
933 /// variants stored directly.
934 /// The format is, for example
936 /// impl_writeable_tlv_based_enum!(EnumName,
937 /// (0, StructVariantA) => {(0, required_variant_field, required), (1, optional_variant_field, option)},
938 /// (1, StructVariantB) => {(0, variant_field_a, required), (1, variant_field_b, required), (2, variant_vec_field, optional_vec)};
939 /// (2, TupleVariantA), (3, TupleVariantB),
942 /// The type is written as a single byte, followed by any variant data.
943 /// Attempts to read an unknown type byte result in [`DecodeError::UnknownRequiredFeature`].
945 /// [`Readable`]: crate::util::ser::Readable
946 /// [`Writeable`]: crate::util::ser::Writeable
947 /// [`DecodeError::UnknownRequiredFeature`]: crate::ln::msgs::DecodeError::UnknownRequiredFeature
949 macro_rules! impl_writeable_tlv_based_enum {
950 ($st: ident, $(($variant_id: expr, $variant_name: ident) =>
951 {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}
953 $(($tuple_variant_id: expr, $tuple_variant_name: ident)),* $(,)*) => {
954 $crate::_impl_writeable_tlv_based_enum_common!($st,
955 $(($variant_id, $variant_name) => {$(($type, $field, $fieldty)),*}),*;
956 $(($tuple_variant_id, $tuple_variant_name)),*);
958 impl $crate::util::ser::Readable for $st {
959 fn read<R: $crate::io::Read>(reader: &mut R) -> Result<Self, $crate::ln::msgs::DecodeError> {
960 let id: u8 = $crate::util::ser::Readable::read(reader)?;
963 // Because read_tlv_fields creates a labeled loop, we cannot call it twice
964 // in the same function body. Instead, we define a closure and call it.
966 $crate::_init_and_read_tlv_fields!(reader, {
967 $(($type, $field, $fieldty)),*
969 Ok($st::$variant_name {
971 $field: $crate::_init_tlv_based_struct_field!($field, $fieldty)
977 $($tuple_variant_id => {
978 Ok($st::$tuple_variant_name(Readable::read(reader)?))
981 Err($crate::ln::msgs::DecodeError::UnknownRequiredFeature)
989 /// Implement [`MaybeReadable`] and [`Writeable`] for an enum, with struct variants stored as TLVs and
990 /// tuple variants stored directly.
992 /// This is largely identical to [`impl_writeable_tlv_based_enum`], except that odd variants will
993 /// return `Ok(None)` instead of `Err(`[`DecodeError::UnknownRequiredFeature`]`)`. It should generally be preferred
994 /// when [`MaybeReadable`] is practical instead of just [`Readable`] as it provides an upgrade path for
995 /// new variants to be added which are simply ignored by existing clients.
997 /// [`MaybeReadable`]: crate::util::ser::MaybeReadable
998 /// [`Writeable`]: crate::util::ser::Writeable
999 /// [`DecodeError::UnknownRequiredFeature`]: crate::ln::msgs::DecodeError::UnknownRequiredFeature
1000 /// [`Readable`]: crate::util::ser::Readable
1002 macro_rules! impl_writeable_tlv_based_enum_upgradable {
1003 ($st: ident, $(($variant_id: expr, $variant_name: ident) =>
1004 {$(($type: expr, $field: ident, $fieldty: tt)),* $(,)*}
1007 $(($tuple_variant_id: expr, $tuple_variant_name: ident)),* $(,)*)*) => {
1008 $crate::_impl_writeable_tlv_based_enum_common!($st,
1009 $(($variant_id, $variant_name) => {$(($type, $field, $fieldty)),*}),*;
1010 $($(($tuple_variant_id, $tuple_variant_name)),*)*);
1012 impl $crate::util::ser::MaybeReadable for $st {
1013 fn read<R: $crate::io::Read>(reader: &mut R) -> Result<Option<Self>, $crate::ln::msgs::DecodeError> {
1014 let id: u8 = $crate::util::ser::Readable::read(reader)?;
1017 // Because read_tlv_fields creates a labeled loop, we cannot call it twice
1018 // in the same function body. Instead, we define a closure and call it.
1020 $crate::_init_and_read_tlv_fields!(reader, {
1021 $(($type, $field, $fieldty)),*
1023 Ok(Some($st::$variant_name {
1025 $field: $crate::_init_tlv_based_struct_field!($field, $fieldty)
1031 $($($tuple_variant_id => {
1032 Ok(Some($st::$tuple_variant_name(Readable::read(reader)?)))
1034 _ if id % 2 == 1 => Ok(None),
1035 _ => Err($crate::ln::msgs::DecodeError::UnknownRequiredFeature),
1044 use crate::io::{self, Cursor};
1045 use crate::prelude::*;
1046 use crate::ln::msgs::DecodeError;
1047 use crate::util::ser::{Writeable, HighZeroBytesDroppedBigSize, VecWriter};
1048 use bitcoin::secp256k1::PublicKey;
1050 // The BOLT TLV test cases don't include any tests which use our "required-value" logic since
1051 // the encoding layer in the BOLTs has no such concept, though it makes our macros easier to
1052 // work with so they're baked into the decoder. Thus, we have a few additional tests below
1053 fn tlv_reader(s: &[u8]) -> Result<(u64, u32, Option<u32>), DecodeError> {
1054 let mut s = Cursor::new(s);
1057 let mut c: Option<u32> = None;
1058 decode_tlv_stream!(&mut s, {(2, a, required), (3, b, required), (4, c, option)});
1063 fn tlv_v_short_read() {
1064 // We only expect a u32 for type 3 (which we are given), but the L says its 8 bytes.
1065 if let Err(DecodeError::ShortRead) = tlv_reader(&::hex::decode(
1066 concat!("0100", "0208deadbeef1badbeef", "0308deadbeef")
1068 } else { panic!(); }
1072 fn tlv_types_out_of_order() {
1073 if let Err(DecodeError::InvalidValue) = tlv_reader(&::hex::decode(
1074 concat!("0100", "0304deadbeef", "0208deadbeef1badbeef")
1076 } else { panic!(); }
1077 // ...even if its some field we don't understand
1078 if let Err(DecodeError::InvalidValue) = tlv_reader(&::hex::decode(
1079 concat!("0208deadbeef1badbeef", "0100", "0304deadbeef")
1081 } else { panic!(); }
1085 fn tlv_req_type_missing_or_extra() {
1086 // It's also bad if they included even fields we don't understand
1087 if let Err(DecodeError::UnknownRequiredFeature) = tlv_reader(&::hex::decode(
1088 concat!("0100", "0208deadbeef1badbeef", "0304deadbeef", "0600")
1090 } else { panic!(); }
1091 // ... or if they're missing fields we need
1092 if let Err(DecodeError::InvalidValue) = tlv_reader(&::hex::decode(
1093 concat!("0100", "0208deadbeef1badbeef")
1095 } else { panic!(); }
1096 // ... even if that field is even
1097 if let Err(DecodeError::InvalidValue) = tlv_reader(&::hex::decode(
1098 concat!("0304deadbeef", "0500")
1100 } else { panic!(); }
1104 fn tlv_simple_good_cases() {
1105 assert_eq!(tlv_reader(&::hex::decode(
1106 concat!("0208deadbeef1badbeef", "03041bad1dea")
1107 ).unwrap()[..]).unwrap(),
1108 (0xdeadbeef1badbeef, 0x1bad1dea, None));
1109 assert_eq!(tlv_reader(&::hex::decode(
1110 concat!("0208deadbeef1badbeef", "03041bad1dea", "040401020304")
1111 ).unwrap()[..]).unwrap(),
1112 (0xdeadbeef1badbeef, 0x1bad1dea, Some(0x01020304)));
1115 #[derive(Debug, PartialEq)]
1116 struct TestUpgradable {
1122 fn upgradable_tlv_reader(s: &[u8]) -> Result<Option<TestUpgradable>, DecodeError> {
1123 let mut s = Cursor::new(s);
1126 let mut c: Option<u32> = None;
1127 decode_tlv_stream!(&mut s, {(2, a, upgradable_required), (3, b, upgradable_required), (4, c, upgradable_option)});
1128 Ok(Some(TestUpgradable { a, b, c, }))
1132 fn upgradable_tlv_simple_good_cases() {
1133 assert_eq!(upgradable_tlv_reader(&::hex::decode(
1134 concat!("0204deadbeef", "03041bad1dea", "0404deadbeef")
1135 ).unwrap()[..]).unwrap(),
1136 Some(TestUpgradable { a: 0xdeadbeef, b: 0x1bad1dea, c: Some(0xdeadbeef) }));
1138 assert_eq!(upgradable_tlv_reader(&::hex::decode(
1139 concat!("0204deadbeef", "03041bad1dea")
1140 ).unwrap()[..]).unwrap(),
1141 Some(TestUpgradable { a: 0xdeadbeef, b: 0x1bad1dea, c: None}));
1145 fn missing_required_upgradable() {
1146 if let Err(DecodeError::InvalidValue) = upgradable_tlv_reader(&::hex::decode(
1147 concat!("0100", "0204deadbeef")
1149 } else { panic!(); }
1150 if let Err(DecodeError::InvalidValue) = upgradable_tlv_reader(&::hex::decode(
1151 concat!("0100", "03041bad1dea")
1153 } else { panic!(); }
1156 // BOLT TLV test cases
1157 fn tlv_reader_n1(s: &[u8]) -> Result<(Option<HighZeroBytesDroppedBigSize<u64>>, Option<u64>, Option<(PublicKey, u64, u64)>, Option<u16>), DecodeError> {
1158 let mut s = Cursor::new(s);
1159 let mut tlv1: Option<HighZeroBytesDroppedBigSize<u64>> = None;
1160 let mut tlv2: Option<u64> = None;
1161 let mut tlv3: Option<(PublicKey, u64, u64)> = None;
1162 let mut tlv4: Option<u16> = None;
1163 decode_tlv_stream!(&mut s, {(1, tlv1, option), (2, tlv2, option), (3, tlv3, option), (254, tlv4, option)});
1164 Ok((tlv1, tlv2, tlv3, tlv4))
1168 fn bolt_tlv_bogus_stream() {
1169 macro_rules! do_test {
1170 ($stream: expr, $reason: ident) => {
1171 if let Err(DecodeError::$reason) = tlv_reader_n1(&::hex::decode($stream).unwrap()[..]) {
1172 } else { panic!(); }
1176 // TLVs from the BOLT test cases which should not decode as either n1 or n2
1177 do_test!(concat!("fd01"), ShortRead);
1178 do_test!(concat!("fd0001", "00"), InvalidValue);
1179 do_test!(concat!("fd0101"), ShortRead);
1180 do_test!(concat!("0f", "fd"), ShortRead);
1181 do_test!(concat!("0f", "fd26"), ShortRead);
1182 do_test!(concat!("0f", "fd2602"), ShortRead);
1183 do_test!(concat!("0f", "fd0001", "00"), InvalidValue);
1184 do_test!(concat!("0f", "fd0201", "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"), ShortRead);
1186 do_test!(concat!("12", "00"), UnknownRequiredFeature);
1187 do_test!(concat!("fd0102", "00"), UnknownRequiredFeature);
1188 do_test!(concat!("fe01000002", "00"), UnknownRequiredFeature);
1189 do_test!(concat!("ff0100000000000002", "00"), UnknownRequiredFeature);
1193 fn bolt_tlv_bogus_n1_stream() {
1194 macro_rules! do_test {
1195 ($stream: expr, $reason: ident) => {
1196 if let Err(DecodeError::$reason) = tlv_reader_n1(&::hex::decode($stream).unwrap()[..]) {
1197 } else { panic!(); }
1201 // TLVs from the BOLT test cases which should not decode as n1
1202 do_test!(concat!("01", "09", "ffffffffffffffffff"), InvalidValue);
1203 do_test!(concat!("01", "01", "00"), InvalidValue);
1204 do_test!(concat!("01", "02", "0001"), InvalidValue);
1205 do_test!(concat!("01", "03", "000100"), InvalidValue);
1206 do_test!(concat!("01", "04", "00010000"), InvalidValue);
1207 do_test!(concat!("01", "05", "0001000000"), InvalidValue);
1208 do_test!(concat!("01", "06", "000100000000"), InvalidValue);
1209 do_test!(concat!("01", "07", "00010000000000"), InvalidValue);
1210 do_test!(concat!("01", "08", "0001000000000000"), InvalidValue);
1211 do_test!(concat!("02", "07", "01010101010101"), ShortRead);
1212 do_test!(concat!("02", "09", "010101010101010101"), InvalidValue);
1213 do_test!(concat!("03", "21", "023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb"), ShortRead);
1214 do_test!(concat!("03", "29", "023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb0000000000000001"), ShortRead);
1215 do_test!(concat!("03", "30", "023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb000000000000000100000000000001"), ShortRead);
1216 do_test!(concat!("03", "31", "043da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb00000000000000010000000000000002"), InvalidValue);
1217 do_test!(concat!("03", "32", "023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb0000000000000001000000000000000001"), InvalidValue);
1218 do_test!(concat!("fd00fe", "00"), ShortRead);
1219 do_test!(concat!("fd00fe", "01", "01"), ShortRead);
1220 do_test!(concat!("fd00fe", "03", "010101"), InvalidValue);
1221 do_test!(concat!("00", "00"), UnknownRequiredFeature);
1223 do_test!(concat!("02", "08", "0000000000000226", "01", "01", "2a"), InvalidValue);
1224 do_test!(concat!("02", "08", "0000000000000231", "02", "08", "0000000000000451"), InvalidValue);
1225 do_test!(concat!("1f", "00", "0f", "01", "2a"), InvalidValue);
1226 do_test!(concat!("1f", "00", "1f", "01", "2a"), InvalidValue);
1228 // The last BOLT test modified to not require creating a new decoder for one trivial test.
1229 do_test!(concat!("ffffffffffffffffff", "00", "01", "00"), InvalidValue);
1233 fn bolt_tlv_valid_n1_stream() {
1234 macro_rules! do_test {
1235 ($stream: expr, $tlv1: expr, $tlv2: expr, $tlv3: expr, $tlv4: expr) => {
1236 if let Ok((tlv1, tlv2, tlv3, tlv4)) = tlv_reader_n1(&::hex::decode($stream).unwrap()[..]) {
1237 assert_eq!(tlv1.map(|v| v.0), $tlv1);
1238 assert_eq!(tlv2, $tlv2);
1239 assert_eq!(tlv3, $tlv3);
1240 assert_eq!(tlv4, $tlv4);
1241 } else { panic!(); }
1245 do_test!(concat!(""), None, None, None, None);
1246 do_test!(concat!("21", "00"), None, None, None, None);
1247 do_test!(concat!("fd0201", "00"), None, None, None, None);
1248 do_test!(concat!("fd00fd", "00"), None, None, None, None);
1249 do_test!(concat!("fd00ff", "00"), None, None, None, None);
1250 do_test!(concat!("fe02000001", "00"), None, None, None, None);
1251 do_test!(concat!("ff0200000000000001", "00"), None, None, None, None);
1253 do_test!(concat!("01", "00"), Some(0), None, None, None);
1254 do_test!(concat!("01", "01", "01"), Some(1), None, None, None);
1255 do_test!(concat!("01", "02", "0100"), Some(256), None, None, None);
1256 do_test!(concat!("01", "03", "010000"), Some(65536), None, None, None);
1257 do_test!(concat!("01", "04", "01000000"), Some(16777216), None, None, None);
1258 do_test!(concat!("01", "05", "0100000000"), Some(4294967296), None, None, None);
1259 do_test!(concat!("01", "06", "010000000000"), Some(1099511627776), None, None, None);
1260 do_test!(concat!("01", "07", "01000000000000"), Some(281474976710656), None, None, None);
1261 do_test!(concat!("01", "08", "0100000000000000"), Some(72057594037927936), None, None, None);
1262 do_test!(concat!("02", "08", "0000000000000226"), None, Some((0 << 30) | (0 << 5) | (550 << 0)), None, None);
1263 do_test!(concat!("03", "31", "023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb00000000000000010000000000000002"),
1265 PublicKey::from_slice(&::hex::decode("023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb").unwrap()[..]).unwrap(), 1, 2)),
1267 do_test!(concat!("fd00fe", "02", "0226"), None, None, None, Some(550));
1270 fn do_simple_test_tlv_write() -> Result<(), io::Error> {
1271 let mut stream = VecWriter(Vec::new());
1274 _encode_varint_length_prefixed_tlv!(&mut stream, {(1, 1u8, required), (42, None::<u64>, option)});
1275 assert_eq!(stream.0, ::hex::decode("03010101").unwrap());
1278 _encode_varint_length_prefixed_tlv!(&mut stream, {(1, Some(1u8), option)});
1279 assert_eq!(stream.0, ::hex::decode("03010101").unwrap());
1282 _encode_varint_length_prefixed_tlv!(&mut stream, {(4, 0xabcdu16, required), (42, None::<u64>, option)});
1283 assert_eq!(stream.0, ::hex::decode("040402abcd").unwrap());
1286 _encode_varint_length_prefixed_tlv!(&mut stream, {(42, None::<u64>, option), (0xff, 0xabcdu16, required)});
1287 assert_eq!(stream.0, ::hex::decode("06fd00ff02abcd").unwrap());
1290 _encode_varint_length_prefixed_tlv!(&mut stream, {(0, 1u64, required), (42, None::<u64>, option), (0xff, HighZeroBytesDroppedBigSize(0u64), required)});
1291 assert_eq!(stream.0, ::hex::decode("0e00080000000000000001fd00ff00").unwrap());
1294 _encode_varint_length_prefixed_tlv!(&mut stream, {(0, Some(1u64), option), (0xff, HighZeroBytesDroppedBigSize(0u64), required)});
1295 assert_eq!(stream.0, ::hex::decode("0e00080000000000000001fd00ff00").unwrap());
1301 fn simple_test_tlv_write() {
1302 do_simple_test_tlv_write().unwrap();