tcp-channel.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2020, 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-channel.hpp"
27 #include "face.hpp"
28 #include "generic-link-service.hpp"
29 #include "tcp-transport.hpp"
30 #include "common/global.hpp"
31 
32 namespace nfd {
33 namespace face {
34 
35 NFD_LOG_INIT(TcpChannel);
36 
37 namespace ip = boost::asio::ip;
38 
39 TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking,
40  DetermineFaceScopeFromAddress determineFaceScope)
41  : m_localEndpoint(localEndpoint)
42  , m_acceptor(getGlobalIoService())
43  , m_socket(getGlobalIoService())
44  , m_wantCongestionMarking(wantCongestionMarking)
45  , m_determineFaceScope(std::move(determineFaceScope))
46 {
47  setUri(FaceUri(m_localEndpoint));
48  NFD_LOG_CHAN_INFO("Creating channel");
49 }
50 
51 void
53  const FaceCreationFailedCallback& onAcceptFailed,
54  int backlog/* = tcp::acceptor::max_connections*/)
55 {
56  if (isListening()) {
57  NFD_LOG_CHAN_WARN("Already listening");
58  return;
59  }
60 
61  m_acceptor.open(m_localEndpoint.protocol());
62  m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
63  if (m_localEndpoint.address().is_v6()) {
64  m_acceptor.set_option(ip::v6_only(true));
65  }
66  m_acceptor.bind(m_localEndpoint);
67  m_acceptor.listen(backlog);
68 
69  accept(onFaceCreated, onAcceptFailed);
70  NFD_LOG_CHAN_DEBUG("Started listening");
71 }
72 
73 void
74 TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
75  const FaceParams& params,
76  const FaceCreatedCallback& onFaceCreated,
77  const FaceCreationFailedCallback& onConnectFailed,
78  time::nanoseconds timeout)
79 {
80  auto it = m_channelFaces.find(remoteEndpoint);
81  if (it != m_channelFaces.end()) {
82  NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
83  onFaceCreated(it->second);
84  return;
85  }
86 
87  auto clientSocket = make_shared<ip::tcp::socket>(getGlobalIoService());
88  auto timeoutEvent = getScheduler().schedule(timeout, [=] {
89  handleConnectTimeout(remoteEndpoint, clientSocket, onConnectFailed);
90  });
91 
92  NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
93  clientSocket->async_connect(remoteEndpoint, [=] (const auto& e) {
94  this->handleConnect(e, remoteEndpoint, clientSocket, params, timeoutEvent, onFaceCreated, onConnectFailed);
95  });
96 }
97 
98 void
99 TcpChannel::createFace(ip::tcp::socket&& socket,
100  const FaceParams& params,
101  const FaceCreatedCallback& onFaceCreated)
102 {
103  shared_ptr<Face> face;
104  tcp::Endpoint remoteEndpoint = socket.remote_endpoint();
105 
106  auto it = m_channelFaces.find(remoteEndpoint);
107  if (it == m_channelFaces.end()) {
109  options.allowLocalFields = params.wantLocalFields;
111 
112  if (boost::logic::indeterminate(params.wantCongestionMarking)) {
113  // Use default value for this channel if parameter is indeterminate
114  options.allowCongestionMarking = m_wantCongestionMarking;
115  }
116  else {
117  options.allowCongestionMarking = bool(params.wantCongestionMarking);
118  }
119 
120  if (params.baseCongestionMarkingInterval) {
122  }
123  if (params.defaultCongestionThreshold) {
125  }
126 
127  auto linkService = make_unique<GenericLinkService>(options);
128  auto faceScope = m_determineFaceScope(socket.local_endpoint().address(),
129  socket.remote_endpoint().address());
130  auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency, faceScope);
131  face = make_shared<Face>(std::move(linkService), std::move(transport));
132  face->setChannel(shared_from_this()); // use weak_from_this() in C++17
133 
134  m_channelFaces[remoteEndpoint] = face;
135  connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
136  }
137  else {
138  // we already have a face for this endpoint, just reuse it
139  face = it->second;
140  NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
141 
142  boost::system::error_code error;
143  socket.shutdown(ip::tcp::socket::shutdown_both, error);
144  socket.close(error);
145  }
146 
147  // Need to invoke the callback regardless of whether or not we have already created
148  // the face so that control responses and such can be sent.
149  onFaceCreated(face);
150 }
151 
152 void
153 TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
154  const FaceCreationFailedCallback& onAcceptFailed)
155 {
156  m_acceptor.async_accept(m_socket, [=] (const auto& e) { this->handleAccept(e, onFaceCreated, onAcceptFailed); });
157 }
158 
159 void
160 TcpChannel::handleAccept(const boost::system::error_code& error,
161  const FaceCreatedCallback& onFaceCreated,
162  const FaceCreationFailedCallback& onAcceptFailed)
163 {
164  if (error) {
165  if (error != boost::asio::error::operation_aborted) {
166  NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
167  if (onAcceptFailed)
168  onAcceptFailed(500, "Accept failed: " + error.message());
169  }
170  return;
171  }
172 
173  NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
174 
175  FaceParams params;
176  params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
177  createFace(std::move(m_socket), params, onFaceCreated);
178 
179  // prepare accepting the next connection
180  accept(onFaceCreated, onAcceptFailed);
181 }
182 
183 void
184 TcpChannel::handleConnect(const boost::system::error_code& error,
185  const tcp::Endpoint& remoteEndpoint,
186  const shared_ptr<ip::tcp::socket>& socket,
187  const FaceParams& params,
188  const scheduler::EventId& connectTimeoutEvent,
189  const FaceCreatedCallback& onFaceCreated,
190  const FaceCreationFailedCallback& onConnectFailed)
191 {
192  connectTimeoutEvent.cancel();
193 
194  if (error) {
195  if (error != boost::asio::error::operation_aborted) {
196  NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
197  if (onConnectFailed)
198  onConnectFailed(504, "Connection failed: " + error.message());
199  }
200  return;
201  }
202 
203  NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
204  createFace(std::move(*socket), params, onFaceCreated);
205 }
206 
207 void
208 TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
209  const shared_ptr<ip::tcp::socket>& socket,
210  const FaceCreationFailedCallback& onConnectFailed)
211 {
212  NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
213 
214  // abort the connection attempt
215  boost::system::error_code error;
216  socket->close(error);
217 
218  if (onConnectFailed)
219  onConnectFailed(504, "Connection timed out");
220 }
221 
222 } // namespace face
223 } // namespace nfd
TcpChannel(const tcp::Endpoint &localEndpoint, bool wantCongestionMarking, DetermineFaceScopeFromAddress determineFaceScope)
Create TCP channel for the local endpoint.
Definition: tcp-channel.cpp:39
bool isEnabled
enables link-layer reliability
std::function< ndn::nfd::FaceScope(const boost::asio::ip::address &local, const boost::asio::ip::address &remote)> DetermineFaceScopeFromAddress
Definition: tcp-channel.hpp:40
boost::logic::tribool wantCongestionMarking
Definition: face-common.hpp:86
STL namespace.
optional< uint64_t > defaultCongestionThreshold
Definition: face-common.hpp:82
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:78
Parameters used to set Transport properties or LinkService options on a newly created face...
Definition: face-common.hpp:78
void connectFaceClosedSignal(Face &face, std::function< void()> f)
Invokes a callback when a face is closed.
Definition: channel.cpp:41
Scheduler & getScheduler()
Returns the global Scheduler instance for the calling thread.
Definition: global.cpp:45
bool isListening() const override
Returns whether the channel is listening.
Definition: tcp-channel.hpp:62
#define NFD_LOG_CHAN_INFO(msg)
Log a message at INFO level.
Definition: channel-log.hpp:52
optional< time::nanoseconds > baseCongestionMarkingInterval
Definition: face-common.hpp:81
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
Definition: algorithm.hpp:32
boost::asio::ip::tcp::endpoint Endpoint
Definition: tcp-channel.hpp:34
void listen(const FaceCreatedCallback &onFaceCreated, const FaceCreationFailedCallback &onAcceptFailed, int backlog=boost::asio::ip::tcp::acceptor::max_connections)
Enable listening on the local endpoint, accept connections, and create faces when remote host makes a...
Definition: tcp-channel.cpp:52
void connect(const tcp::Endpoint &remoteEndpoint, const FaceParams &params, const FaceCreatedCallback &onFaceCreated, const FaceCreationFailedCallback &onConnectFailed, time::nanoseconds timeout=8_s)
Create a face by establishing a TCP connection to remoteEndpoint.
Definition: tcp-channel.cpp:74
ndn::nfd::FacePersistency persistency
Definition: face-common.hpp:80
void setUri(const FaceUri &uri)
Definition: channel.cpp:35
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
std::function< void(const shared_ptr< Face > &)> FaceCreatedCallback
Prototype for the callback that is invoked when a face is created (in response to an incoming connect...
Definition: channel.hpp:74
#define NFD_LOG_CHAN_TRACE(msg)
Log a message at TRACE level.
Definition: channel-log.hpp:46
#define NFD_LOG_CHAN_WARN(msg)
Log a message at WARN level.
Definition: channel-log.hpp:55
#define NFD_LOG_CHAN_DEBUG(msg)
Log a message at DEBUG level.
Definition: channel-log.hpp:49
boost::asio::io_service & getGlobalIoService()
Returns the global io_service instance for the calling thread.
Definition: global.cpp:36