| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2014-2022, The University of Memphis, |
| * Regents of the University of California, |
| * Arizona Board of Regents. |
| * |
| * This file is part of NLSR (Named-data Link State Routing). |
| * See AUTHORS.md for complete list of NLSR authors and contributors. |
| * |
| * NLSR is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "certificate-store.hpp" |
| #include "conf-parameter.hpp" |
| #include "logger.hpp" |
| |
| #include <ndn-cxx/util/io.hpp> |
| #include <fstream> |
| |
| namespace nlsr { |
| namespace security { |
| |
| INIT_LOGGER(CertificateStore); |
| |
| CertificateStore::CertificateStore(ndn::Face& face, ConfParameter& confParam, Lsdb& lsdb) |
| : m_face(face) |
| , m_confParam(confParam) |
| , m_validator(m_confParam.getValidator()) |
| { |
| for (const auto& certfile : confParam.getIdCerts()) { |
| std::ifstream ifs(certfile); |
| insert(ndn::io::loadTlv<ndn::security::Certificate>(ifs)); |
| } |
| |
| registerKeyPrefixes(); |
| |
| m_afterSegmentValidatedConnection = lsdb.afterSegmentValidatedSignal.connect( |
| [this] (const ndn::Data& data) { afterFetcherSignalEmitted(data); }); |
| } |
| |
| void |
| CertificateStore::insert(const ndn::security::Certificate& certificate) |
| { |
| m_certificates[certificate.getKeyName()] = certificate; |
| NLSR_LOG_TRACE("Certificate inserted successfully"); |
| } |
| |
| const ndn::security::Certificate* |
| CertificateStore::find(const ndn::Name& name) const |
| { |
| if (ndn::security::Certificate::isValidName(name)) { |
| return findByCertName(name); |
| } |
| return findByKeyName(name); |
| } |
| |
| const ndn::security::Certificate* |
| CertificateStore::findByKeyName(const ndn::Name& keyName) const |
| { |
| auto it = m_certificates.find(keyName); |
| return it != m_certificates.end() ? &it->second : nullptr; |
| } |
| |
| const ndn::security::Certificate* |
| CertificateStore::findByCertName(const ndn::Name& certName) const |
| { |
| auto found = findByKeyName(ndn::security::extractKeyNameFromCertName(certName)); |
| if (found == nullptr || found->getName() != certName) { |
| return nullptr; |
| } |
| return found; |
| } |
| |
| void |
| CertificateStore::clear() |
| { |
| m_certificates.clear(); |
| } |
| |
| void |
| CertificateStore::setInterestFilter(const ndn::Name& prefix, bool loopback) |
| { |
| m_face.setInterestFilter(ndn::InterestFilter(prefix).allowLoopback(loopback), |
| std::bind(&CertificateStore::onKeyInterest, this, _1, _2), |
| std::bind(&CertificateStore::onKeyPrefixRegSuccess, this, _1), |
| std::bind(&CertificateStore::registrationFailed, this, _1), |
| m_confParam.getSigningInfo(), ndn::nfd::ROUTE_FLAG_CAPTURE); |
| } |
| |
| void |
| CertificateStore::registerKeyPrefixes() |
| { |
| std::vector<ndn::Name> prefixes; |
| |
| // Router's NLSR certificate |
| ndn::Name nlsrKeyPrefix = m_confParam.getRouterPrefix(); |
| nlsrKeyPrefix.append("nlsr"); |
| nlsrKeyPrefix.append(ndn::security::Certificate::KEY_COMPONENT); |
| prefixes.push_back(nlsrKeyPrefix); |
| |
| // Router's certificate |
| ndn::Name routerKeyPrefix = m_confParam.getRouterPrefix(); |
| routerKeyPrefix.append(ndn::security::Certificate::KEY_COMPONENT); |
| prefixes.push_back(routerKeyPrefix); |
| |
| // Router's operator's certificate |
| ndn::Name operatorKeyPrefix = m_confParam.getNetwork(); |
| operatorKeyPrefix.append(m_confParam.getSiteName()); |
| operatorKeyPrefix.append(std::string("%C1.Operator")); |
| prefixes.push_back(operatorKeyPrefix); |
| |
| // Router's site's certificate |
| ndn::Name siteKeyPrefix = m_confParam.getNetwork(); |
| siteKeyPrefix.append(m_confParam.getSiteName()); |
| siteKeyPrefix.append(ndn::security::Certificate::KEY_COMPONENT); |
| prefixes.push_back(siteKeyPrefix); |
| |
| // Start listening for interest of this router's NLSR certificate, |
| // router's certificate and site's certificate |
| for (const auto& i : prefixes) { |
| setInterestFilter(i); |
| } |
| } |
| |
| void |
| CertificateStore::onKeyInterest(const ndn::Name&, const ndn::Interest& interest) |
| { |
| NLSR_LOG_DEBUG("Got interest for certificate. Interest: " << interest.getName()); |
| |
| const auto* cert = find(interest.getName()); |
| |
| if (!cert) { |
| NLSR_LOG_TRACE("Certificate is not found for: " << interest); |
| return; |
| } |
| m_face.put(*cert); |
| } |
| |
| void |
| CertificateStore::onKeyPrefixRegSuccess(const ndn::Name& name) |
| { |
| NLSR_LOG_DEBUG("KEY prefix: " << name << " registration is successful"); |
| } |
| |
| void |
| CertificateStore::registrationFailed(const ndn::Name& name) |
| { |
| NLSR_LOG_ERROR("Failed to register prefix " << name); |
| NDN_THROW(std::runtime_error("Prefix registration failed")); |
| } |
| |
| void |
| CertificateStore::publishCertFromCache(const ndn::Name& keyName) |
| { |
| const auto* cert = m_validator.getUnverifiedCertCache().find(keyName); |
| |
| if (cert) { |
| insert(*cert); |
| NLSR_LOG_TRACE(*cert); |
| ndn::Name certName = ndn::security::extractKeyNameFromCertName(cert->getName()); |
| NLSR_LOG_TRACE("Setting interest filter for: " << certName); |
| |
| setInterestFilter(certName); |
| |
| const ndn::Name& keyLocatorName = cert->getSignatureInfo().getKeyLocator().getName(); |
| if (cert->getKeyName() != keyLocatorName) { |
| publishCertFromCache(keyLocatorName); |
| } |
| } |
| else { |
| // Happens for root cert |
| NLSR_LOG_TRACE("Cert for " << keyName << " was not found in the Validator's cache. "); |
| } |
| } |
| |
| void |
| CertificateStore::afterFetcherSignalEmitted(const ndn::Data& lsaSegment) |
| { |
| const auto keyName = lsaSegment.getSignatureInfo().getKeyLocator().getName(); |
| if (!find(keyName)) { |
| NLSR_LOG_TRACE("Publishing certificate for: " << keyName); |
| publishCertFromCache(keyName); |
| } |
| else { |
| NLSR_LOG_TRACE("Certificate is already in the store: " << keyName); |
| } |
| } |
| |
| } // namespace security |
| } // namespace nlsr |