]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dnsproxy.hh
rec: Move doStats out of houseKeeping()
[thirdparty/pdns.git] / pdns / dnsproxy.hh
CommitLineData
12c86877 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 */
12c86877
BH
22#ifndef PDNS_DNSPROXY
23#define PDNS_DNSPROXY
24#include <pthread.h>
25#include <map>
76473b92
KM
26#include <sys/socket.h>
27#include <netinet/in.h>
28#include <arpa/inet.h>
12c86877
BH
29#include "dnspacket.hh"
30#include "lock.hh"
31#include "iputils.hh"
32
10f4eea8 33#include "namespaces.hh"
12c86877
BH
34
35/**
36
37how will this work.
38
39This is a thread that just throws packets around. Should handle ~1000 packets/second.
40
41Consists of a thread receiving packets back from the backend and retransmitting them to the original client.
42
43Furthermore, it provides a member function that reports the packet to the connection tracker and actually sends it out.
44
45The sending happens from a source port that is determined by the constructor, but IS random. Furthermore, the ID is XOR-ed with a random value
46to make sure outside parties can't spoof us.
47
48To fix: how to remove the stale entries that will surely accumulate
49*/
50
51class DNSProxy
52{
53public:
54 DNSProxy(const string &ip); //!< creates socket
732d9faa 55 ~DNSProxy(); //<! dtor for DNSProxy
12c86877 56 void go(); //!< launches the actual thread
12c86877 57 bool sendPacket(DNSPacket *p); //!< send out a packet and make a conntrack entry to we can send back the answer
561434a6 58 bool completePacket(DNSPacket *r, const DNSName& target,const DNSName& aname);
12c86877
BH
59
60 void mainloop(); //!< this is the main loop that receives reply packets and sends them out again
61 static void *launchhelper(void *p)
62 {
63 static_cast<DNSProxy *>(p)->mainloop();
64 return 0;
65 }
b636533b 66 bool recurseFor(DNSPacket* p);
12c86877 67private:
12c86877
BH
68 struct ConntrackEntry
69 {
12c86877 70 time_t created;
e04e65fd 71 boost::optional<ComboAddress> anyLocal;
5fca2e23 72 DNSName qname;
d59b894d 73 DNSPacket* complete;
561434a6 74 DNSName aname;
e04e65fd
PL
75 ComboAddress remote;
76 uint16_t id;
77 uint16_t qtype;
78 int outsock;
12c86877
BH
79 };
80
81 typedef map<int,ConntrackEntry> map_t;
083109a4
PL
82
83 // Data
083109a4
PL
84 AtomicCounter* d_resanswers;
85 AtomicCounter* d_udpanswers;
86 AtomicCounter* d_resquestions;
87 pthread_mutex_t d_lock;
12c86877 88 map_t d_conntrack;
083109a4
PL
89 int d_sock;
90 int getID_locked();
91 uint16_t d_xor;
12c86877
BH
92};
93
94#endif