Skip to content

Commit fa2aa34

Browse files
committed
Improve filter whitelist
1 parent ab0ac73 commit fa2aa34

File tree

2 files changed

+36
-16
lines changed

2 files changed

+36
-16
lines changed

db.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ void CAddrDb::GetIPs_(set<CNetAddr>& ips, uint64_t requestedFlags, int max, cons
175175
} else {
176176
id = *ourId.begin();
177177
}
178-
if (id >= 0 && idToInfo[id].services & requestedFlags) {
178+
if (id >= 0 && (idToInfo[id].services & requestedFlags) == requestedFlags) {
179179
ips.insert(idToInfo[id].ip);
180180
}
181181
return;

main.cpp

+35-15
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,6 @@ using namespace std;
1515

1616
bool fTestNet = false;
1717

18-
uint64_t filter_whitelist[] = {
19-
0x0000000000000001,
20-
0x0000000000000003,
21-
0x0000000000000005,
22-
0x0000000000000007,
23-
0x0000000000000009,
24-
0x000000000000000B,
25-
0x000000000000000D,
26-
0x000000000000000F,
27-
};
28-
2918
class CDnsSeedOpts {
3019
public:
3120
int nThreads;
@@ -40,6 +29,7 @@ class CDnsSeedOpts {
4029
const char *tor;
4130
const char *ipv4_proxy;
4231
const char *ipv6_proxy;
32+
std::set<uint64_t> filter_whitelist;
4333

4434
CDnsSeedOpts() : nThreads(96), nDnsThreads(4), nPort(53), mbox(NULL), ns(NULL), host(NULL), tor(NULL), fUseTestNet(false), fWipeBan(false), fWipeIgnore(false), ipv4_proxy(NULL), ipv6_proxy(NULL) {}
4535

@@ -57,6 +47,7 @@ class CDnsSeedOpts {
5747
"-o <ip:port> Tor proxy IP/Port\n"
5848
"-i <ip:port> IPV4 SOCKS5 proxy IP/Port\n"
5949
"-k <ip:port> IPV6 SOCKS5 proxy IP/Port\n"
50+
"-w f1,f2,... Allow these flag combinations as filters\n"
6051
"--testnet Use testnet\n"
6152
"--wipeban Wipe list of banned nodes\n"
6253
"--wipeignore Wipe list of ignored nodes\n"
@@ -75,6 +66,7 @@ class CDnsSeedOpts {
7566
{"onion", required_argument, 0, 'o'},
7667
{"proxyipv4", required_argument, 0, 'i'},
7768
{"proxyipv6", required_argument, 0, 'k'},
69+
{"filter", required_argument, 0, 'w'},
7870
{"testnet", no_argument, &fUseTestNet, 1},
7971
{"wipeban", no_argument, &fWipeBan, 1},
8072
{"wipeignore", no_argument, &fWipeBan, 1},
@@ -133,12 +125,32 @@ class CDnsSeedOpts {
133125
break;
134126
}
135127

128+
case 'w': {
129+
char* ptr = optarg;
130+
while (*ptr != 0) {
131+
unsigned long l = strtoul(ptr, &ptr, 0);
132+
if (*ptr == ',') {
133+
ptr++;
134+
} else if (*ptr != 0) {
135+
break;
136+
}
137+
filter_whitelist.insert(l);
138+
}
139+
break;
140+
}
141+
136142
case '?': {
137143
showHelp = true;
138144
break;
139145
}
140146
}
141147
}
148+
if (filter_whitelist.empty()) {
149+
filter_whitelist.insert(1);
150+
filter_whitelist.insert(5);
151+
filter_whitelist.insert(9);
152+
filter_whitelist.insert(13);
153+
}
142154
if (host != NULL && ns == NULL) showHelp = true;
143155
if (showHelp) fprintf(stderr, help, argv[0]);
144156
}
@@ -189,7 +201,7 @@ class CDnsThread {
189201
std::map<uint64_t, time_t> cacheTime;
190202
unsigned int cacheHits;
191203
uint64_t dbQueries;
192-
std::vector<uint64_t> filterWhitelist;
204+
std::set<uint64_t> filterWhitelist;
193205

194206
void cacheHit(uint64_t requestedFlags, bool force = false) {
195207
static bool nets[NET_MAX] = {};
@@ -244,7 +256,7 @@ class CDnsThread {
244256
dbQueries = 0;
245257
nIPv4 = 0;
246258
nIPv6 = 0;
247-
filterWhitelist = std::vector<uint64_t>(filter_whitelist, filter_whitelist + (sizeof filter_whitelist / sizeof filter_whitelist[0]));
259+
filterWhitelist = opts->filter_whitelist;
248260
}
249261

250262
void run() {
@@ -330,11 +342,11 @@ extern "C" void* ThreadDumper(void*) {
330342
rename("dnsseed.dat.new", "dnsseed.dat");
331343
}
332344
FILE *d = fopen("dnsseed.dump", "w");
333-
fprintf(d, "# address servicebits good lastSuccess %%(2h) %%(8h) %%(1d) %%(7d) %%(30d) blocks svcs version\n");
345+
fprintf(d, "# address good lastSuccess %%(2h) %%(8h) %%(1d) %%(7d) %%(30d) blocks svcs version\n");
334346
double stat[5]={0,0,0,0,0};
335347
for (vector<CAddrReport>::const_iterator it = v.begin(); it < v.end(); it++) {
336348
CAddrReport rep = *it;
337-
fprintf(d, "%-47s %8lld %4d %11"PRId64" %6.2f%% %6.2f%% %6.2f%% %6.2f%% %6.2f%% %6i %08"PRIx64" %5i \"%s\"\n", rep.ip.ToString().c_str(), (uint64_t)rep.services, (int)rep.fGood, rep.lastSuccess, 100.0*rep.uptime[0], 100.0*rep.uptime[1], 100.0*rep.uptime[2], 100.0*rep.uptime[3], 100.0*rep.uptime[4], rep.blocks, rep.services, rep.clientVersion, rep.clientSubVersion.c_str());
349+
fprintf(d, "%-47s %4d %11"PRId64" %6.2f%% %6.2f%% %6.2f%% %6.2f%% %6.2f%% %6i %08"PRIx64" %5i \"%s\"\n", rep.ip.ToString().c_str(), (int)rep.fGood, rep.lastSuccess, 100.0*rep.uptime[0], 100.0*rep.uptime[1], 100.0*rep.uptime[2], 100.0*rep.uptime[3], 100.0*rep.uptime[4], rep.blocks, rep.services, rep.clientVersion, rep.clientSubVersion.c_str());
338350
stat[0] += rep.uptime[0];
339351
stat[1] += rep.uptime[1];
340352
stat[2] += rep.uptime[2];
@@ -406,6 +418,14 @@ int main(int argc, char **argv) {
406418
setbuf(stdout, NULL);
407419
CDnsSeedOpts opts;
408420
opts.ParseCommandLine(argc, argv);
421+
printf("Supporting whitelisted filters: ");
422+
for (std::set<uint64_t>::const_iterator it = opts.filter_whitelist.begin(); it != opts.filter_whitelist.end(); it++) {
423+
if (it != opts.filter_whitelist.begin()) {
424+
printf(",");
425+
}
426+
printf("0x%lx", (unsigned long)*it);
427+
}
428+
printf("\n");
409429
if (opts.tor) {
410430
CService service(opts.tor, 9050);
411431
if (service.IsValid()) {

0 commit comments

Comments
 (0)