]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dnsproxy.hh
Avoid throwing an exception in Logger::log().
[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 */
e8c59f2d 22#pragma once
12c86877 23#include <map>
0ddde5fb 24#include <mutex>
76473b92
KM
25#include <sys/socket.h>
26#include <netinet/in.h>
27#include <arpa/inet.h>
12c86877
BH
28#include "dnspacket.hh"
29#include "lock.hh"
30#include "iputils.hh"
31
10f4eea8 32#include "namespaces.hh"
12c86877
BH
33
34/**
35
36how will this work.
37
38This is a thread that just throws packets around. Should handle ~1000 packets/second.
39
40Consists of a thread receiving packets back from the backend and retransmitting them to the original client.
41
42Furthermore, it provides a member function that reports the packet to the connection tracker and actually sends it out.
43
44The 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
45to make sure outside parties can't spoof us.
46
47To fix: how to remove the stale entries that will surely accumulate
48*/
49
50class DNSProxy
51{
52public:
53 DNSProxy(const string &ip); //!< creates socket
732d9faa 54 ~DNSProxy(); //<! dtor for DNSProxy
12c86877 55 void go(); //!< launches the actual thread
c2826d2e 56 bool completePacket(std::unique_ptr<DNSPacket>& r, const DNSName& target,const DNSName& aname, const uint8_t scopeMask);
12c86877
BH
57
58 void mainloop(); //!< this is the main loop that receives reply packets and sends them out again
b636533b 59 bool recurseFor(DNSPacket* p);
12c86877 60private:
12c86877
BH
61 struct ConntrackEntry
62 {
12c86877 63 time_t created;
e04e65fd 64 boost::optional<ComboAddress> anyLocal;
5fca2e23 65 DNSName qname;
c2826d2e 66 std::unique_ptr<DNSPacket> complete;
561434a6 67 DNSName aname;
0abea1ca 68 uint8_t anameScopeMask;
e04e65fd
PL
69 ComboAddress remote;
70 uint16_t id;
71 uint16_t qtype;
72 int outsock;
12c86877
BH
73 };
74
75 typedef map<int,ConntrackEntry> map_t;
083109a4
PL
76
77 // Data
40c9a111 78 ComboAddress d_remote;
083109a4
PL
79 AtomicCounter* d_resanswers;
80 AtomicCounter* d_udpanswers;
81 AtomicCounter* d_resquestions;
0ddde5fb 82 std::mutex d_lock;
12c86877 83 map_t d_conntrack;
083109a4
PL
84 int d_sock;
85 int getID_locked();
86 uint16_t d_xor;
12c86877 87};