forked from dogecoin/dogecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional effiency checks to sanity checker
- Loading branch information
Showing
2 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) 2020 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#include <netaddress.h> | ||
#include <test/fuzz/fuzz.h> | ||
|
||
#include <cstdint> | ||
#include <vector> | ||
|
||
//! asmap code that consumes nothing | ||
static const std::vector<bool> IPV6_PREFIX_ASMAP = {}; | ||
|
||
//! asmap code that consumes the 96 prefix bits of ::ffff:0/96 (IPv4-in-IPv6 map) | ||
static const std::vector<bool> IPV4_PREFIX_ASMAP = { | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, false, false, false, false, false, false, false, false, // Match 0x00 | ||
true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, // Match 0xFF | ||
true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true // Match 0xFF | ||
}; | ||
|
||
void test_one_input(const std::vector<uint8_t>& buffer) | ||
{ | ||
// Encoding: [7 bits: asmap size] [1 bit: ipv6?] [3-130 bytes: asmap] [4 or 16 bytes: addr] | ||
if (buffer.size() < 1 + 3 + 4) return; | ||
int asmap_size = 3 + (buffer[0] & 127); | ||
bool ipv6 = buffer[0] & 128; | ||
int addr_size = ipv6 ? 16 : 4; | ||
if (buffer.size() < size_t(1 + asmap_size + addr_size)) return; | ||
std::vector<bool> asmap = ipv6 ? IPV6_PREFIX_ASMAP : IPV4_PREFIX_ASMAP; | ||
asmap.reserve(asmap.size() + 8 * asmap_size); | ||
for (int i = 0; i < asmap_size; ++i) { | ||
for (int j = 0; j < 8; ++j) { | ||
asmap.push_back((buffer[1 + i] >> j) & 1); | ||
} | ||
} | ||
if (!SanityCheckASMap(asmap)) return; | ||
CNetAddr net_addr; | ||
net_addr.SetRaw(ipv6 ? NET_IPV6 : NET_IPV4, buffer.data() + 1 + asmap_size); | ||
(void)net_addr.GetMappedAS(asmap); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters