Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 2 | /* |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 25 | |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 26 | #include "tcp-factory.hpp" |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 27 | |
Yanbiao Li | afb2059 | 2017-08-03 16:20:46 -0700 | [diff] [blame] | 28 | #include <ndn-cxx/net/address-converter.hpp> |
| 29 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 30 | namespace nfd { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 31 | namespace face { |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 32 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 33 | namespace ip = boost::asio::ip; |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 34 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 35 | NFD_LOG_INIT("TcpFactory"); |
Junxiao Shi | b47247d | 2017-01-24 15:09:16 +0000 | [diff] [blame] | 36 | NFD_REGISTER_PROTOCOL_FACTORY(TcpFactory); |
| 37 | |
| 38 | const std::string& |
| 39 | TcpFactory::getId() |
| 40 | { |
| 41 | static std::string id("tcp"); |
| 42 | return id; |
| 43 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 44 | |
Junxiao Shi | 0ba6d64 | 2017-07-17 00:53:22 +0000 | [diff] [blame] | 45 | TcpFactory::TcpFactory(const CtorParams& params) |
| 46 | : ProtocolFactory(params) |
| 47 | { |
| 48 | } |
| 49 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 50 | void |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 51 | TcpFactory::processConfig(OptionalConfigSection configSection, |
| 52 | FaceSystem::ConfigContext& context) |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 53 | { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 54 | // tcp |
| 55 | // { |
| 56 | // listen yes |
| 57 | // port 6363 |
| 58 | // enable_v4 yes |
| 59 | // enable_v6 yes |
| 60 | // } |
| 61 | |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame^] | 62 | m_wantCongestionMarking = context.generalConfig.wantCongestionMarking; |
| 63 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 64 | if (!configSection) { |
| 65 | if (!context.isDryRun && !m_channels.empty()) { |
| 66 | NFD_LOG_WARN("Cannot disable tcp4 and tcp6 channels after initialization"); |
| 67 | } |
| 68 | return; |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 69 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 70 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 71 | bool wantListen = true; |
| 72 | uint16_t port = 6363; |
| 73 | bool enableV4 = true; |
| 74 | bool enableV6 = true; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 75 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 76 | for (const auto& pair : *configSection) { |
| 77 | const std::string& key = pair.first; |
| 78 | |
| 79 | if (key == "listen") { |
| 80 | wantListen = ConfigFile::parseYesNo(pair, "face_system.tcp"); |
| 81 | } |
| 82 | else if (key == "port") { |
| 83 | port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.tcp"); |
| 84 | } |
| 85 | else if (key == "enable_v4") { |
| 86 | enableV4 = ConfigFile::parseYesNo(pair, "face_system.tcp"); |
| 87 | } |
| 88 | else if (key == "enable_v6") { |
| 89 | enableV6 = ConfigFile::parseYesNo(pair, "face_system.tcp"); |
| 90 | } |
| 91 | else { |
| 92 | BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.tcp." + key)); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 93 | } |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 94 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 95 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 96 | if (!enableV4 && !enableV6) { |
| 97 | BOOST_THROW_EXCEPTION(ConfigFile::Error( |
| 98 | "IPv4 and IPv6 TCP channels have been disabled. Remove face_system.tcp section to disable " |
| 99 | "TCP channels or enable at least one channel type.")); |
| 100 | } |
| 101 | |
| 102 | if (!context.isDryRun) { |
| 103 | providedSchemes.insert("tcp"); |
| 104 | |
| 105 | if (enableV4) { |
| 106 | tcp::Endpoint endpoint(ip::tcp::v4(), port); |
| 107 | shared_ptr<TcpChannel> v4Channel = this->createChannel(endpoint); |
| 108 | if (wantListen && !v4Channel->isListening()) { |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 109 | v4Channel->listen(this->addFace, nullptr); |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 110 | } |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 111 | providedSchemes.insert("tcp4"); |
| 112 | } |
| 113 | else if (providedSchemes.count("tcp4") > 0) { |
| 114 | NFD_LOG_WARN("Cannot close tcp4 channel after its creation"); |
| 115 | } |
| 116 | |
| 117 | if (enableV6) { |
| 118 | tcp::Endpoint endpoint(ip::tcp::v6(), port); |
| 119 | shared_ptr<TcpChannel> v6Channel = this->createChannel(endpoint); |
| 120 | if (wantListen && !v6Channel->isListening()) { |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 121 | v6Channel->listen(this->addFace, nullptr); |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 122 | } |
| 123 | providedSchemes.insert("tcp6"); |
| 124 | } |
| 125 | else if (providedSchemes.count("tcp6") > 0) { |
| 126 | NFD_LOG_WARN("Cannot close tcp6 channel after its creation"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 127 | } |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 128 | } |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 131 | void |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 132 | TcpFactory::createFace(const CreateFaceParams& params, |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 133 | const FaceCreatedCallback& onCreated, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 134 | const FaceCreationFailedCallback& onFailure) |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 135 | { |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 136 | BOOST_ASSERT(params.remoteUri.isCanonical()); |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 137 | |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 138 | if (params.localUri) { |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 139 | NFD_LOG_TRACE("Cannot create unicast TCP face with LocalUri"); |
| 140 | onFailure(406, "Unicast TCP faces cannot be created with a LocalUri"); |
| 141 | return; |
| 142 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 143 | |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 144 | if (params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) { |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 145 | NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND"); |
| 146 | onFailure(406, "Outgoing TCP faces do not support on-demand persistency"); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 147 | return; |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 148 | } |
| 149 | |
Yanbiao Li | afb2059 | 2017-08-03 16:20:46 -0700 | [diff] [blame] | 150 | tcp::Endpoint endpoint(ndn::ip::addressFromString(params.remoteUri.getHost()), |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 151 | boost::lexical_cast<uint16_t>(params.remoteUri.getPort())); |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 152 | |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 153 | // a canonical tcp4/tcp6 FaceUri cannot have a multicast address |
| 154 | BOOST_ASSERT(!endpoint.address().is_multicast()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 155 | |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 156 | if (params.wantLocalFields && !endpoint.address().is_loopback()) { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 157 | NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled"); |
| 158 | onFailure(406, "Local fields can only be enabled on faces with local scope"); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 159 | return; |
| 160 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 161 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 162 | // very simple logic for now |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 163 | for (const auto& i : m_channels) { |
| 164 | if ((i.first.address().is_v4() && endpoint.address().is_v4()) || |
| 165 | (i.first.address().is_v6() && endpoint.address().is_v6())) { |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 166 | i.second->connect(endpoint, params.persistency, params.wantLocalFields, |
| 167 | params.wantLpReliability, onCreated, onFailure); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 168 | return; |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 169 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 170 | } |
| 171 | |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 172 | NFD_LOG_TRACE("No channels available to connect to " << endpoint); |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 173 | onFailure(504, "No channels available to connect"); |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 174 | } |
| 175 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 176 | shared_ptr<TcpChannel> |
| 177 | TcpFactory::createChannel(const tcp::Endpoint& endpoint) |
| 178 | { |
Davide Pesavento | 4b89a6e | 2017-10-07 15:29:50 -0400 | [diff] [blame] | 179 | auto it = m_channels.find(endpoint); |
| 180 | if (it != m_channels.end()) |
| 181 | return it->second; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 182 | |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame^] | 183 | auto channel = make_shared<TcpChannel>(endpoint, m_wantCongestionMarking); |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 184 | m_channels[endpoint] = channel; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 185 | return channel; |
| 186 | } |
| 187 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 188 | std::vector<shared_ptr<const Channel>> |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 189 | TcpFactory::getChannels() const |
| 190 | { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 191 | return getChannelsFromMap(m_channels); |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 192 | } |
| 193 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 194 | } // namespace face |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 195 | } // namespace nfd |