alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, 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> |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 26 | #include <ndn-cxx/face.hpp> |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 27 | #include <boost/algorithm/string.hpp> |
| 28 | #include <algorithm> |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 29 | |
| 30 | namespace nlsr { |
| 31 | namespace update { |
| 32 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 33 | INIT_LOGGER(update.PrefixUpdateProcessor); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 34 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 35 | /** \brief an Interest tag to indicate command signer |
| 36 | */ |
| 37 | using SignerTag = ndn::SimpleTag<ndn::Name, 20>; |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 38 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 39 | /** \brief obtain signer from SignerTag attached to Interest, if available |
| 40 | */ |
| 41 | static ndn::optional<std::string> |
| 42 | getSignerFromTag(const ndn::Interest& interest) |
| 43 | { |
| 44 | shared_ptr<SignerTag> signerTag = interest.getTag<SignerTag>(); |
| 45 | if (signerTag == nullptr) { |
| 46 | return ndn::nullopt; |
| 47 | } |
| 48 | else { |
| 49 | return signerTag->get().toUri(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | PrefixUpdateProcessor::PrefixUpdateProcessor(ndn::mgmt::Dispatcher& dispatcher, |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 54 | ndn::security::ValidatorConfig& validator, |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 55 | NamePrefixList& namePrefixList, |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 56 | Lsdb& lsdb, const std::string& configFileName) |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 57 | : CommandManagerBase(dispatcher, namePrefixList, lsdb, "prefix-update") |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 58 | , m_validator(validator) |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 59 | , m_configFileName(configFileName) |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 60 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 61 | NLSR_LOG_DEBUG("Setting dispatcher to capture Interests for: " |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 62 | << ndn::Name(Nlsr::LOCALHOST_PREFIX).append("prefix-update")); |
| 63 | |
| 64 | m_dispatcher.addControlCommand<ndn::nfd::ControlParameters>(makeRelPrefix("advertise"), |
| 65 | makeAuthorization(), |
| 66 | std::bind(&PrefixUpdateProcessor::validateParameters<AdvertisePrefixCommand>, |
| 67 | this, _1), |
| 68 | std::bind(&PrefixUpdateProcessor::advertiseAndInsertPrefix, this, _1, _2, _3, _4)); |
| 69 | |
| 70 | m_dispatcher.addControlCommand<ndn::nfd::ControlParameters>(makeRelPrefix("withdraw"), |
| 71 | makeAuthorization(), |
| 72 | std::bind(&PrefixUpdateProcessor::validateParameters<WithdrawPrefixCommand>, |
| 73 | this, _1), |
| 74 | std::bind(&PrefixUpdateProcessor::withdrawAndRemovePrefix, this, _1, _2, _3, _4)); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 75 | } |
| 76 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 77 | ndn::mgmt::Authorization |
| 78 | PrefixUpdateProcessor::makeAuthorization() |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 79 | { |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 80 | return [=] (const ndn::Name& prefix, const ndn::Interest& interest, |
| 81 | const ndn::mgmt::ControlParameters* params, |
| 82 | const ndn::mgmt::AcceptContinuation& accept, |
| 83 | const ndn::mgmt::RejectContinuation& reject) { |
| 84 | m_validator.validate(interest, |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 85 | [accept] (const ndn::Interest& request) { |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 86 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 87 | auto signer1 = getSignerFromTag(request); |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 88 | std::string signer = signer1.value_or("*"); |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 89 | NLSR_LOG_DEBUG("accept " << request.getName() << " signer=" << signer); |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 90 | accept(signer); |
| 91 | }, |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 92 | [reject] (const ndn::Interest& request, const ndn::security::v2::ValidationError& error) { |
| 93 | NLSR_LOG_DEBUG("reject " << request.getName() << " signer=" << |
| 94 | getSignerFromTag(request).value_or("?") << ' ' << error); |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 95 | reject(ndn::mgmt::RejectReply::STATUS403); |
| 96 | }); |
| 97 | }; |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void |
| 101 | PrefixUpdateProcessor::loadValidator(boost::property_tree::ptree section, |
| 102 | const std::string& filename) |
| 103 | { |
| 104 | m_validator.load(section, filename); |
| 105 | } |
| 106 | |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 107 | bool |
| 108 | PrefixUpdateProcessor::checkForPrefixInFile(const std::string prefix) |
| 109 | { |
| 110 | std::string line; |
| 111 | std::fstream fp(m_configFileName); |
| 112 | if (!fp.good() || !fp.is_open()) { |
| 113 | NLSR_LOG_ERROR("Failed to open configuration file for parsing"); |
| 114 | return true; |
| 115 | } |
| 116 | while (!fp.eof()) { |
| 117 | getline(fp, line); |
| 118 | if (line == prefix) { |
| 119 | return true; |
| 120 | } |
| 121 | } |
| 122 | fp.close(); |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | bool |
| 127 | PrefixUpdateProcessor::addOrDeletePrefix(const ndn::Name& prefix, bool addPrefix) |
| 128 | { |
| 129 | std::string value = " prefix " + prefix.toUri();; |
| 130 | std::string fileString; |
| 131 | std::string line; |
| 132 | std::string trimedLine; |
| 133 | std::fstream input(m_configFileName, input.in); |
| 134 | if (!input.good() || !input.is_open()) { |
| 135 | NLSR_LOG_ERROR("Failed to open configuration file for parsing"); |
| 136 | return false; |
| 137 | } |
| 138 | |
| 139 | if (addPrefix) { |
| 140 | //check if prefix already exist in the nlsr configuration file |
| 141 | if (checkForPrefixInFile(value)) { |
| 142 | NLSR_LOG_ERROR("Prefix already exists in the configuration file"); |
| 143 | return false; |
| 144 | } |
| 145 | while (!input.eof()) { |
| 146 | getline(input, line); |
| 147 | if (!line.empty()) { |
| 148 | fileString.append(line + "\n"); |
| 149 | if (line == "advertising") { |
| 150 | getline(input, line); |
| 151 | fileString.append(line + "\n" + value + "\n"); |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | else { |
| 157 | if (!checkForPrefixInFile(value)) { |
| 158 | NLSR_LOG_ERROR("Prefix doesn't exists in the configuration file"); |
| 159 | return false; |
| 160 | } |
| 161 | boost::trim(value); |
| 162 | while (!input.eof()) { |
| 163 | getline(input, line); |
| 164 | if (!line.empty()) { |
| 165 | std::string trimLine = line; |
| 166 | boost::trim(trimLine); |
| 167 | if (trimLine != value) { |
| 168 | fileString.append(line + "\n"); |
| 169 | } |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | input.close(); |
| 174 | std::ofstream output(m_configFileName); |
| 175 | output << fileString; |
| 176 | output.close(); |
| 177 | return true; |
| 178 | } |
| 179 | |
| 180 | ndn::optional<bool> |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 181 | PrefixUpdateProcessor::afterAdvertise(const ndn::Name& prefix) |
| 182 | { |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 183 | return addOrDeletePrefix(prefix, true); |
| 184 | } |
| 185 | |
| 186 | ndn::optional<bool> |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 187 | PrefixUpdateProcessor::afterWithdraw(const ndn::Name& prefix) |
| 188 | { |
Saurab Dulal | 7526cee | 2018-01-31 18:14:10 +0000 | [diff] [blame] | 189 | return addOrDeletePrefix(prefix, false); |
| 190 | } |
| 191 | |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 192 | } // namespace update |
| 193 | } // namespace nlsr |