2018-03-20 15:55:14 +00:00
|
|
|
extern crate bitcoin;
|
2018-08-17 15:25:11 +00:00
|
|
|
|
2018-03-20 15:55:14 +00:00
|
|
|
fn do_test(data: &[u8]) {
|
Move relevant names into consensus::encode
- Move network::encodable::* to consensus::encode::*
- Rename Consensus{En,De}codable to {En,De}codable (now under
consensus::encode)
- Move network::serialize::Error to consensus::encode::Error
- Remove Raw{En,De}coder, implement {En,De}coder for T: {Write,Read}
instead
- Move network::serialize::Simple{En,De}coder to
consensus::encode::{En,De}coder
- Rename util::Error::Serialize to util::Error::Encode
- Modify comments to refer to new names
- Modify files to refer to new names
- Expose {En,De}cod{able,er}, {de,}serialize, Params
- Do not return Result for serialize{,_hex} as serializing to a Vec
should never fail
2018-09-20 10:15:45 +00:00
|
|
|
let tx_result: Result<bitcoin::blockdata::transaction::Transaction, _> = bitcoin::consensus::encode::deserialize(data);
|
2018-03-26 15:33:08 +00:00
|
|
|
match tx_result {
|
|
|
|
Err(_) => {},
|
|
|
|
Ok(mut tx) => {
|
2018-10-01 20:38:50 +00:00
|
|
|
let ser = bitcoin::consensus::encode::serialize(&tx);
|
|
|
|
assert_eq!(&ser[..], data);
|
2019-05-23 19:22:43 +00:00
|
|
|
let len = ser.len();
|
2023-02-06 20:01:48 +00:00
|
|
|
let calculated_weight = tx.weight().to_wu() as usize;
|
2018-03-26 15:33:08 +00:00
|
|
|
for input in &mut tx.input {
|
2021-10-05 13:09:23 +00:00
|
|
|
input.witness = bitcoin::blockdata::witness::Witness::default();
|
2018-03-26 15:33:08 +00:00
|
|
|
}
|
2019-05-23 19:22:43 +00:00
|
|
|
let no_witness_len = bitcoin::consensus::encode::serialize(&tx).len();
|
2018-10-01 20:38:50 +00:00
|
|
|
// For 0-input transactions, `no_witness_len` will be incorrect because
|
|
|
|
// we serialize as segwit even after "stripping the witnesses". We need
|
|
|
|
// to drop two bytes (i.e. eight weight)
|
|
|
|
if tx.input.is_empty() {
|
|
|
|
assert_eq!(no_witness_len * 3 + len - 8, calculated_weight);
|
|
|
|
} else {
|
|
|
|
assert_eq!(no_witness_len * 3 + len, calculated_weight);
|
|
|
|
}
|
2018-03-26 15:33:08 +00:00
|
|
|
},
|
|
|
|
}
|
2018-03-20 15:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "afl")]
|
2018-09-06 19:52:38 +00:00
|
|
|
#[macro_use] extern crate afl;
|
2018-03-20 15:55:14 +00:00
|
|
|
#[cfg(feature = "afl")]
|
|
|
|
fn main() {
|
2018-09-06 19:52:38 +00:00
|
|
|
fuzz!(|data| {
|
2018-03-20 15:55:14 +00:00
|
|
|
do_test(&data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "honggfuzz")]
|
|
|
|
#[macro_use] extern crate honggfuzz;
|
|
|
|
#[cfg(feature = "honggfuzz")]
|
|
|
|
fn main() {
|
|
|
|
loop {
|
|
|
|
fuzz!(|data| {
|
|
|
|
do_test(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
fn extend_vec_from_hex(hex: &str, out: &mut Vec<u8>) {
|
|
|
|
let mut b = 0;
|
|
|
|
for (idx, c) in hex.as_bytes().iter().enumerate() {
|
|
|
|
b <<= 4;
|
|
|
|
match *c {
|
2020-09-14 14:51:16 +00:00
|
|
|
b'A'..=b'F' => b |= c - b'A' + 10,
|
|
|
|
b'a'..=b'f' => b |= c - b'a' + 10,
|
|
|
|
b'0'..=b'9' => b |= c - b'0',
|
2018-03-20 15:55:14 +00:00
|
|
|
_ => panic!("Bad hex"),
|
|
|
|
}
|
|
|
|
if (idx & 1) == 1 {
|
|
|
|
out.push(b);
|
|
|
|
b = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn duplicate_crash() {
|
|
|
|
let mut a = Vec::new();
|
2018-10-01 20:38:50 +00:00
|
|
|
extend_vec_from_hex("000700000001000000010000", &mut a);
|
2018-03-20 15:55:14 +00:00
|
|
|
super::do_test(&a);
|
|
|
|
}
|
|
|
|
}
|