alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | feae557 | 2017-01-13 12:06:26 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
| 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 20 | **/ |
| 21 | |
| 22 | #include "prefix-update-processor.hpp" |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 23 | #include "lsdb.hpp" |
| 24 | #include "nlsr.hpp" |
Junxiao Shi | 3e5120c | 2016-09-10 16:58:34 +0000 | [diff] [blame] | 25 | #include <ndn-cxx/mgmt/nfd/control-response.hpp> |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 26 | #include <ndn-cxx/tag.hpp> |
| 27 | #include <ndn-cxx/util/io.hpp> |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 28 | |
| 29 | namespace nlsr { |
| 30 | namespace update { |
| 31 | |
| 32 | INIT_LOGGER("PrefixUpdateProcessor"); |
| 33 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 34 | /** \brief an Interest tag to indicate command signer |
| 35 | */ |
| 36 | using SignerTag = ndn::SimpleTag<ndn::Name, 20>; |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 37 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 38 | /** \brief obtain signer from SignerTag attached to Interest, if available |
| 39 | */ |
| 40 | static ndn::optional<std::string> |
| 41 | getSignerFromTag(const ndn::Interest& interest) |
| 42 | { |
| 43 | shared_ptr<SignerTag> signerTag = interest.getTag<SignerTag>(); |
| 44 | if (signerTag == nullptr) { |
| 45 | return ndn::nullopt; |
| 46 | } |
| 47 | else { |
| 48 | return signerTag->get().toUri(); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | PrefixUpdateProcessor::PrefixUpdateProcessor(ndn::mgmt::Dispatcher& dispatcher, |
| 53 | ndn::Face& face, |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 54 | NamePrefixList& namePrefixList, |
| 55 | Lsdb& lsdb, |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 56 | const ndn::Name broadcastPrefix, |
| 57 | ndn::KeyChain& keyChain, |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 58 | std::shared_ptr<ndn::CertificateCacheTtl> certificateCache, |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 59 | security::CertificateStore& certStore) |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 60 | : CommandManagerBase(dispatcher, namePrefixList, lsdb, "prefix-update") |
| 61 | , m_validator(face, broadcastPrefix, certificateCache, certStore) |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 62 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame^] | 63 | NLSR_LOG_DEBUG("Setting dispatcher to capture Interests for: " |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 64 | << ndn::Name(Nlsr::LOCALHOST_PREFIX).append("prefix-update")); |
| 65 | |
| 66 | m_dispatcher.addControlCommand<ndn::nfd::ControlParameters>(makeRelPrefix("advertise"), |
| 67 | makeAuthorization(), |
| 68 | std::bind(&PrefixUpdateProcessor::validateParameters<AdvertisePrefixCommand>, |
| 69 | this, _1), |
| 70 | std::bind(&PrefixUpdateProcessor::advertiseAndInsertPrefix, this, _1, _2, _3, _4)); |
| 71 | |
| 72 | m_dispatcher.addControlCommand<ndn::nfd::ControlParameters>(makeRelPrefix("withdraw"), |
| 73 | makeAuthorization(), |
| 74 | std::bind(&PrefixUpdateProcessor::validateParameters<WithdrawPrefixCommand>, |
| 75 | this, _1), |
| 76 | std::bind(&PrefixUpdateProcessor::withdrawAndRemovePrefix, this, _1, _2, _3, _4)); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 77 | } |
| 78 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 79 | ndn::mgmt::Authorization |
| 80 | PrefixUpdateProcessor::makeAuthorization() |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 81 | { |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 82 | return [=] (const ndn::Name& prefix, const ndn::Interest& interest, |
| 83 | const ndn::mgmt::ControlParameters* params, |
| 84 | const ndn::mgmt::AcceptContinuation& accept, |
| 85 | const ndn::mgmt::RejectContinuation& reject) { |
| 86 | m_validator.validate(interest, |
| 87 | [accept] (const std::shared_ptr<const ndn::Interest>& request) { |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 88 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 89 | auto signer1 = getSignerFromTag(*request); |
| 90 | std::string signer = signer1.value_or("*"); |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame^] | 91 | NLSR_LOG_DEBUG("accept " << request->getName() << " signer=" << signer); |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 92 | accept(signer); |
| 93 | }, |
| 94 | [reject] (const std::shared_ptr<const ndn::Interest>& request, |
| 95 | const std::string& failureInfo) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame^] | 96 | NLSR_LOG_DEBUG("reject " << request->getName() << " signer=" << |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 97 | getSignerFromTag(*request).value_or("?") << ' ' << failureInfo); |
| 98 | reject(ndn::mgmt::RejectReply::STATUS403); |
| 99 | }); |
| 100 | }; |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | void |
| 104 | PrefixUpdateProcessor::loadValidator(boost::property_tree::ptree section, |
| 105 | const std::string& filename) |
| 106 | { |
| 107 | m_validator.load(section, filename); |
| 108 | } |
| 109 | |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 110 | } // namespace update |
| 111 | } // namespace nlsr |