blob: 34c07740160315ef1fc5defcb97f5063b28bd97a [file] [log] [blame]
Yumin Xiafa2bce72017-04-09 16:20:25 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev08d18742018-03-15 16:31:28 -04002/*
Alexander Afanasyev60514ec2020-06-03 14:18:53 -04003 * Copyright (c) 2014-2020, Regents of the University of California.
Yumin Xiafa2bce72017-04-09 16:20:25 -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 "certificate-fetcher-ndns-cert.hpp"
21#include "clients/iterative-query-controller.hpp"
22#include "clients/response.hpp"
23#include "logger.hpp"
24
25#include <ndn-cxx/encoding/tlv.hpp>
26#include <ndn-cxx/ims/in-memory-storage-fifo.hpp>
27
28namespace ndn {
29namespace ndns {
30
Alexander Afanasyev60514ec2020-06-03 14:18:53 -040031using security::Certificate;
Yumin Xiafa2bce72017-04-09 16:20:25 -070032
Alexander Afanasyev08d18742018-03-15 16:31:28 -040033NDNS_LOG_INIT(CertificateFetcherNdnsCert);
Yumin Xiafa2bce72017-04-09 16:20:25 -070034
35CertificateFetcherNdnsCert::CertificateFetcherNdnsCert(Face& face,
36 size_t nsCacheSize,
37 size_t startComponentIndex)
38 : m_face(face)
39 , m_nsCache(make_unique<InMemoryStorageFifo>(nsCacheSize))
40 , m_startComponentIndex(startComponentIndex)
Davide Pesavento002bb422019-03-22 19:04:08 -040041{
42}
Yumin Xiafa2bce72017-04-09 16:20:25 -070043
44void
Alexander Afanasyev60514ec2020-06-03 14:18:53 -040045CertificateFetcherNdnsCert::doFetch(const shared_ptr<security::CertificateRequest>& certRequest,
46 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -070047 const ValidationContinuation& continueValidation)
48{
Davide Pesavento4a315b32018-11-24 14:32:19 -050049 const Name& key = certRequest->interest.getName();
Yumin Xiafa2bce72017-04-09 16:20:25 -070050 Name domain = calculateDomain(key);
51 if (domain.size() == m_startComponentIndex) {
52 // NS record does not exist, since the domain is actually globally routable
53 nsFailCallback("[skipped] zone name " + domain.toUri()
54 + " is globally routable because startComponentIndex="
55 + std::to_string(m_startComponentIndex),
56 certRequest, state, continueValidation);
Davide Pesavento002bb422019-03-22 19:04:08 -040057 return;
Yumin Xiafa2bce72017-04-09 16:20:25 -070058 }
59
Davide Pesavento948c50c2020-12-26 21:30:45 -050060 auto query = std::make_shared<IterativeQueryController>(domain, label::NS_RR_TYPE,
61 certRequest->interest.getInterestLifetime(),
62 [=] (const Data& data, const Response&) {
63 nsSuccessCallback(data, certRequest, state, continueValidation);
64 },
65 [=] (uint32_t errCode, const std::string& errMsg) {
66 nsFailCallback(errMsg, certRequest, state, continueValidation);
67 },
68 m_face, nullptr, m_nsCache.get());
Yumin Xiafa2bce72017-04-09 16:20:25 -070069 query->setStartComponentIndex(m_startComponentIndex);
70 query->start();
Davide Pesavento948c50c2020-12-26 21:30:45 -050071
72 state->setTag(std::make_shared<IterativeQueryTag>(query));
Yumin Xiafa2bce72017-04-09 16:20:25 -070073}
74
75void
76CertificateFetcherNdnsCert::nsSuccessCallback(const Data& data,
Alexander Afanasyev60514ec2020-06-03 14:18:53 -040077 const shared_ptr<security::CertificateRequest>& certRequest,
78 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -070079 const ValidationContinuation& continueValidation)
80{
Davide Pesavento4a315b32018-11-24 14:32:19 -050081 Name interestName(certRequest->interest.getName());
Yumin Xiafa2bce72017-04-09 16:20:25 -070082 interestName.append(label::CERT_RR_TYPE);
83 Interest interest(interestName);
84
85 if (data.getContentType() == NDNS_LINK) {
86 Link link(data.wireEncode());
87 if (!link.getDelegationList().empty()) {
88 interest.setForwardingHint(link.getDelegationList());
89 NDNS_LOG_INFO(" [* -> *] sending interest with LINK:" << interestName);
90 }
91 else {
92 NDNS_LOG_INFO(" [* -> *] sending interest without LINK (empty delegation set):" << interestName);
93 }
94 }
95 else {
96 NDNS_LOG_WARN("fail to get NS rrset of " << interestName << " , returned data type:" << data.getContentType());
97 }
98
99 m_face.expressInterest(interest,
Davide Pesavento948c50c2020-12-26 21:30:45 -0500100 [=] (const Interest&, const Data& data) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700101 dataCallback(data, certRequest, state, continueValidation);
102 },
Davide Pesavento948c50c2020-12-26 21:30:45 -0500103 [=] (const Interest&, const lp::Nack& nack) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700104 nackCallback(nack, certRequest, state, continueValidation);
105 },
Davide Pesavento948c50c2020-12-26 21:30:45 -0500106 [=] (const Interest&) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700107 timeoutCallback(certRequest, state, continueValidation);
108 });
109}
110
111void
112CertificateFetcherNdnsCert::nsFailCallback(const std::string& errMsg,
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400113 const shared_ptr<security::CertificateRequest>& certRequest,
114 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -0700115 const ValidationContinuation& continueValidation)
116{
117 NDNS_LOG_WARN("Cannot fetch link due to " +
Davide Pesavento4a315b32018-11-24 14:32:19 -0500118 errMsg + " `" + certRequest->interest.getName().toUri() + "`");
Yumin Xiafa2bce72017-04-09 16:20:25 -0700119
Davide Pesavento4a315b32018-11-24 14:32:19 -0500120 Name interestName(certRequest->interest.getName());
Yumin Xiafa2bce72017-04-09 16:20:25 -0700121 interestName.append(label::CERT_RR_TYPE);
122 Interest interest(interestName);
123 m_face.expressInterest(interest,
Davide Pesavento002bb422019-03-22 19:04:08 -0400124 [=] (const Interest&, const Data& data) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700125 dataCallback(data, certRequest, state, continueValidation);
126 },
Davide Pesavento002bb422019-03-22 19:04:08 -0400127 [=] (const Interest&, const lp::Nack& nack) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700128 nackCallback(nack, certRequest, state, continueValidation);
129 },
Davide Pesavento002bb422019-03-22 19:04:08 -0400130 [=] (const Interest&) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700131 timeoutCallback(certRequest, state, continueValidation);
132 });
133}
134
135Name
136CertificateFetcherNdnsCert::calculateDomain(const Name& key)
137{
138 for (size_t i = 0; i < key.size(); i++) {
139 if (key[i] == label::NDNS_ITERATIVE_QUERY) {
140 return key.getPrefix(i);
141 }
142 }
Davide Pesavento948c50c2020-12-26 21:30:45 -0500143 NDN_THROW(std::runtime_error(key.toUri() + " is not a legal NDNS certificate name"));
Yumin Xiafa2bce72017-04-09 16:20:25 -0700144}
145
146void
147CertificateFetcherNdnsCert::dataCallback(const Data& data,
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400148 const shared_ptr<security::CertificateRequest>& certRequest,
149 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -0700150 const ValidationContinuation& continueValidation)
151{
152 NDNS_LOG_DEBUG("Fetched certificate from network " << data.getName());
153
Davide Pesavento002bb422019-03-22 19:04:08 -0400154 state->removeTag<IterativeQueryTag>();
155
Yumin Xiafa2bce72017-04-09 16:20:25 -0700156 Certificate cert;
157 try {
158 cert = Certificate(data);
159 }
160 catch (const ndn::tlv::Error& e) {
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400161 return state->fail({security::ValidationError::Code::MALFORMED_CERT, "Fetched a malformed "
Davide Pesavento002bb422019-03-22 19:04:08 -0400162 "certificate `" + data.getName().toUri() + "` (" + e.what() + ")"});
Yumin Xiafa2bce72017-04-09 16:20:25 -0700163 }
Davide Pesavento002bb422019-03-22 19:04:08 -0400164
Yumin Xiafa2bce72017-04-09 16:20:25 -0700165 continueValidation(cert, state);
166}
167
168void
169CertificateFetcherNdnsCert::nackCallback(const lp::Nack& nack,
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400170 const shared_ptr<security::CertificateRequest>& certRequest,
171 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -0700172 const ValidationContinuation& continueValidation)
173{
174 NDNS_LOG_DEBUG("NACK (" << nack.getReason() << ") while fetching certificate "
Davide Pesavento4a315b32018-11-24 14:32:19 -0500175 << certRequest->interest.getName());
Yumin Xiafa2bce72017-04-09 16:20:25 -0700176
Davide Pesavento4a315b32018-11-24 14:32:19 -0500177 --certRequest->nRetriesLeft;
178 if (certRequest->nRetriesLeft >= 0) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700179 // TODO implement delay for the the next fetch
180 fetch(certRequest, state, continueValidation);
181 }
182 else {
Davide Pesavento002bb422019-03-22 19:04:08 -0400183 state->removeTag<IterativeQueryTag>();
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400184 state->fail({security::ValidationError::Code::CANNOT_RETRIEVE_CERT, "Cannot fetch certificate "
Davide Pesavento002bb422019-03-22 19:04:08 -0400185 "after all retries `" + certRequest->interest.getName().toUri() + "`"});
Yumin Xiafa2bce72017-04-09 16:20:25 -0700186 }
187}
188
189void
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400190CertificateFetcherNdnsCert::timeoutCallback(const shared_ptr<security::CertificateRequest>& certRequest,
191 const shared_ptr<security::ValidationState>& state,
Yumin Xiafa2bce72017-04-09 16:20:25 -0700192 const ValidationContinuation& continueValidation)
193{
Davide Pesavento4a315b32018-11-24 14:32:19 -0500194 NDNS_LOG_DEBUG("Timeout while fetching certificate " << certRequest->interest.getName()
Yumin Xiafa2bce72017-04-09 16:20:25 -0700195 << ", retrying");
196
Davide Pesavento4a315b32018-11-24 14:32:19 -0500197 --certRequest->nRetriesLeft;
198 if (certRequest->nRetriesLeft >= 0) {
Yumin Xiafa2bce72017-04-09 16:20:25 -0700199 fetch(certRequest, state, continueValidation);
200 }
201 else {
Davide Pesavento002bb422019-03-22 19:04:08 -0400202 state->removeTag<IterativeQueryTag>();
Alexander Afanasyev60514ec2020-06-03 14:18:53 -0400203 state->fail({security::ValidationError::Code::CANNOT_RETRIEVE_CERT, "Cannot fetch certificate "
Davide Pesavento002bb422019-03-22 19:04:08 -0400204 "after all retries `" + certRequest->interest.getName().toUri() + "`"});
Yumin Xiafa2bce72017-04-09 16:20:25 -0700205 }
206}
207
208} // namespace ndns
209} // namespace ndn