2022-08-05 03:37:41 +00:00
|
|
|
use bitcoin::address::Address;
|
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;
|
2023-06-09 06:18:39 +00:00
|
|
|
use bitcoin::Network;
|
2023-03-22 14:33:50 +00:00
|
|
|
use honggfuzz::fuzz;
|
2018-08-20 18:30:05 +00:00
|
|
|
|
2018-03-20 15:55:14 +00:00
|
|
|
fn do_test(data: &[u8]) {
|
2022-07-30 12:22:18 +00:00
|
|
|
let s: Result<script::ScriptBuf, _> = 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() {
|
2023-03-22 14:33:50 +00:00
|
|
|
script::Instruction::Op(op) => {
|
|
|
|
b = b.push_opcode(op);
|
|
|
|
}
|
2018-08-20 18:30:05 +00:00
|
|
|
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 {
|
2023-02-18 11:43:13 +00:00
|
|
|
if let Ok(num) = script::read_scriptint(bytes.as_bytes()) {
|
2018-08-20 18:30:05 +00:00
|
|
|
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.
|
2022-06-05 14:49:26 +00:00
|
|
|
if let Ok(addr) = Address::from_script(&script, Network::Bitcoin) {
|
2019-08-15 20:52:10 +00:00
|
|
|
assert_eq!(addr.script_pubkey(), script);
|
|
|
|
}
|
2018-08-20 18:30:05 +00:00
|
|
|
}
|
2018-03-20 15:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
loop {
|
|
|
|
fuzz!(|data| {
|
|
|
|
do_test(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-22 15:07:50 +00:00
|
|
|
#[cfg(all(test, fuzzing))]
|
2018-03-20 15:55:14 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|