]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/zonemd.hh
dnsdist: Fix DNS over plain HTTP broken by `reloadAllCertificates()`
[thirdparty/pdns.git] / pdns / zonemd.hh
CommitLineData
e21df721
O
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 */
22#pragma once
23
efe79e15 24#ifdef HAVE_CONFIG_H
e21df721 25#include "config.h"
efe79e15
OM
26#endif
27
28#include "dnsname.hh"
29#include "qtype.hh"
30#include "dnsrecords.hh"
95b66e0d 31#include "validate.hh"
e21df721 32
e21df721
O
33class ZoneParserTNG;
34
35namespace pdns
36{
efe79e15
OM
37class ZoneMD
38{
39public:
5ee5e1e6
OM
40 enum class Config : uint8_t
41 {
42 Ignore,
af5b15bc
OM
43 Validate,
44 Require
5ee5e1e6
OM
45 };
46 enum class Result : uint8_t
47 {
48 OK,
49 NoValidationDone,
50 ValidationFailure
51 };
5ecf9d92 52
7dcdce8c
OM
53 ZoneMD(DNSName zone) :
54 d_zone(std::move(zone))
efe79e15
OM
55 {}
56 void readRecords(ZoneParserTNG& zpt);
5ecf9d92 57 void readRecords(const std::vector<DNSRecord>& records);
1c3bc297 58 void readRecord(const DNSRecord& record);
7dcdce8c 59 void processRecord(const DNSRecord& record);
efe79e15
OM
60 void verify(bool& validationDone, bool& validationOK);
61
e5163239 62 // Return the zone's apex DNSKEYs
7dcdce8c 63 [[nodiscard]] const std::set<shared_ptr<const DNSKEYRecordContent>>& getDNSKEYs() const
e5163239
OM
64 {
65 return d_dnskeys;
66 }
67
68 // Return the zone's apex RRSIGs
c7f594e2 69 [[nodiscard]] const std::vector<shared_ptr<const RRSIGRecordContent>>& getRRSIGs(QType requestedType)
e5163239 70 {
c7f594e2
OM
71 if (d_rrsigs.count(requestedType) == 0) {
72 d_rrsigs[requestedType] = {};
73 }
74 return d_rrsigs[requestedType];
e5163239
OM
75 }
76
77 // Return the zone's apex ZONEMDs
7dcdce8c 78 [[nodiscard]] std::vector<shared_ptr<const ZONEMDRecordContent>> getZONEMDs() const
e5163239 79 {
d06dcda4 80 std::vector<shared_ptr<const ZONEMDRecordContent>> ret;
7dcdce8c 81 ret.reserve(d_zonemdRecords.size());
e5163239
OM
82 for (const auto& zonemd : d_zonemdRecords) {
83 ret.emplace_back(zonemd.second.record);
84 }
85 return ret;
5e7dd5e9
OM
86 }
87
95b66e0d 88 // Return the zone's apex NSECs with signatures
7dcdce8c 89 [[nodiscard]] const ContentSigPair& getNSECs() const
95b66e0d
OM
90 {
91 return d_nsecs;
92 }
93
94 // Return the zone's apex NSEC3s with signatures
7dcdce8c 95 [[nodiscard]] const ContentSigPair& getNSEC3s() const
95b66e0d 96 {
7dcdce8c
OM
97 const auto item = d_nsec3s.find(d_nsec3label);
98 return item == d_nsec3s.end() ? empty : d_nsec3s.at(d_nsec3label);
95b66e0d
OM
99 }
100
7dcdce8c 101 [[nodiscard]] const DNSName& getNSEC3Label() const
2088c7b8 102 {
3cb47b35
OM
103 return d_nsec3label;
104 }
105
7dcdce8c 106 [[nodiscard]] const std::vector<shared_ptr<const NSEC3PARAMRecordContent>>& getNSEC3Params() const
2088c7b8
OM
107 {
108 return d_nsec3params;
109 }
110
efe79e15 111private:
d06dcda4
RG
112 using RRSetKey_t = std::pair<DNSName, QType>;
113 using RRVector_t = std::vector<std::shared_ptr<const DNSRecordContent>>;
efe79e15 114
5fca0ca2 115 struct CanonRRSetKeyCompare
efe79e15 116 {
7dcdce8c 117 bool operator()(const RRSetKey_t& lhs, const RRSetKey_t& rhs) const
efe79e15
OM
118 {
119 // FIXME surely we can be smarter here
7dcdce8c 120 if (lhs.first.canonCompare(rhs.first)) {
efe79e15
OM
121 return true;
122 }
7dcdce8c 123 if (rhs.first.canonCompare(lhs.first)) {
efe79e15
OM
124 return false;
125 }
7dcdce8c 126 return lhs.second < rhs.second;
efe79e15
OM
127 }
128 };
129
d06dcda4 130 using RRSetMap_t = std::map<RRSetKey_t, RRVector_t, CanonRRSetKeyCompare>;
efe79e15
OM
131
132 struct ZoneMDAndDuplicateFlag
133 {
d06dcda4 134 const std::shared_ptr<const ZONEMDRecordContent> record;
efe79e15
OM
135 bool duplicate;
136 };
137
138 // scheme,hashalgo -> zonemdrecord,duplicate
139 std::map<pair<uint8_t, uint8_t>, ZoneMDAndDuplicateFlag> d_zonemdRecords;
140
141 RRSetMap_t d_resourceRecordSets;
142 std::map<RRSetKey_t, uint32_t> d_resourceRecordSetTTLs;
143
d06dcda4
RG
144 std::shared_ptr<const SOARecordContent> d_soaRecordContent;
145 std::set<shared_ptr<const DNSKEYRecordContent>> d_dnskeys;
c7f594e2 146 std::map<QType, std::vector<shared_ptr<const RRSIGRecordContent>>> d_rrsigs;
d06dcda4 147 std::vector<shared_ptr<const NSEC3PARAMRecordContent>> d_nsec3params;
95b66e0d 148 ContentSigPair d_nsecs;
2088c7b8 149 map<DNSName, ContentSigPair> d_nsec3s;
3cb47b35 150 DNSName d_nsec3label;
efe79e15 151 const DNSName d_zone;
2088c7b8 152 const ContentSigPair empty;
efe79e15 153};
e21df721
O
154
155}