Merge pull request #447 from ariard/2020-01-fix-weight-computation
[rust-lightning] / lightning / src / ln / features.rs
1 //! Lightning exposes sets of supported operations through "feature flags". This module includes
2 //! types to store those feature flags and query for specific flags.
3
4 use std::{cmp, fmt};
5 use std::result::Result;
6 use std::marker::PhantomData;
7
8 use ln::msgs::DecodeError;
9 use util::ser::{Readable, Writeable, Writer};
10
11 mod sealed { // You should just use the type aliases instead.
12         pub struct InitContext {}
13         pub struct NodeContext {}
14         pub struct ChannelContext {}
15
16         /// An internal trait capturing the various feature context types
17         pub trait Context {}
18         impl Context for InitContext {}
19         impl Context for NodeContext {}
20         impl Context for ChannelContext {}
21
22         pub trait DataLossProtect: Context {}
23         impl DataLossProtect for InitContext {}
24         impl DataLossProtect for NodeContext {}
25
26         pub trait InitialRoutingSync: Context {}
27         impl InitialRoutingSync for InitContext {}
28
29         pub trait UpfrontShutdownScript: Context {}
30         impl UpfrontShutdownScript for InitContext {}
31         impl UpfrontShutdownScript for NodeContext {}
32 }
33
34 /// Tracks the set of features which a node implements, templated by the context in which it
35 /// appears.
36 pub struct Features<T: sealed::Context> {
37         /// Note that, for convinience, flags is LITTLE endian (despite being big-endian on the wire)
38         flags: Vec<u8>,
39         mark: PhantomData<T>,
40 }
41
42 impl<T: sealed::Context> Clone for Features<T> {
43         fn clone(&self) -> Self {
44                 Self {
45                         flags: self.flags.clone(),
46                         mark: PhantomData,
47                 }
48         }
49 }
50 impl<T: sealed::Context> PartialEq for Features<T> {
51         fn eq(&self, o: &Self) -> bool {
52                 self.flags.eq(&o.flags)
53         }
54 }
55 impl<T: sealed::Context> fmt::Debug for Features<T> {
56         fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
57                 self.flags.fmt(fmt)
58         }
59 }
60
61 /// A feature message as it appears in an init message
62 pub type InitFeatures = Features<sealed::InitContext>;
63 /// A feature message as it appears in a node_announcement message
64 pub type NodeFeatures = Features<sealed::NodeContext>;
65 /// A feature message as it appears in a channel_announcement message
66 pub type ChannelFeatures = Features<sealed::ChannelContext>;
67
68 impl InitFeatures {
69         /// Create a Features with the features we support
70         pub fn supported() -> InitFeatures {
71                 InitFeatures {
72                         flags: vec![2 | 1 << 5],
73                         mark: PhantomData,
74                 }
75         }
76
77         /// Writes all features present up to, and including, 13.
78         pub(crate) fn write_up_to_13<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
79                 let len = cmp::min(2, self.flags.len());
80                 w.size_hint(len + 2);
81                 (len as u16).write(w)?;
82                 for i in (0..len).rev() {
83                         if i == 0 {
84                                 self.flags[i].write(w)?;
85                         } else {
86                                 // On byte 1, we want up-to-and-including-bit-13, 0-indexed, which is
87                                 // up-to-and-including-bit-5, 0-indexed, on this byte:
88                                 (self.flags[i] & 0b00_11_11_11).write(w)?;
89                         }
90                 }
91                 Ok(())
92         }
93
94         /// or's another InitFeatures into this one.
95         pub(crate) fn or(mut self, o: InitFeatures) -> InitFeatures {
96                 let total_feature_len = cmp::max(self.flags.len(), o.flags.len());
97                 self.flags.resize(total_feature_len, 0u8);
98                 for (byte, o_byte) in self.flags.iter_mut().zip(o.flags.iter()) {
99                         *byte |= *o_byte;
100                 }
101                 self
102         }
103 }
104
105 impl ChannelFeatures {
106         /// Create a Features with the features we support
107         #[cfg(not(feature = "fuzztarget"))]
108         pub(crate) fn supported() -> ChannelFeatures {
109                 ChannelFeatures {
110                         flags: Vec::new(),
111                         mark: PhantomData,
112                 }
113         }
114         #[cfg(feature = "fuzztarget")]
115         pub fn supported() -> ChannelFeatures {
116                 ChannelFeatures {
117                         flags: Vec::new(),
118                         mark: PhantomData,
119                 }
120         }
121 }
122
123 impl NodeFeatures {
124         /// Create a Features with the features we support
125         #[cfg(not(feature = "fuzztarget"))]
126         pub(crate) fn supported() -> NodeFeatures {
127                 NodeFeatures {
128                         flags: vec![2 | 1 << 5],
129                         mark: PhantomData,
130                 }
131         }
132         #[cfg(feature = "fuzztarget")]
133         pub fn supported() -> NodeFeatures {
134                 NodeFeatures {
135                         flags: vec![2 | 1 << 5],
136                         mark: PhantomData,
137                 }
138         }
139 }
140
141 impl<T: sealed::Context> Features<T> {
142         /// Create a blank Features with no features set
143         pub fn empty() -> Features<T> {
144                 Features {
145                         flags: Vec::new(),
146                         mark: PhantomData,
147                 }
148         }
149
150         #[cfg(test)]
151         /// Create a Features given a set of flags, in LE.
152         pub fn from_le_bytes(flags: Vec<u8>) -> Features<T> {
153                 Features {
154                         flags,
155                         mark: PhantomData,
156                 }
157         }
158
159         #[cfg(test)]
160         /// Gets the underlying flags set, in LE.
161         pub fn le_flags(&self) -> &Vec<u8> {
162                 &self.flags
163         }
164
165         pub(crate) fn requires_unknown_bits(&self) -> bool {
166                 self.flags.iter().enumerate().any(|(idx, &byte)| {
167                         ( idx != 0 && (byte & 0x55) != 0 ) || ( idx == 0 && (byte & 0x14) != 0 )
168                 })
169         }
170
171         pub(crate) fn supports_unknown_bits(&self) -> bool {
172                 self.flags.iter().enumerate().any(|(idx, &byte)| {
173                         ( idx != 0 && byte != 0 ) || ( idx == 0 && (byte & 0xc4) != 0 )
174                 })
175         }
176
177         /// The number of bytes required to represent the feature flags present. This does not include
178         /// the length bytes which are included in the serialized form.
179         pub(crate) fn byte_count(&self) -> usize {
180                 self.flags.len()
181         }
182
183         #[cfg(test)]
184         pub(crate) fn set_require_unknown_bits(&mut self) {
185                 let newlen = cmp::max(2, self.flags.len());
186                 self.flags.resize(newlen, 0u8);
187                 self.flags[1] |= 0x40;
188         }
189
190         #[cfg(test)]
191         pub(crate) fn clear_require_unknown_bits(&mut self) {
192                 let newlen = cmp::max(2, self.flags.len());
193                 self.flags.resize(newlen, 0u8);
194                 self.flags[1] &= !0x40;
195                 if self.flags.len() == 2 && self.flags[1] == 0 {
196                         self.flags.resize(1, 0u8);
197                 }
198         }
199 }
200
201 impl<T: sealed::DataLossProtect> Features<T> {
202         pub(crate) fn supports_data_loss_protect(&self) -> bool {
203                 self.flags.len() > 0 && (self.flags[0] & 3) != 0
204         }
205 }
206
207 impl<T: sealed::UpfrontShutdownScript> Features<T> {
208         pub(crate) fn supports_upfront_shutdown_script(&self) -> bool {
209                 self.flags.len() > 0 && (self.flags[0] & (3 << 4)) != 0
210         }
211         #[cfg(test)]
212         pub(crate) fn unset_upfront_shutdown_script(&mut self) {
213                 self.flags[0] ^= 1 << 5;
214         }
215 }
216
217 impl<T: sealed::InitialRoutingSync> Features<T> {
218         pub(crate) fn initial_routing_sync(&self) -> bool {
219                 self.flags.len() > 0 && (self.flags[0] & (1 << 3)) != 0
220         }
221         pub(crate) fn set_initial_routing_sync(&mut self) {
222                 if self.flags.len() == 0 {
223                         self.flags.resize(1, 1 << 3);
224                 } else {
225                         self.flags[0] |= 1 << 3;
226                 }
227         }
228 }
229
230 impl<T: sealed::Context> Writeable for Features<T> {
231         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
232                 w.size_hint(self.flags.len() + 2);
233                 (self.flags.len() as u16).write(w)?;
234                 for f in self.flags.iter().rev() { // Swap back to big-endian
235                         f.write(w)?;
236                 }
237                 Ok(())
238         }
239 }
240
241 impl<R: ::std::io::Read, T: sealed::Context> Readable<R> for Features<T> {
242         fn read(r: &mut R) -> Result<Self, DecodeError> {
243                 let mut flags: Vec<u8> = Readable::read(r)?;
244                 flags.reverse(); // Swap to little-endian
245                 Ok(Self {
246                         flags,
247                         mark: PhantomData,
248                 })
249         }
250 }