2018-03-20 15:55:14 +00:00
|
|
|
extern crate bitcoin;
|
2018-08-17 15:25:11 +00:00
|
|
|
|
2019-08-15 20:52:10 +00:00
|
|
|
use bitcoin::util::address::Address;
|
|
|
|
use bitcoin::network::constants::Network;
|
2018-08-20 18:30:05 +00:00
|
|
|
use bitcoin::blockdata::script;
|
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
|
|
|
use bitcoin::consensus::encode;
|
2018-08-20 18:30:05 +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 s: Result<script::Script, _> = encode::deserialize(data);
|
2018-08-20 18:30:05 +00:00
|
|
|
if let Ok(script) = s {
|
2020-01-23 01:28:12 +00:00
|
|
|
let _: Result<Vec<script::Instruction>, script::Error> = script.instructions().collect();
|
2018-08-20 18:30:05 +00:00
|
|
|
|
|
|
|
let mut b = script::Builder::new();
|
2020-01-23 01:28:12 +00:00
|
|
|
for ins in script.instructions_minimal() {
|
|
|
|
if ins.is_err() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
match ins.ok().unwrap() {
|
2018-08-20 18:30:05 +00:00
|
|
|
script::Instruction::Op(op) => { b = b.push_opcode(op); }
|
|
|
|
script::Instruction::PushBytes(bytes) => {
|
|
|
|
// Any one-byte pushes, except -0, which can be interpreted as numbers, should be
|
|
|
|
// reserialized as numbers. (For -1 through 16, this will use special ops; for
|
|
|
|
// others it'll just reserialize them as pushes.)
|
|
|
|
if bytes.len() == 1 && bytes[0] != 0x80 && bytes[0] != 0x00 {
|
|
|
|
if let Ok(num) = script::read_scriptint(bytes) {
|
|
|
|
b = b.push_int(num);
|
|
|
|
} else {
|
|
|
|
b = b.push_slice(bytes);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
b = b.push_slice(bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_eq!(b.into_script(), script);
|
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
|
|
|
assert_eq!(data, &encode::serialize(&script)[..]);
|
2019-08-15 20:52:10 +00:00
|
|
|
|
|
|
|
// Check if valid address and if that address roundtrips.
|
|
|
|
if let Some(addr) = Address::from_script(&script, Network::Bitcoin) {
|
|
|
|
assert_eq!(addr.script_pubkey(), script);
|
|
|
|
}
|
2018-08-20 18:30:05 +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();
|
|
|
|
extend_vec_from_hex("00", &mut a);
|
|
|
|
super::do_test(&a);
|
|
|
|
}
|
|
|
|
}
|