tcp-factory.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, Regents of the University of California,
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 "tcp-factory.hpp"
27 
28 namespace nfd {
29 namespace face {
30 
31 namespace ip = boost::asio::ip;
32 
33 NFD_LOG_INIT(TcpFactory);
35 
36 const std::string&
38 {
39  static std::string id("tcp");
40  return id;
41 }
42 
44  : ProtocolFactory(params)
45 {
46 }
47 
48 void
51 {
52  // tcp
53  // {
54  // listen yes
55  // port 6363
56  // enable_v4 yes
57  // enable_v6 yes
58  // }
59 
60  m_wantCongestionMarking = context.generalConfig.wantCongestionMarking;
61 
62  if (!configSection) {
63  if (!context.isDryRun && !m_channels.empty()) {
64  NFD_LOG_WARN("Cannot disable tcp4 and tcp6 channels after initialization");
65  }
66  return;
67  }
68 
69  bool wantListen = true;
70  uint16_t port = 6363;
71  bool enableV4 = true;
72  bool enableV6 = true;
73  IpAddressPredicate local;
74  bool isLocalConfigured = false;
75 
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 if (key == "local") {
92  isLocalConfigured = true;
93  for (const auto& localPair : pair.second) {
94  const std::string& localKey = localPair.first;
95  if (localKey == "whitelist") {
96  local.parseWhitelist(localPair.second);
97  }
98  else if (localKey == "blacklist") {
99  local.parseBlacklist(localPair.second);
100  }
101  else {
102  BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.tcp.local." + localKey));
103  }
104  }
105  }
106  else {
107  BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.tcp." + key));
108  }
109  }
110  if (!isLocalConfigured) {
111  local.assign({{"subnet", "127.0.0.0/8"}, {"subnet", "::1/128"}}, {});
112  }
113 
114  if (!enableV4 && !enableV6) {
115  BOOST_THROW_EXCEPTION(ConfigFile::Error(
116  "IPv4 and IPv6 TCP channels have been disabled. Remove face_system.tcp section to disable "
117  "TCP channels or enable at least one channel type."));
118  }
119 
120  if (!context.isDryRun) {
121  providedSchemes.insert("tcp");
122 
123  if (enableV4) {
124  tcp::Endpoint endpoint(ip::tcp::v4(), port);
125  shared_ptr<TcpChannel> v4Channel = this->createChannel(endpoint);
126  if (wantListen && !v4Channel->isListening()) {
127  v4Channel->listen(this->addFace, nullptr);
128  }
129  providedSchemes.insert("tcp4");
130  }
131  else if (providedSchemes.count("tcp4") > 0) {
132  NFD_LOG_WARN("Cannot close tcp4 channel after its creation");
133  }
134 
135  if (enableV6) {
136  tcp::Endpoint endpoint(ip::tcp::v6(), port);
137  shared_ptr<TcpChannel> v6Channel = this->createChannel(endpoint);
138  if (wantListen && !v6Channel->isListening()) {
139  v6Channel->listen(this->addFace, nullptr);
140  }
141  providedSchemes.insert("tcp6");
142  }
143  else if (providedSchemes.count("tcp6") > 0) {
144  NFD_LOG_WARN("Cannot close tcp6 channel after its creation");
145  }
146 
147  m_local = std::move(local);
148  }
149 }
150 
151 void
153  const FaceCreatedCallback& onCreated,
154  const FaceCreationFailedCallback& onFailure)
155 {
156  BOOST_ASSERT(req.remoteUri.isCanonical());
157 
158  if (req.localUri) {
159  NFD_LOG_TRACE("Cannot create unicast TCP face with LocalUri");
160  onFailure(406, "Unicast TCP faces cannot be created with a LocalUri");
161  return;
162  }
163 
164  if (req.params.persistency == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND) {
165  NFD_LOG_TRACE("createFace does not support FACE_PERSISTENCY_ON_DEMAND");
166  onFailure(406, "Outgoing TCP faces do not support on-demand persistency");
167  return;
168  }
169 
170  tcp::Endpoint endpoint(ip::address::from_string(req.remoteUri.getHost()),
171  boost::lexical_cast<uint16_t>(req.remoteUri.getPort()));
172 
173  // a canonical tcp4/tcp6 FaceUri cannot have a multicast address
174  BOOST_ASSERT(!endpoint.address().is_multicast());
175 
176  if (req.params.wantLocalFields && !endpoint.address().is_loopback()) {
177  NFD_LOG_TRACE("createFace cannot create non-local face with local fields enabled");
178  onFailure(406, "Local fields can only be enabled on faces with local scope");
179  return;
180  }
181 
182  if (req.params.mtu) {
183  NFD_LOG_TRACE("createFace cannot create a TCP face with an overridden MTU");
184  onFailure(406, "TCP faces do not support MTU overrides");
185  return;
186  }
187 
188  // very simple logic for now
189  for (const auto& i : m_channels) {
190  if ((i.first.address().is_v4() && endpoint.address().is_v4()) ||
191  (i.first.address().is_v6() && endpoint.address().is_v6())) {
192  i.second->connect(endpoint, req.params, onCreated, onFailure);
193  return;
194  }
195  }
196 
197  NFD_LOG_TRACE("No channels available to connect to " << endpoint);
198  onFailure(504, "No channels available to connect");
199 }
200 
201 shared_ptr<TcpChannel>
203 {
204  auto it = m_channels.find(endpoint);
205  if (it != m_channels.end())
206  return it->second;
207 
208  auto channel = make_shared<TcpChannel>(endpoint, m_wantCongestionMarking,
209  bind(&TcpFactory::determineFaceScopeFromAddresses, this, _1, _2));
210  m_channels[endpoint] = channel;
211  return channel;
212 }
213 
214 std::vector<shared_ptr<const Channel>>
216 {
217  return getChannelsFromMap(m_channels);
218 }
219 
220 ndn::nfd::FaceScope
221 TcpFactory::determineFaceScopeFromAddresses(const boost::asio::ip::address& localAddress,
222  const boost::asio::ip::address& remoteAddress) const
223 {
224  if (m_local(localAddress) && m_local(remoteAddress)) {
225  return ndn::nfd::FACE_SCOPE_LOCAL;
226  }
227  return ndn::nfd::FACE_SCOPE_NON_LOCAL;
228 }
229 
230 } // namespace face
231 } // namespace nfd
FaceCreatedCallback addFace
callback when a new face is created
void parseWhitelist(const boost::property_tree::ptree &list)
shared_ptr< TcpChannel > createChannel(const tcp::Endpoint &localEndpoint)
Create TCP-based channel using tcp::Endpoint.
static const std::string & getId()
Definition: tcp-factory.cpp:37
void createFace(const CreateFaceRequest &req, const FaceCreatedCallback &onCreated, const FaceCreationFailedCallback &onFailure) override
Try to create a unicast face using the supplied parameters.
std::set< std::string > providedSchemes
FaceUri schemes provided by this ProtocolFactory.
#define NFD_LOG_TRACE
Definition: logger.hpp:37
std::function< void(uint32_t status, const std::string &reason)> FaceCreationFailedCallback
Prototype for the callback that is invoked when a face fails to be created.
Definition: channel.hpp:44
static bool parseYesNo(const ConfigSection &node, const std::string &key, const std::string &sectionName)
parse a config option that can be either "yes" or "no"
Definition: config-file.cpp:59
boost::optional< const ConfigSection & > OptionalConfigSection
an optional config file section
Definition: config-file.hpp:41
std::function< void(const shared_ptr< Face > &face)> FaceCreatedCallback
Prototype for the callback that is invoked when a face is created (in response to an incoming connect...
Definition: channel.hpp:40
#define NFD_REGISTER_PROTOCOL_FACTORY(PF)
registers a protocol factory
TcpFactory(const CtorParams &params)
Definition: tcp-factory.cpp:43
context for processing a config section in ProtocolFactory
Definition: face-system.hpp:92
static std::vector< shared_ptr< const Channel > > getChannelsFromMap(const ChannelMap &channelMap)
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
Definition: algorithm.hpp:32
Represents a predicate to accept or reject an IP address.
boost::asio::ip::tcp::endpoint Endpoint
Definition: tcp-channel.hpp:35
#define NFD_LOG_WARN
Definition: logger.hpp:40
void assign(std::initializer_list< std::pair< std::string, std::string >> whitelist, std::initializer_list< std::pair< std::string, std::string >> blacklist)
void processConfig(OptionalConfigSection configSection, FaceSystem::ConfigContext &context) override
process face_system.tcp config section
Definition: tcp-factory.cpp:49
optional< ssize_t > mtu
Definition: channel.hpp:92
ndn::nfd::FacePersistency persistency
Definition: channel.hpp:89
void parseBlacklist(const boost::property_tree::ptree &list)
std::vector< shared_ptr< const Channel > > getChannels() const override
Provides support for an underlying protocol.
Parameters to ProtocolFactory constructor.
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
Encapsulates a face creation request and all its parameters.