]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dnstcpbench.cc
Limit the number of queries sent out to get NS addresses per query.
[thirdparty/pdns.git] / pdns / dnstcpbench.cc
CommitLineData
22f4bd59 1/*
12471842
PL
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
870a0fe4
AT
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
4106b16e 25#include <boost/accumulators/statistics/median.hpp>
26#include <boost/accumulators/statistics/mean.hpp>
27#include <boost/accumulators/accumulators.hpp>
28
29#include <boost/accumulators/statistics.hpp>
30
0ddde5fb
RG
31#include <thread>
32
a51b52c9 33#include "dnsparser.hh"
34#include "sstuff.hh"
35#include "misc.hh"
36#include "dnswriter.hh"
37#include "dnsrecords.hh"
38#include "statbag.hh"
519f5484 39#include "threadname.hh"
a8f90a6a 40#include <netinet/tcp.h>
a51b52c9 41#include <boost/array.hpp>
36658df5 42#include <boost/program_options.hpp>
fa8fd4d2 43
a51b52c9 44
36658df5 45StatBag S;
46namespace po = boost::program_options;
4106b16e 47
36658df5 48po::variables_map g_vm;
49bool g_verbose;
a51b52c9 50bool g_onlyTCP;
a8f90a6a 51bool g_tcpNoDelay;
36658df5 52unsigned int g_timeoutMsec;
53AtomicCounter g_networkErrors, g_otherErrors, g_OK, g_truncates, g_authAnswers, g_timeOuts;
1d74012c 54ComboAddress g_dest;
f7896b52 55
050e6877 56static unsigned int makeUsec(const struct timeval& tv)
4106b16e 57{
58 return 1000000*tv.tv_sec + tv.tv_usec;
59}
60
22f4bd59 61/* On Linux, run echo 1 > /proc/sys/net/ipv4/tcp_tw_recycle
62 to prevent running out of free TCP ports */
63
64struct BenchQuery
65{
4106b16e 66 BenchQuery(const std::string& qname_, uint16_t qtype_) : qname(qname_), qtype(qtype_), udpUsec(0), tcpUsec(0), answerSecond(0) {}
67252448 67 BenchQuery(): qtype(0), udpUsec(0), tcpUsec(0), answerSecond(0) {}
eaedd091 68 DNSName qname;
22f4bd59 69 uint16_t qtype;
4106b16e 70 uint32_t udpUsec, tcpUsec;
71 time_t answerSecond;
22f4bd59 72};
f7896b52 73
050e6877 74static void doQuery(BenchQuery* q)
f7896b52 75try
a51b52c9 76{
77 vector<uint8_t> packet;
1d74012c 78 DNSPacketWriter pw(packet, q->qname, q->qtype);
36658df5 79 int res;
a51b52c9 80 string reply;
81
4106b16e 82 struct timeval tv, now;
83 gettimeofday(&tv, 0);
84
a51b52c9 85 if(!g_onlyTCP) {
528b753d 86 Socket udpsock(g_dest.sin4.sin_family, SOCK_DGRAM);
a51b52c9 87
16657041 88 udpsock.sendTo(string(packet.begin(), packet.end()), g_dest);
a51b52c9 89 ComboAddress origin;
36658df5 90 res = waitForData(udpsock.getHandle(), 0, 1000 * g_timeoutMsec);
91 if(res < 0)
92 throw NetworkError("Error waiting for response");
93 if(!res) {
94 g_timeOuts++;
95 return;
96 }
97
a51b52c9 98 udpsock.recvFrom(reply, origin);
4106b16e 99
100 gettimeofday(&now, 0);
101 q->udpUsec = makeUsec(now - tv);
102 tv=now;
103
27c0050c 104 MOADNSParser mdp(false, reply);
a51b52c9 105 if(!mdp.d_header.tc)
106 return;
f7896b52 107 g_truncates++;
a51b52c9 108 }
109
528b753d 110 Socket sock(g_dest.sin4.sin_family, SOCK_STREAM);
f7896b52 111 int tmp=1;
112 if(setsockopt(sock.getHandle(),SOL_SOCKET,SO_REUSEADDR,(char*)&tmp,sizeof tmp)<0)
a702a96c 113 throw runtime_error("Unable to set socket reuse: "+stringerror());
a8f90a6a 114
115 if(g_tcpNoDelay && setsockopt(sock.getHandle(), IPPROTO_TCP, TCP_NODELAY,(char*)&tmp,sizeof tmp)<0)
a702a96c 116 throw runtime_error("Unable to set socket no delay: "+stringerror());
a51b52c9 117
1d74012c 118 sock.connect(g_dest);
36658df5 119 uint16_t len = htons(packet.size());
120 string tcppacket((char*)& len, 2);
16657041 121 tcppacket.append(packet.begin(), packet.end());
36658df5 122
123 sock.writen(tcppacket);
124
125 res = waitForData(sock.getHandle(), 0, 1000 * g_timeoutMsec);
126 if(res < 0)
127 throw NetworkError("Error waiting for response");
128 if(!res) {
129 g_timeOuts++;
130 return;
131 }
a51b52c9 132
133 if(sock.read((char *) &len, 2) != 2)
3f81d239 134 throw PDNSException("tcp read failed");
a51b52c9 135
136 len=ntohs(len);
c2826d2e 137 std::unique_ptr<char[]> creply(new char[len]);
a51b52c9 138 int n=0;
139 int numread;
140 while(n<len) {
c2826d2e 141 numread=sock.read(creply.get()+n, len-n);
a51b52c9 142 if(numread<0)
3f81d239 143 throw PDNSException("tcp read failed");
a51b52c9 144 n+=numread;
145 }
146
c2826d2e 147 reply=string(creply.get(), len);
a51b52c9 148
4106b16e 149 gettimeofday(&now, 0);
150 q->tcpUsec = makeUsec(now - tv);
151 q->answerSecond = now.tv_sec;
152
27c0050c 153 MOADNSParser mdp(false, reply);
f7896b52 154 // cout<<"Had correct TCP/IP response, "<<mdp.d_answers.size()<<" answers, aabit="<<mdp.d_header.aa<<endl;
36658df5 155 if(mdp.d_header.aa)
156 g_authAnswers++;
f7896b52 157 g_OK++;
158}
159catch(NetworkError& ne)
160{
161 cerr<<"Network error: "<<ne.what()<<endl;
162 g_networkErrors++;
163}
164catch(...)
165{
166 g_otherErrors++;
a51b52c9 167}
168
169/* read queries from stdin, put in vector
170 launch n worker threads, each picks a query using AtomicCounter
171 If a worker reaches the end of its queue, it stops */
172
173AtomicCounter g_pos;
682549f2 174
22f4bd59 175vector<BenchQuery> g_queries;
1d74012c 176
0ddde5fb 177static void worker()
a51b52c9 178{
519f5484 179 setThreadName("dnstcpb/worker");
a51b52c9 180 for(;;) {
f7896b52 181 unsigned int pos = g_pos++;
182 if(pos >= g_queries.size())
a51b52c9 183 break;
1d74012c 184
185 doQuery(&g_queries[pos]); // this is safe as long as nobody *inserts* to g_queries
a51b52c9 186 }
a51b52c9 187}
188
050e6877 189static void usage(po::options_description &desc) {
c4f20ff9
PL
190 cerr<<"Syntax: dnstcpbench REMOTE [PORT] < QUERIES"<<endl;
191 cerr<<"Where QUERIES is one query per line, format: qname qtype, just 1 space"<<endl;
192 cerr<<desc<<endl;
193}
194
a51b52c9 195int main(int argc, char** argv)
196try
197{
36658df5 198 po::options_description desc("Allowed options"), hidden, alloptions;
199 desc.add_options()
200 ("help,h", "produce help message")
c4f20ff9 201 ("version", "print version number")
36658df5 202 ("verbose,v", "be verbose")
203 ("udp-first,u", "try UDP first")
74f463af 204 ("file,f", po::value<string>(), "source file - if not specified, defaults to stdin")
a8f90a6a 205 ("tcp-no-delay", po::value<bool>()->default_value(true), "use TCP_NODELAY socket option")
36658df5 206 ("timeout-msec", po::value<int>()->default_value(10), "wait for this amount of milliseconds for an answer")
207 ("workers", po::value<int>()->default_value(100), "number of parallel workers");
208
209 hidden.add_options()
210 ("remote-host", po::value<string>(), "remote-host")
211 ("remote-port", po::value<int>()->default_value(53), "remote-port");
212 alloptions.add(desc).add(hidden);
213
214 po::positional_options_description p;
215 p.add("remote-host", 1);
216 p.add("remote-port", 1);
217
218 po::store(po::command_line_parser(argc, argv).options(alloptions).positional(p).run(), g_vm);
219 po::notify(g_vm);
c4f20ff9
PL
220
221 if(g_vm.count("version")) {
222 cerr<<"dnstcpbench "<<VERSION<<endl;
223 exit(EXIT_SUCCESS);
224 }
225
36658df5 226 if(g_vm.count("help")) {
c4f20ff9 227 usage(desc);
36658df5 228 exit(EXIT_SUCCESS);
229 }
a8f90a6a 230 g_tcpNoDelay = g_vm["tcp-no-delay"].as<bool>();
231
36658df5 232 g_onlyTCP = !g_vm.count("udp-first");
233 g_verbose = g_vm.count("verbose");
234 g_timeoutMsec = g_vm["timeout-msec"].as<int>();
235
a51b52c9 236 reportAllTypes();
f7896b52 237
36658df5 238 if(g_vm["remote-host"].empty()) {
c4f20ff9 239 usage(desc);
f7896b52 240 exit(EXIT_FAILURE);
241 }
f7896b52 242
36658df5 243 g_dest = ComboAddress(g_vm["remote-host"].as<string>().c_str(), g_vm["remote-port"].as<int>());
244
245 unsigned int numworkers=g_vm["workers"].as<int>();
246
247 if(g_verbose) {
248 cout<<"Sending queries to: "<<g_dest.toStringWithPort()<<endl;
249 cout<<"Attempting UDP first: " << (g_onlyTCP ? "no" : "yes") <<endl;
250 cout<<"Timeout: "<< g_timeoutMsec<<"msec"<<endl;
a8f90a6a 251 cout << "Using TCP_NODELAY: "<<g_tcpNoDelay<<endl;
36658df5 252 }
253
254
0ddde5fb
RG
255 std::vector<std::thread> workers;
256 workers.reserve(numworkers);
a51b52c9 257
74f463af 258 FILE* fp;
259 if(!g_vm.count("file"))
260 fp=fdopen(0, "r");
261 else {
262 fp=fopen(g_vm["file"].as<string>().c_str(), "r");
263 if(!fp)
264 unixDie("Unable to open "+g_vm["file"].as<string>()+" for input");
265 }
f7896b52 266 pair<string, string> q;
267 string line;
268 while(stringfgets(fp, line)) {
269 trim_right(line);
270 q=splitField(line, ' ');
22f4bd59 271 g_queries.push_back(BenchQuery(q.first, DNSRecordContent::TypeToNumber(q.second)));
a51b52c9 272 }
f7896b52 273 fclose(fp);
274
0ddde5fb
RG
275 for (unsigned int n = 0; n < numworkers; ++n) {
276 workers.push_back(std::thread(worker));
a51b52c9 277 }
0ddde5fb
RG
278 for (auto& w : workers) {
279 w.join();
a51b52c9 280 }
4106b16e 281
282 using namespace boost::accumulators;
283 typedef accumulator_set<
40cd3e09 284 double
4106b16e 285 , stats<boost::accumulators::tag::median(with_p_square_quantile),
286 boost::accumulators::tag::mean(immediate)
287 >
288 > acc_t;
289
290 acc_t udpspeeds, tcpspeeds, qps;
291
292 typedef map<time_t, uint32_t> counts_t;
293 counts_t counts;
294
ef7cd021 295 for(const BenchQuery& bq : g_queries) {
4106b16e 296 counts[bq.answerSecond]++;
297 udpspeeds(bq.udpUsec);
298 tcpspeeds(bq.tcpUsec);
299 }
300
ef7cd021 301 for(const counts_t::value_type& val : counts) {
4106b16e 302 qps(val.second);
303 }
304
305 cout<<"Average qps: "<<mean(qps)<<", median qps: "<<median(qps)<<endl;
306 cout<<"Average UDP latency: "<<mean(udpspeeds)<<"usec, median: "<<median(udpspeeds)<<"usec"<<endl;
307 cout<<"Average TCP latency: "<<mean(tcpspeeds)<<"usec, median: "<<median(tcpspeeds)<<"usec"<<endl;
308
f7896b52 309 cout<<"OK: "<<g_OK<<", network errors: "<<g_networkErrors<<", other errors: "<<g_otherErrors<<endl;
36658df5 310 cout<<"Timeouts: "<<g_timeOuts<<endl;
311 cout<<"Truncateds: "<<g_truncates<<", auth answers: "<<g_authAnswers<<endl;
a51b52c9 312}
313catch(std::exception &e)
314{
315 cerr<<"Fatal: "<<e.what()<<endl;
316}