blob: f45d786c5cbb56804841686b61c8c9ce92a254a0 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2d491752017-07-14 21:32:05 +00002/*
Davide Pesavento19779d82019-02-14 13:40:04 -05003 * Copyright (c) 2014-2019, 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 Afanasyeva9034b02014-01-26 18:32:02 -080027
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080028namespace nfd {
Junxiao Shi38b24c72017-01-05 02:59:31 +000029namespace face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080030
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020031namespace ip = boost::asio::ip;
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080032
Davide Pesaventoa3148082018-04-12 18:21:54 -040033NFD_LOG_INIT(TcpFactory);
Junxiao Shib47247d2017-01-24 15:09:16 +000034NFD_REGISTER_PROTOCOL_FACTORY(TcpFactory);
35
36const std::string&
Davide Pesaventod27841b2018-11-13 00:22:24 -050037TcpFactory::getId() noexcept
Junxiao Shib47247d2017-01-24 15:09:16 +000038{
39 static std::string id("tcp");
40 return id;
41}
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060042
43void
Davide Pesaventod27841b2018-11-13 00:22:24 -050044TcpFactory::doProcessConfig(OptionalConfigSection configSection,
45 FaceSystem::ConfigContext& context)
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060046{
Junxiao Shi38b24c72017-01-05 02:59:31 +000047 // tcp
48 // {
49 // listen yes
50 // port 6363
51 // enable_v4 yes
52 // enable_v6 yes
53 // }
54
Eric Newberry0c841642018-01-17 15:01:00 -070055 m_wantCongestionMarking = context.generalConfig.wantCongestionMarking;
56
Junxiao Shi38b24c72017-01-05 02:59:31 +000057 if (!configSection) {
58 if (!context.isDryRun && !m_channels.empty()) {
Davide Pesaventod27841b2018-11-13 00:22:24 -050059 NFD_LOG_WARN("Cannot disable TCP channels after initialization");
Junxiao Shi38b24c72017-01-05 02:59:31 +000060 }
61 return;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020062 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060063
Junxiao Shi38b24c72017-01-05 02:59:31 +000064 bool wantListen = true;
65 uint16_t port = 6363;
66 bool enableV4 = true;
67 bool enableV6 = true;
Alexander Afanasyevded17422018-04-03 19:00:23 -040068 IpAddressPredicate local;
69 bool isLocalConfigured = false;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060070
Junxiao Shi38b24c72017-01-05 02:59:31 +000071 for (const auto& pair : *configSection) {
72 const std::string& key = pair.first;
73
74 if (key == "listen") {
75 wantListen = ConfigFile::parseYesNo(pair, "face_system.tcp");
76 }
77 else if (key == "port") {
78 port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.tcp");
79 }
80 else if (key == "enable_v4") {
81 enableV4 = ConfigFile::parseYesNo(pair, "face_system.tcp");
82 }
83 else if (key == "enable_v6") {
84 enableV6 = ConfigFile::parseYesNo(pair, "face_system.tcp");
85 }
Alexander Afanasyevded17422018-04-03 19:00:23 -040086 else if (key == "local") {
87 isLocalConfigured = true;
88 for (const auto& localPair : pair.second) {
89 const std::string& localKey = localPair.first;
90 if (localKey == "whitelist") {
91 local.parseWhitelist(localPair.second);
92 }
93 else if (localKey == "blacklist") {
94 local.parseBlacklist(localPair.second);
95 }
96 else {
Davide Pesavento19779d82019-02-14 13:40:04 -050097 NDN_THROW(ConfigFile::Error("Unrecognized option face_system.tcp.local." + localKey));
Alexander Afanasyevded17422018-04-03 19:00:23 -040098 }
99 }
100 }
Junxiao Shi38b24c72017-01-05 02:59:31 +0000101 else {
Davide Pesavento19779d82019-02-14 13:40:04 -0500102 NDN_THROW(ConfigFile::Error("Unrecognized option face_system.tcp." + key));
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600103 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100104 }
Alexander Afanasyevded17422018-04-03 19:00:23 -0400105 if (!isLocalConfigured) {
106 local.assign({{"subnet", "127.0.0.0/8"}, {"subnet", "::1/128"}}, {});
107 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600108
Junxiao Shi38b24c72017-01-05 02:59:31 +0000109 if (!enableV4 && !enableV6) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500110 NDN_THROW(ConfigFile::Error(
Junxiao Shi38b24c72017-01-05 02:59:31 +0000111 "IPv4 and IPv6 TCP channels have been disabled. Remove face_system.tcp section to disable "
112 "TCP channels or enable at least one channel type."));
113 }
114
Davide Pesaventod27841b2018-11-13 00:22:24 -0500115 if (context.isDryRun) {
116 return;
Davide Pesaventob499a602014-11-18 22:36:56 +0100117 }
Davide Pesaventod27841b2018-11-13 00:22:24 -0500118
119 providedSchemes.insert("tcp");
120
121 if (enableV4) {
122 tcp::Endpoint endpoint(ip::tcp::v4(), port);
123 auto v4Channel = this->createChannel(endpoint);
124 if (wantListen && !v4Channel->isListening()) {
125 v4Channel->listen(this->addFace, nullptr);
126 }
127 providedSchemes.insert("tcp4");
128 }
129 else if (providedSchemes.count("tcp4") > 0) {
130 NFD_LOG_WARN("Cannot close tcp4 channel after its creation");
131 }
132
133 if (enableV6) {
134 tcp::Endpoint endpoint(ip::tcp::v6(), port);
135 auto v6Channel = this->createChannel(endpoint);
136 if (wantListen && !v6Channel->isListening()) {
137 v6Channel->listen(this->addFace, nullptr);
138 }
139 providedSchemes.insert("tcp6");
140 }
141 else if (providedSchemes.count("tcp6") > 0) {
142 NFD_LOG_WARN("Cannot close tcp6 channel after its creation");
143 }
144
145 m_local = std::move(local);
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800146}
147
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800148void
Davide Pesaventod27841b2018-11-13 00:22:24 -0500149TcpFactory::doCreateFace(const CreateFaceRequest& req,
150 const FaceCreatedCallback& onCreated,
151 const FaceCreationFailedCallback& onFailure)
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800152{
Davide Pesavento15b55052018-01-27 19:09:28 -0500153 if (req.localUri) {
Eric Newberry78e32b02017-04-01 14:34:44 +0000154 NFD_LOG_TRACE("Cannot create unicast TCP face with LocalUri");
155 onFailure(406, "Unicast TCP faces cannot be created with a LocalUri");
156 return;
157 }
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200158
Davide Pesavento15b55052018-01-27 19:09:28 -0500159 if (req.params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) {
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400160 NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND");
161 onFailure(406, "Outgoing TCP faces do not support on-demand persistency");
Eric Newberry42602412016-08-27 09:33:18 -0700162 return;
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800163 }
164
Davide Pesavento9c33b902018-05-20 01:30:29 -0400165 tcp::Endpoint endpoint(ip::address::from_string(req.remoteUri.getHost()),
Davide Pesavento15b55052018-01-27 19:09:28 -0500166 boost::lexical_cast<uint16_t>(req.remoteUri.getPort()));
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800167
Davide Pesavento46afec42017-05-28 14:28:47 -0400168 // a canonical tcp4/tcp6 FaceUri cannot have a multicast address
169 BOOST_ASSERT(!endpoint.address().is_multicast());
Eric Newberry42602412016-08-27 09:33:18 -0700170
Davide Pesavento15b55052018-01-27 19:09:28 -0500171 if (req.params.wantLocalFields && !endpoint.address().is_loopback()) {
Eric Newberryf40551a2016-09-05 15:41:16 -0700172 NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
173 onFailure(406, "Local fields can only be enabled on faces with local scope");
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200174 return;
175 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600176
Eric Newberry812d6152018-06-06 15:06:01 -0700177 if (req.params.mtu) {
178 NFD_LOG_TRACE("createFace cannot create a TCP face with an overridden MTU");
179 onFailure(406, "TCP faces do not support MTU overrides");
180 return;
181 }
182
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800183 // very simple logic for now
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200184 for (const auto& i : m_channels) {
185 if ((i.first.address().is_v4() && endpoint.address().is_v4()) ||
186 (i.first.address().is_v6() && endpoint.address().is_v6())) {
Davide Pesavento15b55052018-01-27 19:09:28 -0500187 i.second->connect(endpoint, req.params, onCreated, onFailure);
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200188 return;
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800189 }
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200190 }
191
Davide Pesavento46afec42017-05-28 14:28:47 -0400192 NFD_LOG_TRACE("No channels available to connect to " << endpoint);
Eric Newberryf40551a2016-09-05 15:41:16 -0700193 onFailure(504, "No channels available to connect");
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800194}
195
Junxiao Shi38b24c72017-01-05 02:59:31 +0000196shared_ptr<TcpChannel>
197TcpFactory::createChannel(const tcp::Endpoint& endpoint)
198{
Davide Pesavento4b89a6e2017-10-07 15:29:50 -0400199 auto it = m_channels.find(endpoint);
200 if (it != m_channels.end())
201 return it->second;
Junxiao Shi38b24c72017-01-05 02:59:31 +0000202
Alexander Afanasyevded17422018-04-03 19:00:23 -0400203 auto channel = make_shared<TcpChannel>(endpoint, m_wantCongestionMarking,
204 bind(&TcpFactory::determineFaceScopeFromAddresses, this, _1, _2));
Junxiao Shi38b24c72017-01-05 02:59:31 +0000205 m_channels[endpoint] = channel;
Junxiao Shi38b24c72017-01-05 02:59:31 +0000206 return channel;
207}
208
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200209std::vector<shared_ptr<const Channel>>
Davide Pesaventod27841b2018-11-13 00:22:24 -0500210TcpFactory::doGetChannels() const
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600211{
Junxiao Shi38b24c72017-01-05 02:59:31 +0000212 return getChannelsFromMap(m_channels);
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600213}
214
Alexander Afanasyevded17422018-04-03 19:00:23 -0400215ndn::nfd::FaceScope
216TcpFactory::determineFaceScopeFromAddresses(const boost::asio::ip::address& localAddress,
217 const boost::asio::ip::address& remoteAddress) const
218{
219 if (m_local(localAddress) && m_local(remoteAddress)) {
220 return ndn::nfd::FACE_SCOPE_LOCAL;
221 }
222 return ndn::nfd::FACE_SCOPE_NON_LOCAL;
223}
224
Junxiao Shi38b24c72017-01-05 02:59:31 +0000225} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800226} // namespace nfd