]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dnsseckeeper.hh
rec: Set ecs-ipv4-cache-bits and ecs-ipv6-cache-bits in the tests
[thirdparty/pdns.git] / pdns / dnsseckeeper.hh
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 #include <string>
24 #include <string.h>
25 #include <vector>
26 #include <boost/logic/tribool.hpp>
27 #include <boost/multi_index_container.hpp>
28 #include <boost/multi_index/ordered_index.hpp>
29 #include <boost/tuple/tuple_comparison.hpp>
30 #include <boost/multi_index/key_extractors.hpp>
31 #include <boost/multi_index/sequenced_index.hpp>
32 #include "dnssecinfra.hh"
33 #include "dnsrecords.hh"
34 #include "ueberbackend.hh"
35
36 using namespace ::boost::multi_index;
37
38 class DNSSECKeeper : public boost::noncopyable
39 {
40 public:
41 enum keytype_t { KSK, ZSK, CSK };
42 enum keyalgorithm_t : uint8_t {
43 RSAMD5=1,
44 DH=2,
45 DSA=3,
46 RSASHA1=5,
47 DSANSEC3SHA1=6,
48 RSASHA1NSEC3SHA1=7,
49 RSASHA256=8,
50 RSASHA512=10,
51 ECCGOST=12,
52 ECDSA256=13,
53 ECDSA384=14,
54 ED25519=15,
55 ED448=16
56 };
57
58 enum dsdigestalgorithm_t : uint8_t {
59 SHA1=1,
60 SHA256=2,
61 GOST=3,
62 SHA384=4
63 };
64
65 struct KeyMetaData
66 {
67 string fname;
68 unsigned int id;
69 bool active;
70 keytype_t keyType;
71 bool hasSEPBit;
72 };
73 typedef std::pair<DNSSECPrivateKey, KeyMetaData> keymeta_t;
74 typedef std::vector<keymeta_t > keyset_t;
75
76 static string keyTypeToString(const keytype_t &keyType)
77 {
78 switch(keyType) {
79 case DNSSECKeeper::KSK:
80 return("KSK");
81 case DNSSECKeeper::ZSK:
82 return("ZSK");
83 case DNSSECKeeper::CSK:
84 return("CSK");
85 default:
86 return("UNKNOWN");
87 }
88 }
89
90 /*
91 * Returns the algorithm number based on the mnemonic (or old PowerDNS value of) a string.
92 * See https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml for the mapping
93 */
94 static int shorthand2algorithm(const string &algorithm)
95 {
96 if (pdns_iequals(algorithm, "rsamd5")) return RSAMD5;
97 if (pdns_iequals(algorithm, "dh")) return DH;
98 if (pdns_iequals(algorithm, "dsa")) return DSA;
99 if (pdns_iequals(algorithm, "rsasha1")) return RSASHA1;
100 if (pdns_iequals(algorithm, "dsa-nsec3-sha1")) return DSANSEC3SHA1;
101 if (pdns_iequals(algorithm, "rsasha1-nsec3-sha1")) return RSASHA1NSEC3SHA1;
102 if (pdns_iequals(algorithm, "rsasha256")) return RSASHA256;
103 if (pdns_iequals(algorithm, "rsasha512")) return RSASHA512;
104 if (pdns_iequals(algorithm, "ecc-gost")) return ECCGOST;
105 if (pdns_iequals(algorithm, "gost")) return ECCGOST;
106 if (pdns_iequals(algorithm, "ecdsa256")) return ECDSA256;
107 if (pdns_iequals(algorithm, "ecdsap256sha256")) return ECDSA256;
108 if (pdns_iequals(algorithm, "ecdsa384")) return ECDSA384;
109 if (pdns_iequals(algorithm, "ecdsap384sha384")) return ECDSA384;
110 if (pdns_iequals(algorithm, "ed25519")) return ED25519;
111 if (pdns_iequals(algorithm, "ed448")) return ED448;
112 if (pdns_iequals(algorithm, "indirect")) return 252;
113 if (pdns_iequals(algorithm, "privatedns")) return 253;
114 if (pdns_iequals(algorithm, "privateoid")) return 254;
115 return -1;
116 }
117
118 /*
119 * Returns the mnemonic from https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml
120 */
121 static string algorithm2name(uint8_t algo) {
122 switch(algo) {
123 case 0:
124 case 4:
125 case 9:
126 case 11:
127 return "Reserved";
128 case RSAMD5:
129 return "RSAMD5";
130 case DH:
131 return "DH";
132 case DSA:
133 return "DSA";
134 case RSASHA1:
135 return "RSASHA1";
136 case DSANSEC3SHA1:
137 return "DSA-NSEC3-SHA1";
138 case RSASHA1NSEC3SHA1:
139 return "RSASHA1-NSEC3-SHA1";
140 case RSASHA256:
141 return "RSASHA256";
142 case RSASHA512:
143 return "RSASHA512";
144 case ECCGOST:
145 return "ECC-GOST";
146 case ECDSA256:
147 return "ECDSAP256SHA256";
148 case ECDSA384:
149 return "ECDSAP384SHA384";
150 case ED25519:
151 return "ED25519";
152 case ED448:
153 return "ED448";
154 case 252:
155 return "INDIRECT";
156 case 253:
157 return "PRIVATEDNS";
158 case 254:
159 return "PRIVATEOID";
160 default:
161 return "Unallocated/Reserved";
162 }
163 }
164
165 private:
166 UeberBackend* d_keymetadb;
167 bool d_ourDB;
168
169 public:
170 DNSSECKeeper() : d_keymetadb( new UeberBackend("key-only")), d_ourDB(true)
171 {
172
173 }
174
175 DNSSECKeeper(UeberBackend* db) : d_keymetadb(db), d_ourDB(false)
176 {
177 }
178
179 ~DNSSECKeeper()
180 {
181 if(d_ourDB)
182 delete d_keymetadb;
183 }
184 bool doesDNSSEC();
185 bool isSecuredZone(const DNSName& zone);
186 static uint64_t dbdnssecCacheSizes(const std::string& str);
187 keyset_t getEntryPoints(const DNSName& zname);
188 keyset_t getKeys(const DNSName& zone, bool useCache = true);
189 DNSSECPrivateKey getKeyById(const DNSName& zone, unsigned int id);
190 bool addKey(const DNSName& zname, bool setSEPBit, int algorithm, int64_t& id, int bits=0, bool active=true);
191 bool addKey(const DNSName& zname, const DNSSECPrivateKey& dpk, int64_t& id, bool active=true);
192 bool removeKey(const DNSName& zname, unsigned int id);
193 bool activateKey(const DNSName& zname, unsigned int id);
194 bool deactivateKey(const DNSName& zname, unsigned int id);
195 bool checkKeys(const DNSName& zname);
196
197 bool getNSEC3PARAM(const DNSName& zname, NSEC3PARAMRecordContent* n3p=0, bool* narrow=0);
198 bool checkNSEC3PARAM(const NSEC3PARAMRecordContent& ns3p, string& msg);
199 bool setNSEC3PARAM(const DNSName& zname, const NSEC3PARAMRecordContent& n3p, const bool& narrow=false);
200 bool unsetNSEC3PARAM(const DNSName& zname);
201 void clearAllCaches();
202 void clearCaches(const DNSName& name);
203 bool getPreRRSIGs(UeberBackend& db, const DNSName& signer, const DNSName& qname, const DNSName& wildcardname, const QType& qtype, DNSResourceRecord::Place, vector<DNSZoneRecord>& rrsigs, uint32_t signTTL);
204 bool isPresigned(const DNSName& zname);
205 bool setPresigned(const DNSName& zname);
206 bool unsetPresigned(const DNSName& zname);
207 bool setPublishCDNSKEY(const DNSName& zname);
208 bool unsetPublishCDNSKEY(const DNSName& zname);
209 bool setPublishCDS(const DNSName& zname, const string& digestAlgos);
210 bool unsetPublishCDS(const DNSName& zname);
211
212 bool TSIGGrantsAccess(const DNSName& zone, const DNSName& keyname);
213 bool getTSIGForAccess(const DNSName& zone, const string& master, DNSName* keyname);
214
215 void startTransaction(const DNSName& zone, int zone_id)
216 {
217 (*d_keymetadb->backends.begin())->startTransaction(zone, zone_id);
218 }
219
220 void commitTransaction()
221 {
222 (*d_keymetadb->backends.begin())->commitTransaction();
223 }
224
225 void getFromMeta(const DNSName& zname, const std::string& key, std::string& value);
226 void getSoaEdit(const DNSName& zname, std::string& value);
227 bool unSecureZone(const DNSName& zone, std::string& error, std::string& info);
228 bool rectifyZone(const DNSName& zone, std::string& error, std::string& info, bool doTransaction);
229 private:
230
231
232 struct KeyCacheEntry
233 {
234 typedef vector<DNSSECKeeper::keymeta_t> keys_t;
235
236 uint32_t getTTD() const
237 {
238 return d_ttd;
239 }
240
241 DNSName d_domain;
242 mutable keys_t d_keys;
243 unsigned int d_ttd;
244 };
245
246 struct METACacheEntry
247 {
248 uint32_t getTTD() const
249 {
250 return d_ttd;
251 }
252
253 DNSName d_domain;
254 mutable std::string d_key, d_value;
255 unsigned int d_ttd;
256
257 };
258
259
260 typedef multi_index_container<
261 KeyCacheEntry,
262 indexed_by<
263 ordered_unique<member<KeyCacheEntry, DNSName, &KeyCacheEntry::d_domain> >,
264 sequenced<>
265 >
266 > keycache_t;
267 typedef multi_index_container<
268 METACacheEntry,
269 indexed_by<
270 ordered_unique<
271 composite_key<
272 METACacheEntry,
273 member<METACacheEntry, DNSName, &METACacheEntry::d_domain> ,
274 member<METACacheEntry, std::string, &METACacheEntry::d_key>
275 >, composite_key_compare<std::less<DNSName>, CIStringCompare> >,
276 sequenced<>
277 >
278 > metacache_t;
279
280 void cleanup();
281
282 static keycache_t s_keycache;
283 static metacache_t s_metacache;
284 static pthread_rwlock_t s_metacachelock;
285 static pthread_rwlock_t s_keycachelock;
286 static AtomicCounter s_ops;
287 static time_t s_last_prune;
288
289 public:
290 void preRemoval(const KeyCacheEntry&)
291 {
292 }
293 void preRemoval(const METACacheEntry&)
294 {
295 }
296 };
297
298 class DNSPacket;
299 uint32_t localtime_format_YYYYMMDDSS(time_t t, uint32_t seq);
300 // for SOA-EDIT
301 uint32_t calculateEditSOA(const DNSZoneRecord& rr, const string& kind);
302 uint32_t calculateEditSOA(const SOAData& sd, const string& kind);
303 bool editSOA(DNSSECKeeper& dk, const DNSName& qname, DNSPacket* dp);
304 bool editSOARecord(DNSZoneRecord& rr, const string& kind);
305 // for SOA-EDIT-DNSUPDATE/API
306 uint32_t calculateIncreaseSOA(SOAData sd, const string& increaseKind, const string& editKind);
307 bool increaseSOARecord(DNSResourceRecord& rr, const string& increaseKind, const string& editKind);
308 bool increaseSOARecord(DNSZoneRecord& rr, const string& increaseKind, const string& editKind);