]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/pdnsutil.cc
Merge pull request #2965 from pieterlexis/negcache-tests-dotted-cname
[thirdparty/pdns.git] / pdns / pdnsutil.cc
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4 #include "dnsseckeeper.hh"
5 #include "dnssecinfra.hh"
6 #include "statbag.hh"
7 #include "base32.hh"
8 #include "base64.hh"
9
10 #include <boost/program_options.hpp>
11 #include <boost/assign/std/vector.hpp>
12 #include <boost/assign/list_of.hpp>
13 #include "dnsbackend.hh"
14 #include "ueberbackend.hh"
15 #include "arguments.hh"
16 #include "packetcache.hh"
17 #include "zoneparser-tng.hh"
18 #include "signingpipe.hh"
19 #include "dns_random.hh"
20 #include <fstream>
21 #ifdef HAVE_LIBSODIUM
22 #include <sodium.h>
23 #endif
24 #ifdef HAVE_SQLITE3
25 #include "ssqlite3.hh"
26 #include "bind-dnssec.schema.sqlite3.sql.h"
27 #endif
28
29 StatBag S;
30 PacketCache PC;
31
32 namespace po = boost::program_options;
33 po::variables_map g_vm;
34
35 string s_programname="pdns";
36
37 namespace {
38 bool g_verbose;
39 }
40
41 ArgvMap &arg()
42 {
43 static ArgvMap arg;
44 return arg;
45 }
46
47 string humanTime(time_t t)
48 {
49 char ret[256];
50 struct tm tm;
51 localtime_r(&t, &tm);
52 strftime(ret, sizeof(ret)-1, "%c", &tm); // %h:%M %Y-%m-%d
53 return ret;
54 }
55
56 static void algorithm2name(uint8_t algo, string &name) {
57 switch(algo) {
58 case 0:
59 name = "Reserved"; return;
60 case 1:
61 name = "RSAMD5"; return;
62 case 2:
63 name = "DH"; return;
64 case 3:
65 name = "DSA"; return;
66 case 4:
67 name = "ECC"; return;
68 case 5:
69 name = "RSASHA1"; return;
70 case 6:
71 name = "DSA-NSEC3-SHA1"; return;
72 case 7:
73 name = "RSASHA1-NSEC3-SHA1"; return;
74 case 8:
75 name = "RSASHA256"; return;
76 case 9:
77 name = "Reserved"; return;
78 case 10:
79 name = "RSASHA512"; return;
80 case 11:
81 name = "Reserved"; return;
82 case 12:
83 name = "ECC-GOST"; return;
84 case 13:
85 name = "ECDSAP256SHA256"; return;
86 case 14:
87 name = "ECDSAP384SHA384"; return;
88 case 250:
89 name = "ED25519SHA512"; return;
90 case 252:
91 name = "INDIRECT"; return;
92 case 253:
93 name = "PRIVATEDNS"; return;
94 case 254:
95 name = "PRIVATEOID"; return;
96 default:
97 name = "Unallocated/Reserved"; return;
98 }
99 };
100
101 static int shorthand2algorithm(const string &algorithm)
102 {
103 if (!algorithm.compare("rsamd5")) return 1;
104 if (!algorithm.compare("dh")) return 2;
105 if (!algorithm.compare("dsa")) return 3;
106 if (!algorithm.compare("ecc")) return 4;
107 if (!algorithm.compare("rsasha1")) return 5;
108 if (!algorithm.compare("rsasha256")) return 8;
109 if (!algorithm.compare("rsasha512")) return 10;
110 if (!algorithm.compare("gost")) return 12;
111 if (!algorithm.compare("ecdsa256")) return 13;
112 if (!algorithm.compare("ecdsa384")) return 14;
113 if (!algorithm.compare("experimental-ed25519")) return 250;
114 return -1;
115 }
116
117 void loadMainConfig(const std::string& configdir)
118 {
119 ::arg().set("config-dir","Location of configuration directory (pdns.conf)")=configdir;
120 ::arg().set("default-ttl","Seconds a result is valid if not set otherwise")="3600";
121 ::arg().set("launch","Which backends to launch");
122 ::arg().set("dnssec","if we should do dnssec")="true";
123 ::arg().set("config-name","Name of this virtual configuration - will rename the binary image")=g_vm["config-name"].as<string>();
124 ::arg().setCmd("help","Provide a helpful message");
125 //::arg().laxParse(argc,argv);
126
127 if(::arg().mustDo("help")) {
128 cout<<"syntax:"<<endl<<endl;
129 cout<<::arg().helpstring(::arg()["help"])<<endl;
130 exit(0);
131 }
132
133 if(::arg()["config-name"]!="")
134 s_programname+="-"+::arg()["config-name"];
135
136 string configname=::arg()["config-dir"]+"/"+s_programname+".conf";
137 cleanSlashes(configname);
138
139 ::arg().set("default-ksk-algorithms","Default KSK algorithms")="rsasha256";
140 ::arg().set("default-ksk-size","Default KSK size (0 means default)")="0";
141 ::arg().set("default-zsk-algorithms","Default ZSK algorithms")="rsasha256";
142 ::arg().set("default-zsk-size","Default ZSK size (0 means default)")="0";
143 ::arg().set("default-soa-edit","Default SOA-EDIT value")="";
144 ::arg().set("default-soa-edit-signed","Default SOA-EDIT value for signed zones")="";
145 ::arg().set("max-ent-entries", "Maximum number of empty non-terminals in a zone")="100000";
146 ::arg().set("module-dir","Default directory for modules")=PKGLIBDIR;
147 ::arg().set("entropy-source", "If set, read entropy from this file")="/dev/urandom";
148 ::arg().setSwitch("query-logging","Hint backends that queries should be logged")="no";
149 ::arg().set("loglevel","Amount of logging. Higher is more.")="0";
150 ::arg().setSwitch("direct-dnskey","Fetch DNSKEY RRs from backend during DNSKEY synthesis")="no";
151 ::arg().set("max-nsec3-iterations","Limit the number of NSEC3 hash iterations")="500"; // RFC5155 10.3
152 ::arg().set("max-signature-cache-entries", "Maximum number of signatures cache entries")="";
153 ::arg().laxFile(configname.c_str());
154
155 L.toConsole(Logger::Error); // so we print any errors
156 BackendMakers().launch(::arg()["launch"]); // vrooooom!
157 L.toConsole((Logger::Urgency)(::arg().asNum("loglevel")));
158 ::arg().laxFile(configname.c_str());
159 //cerr<<"Backend: "<<::arg()["launch"]<<", '" << ::arg()["gmysql-dbname"] <<"'" <<endl;
160
161 S.declare("qsize-q","Number of questions waiting for database attention");
162
163 S.declare("deferred-cache-inserts","Amount of cache inserts that were deferred because of maintenance");
164 S.declare("deferred-cache-lookup","Amount of cache lookups that were deferred because of maintenance");
165
166 S.declare("query-cache-hit","Number of hits on the query cache");
167 S.declare("query-cache-miss","Number of misses on the query cache");
168 ::arg().set("max-cache-entries", "Maximum number of cache entries")="1000000";
169 ::arg().set("recursor","If recursion is desired, IP address of a recursing nameserver")="no";
170 ::arg().set("recursive-cache-ttl","Seconds to store packets for recursive queries in the PacketCache")="10";
171 ::arg().set("cache-ttl","Seconds to store packets in the PacketCache")="20";
172 ::arg().set("negquery-cache-ttl","Seconds to store negative query results in the QueryCache")="60";
173 ::arg().set("query-cache-ttl","Seconds to store query results in the QueryCache")="20";
174 ::arg().set("default-soa-name","name to insert in the SOA record if none set in the backend")="a.misconfigured.powerdns.server";
175 ::arg().set("default-soa-mail","mail address to insert in the SOA record if none set in the backend")="";
176 ::arg().set("soa-refresh-default","Default SOA refresh")="10800";
177 ::arg().set("soa-retry-default","Default SOA retry")="3600";
178 ::arg().set("soa-expire-default","Default SOA expire")="604800";
179 ::arg().set("soa-minimum-ttl","Default SOA minimum ttl")="3600";
180
181 UeberBackend::go();
182 }
183
184 // irritatingly enough, rectifyZone needs its own ueberbackend and can't therefore benefit from transactions outside its scope
185 // I think this has to do with interlocking transactions between B and DK, but unsure.
186 bool rectifyZone(DNSSECKeeper& dk, const DNSName& zone)
187 {
188 if(dk.isPresigned(zone)){
189 cerr<<"Rectify presigned zone '"<<zone.toString()<<"' is not allowed/necessary."<<endl;
190 return false;
191 }
192
193 UeberBackend B("default");
194 bool doTransaction=true; // but see above
195 SOAData sd;
196
197 if(!B.getSOAUncached(zone, sd)) {
198 cerr<<"No SOA known for '"<<zone.toString()<<"', is such a zone in the database?"<<endl;
199 return false;
200 }
201 sd.db->list(zone, sd.domain_id);
202
203 DNSResourceRecord rr;
204 set<DNSName> qnames, nsset, dsnames, insnonterm, delnonterm;
205 map<DNSName,bool> nonterm;
206 bool doent=true;
207
208 while(sd.db->get(rr)) {
209 if (rr.qtype.getCode())
210 {
211 qnames.insert(rr.qname);
212 if(rr.qtype.getCode() == QType::NS && rr.qname != zone)
213 nsset.insert(rr.qname);
214 if(rr.qtype.getCode() == QType::DS)
215 dsnames.insert(rr.qname);
216 }
217 else
218 if(doent)
219 delnonterm.insert(rr.qname);
220 }
221
222 NSEC3PARAMRecordContent ns3pr;
223 bool narrow;
224 bool haveNSEC3=dk.getNSEC3PARAM(zone, &ns3pr, &narrow);
225 bool isOptOut=(haveNSEC3 && ns3pr.d_flags);
226 if(sd.db->doesDNSSEC())
227 {
228 if(!haveNSEC3)
229 cerr<<"Adding NSEC ordering information "<<endl;
230 else if(!narrow) {
231 if(!isOptOut)
232 cerr<<"Adding NSEC3 hashed ordering information for '"<<zone.toString()<<"'"<<endl;
233 else
234 cerr<<"Adding NSEC3 opt-out hashed ordering information for '"<<zone.toString()<<"'"<<endl;
235 } else
236 cerr<<"Erasing NSEC3 ordering since we are narrow, only setting 'auth' fields"<<endl;
237 }
238 else
239 cerr<<"Non DNSSEC zone, only adding empty non-terminals"<<endl;
240
241 if(doTransaction)
242 sd.db->startTransaction(zone, -1);
243
244 bool realrr=true;
245 uint32_t maxent = ::arg().asNum("max-ent-entries");
246
247 dononterm:;
248 for (const auto& qname: qnames)
249 {
250 bool auth=true;
251 DNSName ordername;
252 auto shorter(qname);
253
254 if(realrr) {
255 do {
256 if(nsset.count(shorter)) {
257 auth=false;
258 break;
259 }
260 } while(shorter.chopOff());
261 }
262
263 if(haveNSEC3) // NSEC3
264 {
265 if(!narrow && (realrr || !isOptOut || nonterm.find(qname)->second))
266 ordername=DNSName(toBase32Hex(hashQNameWithSalt(ns3pr, qname))) + zone;
267 else if(!realrr)
268 auth=false;
269 }
270 else if (realrr) // NSEC
271 ordername=qname;
272
273 if(g_verbose)
274 cerr<<"'"<<qname.toString()<<"' -> '"<< ordername.toString() <<"'"<<endl;
275 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, qname, ordername, auth);
276
277 if(realrr)
278 {
279 if (dsnames.count(qname))
280 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, qname, ordername, true, QType::DS);
281 if (!auth || nsset.count(qname)) {
282 ordername.clear();
283 if(isOptOut)
284 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, qname, ordername, false, QType::NS);
285 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, qname, ordername, false, QType::A);
286 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, qname, ordername, false, QType::AAAA);
287 }
288
289 if(doent)
290 {
291 shorter=qname;
292 while(shorter!=zone && shorter.chopOff())
293 {
294 if(!qnames.count(shorter))
295 {
296 if(!(maxent))
297 {
298 cerr<<"Zone '"<<zone.toString()<<"' has too many empty non terminals."<<endl;
299 insnonterm.clear();
300 delnonterm.clear();
301 doent=false;
302 break;
303 }
304
305 if (!delnonterm.count(shorter) && !nonterm.count(shorter))
306 insnonterm.insert(shorter);
307 else
308 delnonterm.erase(shorter);
309
310 if (!nonterm.count(shorter)) {
311 nonterm.insert(pair<DNSName, bool>(shorter, auth));
312 --maxent;
313 } else if (auth)
314 nonterm[shorter]=true;
315 }
316 }
317 }
318 }
319 }
320
321 if(realrr)
322 {
323 //cerr<<"Total: "<<nonterm.size()<<" Insert: "<<insnonterm.size()<<" Delete: "<<delnonterm.size()<<endl;
324 if(!insnonterm.empty() || !delnonterm.empty() || !doent)
325 {
326 sd.db->updateEmptyNonTerminals(sd.domain_id, zone, insnonterm, delnonterm, !doent);
327 }
328 if(doent)
329 {
330 realrr=false;
331 qnames.clear();
332 for(const auto& nt : nonterm){
333 qnames.insert(nt.first);
334 }
335 goto dononterm;
336 }
337 }
338
339 if(doTransaction)
340 sd.db->commitTransaction();
341
342 return true;
343 }
344
345 void dbBench(const std::string& fname)
346 {
347 ::arg().set("query-cache-ttl")="0";
348 ::arg().set("negquery-cache-ttl")="0";
349 UeberBackend B("default");
350
351 vector<string> domains;
352 if(!fname.empty()) {
353 ifstream ifs(fname.c_str());
354 if(!ifs) {
355 cerr<<"Could not open '"<<fname<<"' for reading domain names to query"<<endl;
356 }
357 string line;
358 while(getline(ifs,line)) {
359 trim(line);
360 domains.push_back(line);
361 }
362 }
363 if(domains.empty())
364 domains.push_back("powerdns.com");
365
366 int n=0;
367 DNSResourceRecord rr;
368 DTime dt;
369 dt.set();
370 unsigned int hits=0, misses=0;
371 for(; n < 10000; ++n) {
372 DNSName domain(domains[random() % domains.size()]);
373 B.lookup(QType(QType::NS), domain);
374 while(B.get(rr)) {
375 hits++;
376 }
377 B.lookup(QType(QType::A), DNSName(boost::lexical_cast<string>(random()))+domain);
378 while(B.get(rr)) {
379 }
380 misses++;
381
382 }
383 cout<<0.001*dt.udiff()/n<<" millisecond/lookup"<<endl;
384 cout<<"Retrieved "<<hits<<" records, did "<<misses<<" queries which should have no match"<<endl;
385 cout<<"Packet cache reports: "<<S.read("query-cache-hit")<<" hits (should be 0) and "<<S.read("query-cache-miss") <<" misses"<<endl;
386 }
387
388 void rectifyAllZones(DNSSECKeeper &dk)
389 {
390 UeberBackend B("default");
391 vector<DomainInfo> domainInfo;
392
393 B.getAllDomains(&domainInfo);
394 for(DomainInfo di : domainInfo) {
395 cerr<<"Rectifying "<<di.zone.toString()<<": ";
396 rectifyZone(dk, di.zone);
397 }
398 cout<<"Rectified "<<domainInfo.size()<<" zones."<<endl;
399 }
400
401 int checkZone(DNSSECKeeper &dk, UeberBackend &B, const DNSName& zone)
402 {
403 SOAData sd;
404 if(!B.getSOAUncached(zone, sd)) {
405 cout<<"[error] No SOA record present, or active, in zone '"<<zone.toString()<<"'"<<endl;
406 cout<<"Checked 0 records of '"<<zone.toString()<<"', 1 errors, 0 warnings."<<endl;
407 return 1;
408 }
409
410 NSEC3PARAMRecordContent ns3pr;
411 bool narrow = false;
412 bool haveNSEC3 = dk.getNSEC3PARAM(zone, &ns3pr, &narrow);
413 bool isOptOut=(haveNSEC3 && ns3pr.d_flags);
414
415 bool isSecure=dk.isSecuredZone(zone);
416 bool presigned=dk.isPresigned(zone);
417
418 DNSResourceRecord rr;
419 uint64_t numrecords=0, numerrors=0, numwarnings=0;
420
421 if (haveNSEC3 && isSecure && zone.wirelength() > 222) {
422 numerrors++;
423 cerr<<"[Error] zone '" << zone.toStringNoDot() << "' has NSEC3 semantics but is too long to have the hash prepended. Zone name is " << zone.wirelength() << " bytes long, whereas the maximum is 222 bytes." << endl;
424 }
425
426 // Check for delegation in parent zone
427 DNSName parent(zone);
428 while(parent.chopOff()) {
429 SOAData sd_p;
430 if(B.getSOAUncached(parent, sd_p)) {
431 bool ns=false;
432 DNSResourceRecord rr;
433 B.lookup(QType(QType::ANY), zone, NULL, sd_p.domain_id);
434 while(B.get(rr))
435 ns |= (rr.qtype == QType::NS);
436 if (!ns) {
437 cerr<<"[Error] No delegation for zone '"<<zone.toString()<<"' in parent '"<<parent.toString()<<"'"<<endl;
438 numerrors++;
439 }
440 break;
441 }
442 }
443
444
445 bool hasNsAtApex = false;
446 set<DNSName> tlsas, cnames, noncnames, glue, checkglue;
447 set<string> records;
448 map<string, unsigned int> ttl;
449
450 ostringstream content;
451 pair<map<string, unsigned int>::iterator,bool> ret;
452
453 sd.db->list(zone, sd.domain_id, true);
454
455 while(sd.db->get(rr)) {
456 if(!rr.qtype.getCode())
457 continue;
458
459 numrecords++;
460
461 if(rr.qtype.getCode() == QType::TLSA)
462 tlsas.insert(rr.qname);
463 if(rr.qtype.getCode() == QType::SOA) {
464 vector<string>parts;
465 stringtok(parts, rr.content);
466
467 ostringstream o;
468 o<<rr.content;
469 for(int pleft=parts.size(); pleft < 7; ++pleft) {
470 o<<" 0";
471 }
472 rr.content=o.str();
473 }
474
475 if(rr.qtype.getCode() == QType::TXT && !rr.content.empty() && rr.content[0]!='"')
476 rr.content = "\""+rr.content+"\"";
477
478 try {
479 shared_ptr<DNSRecordContent> drc(DNSRecordContent::mastermake(rr.qtype.getCode(), 1, rr.content));
480 string tmp=drc->serialize(rr.qname);
481 tmp = drc->getZoneRepresentation(true);
482 if (rr.qtype.getCode() != QType::AAAA) {
483 if (!pdns_iequals(tmp, rr.content)) {
484 cout<<"[Warning] Parsed and original record content are not equal: "<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<< " '" << rr.content<<"' (Content parsed as '"<<tmp<<"')"<<endl;
485 numwarnings++;
486 }
487 } else {
488 struct in6_addr tmpbuf;
489 if (inet_pton(AF_INET6, rr.content.c_str(), &tmpbuf) != 1 || rr.content.find('.') != string::npos) {
490 cout<<"[Warning] Following record is not a valid IPv6 address: "<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<< " '" << rr.content<<"'"<<endl;
491 numwarnings++;
492 }
493 }
494 }
495 catch(std::exception& e)
496 {
497 cout<<"[Error] Following record had a problem: "<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<< " " << rr.content<<endl;
498 cout<<"[Error] Error was: "<<e.what()<<endl;
499 numerrors++;
500 continue;
501 }
502
503 if(!rr.qname.isPartOf(zone)) {
504 cout<<"[Warning] Record '"<<rr.qname.toString()<<" IN "<<rr.qtype.getName()<<" "<<rr.content<<"' in zone '"<<zone.toString()<<"' is out-of-zone."<<endl;
505 numwarnings++;
506 continue;
507 }
508
509 content.str("");
510 content<<rr.qname.toString()<<" "<<rr.qtype.getName()<<" "<<rr.content;
511 if (records.count(toLower(content.str()))) {
512 cout<<"[Error] Duplicate record found in rrset: '"<<rr.qname.toString()<<" IN "<<rr.qtype.getName()<<" "<<rr.content<<"'"<<endl;
513 numerrors++;
514 continue;
515 } else
516 records.insert(toLower(content.str()));
517
518 content.str("");
519 content<<rr.qname.toString()<<" "<<rr.qtype.getName();
520 if (rr.qtype.getCode() == QType::RRSIG) {
521 RRSIGRecordContent rrc(rr.content);
522 content<<" ("<<DNSRecordContent::NumberToType(rrc.d_type)<<")";
523 }
524 ret = ttl.insert(pair<string, unsigned int>(toLower(content.str()), rr.ttl));
525 if (ret.second == false && ret.first->second != rr.ttl) {
526 cout<<"[Error] TTL mismatch in rrset: '"<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<<" "<<rr.content<<"' ("<<ret.first->second<<" != "<<rr.ttl<<")"<<endl;
527 numerrors++;
528 continue;
529 }
530
531 if (isSecure && isOptOut && (rr.qname.countLabels() && rr.qname.getRawLabels()[0] == "*")) {
532 cout<<"[Warning] wildcard record '"<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<<" "<<rr.content<<"' is insecure"<<endl;
533 cout<<"[Info] Wildcard records in opt-out zones are insecure. Disable the opt-out flag for this zone to avoid this warning. Command: pdnsutil set-nsec3 "<<zone.toString()<<endl;
534 numwarnings++;
535 }
536
537 if(rr.qname==zone) {
538 if (rr.qtype.getCode() == QType::NS) {
539 hasNsAtApex=true;
540 } else if (rr.qtype.getCode() == QType::DS) {
541 cout<<"[Warning] DS at apex in zone '"<<zone.toString()<<"', should not be here."<<endl;
542 numwarnings++;
543 }
544 } else {
545 if (rr.qtype.getCode() == QType::SOA) {
546 cout<<"[Error] SOA record not at apex '"<<rr.qname.toString()<<" IN "<<rr.qtype.getName()<<" "<<rr.content<<"' in zone '"<<zone.toString()<<"'"<<endl;
547 numerrors++;
548 continue;
549 } else if (rr.qtype.getCode() == QType::DNSKEY) {
550 cout<<"[Warning] DNSKEY record not at apex '"<<rr.qname.toString()<<" IN "<<rr.qtype.getName()<<" "<<rr.content<<"' in zone '"<<zone.toString()<<"', should not be here."<<endl;
551 numwarnings++;
552 } else if (rr.qtype.getCode() == QType::NS && DNSName(rr.content).isPartOf(rr.qname)) {
553 checkglue.insert(DNSName(toLower(rr.content)));
554 } else if (rr.qtype.getCode() == QType::A || rr.qtype.getCode() == QType::AAAA) {
555 glue.insert(rr.qname);
556 }
557 }
558
559 if (rr.qtype.getCode() == QType::CNAME) {
560 if (!cnames.count(rr.qname))
561 cnames.insert(rr.qname);
562 else {
563 cout<<"[Error] Duplicate CNAME found at '"<<rr.qname.toString()<<"'"<<endl;
564 numerrors++;
565 continue;
566 }
567 } else {
568 if (rr.qtype.getCode() == QType::RRSIG) {
569 if(!presigned) {
570 cout<<"[Error] RRSIG found at '"<<rr.qname.toString()<<"' in non-presigned zone. These do not belong in the database."<<endl;
571 numerrors++;
572 continue;
573 }
574 } else
575 noncnames.insert(rr.qname);
576 }
577
578 if(rr.qtype.getCode() == QType::NSEC || rr.qtype.getCode() == QType::NSEC3)
579 {
580 cout<<"[Error] NSEC or NSEC3 found at '"<<rr.qname.toString()<<"'. These do not belong in the database."<<endl;
581 numerrors++;
582 continue;
583 }
584
585 if(!presigned && rr.qtype.getCode() == QType::DNSKEY)
586 {
587 if(::arg().mustDo("direct-dnskey"))
588 {
589 if(rr.ttl != sd.default_ttl)
590 {
591 cout<<"[Warning] DNSKEY TTL of "<<rr.ttl<<" at '"<<rr.qname.toString()<<"' differs from SOA minimum of "<<sd.default_ttl<<endl;
592 numwarnings++;
593 }
594 }
595 else
596 {
597 cout<<"[Warning] DNSKEY at '"<<rr.qname.toString()<<"' in non-presigned zone will mostly be ignored and can cause problems."<<endl;
598 numwarnings++;
599 }
600 }
601
602 // if (rr.qname[rr.qname.size()-1] == '.') {
603 // cout<<"[Error] Record '"<<rr.qname.toString()<<"' has a trailing dot. PowerDNS will ignore this record!"<<endl;
604 // numerrors++;
605 // }
606
607 if ( (rr.qtype.getCode() == QType::NS || rr.qtype.getCode() == QType::SRV || rr.qtype.getCode() == QType::MX || rr.qtype.getCode() == QType::CNAME) &&
608 rr.content[rr.content.size()-1] == '.') {
609 cout<<"[Warning] The record "<<rr.qname.toString()<<" with type "<<rr.qtype.getName()<<" has a trailing dot in the content ("<<rr.content<<"). Your backend might not work well with this."<<endl;
610 numwarnings++;
611 }
612
613 if(rr.auth == 0 && rr.qtype.getCode()!=QType::NS && rr.qtype.getCode()!=QType::A && rr.qtype.getCode()!=QType::AAAA)
614 {
615 cout<<"[Error] Following record is auth=0, run pdnsutil rectify-zone?: "<<rr.qname.toString()<<" IN " <<rr.qtype.getName()<< " " << rr.content<<endl;
616 numerrors++;
617 }
618 }
619
620 for(auto &i: cnames) {
621 if (noncnames.find(i) != noncnames.end()) {
622 cout<<"[Error] CNAME "<<i.toString()<<" found, but other records with same label exist."<<endl;
623 numerrors++;
624 }
625 }
626
627 for(const auto &i: tlsas) {
628 DNSName name = DNSName(i);
629 name.trimToLabels(name.getRawLabels().size()-2);
630 if (cnames.find(name) == cnames.end() && noncnames.find(name) == noncnames.end()) {
631 // No specific record for the name in the TLSA record exists, this
632 // is already worth emitting a warning. Let's see if a wildcard exist.
633 cout<<"[Warning] ";
634 DNSName wcname(name);
635 wcname.chopOff();
636 wcname.prependRawLabel("*");
637 if (cnames.find(wcname) != cnames.end() || noncnames.find(wcname) != noncnames.end()) {
638 cout<<"A wildcard record exist for '"<<wcname.toString()<<"' and a TLSA record for '"<<i.toString()<<"'.";
639 } else {
640 cout<<"No record for '"<<name.toString()<<"' exists, but a TLSA record for '"<<i.toString()<<"' does.";
641 }
642 numwarnings++;
643 cout<<" A query for '"<<name.toString()<<"' will yield an empty response. This is most likely a mistake, please create records for '"<<name.toString()<<"'."<<endl;
644 }
645 }
646
647 if(!hasNsAtApex) {
648 cout<<"[Error] No NS record at zone apex in zone '"<<zone.toString()<<"'"<<endl;
649 numerrors++;
650 }
651
652 for(const auto &qname : checkglue) {
653 if (!glue.count(qname)) {
654 cerr<<"[Warning] Missing glue for '"<<qname.toString()<<"' in zone '"<<zone.toString()<<"'"<<endl;
655 numwarnings++;
656 }
657 }
658
659 cout<<"Checked "<<numrecords<<" records of '"<<zone.toString()<<"', "<<numerrors<<" errors, "<<numwarnings<<" warnings."<<endl;
660 if(!numerrors)
661 return 0;
662 return 1;
663 }
664
665 int checkAllZones(DNSSECKeeper &dk, bool exitOnError)
666 {
667 UeberBackend B("default");
668 vector<DomainInfo> domainInfo;
669
670 B.getAllDomains(&domainInfo, true);
671 int errors=0;
672 for(auto di : domainInfo) {
673 if (checkZone(dk, B, di.zone) > 0) {
674 errors++;
675 if(exitOnError)
676 return 1;
677 }
678 }
679 cout<<"Checked "<<domainInfo.size()<<" zones, "<<errors<<" had errors."<<endl;
680 if(!errors)
681 return 0;
682 return 1;
683 }
684
685 int increaseSerial(const DNSName& zone, DNSSECKeeper &dk)
686 {
687 UeberBackend B("default");
688 SOAData sd;
689 if(!B.getSOAUncached(zone, sd)) {
690 cout<<"No SOA for zone '"<<zone.toString()<<"'"<<endl;
691 return -1;
692 }
693
694 if (dk.isPresigned(zone)) {
695 cerr<<"Serial increase of presigned zone '"<<zone<<"' is not allowed."<<endl;
696 return -1;
697 }
698
699 string soaEditKind;
700 dk.getSoaEdit(zone, soaEditKind);
701
702 sd.db->lookup(QType(QType::SOA), zone);
703 vector<DNSResourceRecord> rrs;
704 DNSResourceRecord rr;
705 while (sd.db->get(rr)) {
706 if (rr.qtype.getCode() == QType::SOA)
707 rrs.push_back(rr);
708 }
709
710 if (rrs.size() > 1) {
711 cerr<<rrs.size()<<" SOA records found for "<<zone.toString()<<"!"<<endl;
712 return -1;
713 }
714 if (rrs.size() < 1) {
715 cerr<<zone.toString()<<" not found!"<<endl;
716 }
717
718 if (soaEditKind.empty()) {
719 sd.serial++;
720 }
721 else if(pdns_iequals(soaEditKind,"INCREMENT-WEEKS")) {
722 sd.serial++;
723 }
724 else if(pdns_iequals(soaEditKind,"INCEPTION-INCREMENT")) {
725 uint32_t today_serial = localtime_format_YYYYMMDDSS(time(NULL), 1);
726
727 if (sd.serial < today_serial) {
728 sd.serial = today_serial;
729 }
730 else {
731 sd.serial++;
732 }
733 }
734 else {
735 sd.serial = calculateEditSOA(sd, soaEditKind) + 1;
736 }
737 rrs[0].content = serializeSOAData(sd);
738
739 sd.db->startTransaction(zone, -1);
740
741 if (! sd.db->replaceRRSet(sd.domain_id, zone, rr.qtype, rrs)) {
742 sd.db->abortTransaction();
743 cerr<<"Backend did not replace SOA record. Backend might not support this operation."<<endl;
744 return -1;
745 }
746
747 if (sd.db->doesDNSSEC()) {
748 NSEC3PARAMRecordContent ns3pr;
749 bool narrow;
750 bool haveNSEC3=dk.getNSEC3PARAM(zone, &ns3pr, &narrow);
751
752 DNSName ordername;
753 if(haveNSEC3) {
754 if(!narrow)
755 ordername=DNSName(toBase32Hex(hashQNameWithSalt(ns3pr, zone))) + zone;
756 } else
757 ordername=zone;
758 if(g_verbose)
759 cerr<<"'"<<rrs[0].qname.toString()<<"' -> '"<< ordername.toString() <<"'"<<endl;
760 sd.db->updateDNSSECOrderNameAndAuth(sd.domain_id, zone, rrs[0].qname, ordername, true);
761 }
762
763 sd.db->commitTransaction();
764
765 cout<<"SOA serial for zone "<<zone.toString()<<" set to "<<sd.serial<<endl;
766 return 0;
767 }
768
769 int deleteZone(const DNSName &zone) {
770 UeberBackend B;
771 DomainInfo di;
772 if (! B.getDomainInfo(zone, di)) {
773 cerr<<"Domain '"<<zone.toString()<<"' not found!"<<endl;
774 return 1;
775 }
776
777 if(di.backend->deleteDomain(zone))
778 return 0;
779
780 cerr<<"Failed to delete domain '"<<zone.toString()<<"'"<<endl;;
781 return 1;
782 }
783
784 void listKey(DomainInfo const &di, DNSSECKeeper& dk, bool printHeader = true) {
785 if (printHeader) {
786 cout<<"Zone Type Size Algorithm ID Location Keytag"<<endl;
787 cout<<"----------------------------------------------------------------------------------"<<endl;
788 }
789 unsigned int spacelen = 0;
790 for (auto const &key : dk.getKeys(di.zone)) {
791 cout<<di.zone.toStringNoDot();
792 if (di.zone.toStringNoDot().length() > 29)
793 cout<<endl<<string(30, ' ');
794 else
795 cout<<string(30 - di.zone.toStringNoDot().length(), ' ');
796
797 cout<<(key.second.keyOrZone ? "KSK" : "ZSK")<<" ";
798
799 spacelen = (lexical_cast<string>(key.first.getKey()->getBits()).length() >= 8) ? 1 : 8 - lexical_cast<string>(key.first.getKey()->getBits()).length();
800 if (key.first.getKey()->getBits() < 1) {
801 cout<<"invalid "<<endl;
802 continue;
803 } else {
804 cout<<key.first.getKey()->getBits()<<string(spacelen, ' ');
805 }
806
807 string algname;
808 algorithm2name(key.first.d_algorithm, algname);
809 spacelen = (algname.length() >= 13) ? 1 : 13 - algname.length();
810 cout<<algname<<string(spacelen, ' ');
811
812 spacelen = (lexical_cast<string>(key.second.id).length() > 5) ? 1 : 5 - lexical_cast<string>(key.second.id).length();
813 cout<<key.second.id<<string(spacelen, ' ');
814
815 #ifdef HAVE_P11KIT1
816 auto stormap = key.first.getKey()->convertToISCVector();
817 string engine, slot, label = "";
818 for (auto const &elem : stormap) {
819 //cout<<elem.first<<" "<<elem.second<<endl;
820 if (elem.first == "Engine")
821 engine = elem.second;
822 if (elem.first == "Slot")
823 slot = elem.second;
824 if (elem.first == "Label")
825 label = elem.second;
826 }
827 if (engine.empty() || slot.empty()){
828 cout<<"cryptokeys ";
829 } else {
830 spacelen = (engine.length()+slot.length()+label.length()+2 >= 12) ? 1 : 12 - engine.length()-slot.length()-label.length()-2;
831 cout<<engine<<","<<slot<<","<<label<<string(spacelen, ' ');
832 }
833 #else
834 cout<<"cryptokeys ";
835 #endif
836 cout<<key.first.getDNSKEY().getTag()<<endl;
837 }
838 }
839
840 bool listKeys(const string &zname, DNSSECKeeper& dk){
841 UeberBackend B("default");
842
843 if (zname != "all") {
844 DomainInfo di;
845 if(!B.getDomainInfo(DNSName(zname), di)) {
846 cerr << "Zone "<<zname<<" not found."<<endl;
847 return false;
848 }
849 listKey(di, dk);
850 } else {
851 vector<DomainInfo> domainInfo;
852 B.getAllDomains(&domainInfo);
853 bool printHeader = true;
854 for (auto const di : domainInfo) {
855 listKey(di, dk, printHeader);
856 printHeader = false;
857 }
858 }
859 return true;
860 }
861
862 int listZone(const DNSName &zone) {
863 UeberBackend B;
864 DomainInfo di;
865
866 if (! B.getDomainInfo(zone, di)) {
867 cerr<<"Domain '"<<zone.toString()<<"' not found!"<<endl;
868 return 1;
869 }
870 di.backend->list(zone, di.id);
871 DNSResourceRecord rr;
872 while(di.backend->get(rr)) {
873 if(rr.qtype.getCode()) {
874 if ( (rr.qtype.getCode() == QType::NS || rr.qtype.getCode() == QType::SRV || rr.qtype.getCode() == QType::MX || rr.qtype.getCode() == QType::CNAME) && !rr.content.empty() && rr.content[rr.content.size()-1] != '.')
875 rr.content.append(1, '.');
876
877 cout<<rr.qname.toString()<<".\t"<<rr.ttl<<"\tIN\t"<<rr.qtype.getName()<<"\t"<<rr.content<<endl;
878 }
879 }
880 return 0;
881 }
882
883 int loadZone(DNSName zone, const string& fname) {
884 UeberBackend B;
885 DomainInfo di;
886
887 if (B.getDomainInfo(zone, di)) {
888 cerr<<"Domain '"<<zone.toString()<<"' exists already, replacing contents"<<endl;
889 }
890 else {
891 cerr<<"Creating '"<<zone.toString()<<"'"<<endl;
892 B.createDomain(zone);
893
894 if(!B.getDomainInfo(zone, di)) {
895 cerr<<"Domain '"<<zone.toString()<<"' was not created - perhaps backend ("<<::arg()["launch"]<<") does not support storing new zones."<<endl;
896 return 1;
897 }
898 }
899 DNSBackend* db = di.backend;
900 ZoneParserTNG zpt(fname, zone);
901
902 DNSResourceRecord rr;
903 if(!db->startTransaction(zone, di.id)) {
904 cerr<<"Unable to start transaction for load of zone '"<<zone.toString()<<"'"<<endl;
905 return 1;
906 }
907 rr.domain_id=di.id;
908 while(zpt.get(rr)) {
909 if(!rr.qname.isPartOf(zone) && rr.qname!=zone) {
910 cerr<<"File contains record named '"<<rr.qname.toString()<<"' which is not part of zone '"<<zone.toString()<<"'"<<endl;
911 return 1;
912 }
913 db->feedRecord(rr);
914 }
915 db->commitTransaction();
916 return 0;
917 }
918
919 int createZone(const DNSName &zone) {
920 UeberBackend B;
921 DomainInfo di;
922 if (B.getDomainInfo(zone, di)) {
923 cerr<<"Domain '"<<zone.toString()<<"' exists already"<<endl;
924 return 1;
925 }
926 cerr<<"Creating '"<<zone.toString()<<"'"<<endl;
927 B.createDomain(zone);
928
929 if(!B.getDomainInfo(zone, di)) {
930 cerr<<"Domain '"<<zone.toString()<<"' was not created!"<<endl;
931 return 1;
932 }
933 return 1;
934 }
935
936
937 int listAllZones(const string &type="") {
938
939 int kindFilter = -1;
940 if (type.size()) {
941 if (toUpper(type) == "MASTER")
942 kindFilter = 0;
943 else if (toUpper(type) == "SLAVE")
944 kindFilter = 1;
945 else if (toUpper(type) == "NATIVE")
946 kindFilter = 2;
947 else {
948 cerr<<"Syntax: pdnsutil list-all-zones [master|slave|native]"<<endl;
949 return 1;
950 }
951 }
952
953 UeberBackend B("default");
954
955 vector<DomainInfo> domains;
956 B.getAllDomains(&domains);
957
958 int count = 0;
959 for (vector<DomainInfo>::const_iterator di=domains.begin(); di != domains.end(); di++) {
960 if (di->kind == kindFilter || kindFilter == -1) {
961 cout<<di->zone.toString()<<endl;
962 count++;
963 }
964 }
965
966 if (kindFilter != -1)
967 cout<<type<<" zonecount:"<<count<<endl;
968 else
969 cout<<"All zonecount:"<<count<<endl;
970 return 0;
971 }
972
973 bool testAlgorithm(int algo)
974 {
975 return DNSCryptoKeyEngine::testOne(algo);
976 }
977
978 bool testAlgorithms()
979 {
980 return DNSCryptoKeyEngine::testAll();
981 }
982
983 void testSpeed(DNSSECKeeper& dk, const DNSName& zone, const string& remote, int cores)
984 {
985 DNSResourceRecord rr;
986 rr.qname=DNSName("blah")+zone;
987 rr.qtype=QType::A;
988 rr.ttl=3600;
989 rr.auth=1;
990 rr.qclass = QClass::IN;
991 rr.d_place=DNSResourceRecord::ANSWER;
992
993 UeberBackend db("key-only");
994
995 if ( ! db.backends.size() )
996 {
997 throw runtime_error("No backends available for DNSSEC key storage");
998 }
999
1000 ChunkedSigningPipe csp(DNSName(zone), 1, remote, cores);
1001
1002 vector<DNSResourceRecord> signatures;
1003 uint32_t rnd;
1004 unsigned char* octets = (unsigned char*)&rnd;
1005 char tmp[25];
1006 DTime dt;
1007 dt.set();
1008 for(unsigned int n=0; n < 100000; ++n) {
1009 rnd = random();
1010 snprintf(tmp, sizeof(tmp), "%d.%d.%d.%d",
1011 octets[0], octets[1], octets[2], octets[3]);
1012 rr.content=tmp;
1013
1014 snprintf(tmp, sizeof(tmp), "r-%u", rnd);
1015 rr.qname=DNSName(tmp)+zone;
1016
1017 if(csp.submit(rr))
1018 while(signatures = csp.getChunk(), !signatures.empty())
1019 ;
1020 }
1021 cerr<<"Flushing the pipe, "<<csp.d_signed<<" signed, "<<csp.d_queued<<" queued, "<<csp.d_outstanding<<" outstanding"<< endl;
1022 cerr<<"Net speed: "<<csp.d_signed/ (dt.udiffNoReset()/1000000.0) << " sigs/s"<<endl;
1023 while(signatures = csp.getChunk(true), !signatures.empty())
1024 ;
1025 cerr<<"Done, "<<csp.d_signed<<" signed, "<<csp.d_queued<<" queued, "<<csp.d_outstanding<<" outstanding"<< endl;
1026 cerr<<"Net speed: "<<csp.d_signed/ (dt.udiff()/1000000.0) << " sigs/s"<<endl;
1027 }
1028
1029 void verifyCrypto(const string& zone)
1030 {
1031 ZoneParserTNG zpt(zone);
1032 DNSResourceRecord rr;
1033 DNSKEYRecordContent drc;
1034 RRSIGRecordContent rrc;
1035 DSRecordContent dsrc;
1036 vector<shared_ptr<DNSRecordContent> > toSign;
1037 DNSName qname, apex;
1038 dsrc.d_digesttype=0;
1039 while(zpt.get(rr)) {
1040 if(rr.qtype.getCode() == QType::DNSKEY) {
1041 cerr<<"got DNSKEY!"<<endl;
1042 apex=rr.qname;
1043 drc = *dynamic_cast<DNSKEYRecordContent*>(DNSRecordContent::mastermake(QType::DNSKEY, 1, rr.content));
1044 }
1045 else if(rr.qtype.getCode() == QType::RRSIG) {
1046 cerr<<"got RRSIG"<<endl;
1047 rrc = *dynamic_cast<RRSIGRecordContent*>(DNSRecordContent::mastermake(QType::RRSIG, 1, rr.content));
1048 }
1049 else if(rr.qtype.getCode() == QType::DS) {
1050 cerr<<"got DS"<<endl;
1051 dsrc = *dynamic_cast<DSRecordContent*>(DNSRecordContent::mastermake(QType::DS, 1, rr.content));
1052 }
1053 else {
1054 qname = rr.qname;
1055 toSign.push_back(shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(rr.qtype.getCode(), 1, rr.content)));
1056 }
1057 }
1058
1059 string msg = getMessageForRRSET(qname, rrc, toSign);
1060 cerr<<"Verify: "<<DNSCryptoKeyEngine::makeFromPublicKeyString(drc.d_algorithm, drc.d_key)->verify(msg, rrc.d_signature)<<endl;
1061 if(dsrc.d_digesttype) {
1062 cerr<<"Calculated DS: "<<apex.toString()<<" IN DS "<<makeDSFromDNSKey(apex, drc, dsrc.d_digesttype).getZoneRepresentation()<<endl;
1063 cerr<<"Original DS: "<<apex.toString()<<" IN DS "<<dsrc.getZoneRepresentation()<<endl;
1064 }
1065 #if 0
1066 DNSCryptoKeyEngine*key=DNSCryptoKeyEngine::makeFromISCString(drc, "Private-key-format: v1.2\n"
1067 "Algorithm: 12 (ECC-GOST)\n"
1068 "GostAsn1: MEUCAQAwHAYGKoUDAgITMBIGByqFAwICIwEGByqFAwICHgEEIgQg/9MiXtXKg9FDXDN/R9CmVhJDyuzRAIgh4tPwCu4NHIs=\n");
1069 string resign=key->sign(hash);
1070 cerr<<Base64Encode(resign)<<endl;
1071 cerr<<"Verify: "<<DNSCryptoKeyEngine::makeFromPublicKeyString(drc.d_algorithm, drc.d_key)->verify(hash, resign)<<endl;
1072 #endif
1073
1074 }
1075 bool disableDNSSECOnZone(DNSSECKeeper& dk, const DNSName& zone)
1076 {
1077 UeberBackend B("default");
1078 DomainInfo di;
1079
1080 if (!B.getDomainInfo(zone, di)){
1081 cerr << "No such zone in the database" << endl;
1082 return false;
1083 }
1084
1085 if(!dk.isSecuredZone(zone)) {
1086 cerr<<"Zone is not secured"<<endl;
1087 return false;
1088 }
1089 DNSSECKeeper::keyset_t keyset=dk.getKeys(zone);
1090
1091 if(keyset.empty()) {
1092 cerr << "No keys for zone '"<<zone.toString()<<"'."<<endl;
1093 }
1094 else {
1095 for(DNSSECKeeper::keyset_t::value_type value : keyset) {
1096 dk.deactivateKey(zone, value.second.id);
1097 dk.removeKey(zone, value.second.id);
1098 }
1099 }
1100 dk.unsetNSEC3PARAM(zone);
1101 dk.unsetPresigned(zone);
1102 return true;
1103 }
1104 bool showZone(DNSSECKeeper& dk, const DNSName& zone)
1105 {
1106 UeberBackend B("default");
1107 DomainInfo di;
1108 std::vector<std::string> meta;
1109
1110 if (!B.getDomainInfo(zone, di)){
1111 cerr << "No such zone in the database" << endl;
1112 return false;
1113 }
1114
1115 if(!dk.isSecuredZone(zone)) {
1116 cerr<<"Zone is not actively secured"<<endl;
1117 }
1118 NSEC3PARAMRecordContent ns3pr;
1119 bool narrow;
1120 bool haveNSEC3=dk.getNSEC3PARAM(zone, &ns3pr, &narrow);
1121
1122 DNSSECKeeper::keyset_t keyset=dk.getKeys(zone);
1123 if (B.getDomainMetadata(zone, "TSIG-ALLOW-AXFR", meta) && meta.size() > 0) {
1124 cerr << "Zone has following allowed TSIG key(s): " << boost::join(meta, ",") << endl;
1125 }
1126
1127 meta.clear();
1128 if (B.getDomainMetadata(zone, "AXFR-MASTER-TSIG", meta) && meta.size() > 0) {
1129 cerr << "Zone uses following TSIG key(s): " << boost::join(meta, ",") << endl;
1130 }
1131
1132 cout <<"Zone is " << (dk.isPresigned(zone) ? "" : "not ") << "presigned"<<endl;
1133
1134 if(keyset.empty()) {
1135 cerr << "No keys for zone '"<<zone.toString()<<"'."<<endl;
1136 }
1137 else {
1138 if(!haveNSEC3)
1139 cout<<"Zone has NSEC semantics"<<endl;
1140 else
1141 cout<<"Zone has " << (narrow ? "NARROW " : "") <<"hashed NSEC3 semantics, configuration: "<<ns3pr.getZoneRepresentation()<<endl;
1142
1143 cout << "keys: "<<endl;
1144 for(DNSSECKeeper::keyset_t::value_type value : keyset) {
1145 string algname;
1146 algorithm2name(value.first.d_algorithm, algname);
1147 if (value.first.getKey()->getBits() < 1) {
1148 cout<<"ID = "<<value.second.id<<" ("<<(value.second.keyOrZone ? "KSK" : "ZSK")<<") <key missing or defunct>" <<endl;
1149 continue;
1150 }
1151 cout<<"ID = "<<value.second.id<<" ("<<(value.second.keyOrZone ? "KSK" : "ZSK")<<"), tag = "<<value.first.getDNSKEY().getTag();
1152 cout<<", algo = "<<(int)value.first.d_algorithm<<", bits = "<<value.first.getKey()->getBits()<<"\tActive: "<<value.second.active<< " ( " + algname + " ) "<<endl;
1153 if(value.second.keyOrZone || ::arg().mustDo("direct-dnskey") || g_verbose)
1154 cout<<(value.second.keyOrZone ? "KSK" : "ZSK")<<" DNSKEY = "<<zone.toString()<<" IN DNSKEY "<< value.first.getDNSKEY().getZoneRepresentation() << " ; ( " + algname + " )" << endl;
1155 if(value.second.keyOrZone || g_verbose) {
1156 cout<<"DS = "<<zone.toString()<<" IN DS "<<makeDSFromDNSKey(zone, value.first.getDNSKEY(), 1).getZoneRepresentation() << " ; ( SHA1 digest )" << endl;
1157 cout<<"DS = "<<zone.toString()<<" IN DS "<<makeDSFromDNSKey(zone, value.first.getDNSKEY(), 2).getZoneRepresentation() << " ; ( SHA256 digest )" << endl;
1158 try {
1159 string output=makeDSFromDNSKey(zone, value.first.getDNSKEY(), 3).getZoneRepresentation();
1160 cout<<"DS = "<<zone.toString()<<" IN DS "<< output << " ; ( GOST R 34.11-94 digest )" << endl;
1161 }
1162 catch(...)
1163 {
1164 }
1165 try {
1166 string output=makeDSFromDNSKey(zone, value.first.getDNSKEY(), 4).getZoneRepresentation();
1167 cout<<"DS = "<<zone.toString()<<" IN DS "<< output << " ; ( SHA-384 digest )" << endl;
1168 }
1169 catch(...)
1170 {
1171 }
1172 cout<<endl;
1173 }
1174 }
1175 }
1176 return true;
1177 }
1178
1179 bool secureZone(DNSSECKeeper& dk, const DNSName& zone)
1180 {
1181 // parse attribute
1182 vector<string> k_algos;
1183 vector<string> z_algos;
1184 int k_size;
1185 int z_size;
1186
1187 stringtok(k_algos, ::arg()["default-ksk-algorithms"], " ,");
1188 k_size = ::arg().asNum("default-ksk-size");
1189 stringtok(z_algos, ::arg()["default-zsk-algorithms"], " ,");
1190 z_size = ::arg().asNum("default-zsk-size");
1191
1192 if (k_size < 0) {
1193 throw runtime_error("KSK key size must be equal to or greater than 0");
1194 }
1195
1196 if (k_algos.size() < 1) {
1197 throw runtime_error("No algorithm(s) given for KSK");
1198 }
1199
1200 if (z_size < 0) {
1201 throw runtime_error("ZSK key size must be equal to or greater than 0");
1202 }
1203
1204 if (z_algos.size() < 1) {
1205 throw runtime_error("No algorithm(s) given for ZSK");
1206 }
1207
1208 if(dk.isSecuredZone(zone)) {
1209 cerr << "Zone '"<<zone.toString()<<"' already secure, remove keys with pdnsutil remove-zone-key if needed"<<endl;
1210 return false;
1211 }
1212
1213 DomainInfo di;
1214 UeberBackend B("default");
1215 if(!B.getDomainInfo(zone, di) || !di.backend) { // di.backend and B are mostly identical
1216 cout<<"Can't find a zone called '"<<zone.toString()<<"'"<<endl;
1217 return false;
1218 }
1219
1220 if(di.kind == DomainInfo::Slave)
1221 {
1222 cout<<"Warning! This is a slave domain! If this was a mistake, please run"<<endl;
1223 cout<<"pdnsutil disable-dnssec "<<zone.toString()<<" right now!"<<endl;
1224 }
1225
1226 if (k_size)
1227 cout << "Securing zone with " << k_algos[0] << " algorithm with key size " << k_size << endl;
1228 else
1229 cout << "Securing zone with " << k_algos[0] << " algorithm with default key size" << endl;
1230
1231 // run secure-zone with first default algorith, then add keys
1232 if(!dk.secureZone(zone, shorthand2algorithm(k_algos[0]), k_size)) {
1233 cerr<<"No backend was able to secure '"<<zone.toString()<<"', most likely because no DNSSEC"<<endl;
1234 cerr<<"capable backends are loaded, or because the backends have DNSSEC disabled."<<endl;
1235 cerr<<"For the Generic SQL backends, set the 'gsqlite3-dnssec', 'gmysql-dnssec' or"<<endl;
1236 cerr<<"'gpgsql-dnssec' flag. Also make sure the schema has been updated for DNSSEC!"<<endl;
1237 return false;
1238 }
1239
1240 if(!dk.isSecuredZone(zone)) {
1241 cerr<<"Failed to secure zone. Is your backend dnssec enabled? (set "<<endl;
1242 cerr<<"gsqlite3-dnssec, or gmysql-dnssec etc). Check this first."<<endl;
1243 cerr<<"If you run with the BIND backend, make sure you have configured"<<endl;
1244 cerr<<"it to use DNSSEC with 'bind-dnssec-db=/path/fname' and"<<endl;
1245 cerr<<"'pdnsutil create-bind-db /path/fname'!"<<endl;
1246 return false;
1247 }
1248
1249 DNSSECKeeper::keyset_t zskset=dk.getKeys(zone, false);
1250
1251 if(!zskset.empty()) {
1252 cerr<<"There were ZSKs already for zone '"<<zone.toString()<<"', no need to add more"<<endl;
1253 return false;
1254 }
1255
1256 for(vector<string>::iterator i = k_algos.begin()+1; i != k_algos.end(); i++)
1257 dk.addKey(zone, true, shorthand2algorithm(*i), k_size, true); // obvious errors will have been caught above
1258
1259 for(string z_algo : z_algos)
1260 {
1261 int algo = shorthand2algorithm(z_algo);
1262 dk.addKey(zone, false, algo, z_size);
1263 }
1264
1265 // rectifyZone(dk, zone);
1266 // showZone(dk, zone);
1267 cout<<"Zone "<<zone.toString()<<" secured"<<endl;
1268 return true;
1269 }
1270
1271 void testSchema(DNSSECKeeper& dk, const DNSName& zone)
1272 {
1273 cout<<"Note: test-schema will try to create the zone, but it will not remove it."<<endl;
1274 cout<<"Please clean up after this."<<endl;
1275 cout<<endl;
1276 cout<<"Constructing UeberBackend"<<endl;
1277 UeberBackend B("default");
1278 cout<<"Picking first backend - if this is not what you want, edit launch line!"<<endl;
1279 DNSBackend *db = B.backends[0];
1280 cout<<"Creating slave domain "<<zone.toString()<<endl;
1281 db->createSlaveDomain("127.0.0.1", zone, "", "_testschema");
1282 cout<<"Slave domain created"<<endl;
1283
1284 DomainInfo di;
1285 if(!B.getDomainInfo(zone, di) || !di.backend) { // di.backend and B are mostly identical
1286 cout<<"Can't find domain we just created, aborting"<<endl;
1287 return;
1288 }
1289 db=di.backend;
1290 DNSResourceRecord rr, rrget;
1291 cout<<"Starting transaction to feed records"<<endl;
1292 db->startTransaction(zone, di.id);
1293
1294 rr.qtype=QType::SOA;
1295 rr.qname=zone;
1296 rr.ttl=86400;
1297 rr.domain_id=di.id;
1298 rr.auth=1;
1299 rr.content="ns1.example.com. ahu.example.com. 2012081039 7200 3600 1209600 3600";
1300 cout<<"Feeding SOA"<<endl;
1301 db->feedRecord(rr);
1302 rr.qtype=QType::TXT;
1303 // 300 As
1304 rr.content="\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"";
1305 cout<<"Feeding overlong TXT"<<endl;
1306 db->feedRecord(rr);
1307 cout<<"Committing"<<endl;
1308 db->commitTransaction();
1309 cout<<"Querying TXT"<<endl;
1310 db->lookup(QType(QType::TXT), zone, NULL, di.id);
1311 if(db->get(rrget))
1312 {
1313 DNSResourceRecord rrthrowaway;
1314 if(db->get(rrthrowaway)) // should not touch rr but don't assume anything
1315 {
1316 cout<<"Expected one record, got multiple, aborting"<<endl;
1317 return;
1318 }
1319 int size=rrget.content.size();
1320 if(size != 302)
1321 {
1322 cout<<"Expected 302 bytes, got "<<size<<", aborting"<<endl;
1323 return;
1324 }
1325 }
1326 cout<<"[+] content field is over 255 bytes"<<endl;
1327
1328 cout<<"Dropping all records, inserting SOA+2xA"<<endl;
1329 db->startTransaction(zone, di.id);
1330
1331 rr.qtype=QType::SOA;
1332 rr.qname=zone;
1333 rr.ttl=86400;
1334 rr.domain_id=di.id;
1335 rr.auth=1;
1336 rr.content="ns1.example.com. ahu.example.com. 2012081039 7200 3600 1209600 3600";
1337 cout<<"Feeding SOA"<<endl;
1338 db->feedRecord(rr);
1339
1340 rr.qtype=QType::A;
1341 rr.qname=DNSName("_underscore")+zone;
1342 rr.content="127.0.0.1";
1343 db->feedRecord(rr);
1344
1345 rr.qname=DNSName("bla")+zone;
1346 cout<<"Committing"<<endl;
1347 db->commitTransaction();
1348
1349 cout<<"Securing zone"<<endl;
1350 secureZone(dk, zone);
1351 cout<<"Rectifying zone"<<endl;
1352 rectifyZone(dk, zone);
1353 cout<<"Checking underscore ordering"<<endl;
1354 DNSName before, after;
1355 db->getBeforeAndAfterNames(di.id, zone, DNSName("z")+zone, before, after);
1356 cout<<"got '"<<before.toString()<<"' < 'z."<<zone.toString()<<"' < '"<<after.toString()<<"'"<<endl;
1357 if(before != DNSName("_underscore")+zone)
1358 {
1359 cout<<"before is wrong, got '"<<before.toString()<<"', expected '_underscore."<<zone.toString()<<"', aborting"<<endl;
1360 return;
1361 }
1362 if(after != zone)
1363 {
1364 cout<<"after is wrong, got '"<<after.toString()<<"', expected '"<<zone.toString()<<"', aborting"<<endl;
1365 return;
1366 }
1367 cout<<"[+] ordername sorting is correct for names starting with _"<<endl;
1368 cout<<endl;
1369 cout<<"End of tests, please remove "<<zone.toString()<<" from domains+records"<<endl;
1370 }
1371
1372 int main(int argc, char** argv)
1373 try
1374 {
1375 po::options_description desc("Allowed options");
1376 desc.add_options()
1377 ("help,h", "produce help message")
1378 ("verbose,v", "be verbose")
1379 ("force", "force an action")
1380 ("config-name", po::value<string>()->default_value(""), "virtual configuration name")
1381 ("config-dir", po::value<string>()->default_value(SYSCONFDIR), "location of pdns.conf")
1382 ("commands", po::value<vector<string> >());
1383
1384 po::positional_options_description p;
1385 p.add("commands", -1);
1386 po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), g_vm);
1387 po::notify(g_vm);
1388
1389 vector<string> cmds;
1390
1391 if(g_vm.count("commands"))
1392 cmds = g_vm["commands"].as<vector<string> >();
1393
1394 g_verbose = g_vm.count("verbose");
1395
1396 if(cmds.empty() || g_vm.count("help")) {
1397 cerr<<"Usage: \npdnsutil [options] <command> [params ..]\n"<<endl;
1398 cerr<<"Commands:"<<endl;
1399 cerr<<"activate-tsig-key ZONE NAME {master|slave}"<<endl;
1400 cerr<<" Enable TSIG key for a zone"<<endl;
1401 cerr<<"activate-zone-key ZONE KEY-ID Activate the key with key id KEY-ID in ZONE"<<endl;
1402 cerr<<"add-zone-key ZONE {zsk|ksk} [BITS] [active|passive]"<<endl;
1403 cerr<<" [rsasha1|rsasha256|rsasha512|gost|ecdsa256|ecdsa384";
1404 #ifdef HAVE_LIBSODIUM
1405 cerr<<"|experimental-ed25519";
1406 #endif
1407 cerr<<"]"<<endl;
1408 cerr<<" Add a ZSK or KSK to zone and specify algo&bits"<<endl;
1409 cerr<<"backend-cmd BACKEND CMD [CMD..] Perform one or more backend commands"<<endl;
1410 cerr<<"b2b-migrate OLD NEW Move all data from one backend to another"<<endl;
1411 cerr<<"bench-db [filename] Bench database backend with queries, one domain per line"<<endl;
1412 cerr<<"check-zone ZONE Check a zone for correctness"<<endl;
1413 cerr<<"check-all-zones [exit-on-error] Check all zones for correctness. Set exit-on-error to exit immediately"<<endl;
1414 cerr<<" after finding an error in a zone."<<endl;
1415 cerr<<"create-bind-db FNAME Create DNSSEC db for BIND backend (bind-dnssec-db)"<<endl;
1416 cerr<<"create-zone ZONE Create empty zone ZONE"<<endl;
1417 cerr<<"deactivate-tsig-key ZONE NAME {master|slave}"<<endl;
1418 cerr<<" Disable TSIG key for a zone"<<endl;
1419 cerr<<"deactivate-zone-key ZONE KEY-ID Deactivate the key with key id KEY-ID in ZONE"<<endl;
1420 cerr<<"delete-tsig-key NAME Delete TSIG key (warning! will not unmap key!)"<<endl;
1421 cerr<<"delete-zone ZONE Delete the zone"<<endl;
1422 cerr<<"disable-dnssec ZONE Deactivate all keys and unset PRESIGNED in ZONE"<<endl;
1423 cerr<<"export-zone-dnskey ZONE KEY-ID Export to stdout the public DNSKEY described"<<endl;
1424 cerr<<"export-zone-key ZONE KEY-ID Export to stdout the private key described"<<endl;
1425 cerr<<"generate-tsig-key NAME ALGORITHM Generate new TSIG key"<<endl;
1426 cerr<<"generate-zone-key {zsk|ksk} [ALGORITHM] [BITS]"<<endl;
1427 cerr<<" Generate a ZSK or KSK to stdout with specified ALGORITHM and BITS"<<endl;
1428 cerr<<"get-meta ZONE [KIND ...] Get zone metadata. If no KIND given, lists all known"<<endl;
1429 cerr<<"hash-zone-record ZONE RNAME Calculate the NSEC3 hash for RNAME in ZONE"<<endl;
1430 #ifdef HAVE_P11KIT1
1431 cerr<<"hsm assign ZONE ALGORITHM {ksk|zsk} MODULE SLOT PIN LABEL"<<endl<<
1432 " Assign a hardware signing module to a ZONE"<<endl;
1433 cerr<<"hsm create-key ZONE KEY-ID [BITS] Create a key using hardware signing module for ZONE (use assign first)"<<endl;
1434 cerr<<" BITS defaults to 2048"<<endl;
1435 #endif
1436 cerr<<"increase-serial ZONE Increases the SOA-serial by 1. Uses SOA-EDIT"<<endl;
1437 cerr<<"import-tsig-key NAME ALGORITHM KEY Import TSIG key"<<endl;
1438 cerr<<"import-zone-key ZONE FILE Import from a file a private key, ZSK or KSK"<<endl;
1439 cerr<<" [active|passive] [ksk|zsk] Defaults to KSK and active"<<endl;
1440 cerr<<"load-zone ZONE FILE Load ZONE from FILE, possibly creating zone or atomically"<<endl;
1441 cerr<<" replacing contents"<<endl;
1442 cerr<<"list-keys [ZONE] List DNSSEC keys for ZONE. When ZONE is unset or \"all\", display all keys for all zones"<<endl;
1443 cerr<<"list-zone ZONE List zone contents"<<endl;
1444 cerr<<"list-all-zones [master|slave|native]"<<endl;
1445 cerr<<" List all zone names"<<endl;;
1446 cerr<<"list-tsig-keys List all TSIG keys"<<endl;
1447 cerr<<"rectify-zone ZONE [ZONE ..] Fix up DNSSEC fields (order, auth)"<<endl;
1448 cerr<<"rectify-all-zones Rectify all zones."<<endl;
1449 cerr<<"remove-zone-key ZONE KEY-ID Remove key with KEY-ID from ZONE"<<endl;
1450 cerr<<"secure-all-zones [increase-serial] Secure all zones without keys."<<endl;
1451 cerr<<"secure-zone ZONE [ZONE ..] Add KSK and two ZSKs for ZONE"<<endl;
1452 cerr<<"set-nsec3 ZONE ['PARAMS' [narrow]] Enable NSEC3 with PARAMS. Optionally narrow"<<endl;
1453 cerr<<"set-presigned ZONE Use presigned RRSIGs from storage"<<endl;
1454 cerr<<"set-publish-cdnskey ZONE Enable sending CDNSKEY responses for ZONE"<<endl;
1455 cerr<<"set-publish-cds ZONE [DIGESTALGOS] Enable sending CDS responses for ZONE, using DIGESTALGOS as signature algirithms"<<endl;
1456 cerr<<" DIGESTALGOS should be a comma separated list of numbers, is is '1,2' by default"<<endl;
1457 cerr<<"set-meta ZONE KIND [VALUE ..]"<<endl;
1458 cerr<<" Set zone metadata, optionally providing a value. Empty clears meta."<<endl;
1459 cerr<<"show-zone ZONE Show DNSSEC (public) key details about a zone"<<endl;
1460 cerr<<"unset-nsec3 ZONE Switch back to NSEC"<<endl;
1461 cerr<<"unset-presigned ZONE No longer use presigned RRSIGs"<<endl;
1462 cerr<<"unset-publish-cdnskey ZONE Disable sending CDNSKEY responses for ZONE"<<endl;
1463 cerr<<"unset-publish-cds ZONE Disable sending CDS responses for ZONE"<<endl;
1464 cerr<<"test-schema ZONE Test DB schema - will create ZONE"<<endl;
1465 cerr<<desc<<endl;
1466 return 0;
1467 }
1468
1469 #ifdef HAVE_LIBSODIUM
1470 if (sodium_init() == -1) {
1471 cerr<<"Unable to initialize sodium crypto library"<<endl;
1472 exit(99);
1473 }
1474 #endif
1475
1476 if (cmds[0] == "test-algorithm") {
1477 if(cmds.size() != 2) {
1478 cerr << "Syntax: pdnsutil test-algorithm algonum"<<endl;
1479 return 0;
1480 }
1481 if (testAlgorithm(lexical_cast<int>(cmds[1])))
1482 return 0;
1483 return 1;
1484 }
1485
1486 if(cmds[0] == "test-algorithms") {
1487 if (testAlgorithms())
1488 return 0;
1489 return 1;
1490 }
1491
1492 loadMainConfig(g_vm["config-dir"].as<string>());
1493 reportAllTypes();
1494
1495 if(cmds[0] == "create-bind-db") {
1496 #ifdef HAVE_SQLITE3
1497 if(cmds.size() != 2) {
1498 cerr << "Syntax: pdnsutil create-bind-db FNAME"<<endl;
1499 return 0;
1500 }
1501 try {
1502 SSQLite3 db(cmds[1], true); // create=ok
1503 vector<string> statements;
1504 stringtok(statements, sqlCreate, ";");
1505 for(const string& statement : statements) {
1506 db.execute(statement);
1507 }
1508 }
1509 catch(SSqlException& se) {
1510 throw PDNSException("Error creating database in BIND backend: "+se.txtReason());
1511 }
1512 return 0;
1513 #else
1514 cerr<<"bind-dnssec-db requires building PowerDNS with SQLite3"<<endl;
1515 return 1;
1516 #endif
1517 }
1518
1519 DNSSECKeeper dk;
1520
1521 if (cmds[0] == "test-schema") {
1522 if(cmds.size() != 2) {
1523 cerr << "Syntax: pdnsutil test-schema ZONE"<<endl;
1524 return 0;
1525 }
1526 testSchema(dk, DNSName(cmds[1]));
1527 return 0;
1528 }
1529 if(cmds[0] == "rectify-zone") {
1530 if(cmds.size() < 2) {
1531 cerr << "Syntax: pdnsutil rectify-zone ZONE [ZONE..]"<<endl;
1532 return 0;
1533 }
1534 unsigned int exitCode = 0;
1535 for(unsigned int n = 1; n < cmds.size(); ++n)
1536 if (!rectifyZone(dk, DNSName(cmds[n])))
1537 exitCode = 1;
1538 return exitCode;
1539 }
1540 else if (cmds[0] == "rectify-all-zones") {
1541 rectifyAllZones(dk);
1542 }
1543 else if(cmds[0] == "check-zone") {
1544 if(cmds.size() != 2) {
1545 cerr << "Syntax: pdnsutil check-zone ZONE"<<endl;
1546 return 0;
1547 }
1548 UeberBackend B("default");
1549 exit(checkZone(dk, B, DNSName(cmds[1])));
1550 }
1551 else if(cmds[0] == "bench-db") {
1552 dbBench(cmds.size() > 1 ? cmds[1] : "");
1553 }
1554 else if (cmds[0] == "check-all-zones") {
1555 bool exitOnError = (cmds[1] == "exit-on-error");
1556 exit(checkAllZones(dk, exitOnError));
1557 }
1558 else if (cmds[0] == "list-all-zones") {
1559 if (cmds.size() > 2) {
1560 cerr << "Syntax: pdnsutil list-all-zones [master|slave|native]"<<endl;
1561 return 0;
1562 }
1563 if (cmds.size() == 2)
1564 return listAllZones(cmds[1]);
1565 return listAllZones();
1566 }
1567 else if (cmds[0] == "test-zone") {
1568 cerr << "Did you mean check-zone?"<<endl;
1569 return 0;
1570 }
1571 else if (cmds[0] == "test-all-zones") {
1572 cerr << "Did you mean check-all-zones?"<<endl;
1573 return 0;
1574 }
1575 #if 0
1576 else if(cmds[0] == "signing-server" )
1577 {
1578 signingServer();
1579 }
1580 else if(cmds[0] == "signing-slave")
1581 {
1582 launchSigningService(0);
1583 }
1584 #endif
1585 else if(cmds[0] == "test-speed") {
1586 if(cmds.size() < 2) {
1587 cerr << "Syntax: pdnsutil test-speed numcores [signing-server]"<<endl;
1588 return 0;
1589 }
1590 testSpeed(dk, DNSName(cmds[1]), (cmds.size() > 3) ? cmds[3] : "", atoi(cmds[2].c_str()));
1591 }
1592 else if(cmds[0] == "verify-crypto") {
1593 if(cmds.size() != 2) {
1594 cerr << "Syntax: pdnsutil verify-crypto FILE"<<endl;
1595 return 0;
1596 }
1597 verifyCrypto(cmds[1]);
1598 }
1599
1600 else if(cmds[0] == "show-zone") {
1601 if(cmds.size() != 2) {
1602 cerr << "Syntax: pdnsutil show-zone ZONE"<<endl;
1603 return 0;
1604 }
1605 if (!showZone(dk, DNSName(cmds[1]))) return 1;
1606 }
1607 else if(cmds[0] == "disable-dnssec") {
1608 if(cmds.size() != 2) {
1609 cerr << "Syntax: pdnsutil disable-dnssec ZONE"<<endl;
1610 return 0;
1611 }
1612 DNSName zone(cmds[1]);
1613 if(!disableDNSSECOnZone(dk, zone)) {
1614 cerr << "Cannot disable DNSSEC on " << zone << endl;
1615 return 1;
1616 }
1617 }
1618 else if(cmds[0] == "activate-zone-key") {
1619 if(cmds.size() != 3) {
1620 cerr << "Syntax: pdnsutil activate-zone-key ZONE KEY-ID"<<endl;
1621 return 0;
1622 }
1623 DNSName zone(cmds[1]);
1624 unsigned int id=atoi(cmds[2].c_str());
1625 if(!id)
1626 {
1627 cerr<<"Invalid KEY-ID"<<endl;
1628 return 1;
1629 }
1630 if (!dk.activateKey(zone, id)) {
1631 cerr<<"Activation of key failed"<<endl;
1632 return 1;
1633 }
1634 return 0;
1635 }
1636 else if(cmds[0] == "deactivate-zone-key") {
1637 if(cmds.size() != 3) {
1638 cerr << "Syntax: pdnsutil deactivate-zone-key ZONE KEY-ID"<<endl;
1639 return 0;
1640 }
1641 DNSName zone(cmds[1]);
1642 unsigned int id=atoi(cmds[2].c_str());
1643 if(!id)
1644 {
1645 cerr<<"Invalid KEY-ID"<<endl;
1646 return 1;
1647 }
1648 if (!dk.deactivateKey(zone, id)) {
1649 cerr<<"Deactivation of key failed"<<endl;
1650 return 1;
1651 }
1652 return 0;
1653 }
1654 else if(cmds[0] == "add-zone-key") {
1655 if(cmds.size() < 3 ) {
1656 cerr << "Syntax: pdnsutil add-zone-key ZONE zsk|ksk [bits] [rsasha1|rsasha256|rsasha512|gost|ecdsa256|ecdsa384]"<<endl;
1657 return 0;
1658 }
1659 DNSName zone(cmds[1]);
1660
1661 UeberBackend B("default");
1662 DomainInfo di;
1663
1664 if (!B.getDomainInfo(zone, di)){
1665 cerr << "No such zone in the database" << endl;
1666 return 0;
1667 }
1668
1669 // need to get algorithm, bits & ksk or zsk from commandline
1670 bool keyOrZone=false;
1671 int tmp_algo=0;
1672 int bits=0;
1673 int algorithm=8;
1674 bool active=false;
1675 for(unsigned int n=2; n < cmds.size(); ++n) {
1676 if(pdns_iequals(cmds[n], "zsk"))
1677 keyOrZone = false;
1678 else if(pdns_iequals(cmds[n], "ksk"))
1679 keyOrZone = true;
1680 else if((tmp_algo = shorthand2algorithm(cmds[n]))>0) {
1681 algorithm = tmp_algo;
1682 } else if(pdns_iequals(cmds[n], "active")) {
1683 active=true;
1684 } else if(pdns_iequals(cmds[n], "inactive") || pdns_iequals(cmds[n], "passive")) {
1685 active=false;
1686 } else if(atoi(cmds[n].c_str())) {
1687 bits = atoi(cmds[n].c_str());
1688 } else {
1689 cerr<<"Unknown algorithm, key flag or size '"<<cmds[n]<<"'"<<endl;
1690 exit(EXIT_FAILURE);;
1691 }
1692 }
1693 if(!dk.addKey(zone, keyOrZone, algorithm, bits, active)) {
1694 cerr<<"Adding key failed, perhaps DNSSEC not enabled in configuration?"<<endl;
1695 exit(1);
1696 }
1697 else {
1698 cerr<<"Added a " << (keyOrZone ? "KSK" : "ZSK")<<" with algorithm = "<<algorithm<<", active="<<active<<endl;
1699 if(bits)
1700 cerr<<"Requested specific key size of "<<bits<<" bits"<<endl;
1701 }
1702 }
1703 else if(cmds[0] == "remove-zone-key") {
1704 if(cmds.size() < 3) {
1705 cerr<<"Syntax: pdnsutil remove-zone-key ZONE KEY-ID"<<endl;
1706 return 0;
1707 }
1708 DNSName zone(cmds[1]);
1709 unsigned int id=atoi(cmds[2].c_str());
1710 if (!dk.removeKey(zone, id)) {
1711 cerr<<"Cannot remove key " << id << " from " << zone <<endl;
1712 return 1;
1713 }
1714 return 0;
1715 }
1716 else if(cmds[0] == "delete-zone") {
1717 if(cmds.size() != 2) {
1718 cerr<<"Syntax: pdnsutil delete-zone ZONE"<<endl;
1719 return 0;
1720 }
1721 exit(deleteZone(DNSName(cmds[1])));
1722 }
1723 else if(cmds[0] == "create-zone") {
1724 if(cmds.size() != 2) {
1725 cerr<<"Syntax: pdnsutil create-zone ZONE"<<endl;
1726 return 0;
1727 }
1728 exit(createZone(DNSName(cmds[1])));
1729 }
1730 else if(cmds[0] == "list-zone") {
1731 if(cmds.size() != 2) {
1732 cerr<<"Syntax: pdnsutil list-zone ZONE"<<endl;
1733 return 0;
1734 }
1735 if(cmds[1]==".")
1736 cmds[1].clear();
1737
1738 exit(listZone(DNSName(cmds[1])));
1739 }
1740 else if(cmds[0] == "list-keys") {
1741 if(cmds.size() > 2) {
1742 cerr<<"Syntax: pdnsutil list-keys [ZONE]"<<endl;
1743 return 0;
1744 }
1745 string zname = (cmds.size() == 2) ? cmds[1] : "all";
1746 exit(listKeys(zname, dk));
1747 }
1748 else if(cmds[0] == "load-zone") {
1749 if(cmds.size() != 3) {
1750 cerr<<"Syntax: pdnsutil load-zone ZONE FILENAME"<<endl;
1751 return 0;
1752 }
1753 if(cmds[1]==".")
1754 cmds[1].clear();
1755
1756 exit(loadZone(DNSName(cmds[1]), cmds[2]));
1757 }
1758 else if(cmds[0] == "secure-zone") {
1759 if(cmds.size() < 2) {
1760 cerr << "Syntax: pdnsutil secure-zone ZONE"<<endl;
1761 return 0;
1762 }
1763 vector<DNSName> mustRectify;
1764 unsigned int zoneErrors=0;
1765 for(unsigned int n = 1; n < cmds.size(); ++n) {
1766 DNSName zone(cmds[n]);
1767 dk.startTransaction(zone, -1);
1768 if(secureZone(dk, zone)) {
1769 mustRectify.push_back(zone);
1770 } else {
1771 zoneErrors++;
1772 }
1773 dk.commitTransaction();
1774 }
1775
1776 for(const auto& zone : mustRectify)
1777 rectifyZone(dk, zone);
1778
1779 if (zoneErrors) {
1780 return 1;
1781 }
1782 return 0;
1783 }
1784 else if (cmds[0] == "secure-all-zones") {
1785 if (cmds.size() >= 2 && !pdns_iequals(cmds[1], "increase-serial")) {
1786 cerr << "Syntax: pdnsutil secure-all-zones [increase-serial]"<<endl;
1787 return 0;
1788 }
1789
1790 UeberBackend B("default");
1791
1792 vector<DomainInfo> domainInfo;
1793 B.getAllDomains(&domainInfo);
1794
1795 unsigned int zonesSecured=0, zoneErrors=0;
1796 for(DomainInfo di : domainInfo) {
1797 if(!dk.isSecuredZone(di.zone)) {
1798 cout<<"Securing "<<di.zone.toString()<<": ";
1799 if (secureZone(dk, di.zone)) {
1800 zonesSecured++;
1801 if (cmds.size() == 2) {
1802 if (!increaseSerial(di.zone, dk))
1803 continue;
1804 } else
1805 continue;
1806 }
1807 zoneErrors++;
1808 }
1809 }
1810
1811 cout<<"Secured: "<<zonesSecured<<" zones. Errors: "<<zoneErrors<<endl;
1812
1813 if (zoneErrors) {
1814 return 1;
1815 }
1816 return 0;
1817 }
1818 else if(cmds[0]=="set-nsec3") {
1819 if(cmds.size() < 2) {
1820 cerr<<"Syntax: pdnsutil set-nsec3 ZONE 'params' [narrow]"<<endl;
1821 return 0;
1822 }
1823 string nsec3params = cmds.size() > 2 ? cmds[2] : "1 0 1 ab";
1824 bool narrow = cmds.size() > 3 && cmds[3]=="narrow";
1825 NSEC3PARAMRecordContent ns3pr(nsec3params);
1826
1827 DNSName zone(cmds[1]);
1828 if (zone.wirelength() > 222) {
1829 cerr<<"Cannot enable NSEC3 for " << zone.toString() << " as it is too long (" << zone.wirelength() << " bytes, maximum is 222 bytes)"<<endl;
1830 return 1;
1831 }
1832 if (! dk.setNSEC3PARAM(zone, ns3pr, narrow)) {
1833 cerr<<"Cannot set NSEC3 param for " << zone.toString() << endl;
1834 return 1;
1835 }
1836
1837 if (!ns3pr.d_flags)
1838 cerr<<"NSEC3 set, ";
1839 else
1840 cerr<<"NSEC3 (opt-out) set, ";
1841
1842 if(dk.isSecuredZone(zone))
1843 cerr<<"please rectify your zone if your backend needs it"<<endl;
1844 else
1845 cerr<<"please secure and rectify your zone."<<endl;
1846
1847 return 0;
1848 }
1849 else if(cmds[0]=="set-presigned") {
1850 if(cmds.size() < 2) {
1851 cerr<<"Syntax: pdnsutil set-presigned ZONE"<<endl;
1852 return 0;
1853 }
1854 if (! dk.setPresigned(DNSName(cmds[1]))) {
1855 cerr << "Could not set presigned on for " << cmds[1] << endl;
1856 return 1;
1857 }
1858 return 0;
1859 }
1860 else if(cmds[0]=="set-publish-cdnskey") {
1861 if(cmds.size() < 2) {
1862 cerr<<"Syntax: pdnsutil set-publish-cdnskey ZONE"<<endl;
1863 return 0;
1864 }
1865 if (! dk.setPublishCDNSKEY(DNSName(cmds[1]))) {
1866 cerr << "Could not set publishing for CDNSKEY records for "<< cmds[1]<<endl;
1867 return 1;
1868 }
1869 return 0;
1870 }
1871 else if(cmds[0]=="set-publish-cds") {
1872 if(cmds.size() < 2) {
1873 cerr<<"Syntax: pdnsutil set-publish-cds ZONE [DIGESTALGOS]"<<endl;
1874 return 0;
1875 }
1876
1877 // If DIGESTALGOS is unset
1878 if(cmds.size() == 2)
1879 cmds.push_back("1,2");
1880
1881 if (! dk.setPublishCDS(DNSName(cmds[1]), cmds[2])) {
1882 cerr << "Could not set publishing for CDS records for "<< cmds[1]<<endl;
1883 return 1;
1884 }
1885 return 0;
1886 }
1887 else if(cmds[0]=="unset-presigned") {
1888 if(cmds.size() < 2) {
1889 cerr<<"Syntax: pdnsutil unset-presigned ZONE"<<endl;
1890 return 0;
1891 }
1892 if (! dk.unsetPresigned(DNSName(cmds[1]))) {
1893 cerr << "Could not unset presigned on for " << cmds[1] << endl;
1894 return 1;
1895 }
1896 return 0;
1897 }
1898 else if(cmds[0]=="unset-publish-cdnskey") {
1899 if(cmds.size() < 2) {
1900 cerr<<"Syntax: pdnsutil unset-publish-cdnskey ZONE"<<endl;
1901 return 0;
1902 }
1903 if (! dk.unsetPublishCDNSKEY(DNSName(cmds[1]))) {
1904 cerr << "Could not unset publishing for CDNSKEY records for "<< cmds[1]<<endl;
1905 return 1;
1906 }
1907 return 0;
1908 }
1909 else if(cmds[0]=="unset-publish-cds") {
1910 if(cmds.size() < 2) {
1911 cerr<<"Syntax: pdnsutil unset-publish-cds ZONE"<<endl;
1912 return 0;
1913 }
1914 if (! dk.unsetPublishCDS(DNSName(cmds[1]))) {
1915 cerr << "Could not unset publishing for CDS records for "<< cmds[1]<<endl;
1916 return 1;
1917 }
1918 return 0;
1919 }
1920 else if(cmds[0]=="hash-zone-record") {
1921 if(cmds.size() < 3) {
1922 cerr<<"Syntax: pdnsutil hash-zone-record ZONE RNAME"<<endl;
1923 return 0;
1924 }
1925 DNSName zone(cmds[1]);
1926 DNSName record(cmds[2]);
1927 NSEC3PARAMRecordContent ns3pr;
1928 bool narrow;
1929 if(!dk.getNSEC3PARAM(zone, &ns3pr, &narrow)) {
1930 cerr<<"The '"<<zone.toString()<<"' zone does not use NSEC3"<<endl;
1931 return 0;
1932 }
1933 if(narrow) {
1934 cerr<<"The '"<<zone.toString()<<"' zone uses narrow NSEC3, but calculating hash anyhow"<<endl;
1935 }
1936
1937 cout<<toBase32Hex(hashQNameWithSalt(ns3pr, record))<<endl;
1938 }
1939 else if(cmds[0]=="unset-nsec3") {
1940 if(cmds.size() < 2) {
1941 cerr<<"Syntax: pdnsutil unset-nsec3 ZONE"<<endl;
1942 return 0;
1943 }
1944 if ( ! dk.unsetNSEC3PARAM(DNSName(cmds[1]))) {
1945 cerr<<"Cannot unset NSEC3 param for " << cmds[1] << endl;
1946 return 1;
1947 }
1948 return 0;
1949 }
1950 else if(cmds[0]=="export-zone-key") {
1951 if(cmds.size() < 3) {
1952 cerr<<"Syntax: pdnsutil export-zone-key ZONE KEY-ID"<<endl;
1953 return 0;
1954 }
1955
1956 string zone=cmds[1];
1957 unsigned int id=atoi(cmds[2].c_str());
1958 DNSSECPrivateKey dpk=dk.getKeyById(DNSName(zone), id);
1959 cout << dpk.getKey()->convertToISC() <<endl;
1960 }
1961 else if(cmds[0]=="increase-serial") {
1962 if (cmds.size() < 2) {
1963 cerr<<"Syntax: pdnsutil increase-serial ZONE"<<endl;
1964 return 0;
1965 }
1966 return increaseSerial(DNSName(cmds[1]), dk);
1967 }
1968 else if(cmds[0]=="import-zone-key-pem") {
1969 if(cmds.size() < 4) {
1970 cerr<<"Syntax: pdnsutil import-zone-key-pem ZONE FILE ALGORITHM {ksk|zsk}"<<endl;
1971 exit(1);
1972 }
1973 string zone=cmds[1];
1974 string fname=cmds[2];
1975 string line;
1976 ifstream ifs(fname.c_str());
1977 string tmp, interim, raw;
1978 while(getline(ifs, line)) {
1979 if(line[0]=='-')
1980 continue;
1981 trim(line);
1982 interim += line;
1983 }
1984 B64Decode(interim, raw);
1985 DNSSECPrivateKey dpk;
1986 DNSKEYRecordContent drc;
1987 shared_ptr<DNSCryptoKeyEngine> key(DNSCryptoKeyEngine::makeFromPEMString(drc, raw));
1988 dpk.setKey(key);
1989
1990 dpk.d_algorithm = atoi(cmds[3].c_str());
1991
1992 if(dpk.d_algorithm == 7)
1993 dpk.d_algorithm = 5;
1994
1995 cerr<<(int)dpk.d_algorithm<<endl;
1996
1997 if(cmds.size() > 4) {
1998 if(pdns_iequals(cmds[4], "ZSK"))
1999 dpk.d_flags = 256;
2000 else if(pdns_iequals(cmds[4], "KSK"))
2001 dpk.d_flags = 257;
2002 else {
2003 cerr<<"Unknown key flag '"<<cmds[4]<<"'"<<endl;
2004 exit(1);
2005 }
2006 }
2007 else
2008 dpk.d_flags = 257; // ksk
2009
2010 if(!dk.addKey(DNSName(zone), dpk)) {
2011 cerr<<"Adding key failed, perhaps DNSSEC not enabled in configuration?"<<endl;
2012 exit(1);
2013 }
2014
2015 }
2016 else if(cmds[0]=="import-zone-key") {
2017 if(cmds.size() < 3) {
2018 cerr<<"Syntax: pdnsutil import-zone-key ZONE FILE [ksk|zsk] [active|passive]"<<endl;
2019 exit(1);
2020 }
2021 string zone=cmds[1];
2022 string fname=cmds[2];
2023 DNSSECPrivateKey dpk;
2024 DNSKEYRecordContent drc;
2025 shared_ptr<DNSCryptoKeyEngine> key(DNSCryptoKeyEngine::makeFromISCFile(drc, fname.c_str()));
2026 dpk.setKey(key);
2027 dpk.d_algorithm = drc.d_algorithm;
2028
2029 if(dpk.d_algorithm == 7)
2030 dpk.d_algorithm = 5;
2031
2032 dpk.d_flags = 257;
2033 bool active=true;
2034
2035 for(unsigned int n = 3; n < cmds.size(); ++n) {
2036 if(pdns_iequals(cmds[n], "ZSK"))
2037 dpk.d_flags = 256;
2038 else if(pdns_iequals(cmds[n], "KSK"))
2039 dpk.d_flags = 257;
2040 else if(pdns_iequals(cmds[n], "active"))
2041 active = 1;
2042 else if(pdns_iequals(cmds[n], "passive") || pdns_iequals(cmds[n], "inactive"))
2043 active = 0;
2044 else {
2045 cerr<<"Unknown key flag '"<<cmds[n]<<"'"<<endl;
2046 exit(1);
2047 }
2048 }
2049 if(!dk.addKey(DNSName(zone), dpk, active)) {
2050 cerr<<"Adding key failed, perhaps DNSSEC not enabled in configuration?"<<endl;
2051 exit(1);
2052 }
2053 }
2054 else if(cmds[0]=="export-zone-dnskey") {
2055 if(cmds.size() < 3) {
2056 cerr<<"Syntax: pdnsutil export-zone-dnskey ZONE KEY-ID"<<endl;
2057 exit(1);
2058 }
2059
2060 DNSName zone(cmds[1]);
2061 unsigned int id=atoi(cmds[2].c_str());
2062 DNSSECPrivateKey dpk=dk.getKeyById(zone, id);
2063 cout << zone<<" IN DNSKEY "<<dpk.getDNSKEY().getZoneRepresentation() <<endl;
2064 if(dpk.d_flags == 257) {
2065 cout << zone << " IN DS "<<makeDSFromDNSKey(zone, dpk.getDNSKEY(), 1).getZoneRepresentation() << endl;
2066 cout << zone << " IN DS "<<makeDSFromDNSKey(zone, dpk.getDNSKEY(), 2).getZoneRepresentation() << endl;
2067 }
2068 }
2069 else if(cmds[0] == "generate-zone-key") {
2070 if(cmds.size() < 2 ) {
2071 cerr << "Syntax: pdnsutil generate-zone-key zsk|ksk [rsasha1|rsasha256|rsasha512|gost|ecdsa256|ecdsa384] [bits]"<<endl;
2072 return 0;
2073 }
2074 // need to get algorithm, bits & ksk or zsk from commandline
2075 bool keyOrZone=false;
2076 int tmp_algo=0;
2077 int bits=0;
2078 int algorithm=8;
2079 for(unsigned int n=1; n < cmds.size(); ++n) {
2080 if(pdns_iequals(cmds[n], "zsk"))
2081 keyOrZone = false;
2082 else if(pdns_iequals(cmds[n], "ksk"))
2083 keyOrZone = true;
2084 else if((tmp_algo = shorthand2algorithm(cmds[n]))>0) {
2085 algorithm = tmp_algo;
2086 } else if(atoi(cmds[n].c_str()))
2087 bits = atoi(cmds[n].c_str());
2088 else {
2089 cerr<<"Unknown algorithm, key flag or size '"<<cmds[n]<<"'"<<endl;
2090 return 0;
2091 }
2092 }
2093 cerr<<"Generating a " << (keyOrZone ? "KSK" : "ZSK")<<" with algorithm = "<<algorithm<<endl;
2094 if(bits)
2095 cerr<<"Requesting specific key size of "<<bits<<" bits"<<endl;
2096
2097 DNSSECPrivateKey dspk;
2098 shared_ptr<DNSCryptoKeyEngine> dpk(DNSCryptoKeyEngine::make(algorithm)); // defaults to RSA for now, could be smart w/algorithm! XXX FIXME
2099 if(!bits) {
2100 if(algorithm <= 10)
2101 bits = keyOrZone ? 2048 : 1024;
2102 else {
2103 if(algorithm == 12 || algorithm == 13 || algorithm == 250) // ECDSA, GOST, ED25519
2104 bits = 256;
2105 else if(algorithm == 14)
2106 bits = 384;
2107 else {
2108 throw runtime_error("Can't guess key size for algorithm "+lexical_cast<string>(algorithm));
2109 }
2110 }
2111 }
2112 dpk->create(bits);
2113 dspk.setKey(dpk);
2114 dspk.d_algorithm = algorithm;
2115 dspk.d_flags = keyOrZone ? 257 : 256;
2116
2117 // print key to stdout
2118 cout << "Flags: " << dspk.d_flags << endl <<
2119 dspk.getKey()->convertToISC() << endl;
2120 } else if (cmds[0]=="generate-tsig-key") {
2121 if (cmds.size() < 3) {
2122 cerr << "Syntax: " << cmds[0] << " name (hmac-md5|hmac-sha1|hmac-sha224|hmac-sha256|hmac-sha384|hmac-sha512)" << endl;
2123 return 0;
2124 }
2125 DNSName name(cmds[1]);
2126 string algo = cmds[2];
2127 string key;
2128 char tmpkey[64];
2129
2130 size_t klen = 0;
2131 if (algo == "hmac-md5") {
2132 klen = 32;
2133 } else if (algo == "hmac-sha1") {
2134 klen = 32;
2135 } else if (algo == "hmac-sha224") {
2136 klen = 32;
2137 } else if (algo == "hmac-sha256") {
2138 klen = 64;
2139 } else if (algo == "hmac-sha384") {
2140 klen = 64;
2141 } else if (algo == "hmac-sha512") {
2142 klen = 64;
2143 } else {
2144 cerr << "Cannot generate key for " << algo << endl;
2145 return 1;
2146 }
2147
2148 cerr << "Generating new key with " << klen << " bytes (this can take a while)" << endl;
2149 seedRandom(::arg()["entropy-source"]);
2150 for(size_t i = 0; i < klen; i+=4) {
2151 *(unsigned int*)(tmpkey+i) = dns_random(0xffffffff);
2152 }
2153 key = Base64Encode(std::string(tmpkey, klen));
2154
2155 UeberBackend B("default");
2156 if (B.setTSIGKey(name, DNSName(algo), key)) { // you are feeling bored, put up DNSName(algo) up earlier
2157 cout << "Create new TSIG key " << name << " " << algo << " " << key << endl;
2158 } else {
2159 cout << "Failure storing new TSIG key " << name << " " << algo << " " << key << endl;
2160 return 1;
2161 }
2162 return 0;
2163 } else if (cmds[0]=="import-tsig-key") {
2164 if (cmds.size() < 4) {
2165 cerr << "Syntax: " << cmds[0] << " name algorithm key" << endl;
2166 return 0;
2167 }
2168 DNSName name(cmds[1]);
2169 string algo = cmds[2];
2170 string key = cmds[3];
2171
2172 UeberBackend B("default");
2173 if (B.setTSIGKey(name, DNSName(algo), key)) {
2174 cout << "Imported TSIG key " << name << " " << algo << endl;
2175 } else {
2176 cout << "Failure importing TSIG key " << name << " " << algo << endl;
2177 return 1;
2178 }
2179 return 0;
2180 } else if (cmds[0]=="delete-tsig-key") {
2181 if (cmds.size() < 2) {
2182 cerr << "Syntax: " << cmds[0] << " name" << endl;
2183 return 0;
2184 }
2185 DNSName name(cmds[1]);
2186
2187 UeberBackend B("default");
2188 if (B.deleteTSIGKey(name)) {
2189 cout << "Deleted TSIG key " << name << endl;
2190 } else {
2191 cout << "Failure deleting TSIG key " << name << endl;
2192 return 1;
2193 }
2194 return 0;
2195 } else if (cmds[0]=="list-tsig-keys") {
2196 std::vector<struct TSIGKey> keys;
2197 UeberBackend B("default");
2198 if (B.getTSIGKeys(keys)) {
2199 for(const struct TSIGKey &key : keys) {
2200 cout << key.name.toString() << " " << key.algorithm.toString() << " " << key.key << endl;
2201 }
2202 }
2203 return 0;
2204 } else if (cmds[0]=="activate-tsig-key") {
2205 string metaKey;
2206 if (cmds.size() < 4) {
2207 cerr << "Syntax: " << cmds[0] << " ZONE NAME {master|slave}" << endl;
2208 return 0;
2209 }
2210 DNSName zname(cmds[1]);
2211 string name = cmds[2];
2212 if (cmds[3] == "master")
2213 metaKey = "TSIG-ALLOW-AXFR";
2214 else if (cmds[3] == "slave")
2215 metaKey = "AXFR-MASTER-TSIG";
2216 else {
2217 cerr << "Invalid parameter '" << cmds[3] << "', expected master or slave" << endl;
2218 return 1;
2219 }
2220 UeberBackend B("default");
2221 std::vector<std::string> meta;
2222 if (!B.getDomainMetadata(zname, metaKey, meta)) {
2223 cout << "Failure enabling TSIG key " << name << " for " << zname << endl;
2224 return 1;
2225 }
2226 bool found = false;
2227 for(std::string tmpname : meta) {
2228 if (tmpname == name) { found = true; break; }
2229 }
2230 if (!found) meta.push_back(name);
2231 if (B.setDomainMetadata(zname, metaKey, meta)) {
2232 cout << "Enabled TSIG key " << name << " for " << zname << endl;
2233 } else {
2234 cout << "Failure enabling TSIG key " << name << " for " << zname << endl;
2235 return 1;
2236 }
2237 return 0;
2238 } else if (cmds[0]=="deactivate-tsig-key") {
2239 string metaKey;
2240 if (cmds.size() < 4) {
2241 cerr << "Syntax: " << cmds[0] << " ZONE NAME {master|slave}" << endl;
2242 return 0;
2243 }
2244 DNSName zname(cmds[1]);
2245 string name = cmds[2];
2246 if (cmds[3] == "master")
2247 metaKey = "TSIG-ALLOW-AXFR";
2248 else if (cmds[3] == "slave")
2249 metaKey = "AXFR-MASTER-TSIG";
2250 else {
2251 cerr << "Invalid parameter '" << cmds[3] << "', expected master or slave" << endl;
2252 return 1;
2253 }
2254
2255 UeberBackend B("default");
2256 std::vector<std::string> meta;
2257 if (!B.getDomainMetadata(zname, metaKey, meta)) {
2258 cout << "Failure disabling TSIG key " << name << " for " << zname << endl;
2259 return 1;
2260 }
2261 std::vector<std::string>::iterator iter = meta.begin();
2262 for(;iter != meta.end(); iter++) if (*iter == name) break;
2263 if (iter != meta.end()) meta.erase(iter);
2264 if (B.setDomainMetadata(zname, metaKey, meta)) {
2265 cout << "Disabled TSIG key " << name << " for " << zname << endl;
2266 } else {
2267 cout << "Failure disabling TSIG key " << name << " for " << zname << endl;
2268 return 1;
2269 }
2270 return 0;
2271 } else if (cmds[0]=="get-meta") {
2272 UeberBackend B("default");
2273 if (cmds.size() < 2) {
2274 cerr << "Syntax: " << cmds[0] << " zone [kind kind ..]" << endl;
2275 return 1;
2276 }
2277 DNSName zone(cmds[1]);
2278 vector<string> keys;
2279 DomainInfo di;
2280
2281 if (!B.getDomainInfo(zone, di)) {
2282 cerr << "Invalid zone '" << zone << "'" << endl;
2283 return 1;
2284 }
2285
2286 if (cmds.size() > 2) {
2287 keys.assign(cmds.begin() + 2, cmds.end());
2288 std::cout << "Metadata for '" << zone << "'" << endl;
2289 for(const string kind : keys) {
2290 vector<string> meta;
2291 meta.clear();
2292 if (B.getDomainMetadata(zone, kind, meta)) {
2293 cout << kind << " = " << boost::join(meta, ", ") << endl;
2294 }
2295 }
2296 } else {
2297 std::map<std::string, std::vector<std::string> > meta;
2298 std::cout << "Metadata for '" << zone << "'" << endl;
2299 B.getAllDomainMetadata(zone, meta);
2300 for(std::map<std::string, std::vector<std::string> >::const_iterator each_meta = meta.begin(); each_meta != meta.end(); each_meta++) {
2301 cout << each_meta->first << " = " << boost::join(each_meta->second, ", ") << endl;
2302 }
2303 }
2304 return 0;
2305
2306 } else if (cmds[0]=="set-meta") {
2307 UeberBackend B("default");
2308 if (cmds.size() < 3) {
2309 cerr << "Syntax: " << cmds[0] << " zone kind [value value ..]" << endl;
2310 return 1;
2311 }
2312 DNSName zone(cmds[1]);
2313 string kind = cmds[2];
2314 vector<string> meta(cmds.begin() + 3, cmds.end());
2315
2316 if (!B.setDomainMetadata(zone, kind, meta)) {
2317 cerr << "Unable to set meta for '" << zone << "'" << endl;
2318 return 1;
2319 } else {
2320 cout << "Set '" << zone.toStringNoDot() << "' meta " << kind << " = " << boost::join(meta, ", ") << endl;
2321 }
2322 } else if (cmds[0]=="hsm") {
2323 #ifdef HAVE_P11KIT1
2324 UeberBackend B("default");
2325 if (cmds[1] == "assign") {
2326 DNSCryptoKeyEngine::storvector_t storvect;
2327 DomainInfo di;
2328 std::vector<DNSBackend::KeyData> keys;
2329
2330 if (cmds.size() < 9) {
2331 std::cout << "Usage: pdnsutil hsm assign ZONE ALGORITHM {ksk|zsk} MODULE TOKEN PIN LABEL" << std::endl;
2332 return 1;
2333 }
2334
2335 DNSName zone(cmds[2]);
2336
2337 // verify zone
2338 if (!B.getDomainInfo(zone, di)) {
2339 cerr << "Unable to assign module to unknown zone '" << zone << "'" << std::endl;
2340 return 1;
2341 }
2342
2343 int algorithm = shorthand2algorithm(cmds[3]);
2344 if (algorithm<0) {
2345 cerr << "Unable to use unknown algorithm '" << cmds[3] << "'" << std::endl;
2346 return 1;
2347 }
2348
2349 int id;
2350 bool keyOrZone = (cmds[4] == "ksk" ? true : false);
2351 string module = cmds[5];
2352 string slot = cmds[6];
2353 string pin = cmds[7];
2354 string label = cmds[8];
2355
2356 std::ostringstream iscString;
2357 iscString << "Private-key-format: v1.2" << std::endl <<
2358 "Algorithm: " << algorithm << std::endl <<
2359 "Engine: " << module << std::endl <<
2360 "Slot: " << slot << std::endl <<
2361 "PIN: " << pin << std::endl <<
2362 "Label: " << label << std::endl;
2363
2364 DNSKEYRecordContent drc;
2365 DNSSECPrivateKey dpk;
2366 dpk.d_flags = (keyOrZone ? 257 : 256);
2367 dpk.setKey(shared_ptr<DNSCryptoKeyEngine>(DNSCryptoKeyEngine::makeFromISCString(drc, iscString.str())));
2368
2369 // make sure this key isn't being reused.
2370 B.getDomainKeys(zone, 0, keys);
2371 id = -1;
2372
2373 for(DNSBackend::KeyData& kd : keys) {
2374 if (kd.content == iscString.str()) {
2375 // it's this one, I guess...
2376 id = kd.id;
2377 break;
2378 }
2379 }
2380
2381 if (id > -1) {
2382 cerr << "You have already assigned this key with ID=" << id << std::endl;
2383 return 1;
2384 }
2385
2386 if (!(id = dk.addKey(zone, dpk))) {
2387 cerr << "Unable to assign module slot to zone" << std::endl;
2388 return 1;
2389 }
2390
2391 // figure out key id.
2392
2393 B.getDomainKeys(zone, 0, keys);
2394
2395 // validate which one got the key...
2396 for(DNSBackend::KeyData& kd : keys) {
2397 if (kd.content == iscString.str()) {
2398 // it's this one, I guess...
2399 id = kd.id;
2400 break;
2401 }
2402 }
2403
2404 cerr << "Module " << module << " slot " << slot << " assigned to " << zone << " with key id " << id << endl;
2405
2406 return 0;
2407 } else if (cmds[1] == "create-key") {
2408
2409 if (cmds.size() < 4) {
2410 cerr << "Usage: pdnsutil hsm create-key ZONE KEY-ID [BITS]" << endl;
2411 return 1;
2412 }
2413 DomainInfo di;
2414 DNSName zone(cmds[2]);
2415 unsigned int id;
2416 int bits = 2048;
2417 // verify zone
2418 if (!B.getDomainInfo(zone, di)) {
2419 cerr << "Unable to create key for unknown zone '" << zone << "'" << std::endl;
2420 return 1;
2421 }
2422
2423 id = boost::lexical_cast<unsigned int>(cmds[3]);
2424 std::vector<DNSBackend::KeyData> keys;
2425 if (!B.getDomainKeys(zone, 0, keys)) {
2426 cerr << "No keys found for zone " << zone << std::endl;
2427 return 1;
2428 }
2429
2430 DNSCryptoKeyEngine *dke = NULL;
2431 // lookup correct key
2432 for(DNSBackend::KeyData &kd : keys) {
2433 if (kd.id == id) {
2434 // found our key.
2435 DNSKEYRecordContent dkrc;
2436 dke = DNSCryptoKeyEngine::makeFromISCString(dkrc, kd.content);
2437 }
2438 }
2439
2440 if (!dke) {
2441 cerr << "Could not find key with ID " << id << endl;
2442 return 1;
2443 }
2444 if (cmds.size() > 4) {
2445 bits = boost::lexical_cast<int>(cmds[4]);
2446 }
2447 if (bits < 1) {
2448 cerr << "Invalid bit size " << bits << "given, must be positive integer";
2449 return 1;
2450 }
2451 try {
2452 dke->create(bits);
2453 } catch (PDNSException& e) {
2454 cerr << e.reason << endl;
2455 return 1;
2456 }
2457
2458 cerr << "Key of size " << bits << " created" << std::endl;
2459 return 0;
2460 }
2461 #else
2462 cerr<<"PKCS#11 support not enabled"<<endl;
2463 return 1;
2464 #endif
2465 } else if (cmds[0] == "b2b-migrate") {
2466 if (cmds.size() < 3) {
2467 cerr<<"Usage: b2b-migrate OLD NEW"<<endl;
2468 return 1;
2469 }
2470
2471 DNSBackend *src,*tgt;
2472 src = tgt = NULL;
2473
2474 for(DNSBackend *b : BackendMakers().all()) {
2475 if (b->getPrefix() == cmds[1]) src = b;
2476 if (b->getPrefix() == cmds[2]) tgt = b;
2477 }
2478 if (!src) {
2479 cerr<<"Unknown source backend '"<<cmds[1]<<"'"<<endl;
2480 return 1;
2481 }
2482 if (!tgt) {
2483 cerr<<"Unknown target backend '"<<cmds[2]<<"'"<<endl;
2484 return 1;
2485 }
2486
2487 cout<<"Moving zone(s) from "<<src->getPrefix()<<" to "<<tgt->getPrefix()<<endl;
2488
2489 vector<DomainInfo> domains;
2490
2491 tgt->getAllDomains(&domains, true);
2492 if (domains.size()>0)
2493 throw PDNSException("Target backend has domain(s), please clean it first");
2494
2495 src->getAllDomains(&domains, true);
2496 // iterate zones
2497 for(const DomainInfo& di: domains) {
2498 size_t nr,nc,nm,nk;
2499 DNSResourceRecord rr;
2500 cout<<"Processing '"<<di.zone.toString()<<"'"<<endl;
2501 // create zone
2502 if (!tgt->createDomain(di.zone)) throw PDNSException("Failed to create zone");
2503 tgt->setKind(di.zone, di.kind);
2504 tgt->setAccount(di.zone,di.account);
2505 for(const string& master: di.masters) {
2506 tgt->setMaster(di.zone, master);
2507 }
2508 // move records
2509 if (!src->list(di.zone, di.id, true)) throw PDNSException("Failed to list records");
2510 nr=0;
2511 while(src->get(rr)) {
2512 if (!tgt->feedRecord(rr)) throw PDNSException("Failed to feed record");
2513 nr++;
2514 }
2515 // move comments
2516 nc=0;
2517 if (src->listComments(di.id)) {
2518 Comment c;
2519 while(src->getComment(c)) {
2520 tgt->feedComment(c);
2521 nc++;
2522 }
2523 }
2524 // move metadata
2525 nm=0;
2526 std::map<std::string, std::vector<std::string> > meta;
2527 if (src->getAllDomainMetadata(di.zone, meta)) {
2528 std::map<std::string, std::vector<std::string> >::iterator i;
2529 for(i=meta.begin(); i != meta.end(); i++) {
2530 if (!tgt->setDomainMetadata(di.zone, i->first, i->second)) throw PDNSException("Failed to feed domain metadata");
2531 nm++;
2532 }
2533 }
2534 // move keys
2535 nk=0;
2536 std::vector<DNSBackend::KeyData> keys;
2537 if (src->getDomainKeys(di.zone, 0, keys)) {
2538 for(const DNSBackend::KeyData& k: keys) {
2539 tgt->addDomainKey(di.zone, k);
2540 nk++;
2541 }
2542 }
2543 cout<<"Moved "<<nr<<" record(s), "<<nc<<" comment(s), "<<nm<<" metadata(s) and "<<nk<<" cryptokey(s)"<<endl;
2544 }
2545
2546 int ntk=0;
2547 // move tsig keys
2548 std::vector<struct TSIGKey> tkeys;
2549 if (src->getTSIGKeys(tkeys)) {
2550 for(const struct TSIGKey& tk: tkeys) {
2551 if (!tgt->setTSIGKey(tk.name, tk.algorithm, tk.key)) throw PDNSException("Failed to feed TSIG key");
2552 ntk++;
2553 }
2554 }
2555 cout<<"Moved "<<ntk<<" TSIG key(s)"<<endl;
2556
2557 cout<<"Remember to drop the old backend and run rectify-all-zones"<<endl;
2558
2559 return 0;
2560 } else if (cmds[0] == "backend-cmd") {
2561 if (cmds.size() < 3) {
2562 cerr<<"Usage: backend-cmd BACKEND CMD [CMD..]"<<endl;
2563 return 1;
2564 }
2565
2566 DNSBackend *db;
2567 db = NULL;
2568
2569 for(DNSBackend *b : BackendMakers().all()) {
2570 if (b->getPrefix() == cmds[1]) db = b;
2571 }
2572
2573 if (!db) {
2574 cerr<<"Unknown backend '"<<cmds[1]<<"'"<<endl;
2575 return 1;
2576 }
2577
2578 for(auto i=next(begin(cmds),2); i != end(cmds); ++i) {
2579 cerr<<"== "<<*i<<endl;
2580 cout<<db->directBackendCmd(*i);
2581 }
2582
2583 return 0;
2584 } else {
2585 cerr<<"Unknown command '"<<cmds[0] <<"'"<< endl;
2586 return 1;
2587 }
2588 return 0;
2589 }
2590 catch(PDNSException& ae) {
2591 cerr<<"Error: "<<ae.reason<<endl;
2592 return 1;
2593 }
2594 catch(std::exception& e) {
2595 cerr<<"Error: "<<e.what()<<endl;
2596 return 1;
2597 }
2598 catch(...)
2599 {
2600 cerr<<"Caught an unknown exception"<<endl;
2601 return 1;
2602 }