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-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-transport.hpp"
27 
28 #if defined(__linux__)
29 #include <linux/sockios.h>
30 #include <sys/ioctl.h>
31 #endif
32 
33 namespace nfd {
34 namespace face {
35 
37 
38 time::milliseconds TcpTransport::s_initialReconnectWait = time::seconds(1);
39 time::milliseconds TcpTransport::s_maxReconnectWait = time::minutes(5);
40 float TcpTransport::s_reconnectWaitMultiplier = 2.0f;
41 
42 TcpTransport::TcpTransport(protocol::socket&& socket, ndn::nfd::FacePersistency persistency)
43  : StreamTransport(std::move(socket))
44  , m_remoteEndpoint(m_socket.remote_endpoint())
45  , m_nextReconnectWait(s_initialReconnectWait)
46 {
47  this->setLocalUri(FaceUri(m_socket.local_endpoint()));
48  this->setRemoteUri(FaceUri(m_socket.remote_endpoint()));
49 
50  if (m_socket.local_endpoint().address().is_loopback() &&
51  m_socket.remote_endpoint().address().is_loopback())
53  else
55 
56  this->setPersistency(persistency);
58  this->setMtu(MTU_UNLIMITED);
59 
60  NFD_LOG_FACE_INFO("Creating transport");
61 }
62 
63 ssize_t
65 {
66  int queueLength = getSendQueueBytes();
67 
68  // We want to obtain the amount of "not sent" bytes instead of the amount of "not sent" + "not
69  // acked" bytes. On Linux, we use SIOCOUTQNSD for this reason. However, macOS does not provide an
70  // efficient mechanism to obtain this value (SO_NWRITE includes both "not sent" and "not acked").
71 #if defined(__linux__)
72  int nsd;
73  if (ioctl(m_socket.native_handle(), SIOCOUTQNSD, &nsd) < 0) {
74  NFD_LOG_FACE_WARN("Failed to obtain send queue length from socket: " << std::strerror(errno));
75  }
76  else if (nsd > 0) {
77  NFD_LOG_FACE_TRACE("SIOCOUTQNSD=" << nsd);
78  queueLength += nsd;
79  }
80 #endif
81 
82  return queueLength;
83 }
84 
85 bool
87 {
88  return true;
89 }
90 
91 void
93 {
94  // if persistency was changed from permanent to any other value
95  if (oldPersistency == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
96  if (this->getState() == TransportState::DOWN) {
97  // non-permanent transport cannot be in DOWN state, so fail hard
99  doClose();
100  }
101  }
102 }
103 
104 void
105 TcpTransport::handleError(const boost::system::error_code& error)
106 {
108  NFD_LOG_FACE_TRACE("TCP socket error: " << error.message());
110 
111  // cancel all outstanding operations
112  boost::system::error_code error;
113  m_socket.cancel(error);
114 
115  // do this asynchronously because there could be some callbacks still pending
116  getGlobalIoService().post([this] { reconnect(); });
117  }
118  else {
120  }
121 }
122 
123 void
124 TcpTransport::reconnect()
125 {
126  NFD_LOG_FACE_TRACE(__func__);
127 
131  // transport is shutting down, don't attempt to reconnect
132  return;
133  }
134 
136  BOOST_ASSERT(getState() == TransportState::DOWN);
137 
138  // recreate the socket
139  m_socket = protocol::socket(m_socket.get_io_service());
140  this->resetReceiveBuffer();
141  this->resetSendQueue();
142 
143  m_reconnectEvent = scheduler::schedule(m_nextReconnectWait,
144  [this] { handleReconnectTimeout(); });
145  m_socket.async_connect(m_remoteEndpoint,
146  [this] (const boost::system::error_code& error) { handleReconnect(error); });
147 }
148 
149 void
150 TcpTransport::handleReconnect(const boost::system::error_code& error)
151 {
155  error == boost::asio::error::operation_aborted) {
156  // transport is shutting down, abort the reconnection attempt and ignore any errors
157  return;
158  }
159 
160  if (error) {
161  NFD_LOG_FACE_TRACE("Reconnection attempt failed: " << error.message());
162  return;
163  }
164 
165  m_reconnectEvent.cancel();
166  m_nextReconnectWait = s_initialReconnectWait;
167 
168  this->setLocalUri(FaceUri(m_socket.local_endpoint()));
169  NFD_LOG_FACE_TRACE("TCP connection reestablished");
171  this->startReceive();
172 }
173 
174 void
175 TcpTransport::handleReconnectTimeout()
176 {
177  // abort the reconnection attempt
178  boost::system::error_code error;
179  m_socket.close(error);
180 
181  // exponentially back off the reconnection timer
182  m_nextReconnectWait =
183  std::min(time::duration_cast<time::milliseconds>(m_nextReconnectWait * s_reconnectWaitMultiplier),
184  s_maxReconnectWait);
185 
186  // do this asynchronously because there could be some callbacks still pending
187  getGlobalIoService().post([this] { reconnect(); });
188 }
189 
190 void
192 {
193  m_reconnectEvent.cancel();
195 }
196 
197 } // namespace face
198 } // namespace nfd
void afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) final
invoked after the persistency has been changed
void setPersistency(ndn::nfd::FacePersistency newPersistency)
changes face persistency setting
Definition: transport.cpp:158
void doClose() override
performs Transport specific operations to close the transport
void cancel()
cancels the event manually
Definition: scheduler.cpp:95
void doClose() final
performs Transport specific operations to close the transport
TcpTransport(protocol::socket &&socket, ndn::nfd::FacePersistency persistency)
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
Definition: face-log.hpp:79
#define NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(cls, specialization, name)
Definition: logger.hpp:46
const ssize_t MTU_UNLIMITED
indicates the transport has no limit on payload size
Definition: transport.hpp:96
void setRemoteUri(const FaceUri &uri)
Definition: transport.hpp:423
virtual void handleError(const boost::system::error_code &error)
STL namespace.
detail::SimulatorIo & getGlobalIoService()
Definition: global-io.cpp:48
void setLinkType(ndn::nfd::LinkType linkType)
Definition: transport.hpp:453
ssize_t getSendQueueLength() final
void setMtu(ssize_t mtu)
Definition: transport.hpp:465
Implements Transport for stream-based protocols.
the transport is being closed due to a failure
void setScope(ndn::nfd::FaceScope scope)
Definition: transport.hpp:435
#define NFD_LOG_FACE_INFO(msg)
Log a message at INFO level.
Definition: face-log.hpp:85
TransportState getState() const
Definition: transport.hpp:484
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
the transport is closed, and can be safely deallocated
void post(const std::function< void()> &callback)
Definition: global-io.cpp:34
void setLocalUri(const FaceUri &uri)
Definition: transport.hpp:411
void handleError(const boost::system::error_code &error) final
the transport is being closed gracefully, either by the peer or by a call to close() ...
represents the underlying protocol and address used by a Face
Definition: face-uri.hpp:44
ndn::nfd::FacePersistency getPersistency() const
Definition: transport.hpp:441
bool canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const final
invoked by canChangePersistencyTo to perform the check
EventId schedule(time::nanoseconds after, const EventCallback &event)
schedule an event
Definition: scheduler.cpp:47
void setState(TransportState newState)
set transport state
Definition: transport.cpp:181
the transport is up and can transmit packets
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
Definition: face-log.hpp:88
the transport is temporarily down, and is being recovered