blob: 6146441a4fdc9072929e96ccab0b1adfa93de932 [file] [log] [blame]
alvy297f4162015-03-03 17:15:33 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
alvy297f4162015-03-03 17:15:33 -06004 * 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"
alvy297f4162015-03-03 17:15:33 -060023#include "lsdb.hpp"
24#include "nlsr.hpp"
Junxiao Shi3e5120c2016-09-10 16:58:34 +000025#include <ndn-cxx/mgmt/nfd/control-response.hpp>
Laqin Fan54a43f02017-03-08 12:31:30 -060026#include <ndn-cxx/tag.hpp>
27#include <ndn-cxx/util/io.hpp>
alvy297f4162015-03-03 17:15:33 -060028
29namespace nlsr {
30namespace update {
31
32INIT_LOGGER("PrefixUpdateProcessor");
33
Laqin Fan54a43f02017-03-08 12:31:30 -060034/** \brief an Interest tag to indicate command signer
35 */
36using SignerTag = ndn::SimpleTag<ndn::Name, 20>;
alvy297f4162015-03-03 17:15:33 -060037
Laqin Fan54a43f02017-03-08 12:31:30 -060038/** \brief obtain signer from SignerTag attached to Interest, if available
39 */
40static ndn::optional<std::string>
41getSignerFromTag(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
52PrefixUpdateProcessor::PrefixUpdateProcessor(ndn::mgmt::Dispatcher& dispatcher,
53 ndn::Face& face,
alvy297f4162015-03-03 17:15:33 -060054 NamePrefixList& namePrefixList,
55 Lsdb& lsdb,
alvy297f4162015-03-03 17:15:33 -060056 const ndn::Name broadcastPrefix,
57 ndn::KeyChain& keyChain,
dmcoomes9f936662017-03-02 10:33:09 -060058 std::shared_ptr<ndn::CertificateCacheTtl> certificateCache,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050059 security::CertificateStore& certStore)
Laqin Fan54a43f02017-03-08 12:31:30 -060060 : CommandManagerBase(dispatcher, namePrefixList, lsdb, "prefix-update")
61 , m_validator(face, broadcastPrefix, certificateCache, certStore)
alvy297f4162015-03-03 17:15:33 -060062{
Laqin Fan54a43f02017-03-08 12:31:30 -060063 _LOG_DEBUG("Setting dispatcher to capture Interests for: "
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));
alvy297f4162015-03-03 17:15:33 -060077}
78
Laqin Fan54a43f02017-03-08 12:31:30 -060079ndn::mgmt::Authorization
80PrefixUpdateProcessor::makeAuthorization()
alvy297f4162015-03-03 17:15:33 -060081{
Laqin Fan54a43f02017-03-08 12:31:30 -060082 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) {
alvy297f4162015-03-03 17:15:33 -060088
Laqin Fan54a43f02017-03-08 12:31:30 -060089 auto signer1 = getSignerFromTag(*request);
90 std::string signer = signer1.value_or("*");
91 _LOG_DEBUG("accept " << request->getName() << " signer=" << signer);
92 accept(signer);
93 },
94 [reject] (const std::shared_ptr<const ndn::Interest>& request,
95 const std::string& failureInfo) {
96 _LOG_DEBUG("reject " << request->getName() << " signer=" <<
97 getSignerFromTag(*request).value_or("?") << ' ' << failureInfo);
98 reject(ndn::mgmt::RejectReply::STATUS403);
99 });
100 };
alvy297f4162015-03-03 17:15:33 -0600101}
102
103void
104PrefixUpdateProcessor::loadValidator(boost::property_tree::ptree section,
105 const std::string& filename)
106{
107 m_validator.load(section, filename);
108}
109
alvy297f4162015-03-03 17:15:33 -0600110} // namespace update
111} // namespace nlsr