Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 08d1874 | 2018-03-15 16:31:28 -0400 | [diff] [blame] | 2 | /* |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2020, Regents of the University of California. |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 4 | * |
| 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 | |
| 28 | namespace ndn { |
| 29 | namespace ndns { |
| 30 | |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 31 | using security::Certificate; |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 32 | |
Alexander Afanasyev | 08d1874 | 2018-03-15 16:31:28 -0400 | [diff] [blame] | 33 | NDNS_LOG_INIT(CertificateFetcherNdnsCert); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 34 | |
| 35 | CertificateFetcherNdnsCert::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 Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 41 | { |
| 42 | } |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 43 | |
| 44 | void |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 45 | CertificateFetcherNdnsCert::doFetch(const shared_ptr<security::CertificateRequest>& certRequest, |
| 46 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 47 | const ValidationContinuation& continueValidation) |
| 48 | { |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 49 | const Name& key = certRequest->interest.getName(); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 50 | 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 Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 57 | return; |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Alexander Afanasyev | 08d1874 | 2018-03-15 16:31:28 -0400 | [diff] [blame] | 60 | auto query = std::make_shared<IterativeQueryController>(domain, |
| 61 | label::NS_RR_TYPE, |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 62 | certRequest->interest.getInterestLifetime(), |
Alexander Afanasyev | 08d1874 | 2018-03-15 16:31:28 -0400 | [diff] [blame] | 63 | [=] (const Data& data, const Response& response) { |
| 64 | nsSuccessCallback(data, certRequest, state, continueValidation); |
| 65 | }, |
| 66 | [=] (uint32_t errCode, const std::string& errMsg) { |
| 67 | nsFailCallback(errMsg, certRequest, state, continueValidation); |
| 68 | }, |
| 69 | m_face, |
| 70 | nullptr, |
| 71 | m_nsCache.get()); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 72 | query->setStartComponentIndex(m_startComponentIndex); |
| 73 | query->start(); |
| 74 | auto queryTag = make_shared<IterativeQueryTag>(query); |
| 75 | state->setTag(queryTag); |
| 76 | } |
| 77 | |
| 78 | void |
| 79 | CertificateFetcherNdnsCert::nsSuccessCallback(const Data& data, |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 80 | const shared_ptr<security::CertificateRequest>& certRequest, |
| 81 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 82 | const ValidationContinuation& continueValidation) |
| 83 | { |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 84 | Name interestName(certRequest->interest.getName()); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 85 | interestName.append(label::CERT_RR_TYPE); |
| 86 | Interest interest(interestName); |
| 87 | |
| 88 | if (data.getContentType() == NDNS_LINK) { |
| 89 | Link link(data.wireEncode()); |
| 90 | if (!link.getDelegationList().empty()) { |
| 91 | interest.setForwardingHint(link.getDelegationList()); |
| 92 | NDNS_LOG_INFO(" [* -> *] sending interest with LINK:" << interestName); |
| 93 | } |
| 94 | else { |
| 95 | NDNS_LOG_INFO(" [* -> *] sending interest without LINK (empty delegation set):" << interestName); |
| 96 | } |
| 97 | } |
| 98 | else { |
| 99 | NDNS_LOG_WARN("fail to get NS rrset of " << interestName << " , returned data type:" << data.getContentType()); |
| 100 | } |
| 101 | |
| 102 | m_face.expressInterest(interest, |
| 103 | [=] (const Interest& interest, const Data& data) { |
| 104 | dataCallback(data, certRequest, state, continueValidation); |
| 105 | }, |
| 106 | [=] (const Interest& interest, const lp::Nack& nack) { |
| 107 | nackCallback(nack, certRequest, state, continueValidation); |
| 108 | }, |
| 109 | [=] (const Interest& interest) { |
| 110 | timeoutCallback(certRequest, state, continueValidation); |
| 111 | }); |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | CertificateFetcherNdnsCert::nsFailCallback(const std::string& errMsg, |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 116 | const shared_ptr<security::CertificateRequest>& certRequest, |
| 117 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 118 | const ValidationContinuation& continueValidation) |
| 119 | { |
| 120 | NDNS_LOG_WARN("Cannot fetch link due to " + |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 121 | errMsg + " `" + certRequest->interest.getName().toUri() + "`"); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 122 | |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 123 | Name interestName(certRequest->interest.getName()); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 124 | interestName.append(label::CERT_RR_TYPE); |
| 125 | Interest interest(interestName); |
| 126 | m_face.expressInterest(interest, |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 127 | [=] (const Interest&, const Data& data) { |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 128 | dataCallback(data, certRequest, state, continueValidation); |
| 129 | }, |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 130 | [=] (const Interest&, const lp::Nack& nack) { |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 131 | nackCallback(nack, certRequest, state, continueValidation); |
| 132 | }, |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 133 | [=] (const Interest&) { |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 134 | timeoutCallback(certRequest, state, continueValidation); |
| 135 | }); |
| 136 | } |
| 137 | |
| 138 | Name |
| 139 | CertificateFetcherNdnsCert::calculateDomain(const Name& key) |
| 140 | { |
| 141 | for (size_t i = 0; i < key.size(); i++) { |
| 142 | if (key[i] == label::NDNS_ITERATIVE_QUERY) { |
| 143 | return key.getPrefix(i); |
| 144 | } |
| 145 | } |
| 146 | BOOST_THROW_EXCEPTION(std::runtime_error(key.toUri() + " is not a legal NDNS certificate name")); |
| 147 | } |
| 148 | |
| 149 | void |
| 150 | CertificateFetcherNdnsCert::dataCallback(const Data& data, |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 151 | const shared_ptr<security::CertificateRequest>& certRequest, |
| 152 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 153 | const ValidationContinuation& continueValidation) |
| 154 | { |
| 155 | NDNS_LOG_DEBUG("Fetched certificate from network " << data.getName()); |
| 156 | |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 157 | state->removeTag<IterativeQueryTag>(); |
| 158 | |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 159 | Certificate cert; |
| 160 | try { |
| 161 | cert = Certificate(data); |
| 162 | } |
| 163 | catch (const ndn::tlv::Error& e) { |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 164 | return state->fail({security::ValidationError::Code::MALFORMED_CERT, "Fetched a malformed " |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 165 | "certificate `" + data.getName().toUri() + "` (" + e.what() + ")"}); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 166 | } |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 167 | |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 168 | continueValidation(cert, state); |
| 169 | } |
| 170 | |
| 171 | void |
| 172 | CertificateFetcherNdnsCert::nackCallback(const lp::Nack& nack, |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 173 | const shared_ptr<security::CertificateRequest>& certRequest, |
| 174 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 175 | const ValidationContinuation& continueValidation) |
| 176 | { |
| 177 | NDNS_LOG_DEBUG("NACK (" << nack.getReason() << ") while fetching certificate " |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 178 | << certRequest->interest.getName()); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 179 | |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 180 | --certRequest->nRetriesLeft; |
| 181 | if (certRequest->nRetriesLeft >= 0) { |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 182 | // TODO implement delay for the the next fetch |
| 183 | fetch(certRequest, state, continueValidation); |
| 184 | } |
| 185 | else { |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 186 | state->removeTag<IterativeQueryTag>(); |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 187 | state->fail({security::ValidationError::Code::CANNOT_RETRIEVE_CERT, "Cannot fetch certificate " |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 188 | "after all retries `" + certRequest->interest.getName().toUri() + "`"}); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
| 192 | void |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 193 | CertificateFetcherNdnsCert::timeoutCallback(const shared_ptr<security::CertificateRequest>& certRequest, |
| 194 | const shared_ptr<security::ValidationState>& state, |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 195 | const ValidationContinuation& continueValidation) |
| 196 | { |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 197 | NDNS_LOG_DEBUG("Timeout while fetching certificate " << certRequest->interest.getName() |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 198 | << ", retrying"); |
| 199 | |
Davide Pesavento | 4a315b3 | 2018-11-24 14:32:19 -0500 | [diff] [blame] | 200 | --certRequest->nRetriesLeft; |
| 201 | if (certRequest->nRetriesLeft >= 0) { |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 202 | fetch(certRequest, state, continueValidation); |
| 203 | } |
| 204 | else { |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 205 | state->removeTag<IterativeQueryTag>(); |
Alexander Afanasyev | 60514ec | 2020-06-03 14:18:53 -0400 | [diff] [blame^] | 206 | state->fail({security::ValidationError::Code::CANNOT_RETRIEVE_CERT, "Cannot fetch certificate " |
Davide Pesavento | 002bb42 | 2019-03-22 19:04:08 -0400 | [diff] [blame] | 207 | "after all retries `" + certRequest->interest.getName().toUri() + "`"}); |
Yumin Xia | fa2bce7 | 2017-04-09 16:20:25 -0700 | [diff] [blame] | 208 | } |
| 209 | } |
| 210 | |
| 211 | } // namespace ndns |
| 212 | } // namespace ndn |