]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/anadns.hh
Merge pull request #7628 from tcely/patch-3
[thirdparty/pdns.git] / pdns / anadns.hh
CommitLineData
12471842
PL
1/*
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 */
9a450843
BH
22#ifndef PDNS_ANADNS_HH
23#define PDNS_ANADNS_HH
24#include <boost/tuple/tuple.hpp>
25#include <boost/tuple/tuple_comparison.hpp>
26#include <string>
27#include <netinet/ip.h>
28#include <netinet/udp.h>
29#include "dnsparser.hh"
8b422c02 30#include "iputils.hh"
61b26744 31#include "namespaces.hh"
9a450843
BH
32
33struct QuestionIdentifier
34{
35 QuestionIdentifier()
36 {}
37
38 bool operator<(const QuestionIdentifier& rhs) const
39 {
40 return
ef890b79 41 tie(d_id, d_qtype, d_source, d_dest, d_qname) <
42 tie(rhs.d_id, rhs.d_qtype, rhs.d_source, rhs.d_dest, rhs.d_qname);
9a450843
BH
43 }
44
ef890b79 45
9a450843 46 // the canonical direction is that of the question
ef890b79 47 static QuestionIdentifier create(const ComboAddress& src, const ComboAddress& dst, const struct dnsheader& header, const DNSName& qname, uint16_t qtype)
9a450843
BH
48 {
49 QuestionIdentifier ret;
a5d9353e 50
ef890b79 51 if(header.qr) {
a5d9353e 52 ret.d_source = dst;
53 ret.d_dest = src;
9a450843
BH
54 }
55 else {
a5d9353e 56 ret.d_source = src;
57 ret.d_dest = dst;
9a450843 58 }
ef890b79 59 ret.d_qname=qname;
60 ret.d_qtype=qtype;
61 ret.d_id=ntohs(header.id);
9a450843
BH
62 return ret;
63 }
64
ef890b79 65 // the canonical direction is that of the question
66 static QuestionIdentifier create(const ComboAddress& src, const ComboAddress& dst, const MOADNSParser& mdp)
67 {
68 return create(src, dst, mdp.d_header, mdp.d_qname, mdp.d_qtype);
69 }
70
71
8b422c02 72 ComboAddress d_source, d_dest;
9a450843 73
af6406f5 74 DNSName d_qname;
9a450843
BH
75 uint16_t d_qtype;
76 uint16_t d_id;
9a450843
BH
77};
78
79inline ostream& operator<<(ostream &s, const QuestionIdentifier& qi)
80{
81aa6d25 81 s<< "'"<<qi.d_qname<<"|"<<DNSRecordContent::NumberToType(qi.d_qtype)<<"', with id " << qi.d_id <<" from "<<qi.d_source.toStringWithPort();
9a450843 82
8b422c02 83 s<<" to " << qi.d_dest.toStringWithPort();
84 return s;
9a450843
BH
85}
86
87
88#endif