Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a997d29 | 2017-08-24 20:16:59 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | a599d2a | 2022-02-16 18:52:43 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "program.hpp" |
Davide Pesavento | a997d29 | 2017-08-24 20:16:59 -0400 | [diff] [blame] | 27 | |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 28 | #include <ndn-cxx/encoding/block-helpers.hpp> |
| 29 | #include <ndn-cxx/encoding/tlv.hpp> |
| 30 | #include <ndn-cxx/encoding/tlv-nfd.hpp> |
| 31 | |
Davide Pesavento | a997d29 | 2017-08-24 20:16:59 -0400 | [diff] [blame] | 32 | #include <iostream> |
| 33 | |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 34 | namespace ndn { |
| 35 | namespace tools { |
| 36 | namespace autoconfig_server { |
| 37 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 38 | const Name HUB_DATA_NAME("/localhop/ndn-autoconf/hub"); |
| 39 | const Name ROUTABLE_PREFIXES_DATA_PREFIX("/localhop/nfd"); |
| 40 | const PartialName ROUTABLE_PREFIXES_DATA_SUFFIX("rib/routable-prefixes"); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 41 | |
| 42 | Program::Program(const Options& options, Face& face, KeyChain& keyChain) |
| 43 | : m_face(face) |
| 44 | , m_keyChain(keyChain) |
| 45 | , m_dispatcher(face, keyChain) |
| 46 | { |
| 47 | this->enableHubData(options.hubFaceUri); |
| 48 | if (!options.routablePrefixes.empty()) { |
| 49 | this->enableRoutablePrefixesDataset(options.routablePrefixes); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | void |
| 54 | Program::enableHubData(const FaceUri& hubFaceUri) |
| 55 | { |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 56 | auto data = make_shared<Data>(Name(HUB_DATA_NAME).appendVersion()); |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 57 | data->setFreshnessPeriod(1_h); |
Davide Pesavento | a599d2a | 2022-02-16 18:52:43 -0500 | [diff] [blame^] | 58 | data->setContent(makeStringBlock(tlv::nfd::Uri, hubFaceUri.toString())); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 59 | m_keyChain.sign(*data); |
| 60 | |
| 61 | m_face.setInterestFilter(HUB_DATA_NAME, |
| 62 | [this, data] (const Name&, const Interest& interest) { |
| 63 | if (interest.matchesData(*data)) { |
| 64 | m_face.put(*data); |
| 65 | } |
| 66 | }, |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 67 | [this] (auto&&... args) { |
| 68 | handlePrefixRegistrationFailure(std::forward<decltype(args)>(args)...); |
| 69 | }); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | void |
| 73 | Program::enableRoutablePrefixesDataset(const std::vector<Name>& routablePrefixes) |
| 74 | { |
| 75 | m_dispatcher.addStatusDataset(ROUTABLE_PREFIXES_DATA_SUFFIX, |
| 76 | mgmt::makeAcceptAllAuthorization(), |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 77 | [=] (const Name&, const Interest&, mgmt::StatusDatasetContext& context) { |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 78 | for (const Name& routablePrefix : routablePrefixes) { |
| 79 | context.append(routablePrefix.wireEncode()); |
| 80 | } |
| 81 | context.end(); |
| 82 | }); |
| 83 | m_dispatcher.addTopPrefix(ROUTABLE_PREFIXES_DATA_PREFIX, false); |
| 84 | |
| 85 | m_face.registerPrefix(Name(ROUTABLE_PREFIXES_DATA_PREFIX).append(ROUTABLE_PREFIXES_DATA_SUFFIX), |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 86 | nullptr, |
| 87 | [this] (auto&&... args) { |
| 88 | handlePrefixRegistrationFailure(std::forward<decltype(args)>(args)...); |
| 89 | }); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void |
| 93 | Program::handlePrefixRegistrationFailure(const Name& prefix, const std::string& reason) |
| 94 | { |
| 95 | std::cerr << "ERROR: cannot register prefix " << prefix |
| 96 | << " (" << reason << ")" << std::endl; |
| 97 | m_face.shutdown(); |
| 98 | } |
| 99 | |
| 100 | } // namespace autoconfig_server |
| 101 | } // namespace tools |
| 102 | } // namespace ndn |