blob: f87fbb6aeef0689ed296dfa4cd0373cc17811049 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi38b24c72017-01-05 02:59:31 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Chengyu Fan4381fb62015-01-14 11:37:04 -07004 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "tcp-factory.hpp"
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080027#include "core/logger.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080028
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080029namespace nfd {
Junxiao Shi38b24c72017-01-05 02:59:31 +000030namespace face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080031
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020032namespace ip = boost::asio::ip;
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080033
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020034NFD_LOG_INIT("TcpFactory");
Junxiao Shib47247d2017-01-24 15:09:16 +000035NFD_REGISTER_PROTOCOL_FACTORY(TcpFactory);
36
37const std::string&
38TcpFactory::getId()
39{
40 static std::string id("tcp");
41 return id;
42}
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060043
44void
Junxiao Shi38b24c72017-01-05 02:59:31 +000045TcpFactory::processConfig(OptionalConfigSection configSection,
46 FaceSystem::ConfigContext& context)
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060047{
Junxiao Shi38b24c72017-01-05 02:59:31 +000048 // tcp
49 // {
50 // listen yes
51 // port 6363
52 // enable_v4 yes
53 // enable_v6 yes
54 // }
55
56 if (!configSection) {
57 if (!context.isDryRun && !m_channels.empty()) {
58 NFD_LOG_WARN("Cannot disable tcp4 and tcp6 channels after initialization");
59 }
60 return;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020061 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060062
Junxiao Shi38b24c72017-01-05 02:59:31 +000063 bool wantListen = true;
64 uint16_t port = 6363;
65 bool enableV4 = true;
66 bool enableV6 = true;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060067
Junxiao Shi38b24c72017-01-05 02:59:31 +000068 for (const auto& pair : *configSection) {
69 const std::string& key = pair.first;
70
71 if (key == "listen") {
72 wantListen = ConfigFile::parseYesNo(pair, "face_system.tcp");
73 }
74 else if (key == "port") {
75 port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.tcp");
76 }
77 else if (key == "enable_v4") {
78 enableV4 = ConfigFile::parseYesNo(pair, "face_system.tcp");
79 }
80 else if (key == "enable_v6") {
81 enableV6 = ConfigFile::parseYesNo(pair, "face_system.tcp");
82 }
83 else {
84 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.tcp." + key));
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060085 }
Davide Pesaventob499a602014-11-18 22:36:56 +010086 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060087
Junxiao Shi38b24c72017-01-05 02:59:31 +000088 if (!enableV4 && !enableV6) {
89 BOOST_THROW_EXCEPTION(ConfigFile::Error(
90 "IPv4 and IPv6 TCP channels have been disabled. Remove face_system.tcp section to disable "
91 "TCP channels or enable at least one channel type."));
92 }
93
94 if (!context.isDryRun) {
95 providedSchemes.insert("tcp");
96
97 if (enableV4) {
98 tcp::Endpoint endpoint(ip::tcp::v4(), port);
99 shared_ptr<TcpChannel> v4Channel = this->createChannel(endpoint);
100 if (wantListen && !v4Channel->isListening()) {
101 v4Channel->listen(context.addFace, nullptr);
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800102 }
Junxiao Shi38b24c72017-01-05 02:59:31 +0000103 providedSchemes.insert("tcp4");
104 }
105 else if (providedSchemes.count("tcp4") > 0) {
106 NFD_LOG_WARN("Cannot close tcp4 channel after its creation");
107 }
108
109 if (enableV6) {
110 tcp::Endpoint endpoint(ip::tcp::v6(), port);
111 shared_ptr<TcpChannel> v6Channel = this->createChannel(endpoint);
112 if (wantListen && !v6Channel->isListening()) {
113 v6Channel->listen(context.addFace, nullptr);
114 }
115 providedSchemes.insert("tcp6");
116 }
117 else if (providedSchemes.count("tcp6") > 0) {
118 NFD_LOG_WARN("Cannot close tcp6 channel after its creation");
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600119 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100120 }
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800121}
122
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800123void
Eric Newberry78e32b02017-04-01 14:34:44 +0000124TcpFactory::createFace(const FaceUri& remoteUri,
125 const ndn::optional<FaceUri>& localUri,
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800126 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -0700127 bool wantLocalFieldsEnabled,
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800128 const FaceCreatedCallback& onCreated,
Eric Newberryf40551a2016-09-05 15:41:16 -0700129 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800130{
Eric Newberry78e32b02017-04-01 14:34:44 +0000131 BOOST_ASSERT(remoteUri.isCanonical());
132
133 if (localUri) {
134 NFD_LOG_TRACE("Cannot create unicast TCP face with LocalUri");
135 onFailure(406, "Unicast TCP faces cannot be created with a LocalUri");
136 return;
137 }
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200138
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800139 if (persistency != ndn::nfd::FACE_PERSISTENCY_PERSISTENT) {
Eric Newberry42602412016-08-27 09:33:18 -0700140 NFD_LOG_TRACE("createFace only supports FACE_PERSISTENCY_PERSISTENT");
Eric Newberryf40551a2016-09-05 15:41:16 -0700141 onFailure(406, "Outgoing TCP faces only support persistent persistency");
Eric Newberry42602412016-08-27 09:33:18 -0700142 return;
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800143 }
144
Eric Newberry78e32b02017-04-01 14:34:44 +0000145 tcp::Endpoint endpoint(ip::address::from_string(remoteUri.getHost()),
146 boost::lexical_cast<uint16_t>(remoteUri.getPort()));
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800147
Eric Newberry42602412016-08-27 09:33:18 -0700148 if (endpoint.address().is_multicast()) {
149 NFD_LOG_TRACE("createFace cannot create multicast faces");
Eric Newberryf40551a2016-09-05 15:41:16 -0700150 onFailure(406, "Cannot create multicast TCP faces");
Eric Newberry42602412016-08-27 09:33:18 -0700151 return;
152 }
153
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200154 if (m_prohibitedEndpoints.find(endpoint) != m_prohibitedEndpoints.end()) {
Eric Newberry42602412016-08-27 09:33:18 -0700155 NFD_LOG_TRACE("Requested endpoint is prohibited "
156 "(reserved by NFD or disallowed by face management protocol)");
Eric Newberryf40551a2016-09-05 15:41:16 -0700157 onFailure(406, "Requested endpoint is prohibited");
158 return;
159 }
160
161 if (wantLocalFieldsEnabled && !endpoint.address().is_loopback()) {
162 NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
163 onFailure(406, "Local fields can only be enabled on faces with local scope");
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200164 return;
165 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600166
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800167 // very simple logic for now
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200168 for (const auto& i : m_channels) {
169 if ((i.first.address().is_v4() && endpoint.address().is_v4()) ||
170 (i.first.address().is_v6() && endpoint.address().is_v6())) {
Eric Newberryf40551a2016-09-05 15:41:16 -0700171 i.second->connect(endpoint, wantLocalFieldsEnabled, onCreated, onFailure);
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200172 return;
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800173 }
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200174 }
175
Eric Newberry42602412016-08-27 09:33:18 -0700176 NFD_LOG_TRACE("No channels available to connect to " + boost::lexical_cast<std::string>(endpoint));
Eric Newberryf40551a2016-09-05 15:41:16 -0700177 onFailure(504, "No channels available to connect");
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800178}
179
Junxiao Shi38b24c72017-01-05 02:59:31 +0000180void
181TcpFactory::prohibitEndpoint(const tcp::Endpoint& endpoint)
182{
183 if (endpoint.address().is_v4() &&
184 endpoint.address() == ip::address_v4::any()) {
185 prohibitAllIpv4Endpoints(endpoint.port());
186 }
187 else if (endpoint.address().is_v6() &&
188 endpoint.address() == ip::address_v6::any()) {
189 prohibitAllIpv6Endpoints(endpoint.port());
190 }
191
192 NFD_LOG_TRACE("prohibiting TCP " << endpoint);
193 m_prohibitedEndpoints.insert(endpoint);
194}
195
196void
197TcpFactory::prohibitAllIpv4Endpoints(uint16_t port)
198{
199 ///\todo prohibited endpoints need to react to dynamic NIC changes
200 for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
201 for (const auto& addr : nic.ipv4Addresses) {
202 if (addr != ip::address_v4::any()) {
203 prohibitEndpoint(tcp::Endpoint(addr, port));
204 }
205 }
206 }
207}
208
209void
210TcpFactory::prohibitAllIpv6Endpoints(uint16_t port)
211{
212 ///\todo prohibited endpoints need to react to dynamic NIC changes
213 for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
214 for (const auto& addr : nic.ipv6Addresses) {
215 if (addr != ip::address_v6::any()) {
216 prohibitEndpoint(tcp::Endpoint(addr, port));
217 }
218 }
219 }
220}
221
222shared_ptr<TcpChannel>
223TcpFactory::createChannel(const tcp::Endpoint& endpoint)
224{
225 auto channel = findChannel(endpoint);
226 if (channel)
227 return channel;
228
229 channel = make_shared<TcpChannel>(endpoint);
230 m_channels[endpoint] = channel;
231 prohibitEndpoint(endpoint);
232
233 NFD_LOG_DEBUG("Channel [" << endpoint << "] created");
234 return channel;
235}
236
237shared_ptr<TcpChannel>
238TcpFactory::createChannel(const std::string& localIp, const std::string& localPort)
239{
240 tcp::Endpoint endpoint(ip::address::from_string(localIp),
241 boost::lexical_cast<uint16_t>(localPort));
242 return createChannel(endpoint);
243}
244
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200245std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600246TcpFactory::getChannels() const
247{
Junxiao Shi38b24c72017-01-05 02:59:31 +0000248 return getChannelsFromMap(m_channels);
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600249}
250
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200251shared_ptr<TcpChannel>
252TcpFactory::findChannel(const tcp::Endpoint& localEndpoint) const
253{
254 auto i = m_channels.find(localEndpoint);
255 if (i != m_channels.end())
256 return i->second;
257 else
258 return nullptr;
259}
260
Junxiao Shi38b24c72017-01-05 02:59:31 +0000261} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800262} // namespace nfd