BitcoinPrivate-seeder/main.cpp

261 lines
7.3 KiB
C++
Raw Normal View History

2012-02-23 09:01:09 -08:00
#include <algorithm>
2011-12-19 20:20:50 -08:00
#include <pthread.h>
2012-01-01 10:18:56 -08:00
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
2011-12-19 20:20:50 -08:00
#include "bitcoin.h"
#include "db.h"
2012-01-01 10:18:56 -08:00
#define NTHREADS 24
2011-12-20 00:31:28 -08:00
2011-12-19 20:20:50 -08:00
using namespace std;
2012-01-01 10:18:56 -08:00
class CDnsSeedOpts {
public:
int nThreads;
int nPort;
const char *mbox;
const char *ns;
const char *host;
CDnsSeedOpts() : nThreads(24), nPort(53), mbox(NULL), ns(NULL), host(NULL) {}
void ParseCommandLine(int argc, char **argv) {
2012-01-01 14:23:21 -08:00
static const char *help = "Bitcoin-seeder\n"
"Usage: %s -h <host> -n <ns> [-m <mbox>] [-t <threads>] [-p <port>]\n"
"\n"
"Options:\n"
"-h <host> Hostname of the DNS seed\n"
"-n <ns> Hostname of the nameserver\n"
"-m <mbox> E-Mail address reported in SOA records\n"
"-t <threads> Number of crawlers to run in parallel (default 24)\n"
"-p <port> UDP port to listen on (default 53)\n"
"-?, --help Show this text\n"
"\n";
bool showHelp = false;
2012-01-01 10:18:56 -08:00
while(1) {
static struct option long_options[] = {
{"host", required_argument, 0, 'h'},
{"ns", required_argument, 0, 'n'},
{"mbox", required_argument, 0, 'm'},
{"threads", required_argument, 0, 't'},
{"port", required_argument, 0, 'p'},
2012-01-01 14:23:21 -08:00
{"help", no_argument, 0, 'h'},
2012-01-01 10:18:56 -08:00
{0, 0, 0, 0}
};
int option_index = 0;
int c = getopt_long(argc, argv, "h:n:m:t:p:", long_options, &option_index);
if (c == -1) break;
switch (c) {
case 'h': {
host = optarg;
break;
}
case 'm': {
mbox = optarg;
break;
}
case 'n': {
ns = optarg;
break;
}
case 't': {
int n = strtol(optarg, NULL, 10);
if (n > 0 && n < 1000) nThreads = n;
2012-01-01 14:23:21 -08:00
break;
2012-01-01 10:18:56 -08:00
}
case 'p': {
int p = strtol(optarg, NULL, 10);
if (p > 0 && p < 65536) nPort = p;
2012-01-01 14:23:21 -08:00
break;
}
case '?': {
showHelp = true;
break;
2012-01-01 10:18:56 -08:00
}
}
}
2012-01-01 14:23:21 -08:00
if (host == NULL || ns == NULL) showHelp = true;
if (showHelp) fprintf(stderr, help, argv[0]);
2012-01-01 10:18:56 -08:00
}
};
2011-12-19 20:20:50 -08:00
extern "C" {
2011-12-20 05:29:21 -08:00
#include "dns.h"
2011-12-19 20:20:50 -08:00
}
CAddrDb db;
extern "C" void* ThreadCrawler(void* data) {
do {
CIPPort ip;
2011-12-19 21:42:48 -08:00
int wait = 5;
if (!db.Get(ip, wait)) {
2011-12-20 00:31:28 -08:00
wait *= 1000;
wait += rand() % (500 * NTHREADS);
Sleep(wait);
2011-12-19 20:20:50 -08:00
continue;
}
int ban = 0;
vector<CAddress> addr;
2011-12-22 17:43:32 -08:00
int clientV = 0;
2012-02-23 09:01:09 -08:00
std::string clientSV;
bool ret = TestNode(ip,ban,clientV,clientSV,addr);
2011-12-19 20:20:50 -08:00
db.Add(addr);
if (ret) {
2012-02-23 09:01:09 -08:00
db.Good(ip, clientV, clientSV);
2011-12-19 20:20:50 -08:00
} else {
db.Bad(ip, ban);
}
} while(1);
}
extern "C" int GetIPList(struct in_addr *addr, int max, int ipv4only) {
set<CIP> ips;
db.GetIPs(ips, max, ipv4only);
int n = 0;
for (set<CIP>::iterator it = ips.begin(); it != ips.end(); it++) {
if ((*it).GetInAddr(&addr[n]))
n++;
}
2011-12-20 13:18:13 -08:00
// permute list
for (int i=0; i<n; i++) {
int k = i + (rand() % (n-i));
if (i != k) {
struct in_addr sw = addr[i];
addr[i] = addr[k];
addr[k] = sw;
}
}
2011-12-19 20:20:50 -08:00
return n;
}
2011-12-25 16:04:24 -08:00
static dns_opt_t dns_opt;
2012-01-01 10:18:56 -08:00
extern "C" void* ThreadDNS(void* arg) {
CDnsSeedOpts *opts = (CDnsSeedOpts*)arg;
dns_opt.host = opts->host;
dns_opt.ns = opts->ns;
dns_opt.mbox = opts->mbox;
2011-12-25 16:04:24 -08:00
dns_opt.datattl = 60;
dns_opt.nsttl = 40000;
dns_opt.cb = GetIPList;
2012-01-01 10:18:56 -08:00
dns_opt.port = opts->nPort;
2011-12-25 16:04:24 -08:00
dns_opt.nRequests = 0;
dnsserver(&dns_opt);
2011-12-19 20:20:50 -08:00
}
2012-02-23 09:01:09 -08:00
int StatCompare(const CAddrReport& a, const CAddrReport& b) {
if (a.uptime[4] == b.uptime[4]) {
if (a.uptime[3] == b.uptime[3]) {
return a.clientVersion > b.clientVersion;
} else {
return a.uptime[3] > b.uptime[3];
}
} else {
return a.uptime[4] > b.uptime[4];
}
}
2011-12-19 23:35:22 -08:00
extern "C" void* ThreadDumper(void*) {
do {
Sleep(100000);
{
FILE *f = fopen("dnsseed.dat","w+");
if (f) {
CAutoFile cf(f);
cf << db;
}
2012-02-23 09:01:09 -08:00
FILE *d = fopen("dnsseed.dump", "w");
vector<CAddrReport> v = db.GetAll();
sort(v.begin(), v.end(), StatCompare);
2012-02-23 15:57:06 -08:00
fprintf(d, "# address \t%%(2h)\t%%(8h)\t%%(1d)\t%%(7d)\t%%(30d)\tversion\n");
2012-02-23 09:01:09 -08:00
for (vector<CAddrReport>::const_iterator it = v.begin(); it < v.end(); it++) {
CAddrReport rep = *it;
fprintf(d, "%s\t%.2f%%\t%.2f%%\t%.2f%%\t%.2f%%\t%.2f%%\t%i \"%s\"\n", rep.ip.ToString().c_str(), 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.clientVersion, rep.clientSubVersion.c_str());
}
fclose(d);
2011-12-19 23:35:22 -08:00
}
} while(1);
}
2011-12-25 16:04:24 -08:00
extern "C" void* ThreadStats(void*) {
do {
2012-02-23 09:01:09 -08:00
char c[256];
time_t tim = time(NULL);
struct tm *tmp = localtime(&tim);
strftime(c, 256, "[%y-%m-%d %H:%M:%S]", tmp);
2011-12-25 16:04:24 -08:00
CAddrDbStats stats;
db.GetStats(stats);
2011-12-26 06:53:22 -08:00
printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
2012-02-23 09:01:09 -08:00
printf("%s %i/%i available (%i tried in %is, %i new, %i active), %i banned; %llu DNS requests", c, stats.nGood, stats.nAvail, stats.nTracked, stats.nAge, stats.nNew, stats.nAvail - stats.nTracked - stats.nNew, stats.nBanned, (unsigned long long)dns_opt.nRequests);
2011-12-26 06:53:22 -08:00
Sleep(1000);
2011-12-25 16:04:24 -08:00
} while(1);
}
static const string seeds[] = {"dnsseed.bluematt.me", "bitseed.xf2.org", "dnsseed.bitcoin.dashjr.org", "seed.bitcoin.sipa.be"};
extern "C" void* ThreadSeeder(void*) {
do {
for (int i=0; i<sizeof(seeds)/sizeof(seeds[0]); i++) {
vector<CIP> ips;
LookupHost(seeds[i].c_str(), ips);
for (vector<CIP>::iterator it = ips.begin(); it != ips.end(); it++) {
db.Add(CIPPort(*it, 8333), true);
}
}
Sleep(1800000);
} while(1);
}
2012-01-01 10:18:56 -08:00
int main(int argc, char **argv) {
2011-12-26 06:53:22 -08:00
setbuf(stdout, NULL);
2012-01-01 10:18:56 -08:00
CDnsSeedOpts opts;
opts.ParseCommandLine(argc, argv);
2012-02-23 16:05:38 -08:00
bool fDNS = true;
2012-01-01 10:18:56 -08:00
if (!opts.ns) {
2012-02-23 16:05:38 -08:00
printf("No nameserver set. Not starting DNS server.\n");
fDNS = false;
2012-01-01 10:18:56 -08:00
}
2012-02-23 16:05:38 -08:00
if (fDNS && !opts.host) {
2012-01-01 10:18:56 -08:00
fprintf(stderr, "No hostname set. Please use -h.\n");
2012-01-01 14:23:21 -08:00
exit(1);
2012-01-01 10:18:56 -08:00
}
2011-12-19 23:35:22 -08:00
FILE *f = fopen("dnsseed.dat","r");
if (f) {
2012-01-01 10:18:56 -08:00
printf("Loading dnsseed.dat...");
2011-12-19 23:35:22 -08:00
CAutoFile cf(f);
cf >> db;
2012-02-23 09:01:09 -08:00
// db.banned.clear();
2012-01-01 10:18:56 -08:00
printf("done\n");
2011-12-19 20:20:50 -08:00
}
2012-01-01 10:18:56 -08:00
pthread_t threadDns, threadSeed, threadDump, threadStats;
printf("Starting seeder...");
pthread_create(&threadSeed, NULL, ThreadSeeder, NULL);
printf("done\n");
printf("Starting %i crawler threads...", opts.nThreads);
for (int i=0; i<opts.nThreads; i++) {
pthread_t thread;
pthread_create(&thread, NULL, ThreadCrawler, NULL);
2011-12-19 20:20:50 -08:00
}
2012-01-01 10:18:56 -08:00
printf("done\n");
pthread_create(&threadDump, NULL, ThreadDumper, NULL);
2012-02-23 16:05:38 -08:00
if (fDNS) {
printf("Starting DNS server for %s on %s (port %i)...", opts.host, opts.ns, opts.nPort);
pthread_create(&threadDns, NULL, ThreadDNS, &opts);
printf("done\n");
}
2012-01-01 10:18:56 -08:00
pthread_create(&threadStats, NULL, ThreadStats, NULL);
void* res;
2012-02-23 16:05:38 -08:00
pthread_join(threadDump, &res);
2011-12-19 20:20:50 -08:00
return 0;
}