blob: eed7ad045db1d78d130e6a265af08f1c09490bb4 [file] [log] [blame]
Yumin Xiaf853ad72016-11-03 21:14:07 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
Junxiao Shi81e98762022-01-11 18:17:24 +00003 * Copyright (c) 2014-2022, Regents of the University of California.
Yumin Xiaf853ad72016-11-03 21:14:07 -07004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "rrset-factory.hpp"
21#include "mgmt/management-tool.hpp"
Yumin Xia2c509c22017-02-09 14:37:36 -080022#include "util/cert-helper.hpp"
23
24#include <ndn-cxx/security/signing-helpers.hpp>
Yumin Xiaf853ad72016-11-03 21:14:07 -070025
26#include <boost/algorithm/string/join.hpp>
27
28namespace ndn {
29namespace ndns {
30
Yumin Xiab87b9d92016-11-14 23:41:25 -080031RrsetFactory::RrsetFactory(const boost::filesystem::path& dbFile,
Yumin Xiaf853ad72016-11-03 21:14:07 -070032 const Name& zoneName,
33 KeyChain& keyChain,
34 const Name& inputDskCertName)
35 : m_keyChain(keyChain)
Yumin Xiab87b9d92016-11-14 23:41:25 -080036 , m_dbFile(dbFile.string())
Yumin Xiaf853ad72016-11-03 21:14:07 -070037 , m_zone(zoneName)
38 , m_dskCertName(inputDskCertName)
39 , m_checked(false)
40{
Yumin Xia918343d2017-03-17 19:04:55 -070041 Name identityName = Name(zoneName).append(label::NDNS_ITERATIVE_QUERY);
Yumin Xiaf853ad72016-11-03 21:14:07 -070042 if (m_dskCertName == DEFAULT_CERT) {
Yumin Xia2c509c22017-02-09 14:37:36 -080043 m_dskName = CertHelper::getDefaultKeyNameOfIdentity(m_keyChain, identityName);
44 m_dskCertName = CertHelper::getDefaultCertificateNameOfIdentity(m_keyChain, identityName);
Yumin Xiaf853ad72016-11-03 21:14:07 -070045 }
46}
47
48void
49RrsetFactory::checkZoneKey()
50{
51 onlyCheckZone();
Yumin Xia918343d2017-03-17 19:04:55 -070052 Name zoneIdentityName = Name(m_zone.getName()).append(label::NDNS_ITERATIVE_QUERY);
Yumin Xiaf853ad72016-11-03 21:14:07 -070053 if (m_dskCertName != DEFAULT_CERT &&
Yumin Xia2c509c22017-02-09 14:37:36 -080054 !matchCertificate(m_dskCertName, zoneIdentityName)) {
Davide Pesavento948c50c2020-12-26 21:30:45 -050055 NDN_THROW(Error("Cannot verify certificate"));
Yumin Xiaf853ad72016-11-03 21:14:07 -070056 }
57}
58
59void
60RrsetFactory::onlyCheckZone()
61{
62 if (m_checked) {
Davide Pesavento98026122022-03-14 22:00:03 -040063 return;
Yumin Xiaf853ad72016-11-03 21:14:07 -070064 }
65 m_checked = true;
66
67 DbMgr dbMgr(m_dbFile);
68 const Name& zoneName = m_zone.getName();
69 if (!dbMgr.find(m_zone)) {
Davide Pesavento948c50c2020-12-26 21:30:45 -050070 NDN_THROW(Error(zoneName.toUri() + " is not presented in the NDNS db"));
Yumin Xiaf853ad72016-11-03 21:14:07 -070071 }
72}
73
Yumin Xiaf853ad72016-11-03 21:14:07 -070074std::pair<Rrset, Name>
75RrsetFactory::generateBaseRrset(const Name& label,
76 const name::Component& type,
Yumin Xia55a7cc42017-05-14 18:43:34 -070077 uint64_t version,
Yumin Xiaf853ad72016-11-03 21:14:07 -070078 const time::seconds& ttl)
79{
80 Rrset rrset(&m_zone);
81
82 rrset.setLabel(label);
83 rrset.setType(type);
84 rrset.setTtl(ttl);
85
Yumin Xiaf853ad72016-11-03 21:14:07 -070086 Name name;
87 name.append(m_zone.getName())
Yumin Xia918343d2017-03-17 19:04:55 -070088 .append(label::NDNS_ITERATIVE_QUERY)
Yumin Xiaf853ad72016-11-03 21:14:07 -070089 .append(label)
90 .append(type);
91
92 if (version != VERSION_USE_UNIX_TIMESTAMP) {
93 name.append(name::Component::fromVersion(version));
Yumin Xia2c509c22017-02-09 14:37:36 -080094 }
95 else {
Yumin Xiaf853ad72016-11-03 21:14:07 -070096 name.appendVersion();
97 }
98
99 rrset.setVersion(name.get(-1));
100
101 return std::make_pair(rrset, name);
102}
103
104bool
105RrsetFactory::matchCertificate(const Name& certName, const Name& identity)
106{
Yumin Xia2c509c22017-02-09 14:37:36 -0800107 try {
108 CertHelper::getCertificate(m_keyChain, identity, certName);
109 return true;
Davide Pesavento4a315b32018-11-24 14:32:19 -0500110 } catch (const ndn::security::Pib::Error&) {
Yumin Xiaf853ad72016-11-03 21:14:07 -0700111 return false;
112 }
Yumin Xiaf853ad72016-11-03 21:14:07 -0700113}
114
115Rrset
116RrsetFactory::generateNsRrset(const Name& label,
Yumin Xia55a7cc42017-05-14 18:43:34 -0700117 uint64_t version,
Yumin Xiaf853ad72016-11-03 21:14:07 -0700118 time::seconds ttl,
Junxiao Shi81e98762022-01-11 18:17:24 +0000119 std::vector<Name> delegations)
Yumin Xiaf853ad72016-11-03 21:14:07 -0700120{
121 if (!m_checked) {
Davide Pesavento948c50c2020-12-26 21:30:45 -0500122 NDN_THROW(Error("You have to call checkZoneKey before call generate functions"));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700123 }
124
125 if (ttl == DEFAULT_RR_TTL)
126 ttl = m_zone.getTtl();
127
Yumin Xiad4e8ce52017-03-17 19:56:52 -0700128 std::pair<Rrset, Name> rrsetAndName = generateBaseRrset(label, label::NS_RR_TYPE, version, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700129 const Name& name = rrsetAndName.second;
130 Rrset& rrset = rrsetAndName.first;
131
132 Link link(name);
Junxiao Shi81e98762022-01-11 18:17:24 +0000133 link.setDelegationList(std::move(delegations));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700134
Yumin Xiaa484ba72016-11-10 20:40:12 -0800135 setContentType(link, NDNS_LINK, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700136 sign(link);
137 rrset.setData(link.wireEncode());
138
139 return rrset;
140}
141
142Rrset
143RrsetFactory::generateTxtRrset(const Name& label,
Yumin Xia55a7cc42017-05-14 18:43:34 -0700144 uint64_t version,
Yumin Xiaf853ad72016-11-03 21:14:07 -0700145 time::seconds ttl,
146 const std::vector<std::string>& strings)
147{
148 if (!m_checked) {
Davide Pesavento948c50c2020-12-26 21:30:45 -0500149 NDN_THROW(Error("You have to call checkZoneKey before call generate functions"));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700150 }
151
152 if (ttl == DEFAULT_RR_TTL)
153 ttl = m_zone.getTtl();
154
155 Name name;
156 Rrset rrset;
Yumin Xiad4e8ce52017-03-17 19:56:52 -0700157 std::tie(rrset, name) = generateBaseRrset(label, label::TXT_RR_TYPE, version, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700158
159 std::vector<Block> rrs;
Davide Pesavento98026122022-03-14 22:00:03 -0400160 rrs.reserve(strings.size());
Yumin Xiaf853ad72016-11-03 21:14:07 -0700161 for (const auto& item : strings) {
Davide Pesavento98026122022-03-14 22:00:03 -0400162 rrs.push_back(makeBinaryBlock(ndns::tlv::RrData, item.data(), item.size()));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700163 }
164
165 Data data(name);
166 data.setContent(wireEncode(rrs));
167
Yumin Xiaa484ba72016-11-10 20:40:12 -0800168 setContentType(data, NDNS_RESP, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700169 sign(data);
170 rrset.setData(data.wireEncode());
171
172 return rrset;
173}
174
175Rrset
176RrsetFactory::generateCertRrset(const Name& label,
Yumin Xia55a7cc42017-05-14 18:43:34 -0700177 uint64_t version,
Yumin Xiaf853ad72016-11-03 21:14:07 -0700178 time::seconds ttl,
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400179 const ndn::security::Certificate& cert)
Yumin Xiaf853ad72016-11-03 21:14:07 -0700180{
181 if (!m_checked) {
Davide Pesavento948c50c2020-12-26 21:30:45 -0500182 NDN_THROW(Error("You have to call checkZoneKey before call generate functions"));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700183 }
184
185 if (ttl == DEFAULT_RR_TTL)
186 ttl = m_zone.getTtl();
187
188 Name name;
189 Rrset rrset;
Yumin Xiad4e8ce52017-03-17 19:56:52 -0700190 std::tie(rrset, name) = generateBaseRrset(label, label::APPCERT_RR_TYPE, version, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700191
192 Data data(name);
193 data.setContent(cert.wireEncode());
194
Yumin Xia3c6b1fd2016-12-11 19:08:47 -0800195 setContentType(data, NDNS_KEY, ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700196 sign(data);
197 rrset.setData(data.wireEncode());
198
199 return rrset;
200}
201
Yumin Xiaacd21332016-11-28 22:54:48 -0800202Rrset
203RrsetFactory::generateAuthRrset(const Name& label,
Yumin Xia55a7cc42017-05-14 18:43:34 -0700204 uint64_t version,
Yumin Xiaacd21332016-11-28 22:54:48 -0800205 time::seconds ttl)
206{
207 if (!m_checked) {
Davide Pesavento948c50c2020-12-26 21:30:45 -0500208 NDN_THROW(Error("You have to call checkZoneKey before call generate functions"));
Yumin Xiaacd21332016-11-28 22:54:48 -0800209 }
210
211 if (ttl == DEFAULT_RR_TTL)
212 ttl = m_zone.getTtl();
213
214 Name name;
215 Rrset rrset;
Yumin Xiad4e8ce52017-03-17 19:56:52 -0700216 std::tie(rrset, name) = generateBaseRrset(label, label::NS_RR_TYPE, version, ttl);
Yumin Xiaacd21332016-11-28 22:54:48 -0800217
218 Data data(name);
219
220 setContentType(data, NDNS_AUTH, ttl);
221 sign(data);
222 rrset.setData(data.wireEncode());
223
224 return rrset;
225}
Yumin Xiaf853ad72016-11-03 21:14:07 -0700226
Yumin Xia55a7cc42017-05-14 18:43:34 -0700227Rrset
228RrsetFactory::generateDoeRrset(const Name& label,
229 uint64_t version,
230 time::seconds ttl,
231 const Name& lowerLabel,
232 const Name& upperLabel)
233{
234 if (!m_checked) {
Davide Pesavento948c50c2020-12-26 21:30:45 -0500235 NDN_THROW(Error("You have to call checkZoneKey before call generate functions"));
Yumin Xia55a7cc42017-05-14 18:43:34 -0700236 }
237
238 if (ttl == DEFAULT_RR_TTL)
239 ttl = m_zone.getTtl();
240
241 Name name;
242 Rrset rrset;
243 std::tie(rrset, name) = generateBaseRrset(label, label::DOE_RR_TYPE, version, ttl);
244
245 std::vector<Block> range;
246 range.push_back(lowerLabel.wireEncode());
247 range.push_back(upperLabel.wireEncode());
248
249 Data data(name);
250 data.setContent(wireEncode(range));
251
252 setContentType(data, NDNS_DOE, ttl);
253 sign(data);
254 rrset.setData(data.wireEncode());
255
256 return rrset;
257}
258
259
Yumin Xiaf853ad72016-11-03 21:14:07 -0700260void
261RrsetFactory::sign(Data& data)
262{
Yumin Xia2c509c22017-02-09 14:37:36 -0800263 m_keyChain.sign(data, signingByCertificate(m_dskCertName));
Yumin Xiaf853ad72016-11-03 21:14:07 -0700264}
265
266void
Yumin Xiaa484ba72016-11-10 20:40:12 -0800267RrsetFactory::setContentType(Data& data, NdnsContentType contentType,
268 const time::seconds& ttl)
Yumin Xiaf853ad72016-11-03 21:14:07 -0700269{
Yumin Xiaa484ba72016-11-10 20:40:12 -0800270 data.setContentType(contentType);
271 data.setFreshnessPeriod(ttl);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700272}
273
274template<encoding::Tag TAG>
Davide Pesavento98026122022-03-14 22:00:03 -0400275size_t
276RrsetFactory::wireEncode(EncodingImpl<TAG>& encoder, const std::vector<Block>& rrs) const
Yumin Xiaf853ad72016-11-03 21:14:07 -0700277{
278 // Content :: = CONTENT-TYPE TLV-LENGTH
279 // Block*
280
281 size_t totalLength = 0;
282 for (auto iter = rrs.rbegin(); iter != rrs.rend(); ++iter) {
Davide Pesavento98026122022-03-14 22:00:03 -0400283 totalLength += prependBlock(encoder, *iter);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700284 }
285
Davide Pesavento98026122022-03-14 22:00:03 -0400286 totalLength += encoder.prependVarNumber(totalLength);
287 totalLength += encoder.prependVarNumber(ndn::tlv::Content);
Yumin Xiaf853ad72016-11-03 21:14:07 -0700288 return totalLength;
289}
290
Davide Pesavento98026122022-03-14 22:00:03 -0400291Block
Yumin Xiaf853ad72016-11-03 21:14:07 -0700292RrsetFactory::wireEncode(const std::vector<Block>& rrs) const
293{
294 EncodingEstimator estimator;
295 size_t estimatedSize = wireEncode(estimator, rrs);
296 EncodingBuffer buffer(estimatedSize, 0);
297 wireEncode(buffer, rrs);
298 return buffer.block();
299}
300
301std::vector<std::string>
302RrsetFactory::wireDecodeTxt(const Block& wire)
303{
304 std::vector<std::string> txts;
305 wire.parse();
306
Yumin Xiaa484ba72016-11-10 20:40:12 -0800307 for (const auto& e : wire.elements()) {
Yumin Xiaf853ad72016-11-03 21:14:07 -0700308 txts.push_back(std::string(reinterpret_cast<const char*>(e.value()),
309 e.value_size()));
310 }
311
312 return txts;
313}
314
Yumin Xiaf853ad72016-11-03 21:14:07 -0700315} // namespace ndns
316} // namespace ndn