NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
tcp-transport.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2019, 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-transport.hpp"
27 #include "common/global.hpp"
28 
29 #if defined(__linux__)
30 #include <linux/sockios.h>
31 #include <sys/ioctl.h>
32 #endif
33 
34 namespace nfd {
35 namespace face {
36 
37 NFD_LOG_MEMBER_INIT_SPECIALIZED(StreamTransport<boost::asio::ip::tcp>, TcpTransport);
38 
39 time::milliseconds TcpTransport::s_initialReconnectWait = 1_s;
40 time::milliseconds TcpTransport::s_maxReconnectWait = 5_min;
41 float TcpTransport::s_reconnectWaitMultiplier = 2.0f;
42 
43 TcpTransport::TcpTransport(protocol::socket&& socket,
44  ndn::nfd::FacePersistency persistency,
45  ndn::nfd::FaceScope faceScope)
46  : StreamTransport(std::move(socket))
47  , m_remoteEndpoint(m_socket.remote_endpoint())
48  , m_nextReconnectWait(s_initialReconnectWait)
49 {
50  this->setLocalUri(FaceUri(m_socket.local_endpoint()));
51  this->setRemoteUri(FaceUri(m_socket.remote_endpoint()));
52  this->setScope(faceScope);
53  this->setPersistency(persistency);
54  this->setLinkType(ndn::nfd::LINK_TYPE_POINT_TO_POINT);
55  this->setMtu(MTU_UNLIMITED);
56 
57  NFD_LOG_FACE_DEBUG("Creating transport");
58 }
59 
60 ssize_t
61 TcpTransport::getSendQueueLength()
62 {
63  int queueLength = getSendQueueBytes();
64 
65  // We want to obtain the amount of "not sent" bytes instead of the amount of "not sent" + "not
66  // acked" bytes. On Linux, we use SIOCOUTQNSD for this reason. However, macOS does not provide an
67  // efficient mechanism to obtain this value (SO_NWRITE includes both "not sent" and "not acked").
68 #if defined(__linux__)
69  int nsd;
70  if (ioctl(m_socket.native_handle(), SIOCOUTQNSD, &nsd) < 0) {
71  NFD_LOG_FACE_WARN("Failed to obtain send queue length from socket: " << std::strerror(errno));
72  }
73  else if (nsd > 0) {
74  NFD_LOG_FACE_TRACE("SIOCOUTQNSD=" << nsd);
75  queueLength += nsd;
76  }
77 #endif
78 
79  return queueLength;
80 }
81 
82 bool
83 TcpTransport::canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const
84 {
85  return true;
86 }
87 
88 void
89 TcpTransport::afterChangePersistency(ndn::nfd::FacePersistency oldPersistency)
90 {
91  // if persistency was changed from permanent to any other value
92  if (oldPersistency == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
93  if (this->getState() == TransportState::DOWN) {
94  // non-permanent transport cannot be in DOWN state, so fail hard
95  this->setState(TransportState::FAILED);
96  doClose();
97  }
98  }
99 }
100 
101 void
102 TcpTransport::handleError(const boost::system::error_code& error)
103 {
104  if (this->getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
105  NFD_LOG_FACE_TRACE("TCP socket error: " << error.message());
106  this->setState(TransportState::DOWN);
107 
108  // cancel all outstanding operations
109  boost::system::error_code ec;
110  m_socket.cancel(ec);
111 
112  // do this asynchronously because there could be some callbacks still pending
113  getGlobalIoService().post([this] { reconnect(); });
114  }
115  else {
117  }
118 }
119 
120 void
121 TcpTransport::reconnect()
122 {
123  NFD_LOG_FACE_TRACE(__func__);
124 
125  if (getState() == TransportState::CLOSING ||
126  getState() == TransportState::FAILED ||
127  getState() == TransportState::CLOSED) {
128  // transport is shutting down, don't attempt to reconnect
129  return;
130  }
131 
132  BOOST_ASSERT(getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT);
133  BOOST_ASSERT(getState() == TransportState::DOWN);
134 
135  // recreate the socket
136  m_socket = protocol::socket(
137 #if BOOST_VERSION >= 107000
138  m_socket.get_executor()
139 #else
140  m_socket.get_io_service()
141 #endif // BOOST_VERSION >= 107000
142  );
143  this->resetReceiveBuffer();
144  this->resetSendQueue();
145 
146  m_reconnectEvent = getScheduler().schedule(m_nextReconnectWait,
147  [this] { this->handleReconnectTimeout(); });
148  m_socket.async_connect(m_remoteEndpoint, [this] (const auto& e) { this->handleReconnect(e); });
149 }
150 
151 void
152 TcpTransport::handleReconnect(const boost::system::error_code& error)
153 {
154  if (getState() == TransportState::CLOSING ||
155  getState() == TransportState::FAILED ||
156  getState() == TransportState::CLOSED ||
158  // transport is shutting down, abort the reconnection attempt and ignore any errors
159  return;
160  }
161 
162  if (error) {
163  NFD_LOG_FACE_TRACE("Reconnection attempt failed: " << error.message());
164  return;
165  }
166 
167  m_reconnectEvent.cancel();
168  m_nextReconnectWait = s_initialReconnectWait;
169 
170  this->setLocalUri(FaceUri(m_socket.local_endpoint()));
171  NFD_LOG_FACE_TRACE("TCP connection reestablished");
172  this->setState(TransportState::UP);
173  this->startReceive();
174 }
175 
176 void
177 TcpTransport::handleReconnectTimeout()
178 {
179  // abort the reconnection attempt
180  boost::system::error_code error;
181  m_socket.close(error);
182 
183  // exponentially back off the reconnection timer
184  m_nextReconnectWait =
185  std::min(time::duration_cast<time::milliseconds>(m_nextReconnectWait * s_reconnectWaitMultiplier),
186  s_maxReconnectWait);
187 
188  // do this asynchronously because there could be some callbacks still pending
189  getGlobalIoService().post([this] { reconnect(); });
190 }
191 
192 void
193 TcpTransport::doClose()
194 {
195  m_reconnectEvent.cancel();
197 }
198 
199 } // namespace face
200 } // namespace nfd
void doClose() override
performs Transport specific operations to close the transport
NFD_LOG_MEMBER_INIT_SPECIALIZED((DatagramTransport< boost::asio::ip::udp, Multicast >), MulticastUdpTransport)
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
const ssize_t MTU_UNLIMITED
indicates the transport has no limit on payload size
Definition: transport.hpp:91
virtual void handleError(const boost::system::error_code &error)
STL namespace.
detail::SimulatorIo & getGlobalIoService()
Returns the global io_service instance for the calling thread.
Definition: global.cpp:49
the transport is being closed due to a failure
Scheduler & getScheduler()
Returns the global Scheduler instance for the calling thread.
Definition: global.cpp:70
#define NFD_LOG_FACE_DEBUG(msg)
Log a message at DEBUG level.
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:39
the transport is closed, and can be safely deallocated
void post(const std::function< void()> &callback)
Definition: global.cpp:35
the transport is being closed gracefully, either by the peer or by a call to close() ...
Catch-all error for socket component errors that don&#39;t fit in other categories.
Definition: base.hpp:83
the transport is up and can transmit packets
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
the transport is temporarily down, and is being recovered
boost::chrono::milliseconds milliseconds
Definition: time.hpp:48