blob: eef857096dbf649b9918b17c19c52e4753a736d9 [file] [log] [blame]
Yukai Tu16aabbc2015-10-06 05:08:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberryb49313d2017-12-24 20:22:27 -07002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Yukai Tu16aabbc2015-10-06 05:08:42 -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.
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
Eric Newberryb49313d2017-12-24 20:22:27 -070028#if defined(__linux__)
29#include <linux/sockios.h>
30#include <sys/ioctl.h>
31#endif
32
Yukai Tu16aabbc2015-10-06 05:08:42 -070033namespace nfd {
34namespace face {
35
Weiwei Liudcdf6212016-08-31 14:34:22 -070036NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(StreamTransport, TcpTransport::protocol, "TcpTransport");
37
38time::milliseconds TcpTransport::s_initialReconnectWait = time::seconds(1);
39time::milliseconds TcpTransport::s_maxReconnectWait = time::minutes(5);
40float TcpTransport::s_reconnectWaitMultiplier = 2.0f;
Yukai Tu16aabbc2015-10-06 05:08:42 -070041
Alexander Afanasyevded17422018-04-03 19:00:23 -040042TcpTransport::TcpTransport(protocol::socket&& socket, ndn::nfd::FacePersistency persistency, ndn::nfd::FaceScope faceScope)
Yukai Tu16aabbc2015-10-06 05:08:42 -070043 : StreamTransport(std::move(socket))
Weiwei Liudcdf6212016-08-31 14:34:22 -070044 , m_remoteEndpoint(m_socket.remote_endpoint())
45 , m_nextReconnectWait(s_initialReconnectWait)
Yukai Tu16aabbc2015-10-06 05:08:42 -070046{
47 this->setLocalUri(FaceUri(m_socket.local_endpoint()));
48 this->setRemoteUri(FaceUri(m_socket.remote_endpoint()));
Alexander Afanasyevded17422018-04-03 19:00:23 -040049 this->setScope(faceScope);
Yukai Tu16aabbc2015-10-06 05:08:42 -070050 this->setPersistency(persistency);
51 this->setLinkType(ndn::nfd::LINK_TYPE_POINT_TO_POINT);
52 this->setMtu(MTU_UNLIMITED);
53
54 NFD_LOG_FACE_INFO("Creating transport");
55}
56
Eric Newberryb49313d2017-12-24 20:22:27 -070057ssize_t
58TcpTransport::getSendQueueLength()
59{
60 int queueLength = getSendQueueBytes();
61
62 // We want to obtain the amount of "not sent" bytes instead of the amount of "not sent" + "not
63 // acked" bytes. On Linux, we use SIOCOUTQNSD for this reason. However, macOS does not provide an
64 // efficient mechanism to obtain this value (SO_NWRITE includes both "not sent" and "not acked").
65#if defined(__linux__)
66 int nsd;
67 if (ioctl(m_socket.native_handle(), SIOCOUTQNSD, &nsd) < 0) {
68 NFD_LOG_FACE_WARN("Failed to obtain send queue length from socket: " << std::strerror(errno));
69 }
70 else if (nsd > 0) {
71 NFD_LOG_FACE_TRACE("SIOCOUTQNSD=" << nsd);
72 queueLength += nsd;
73 }
74#endif
75
76 return queueLength;
77}
78
Yanbiao Li32dab972016-11-27 12:26:09 +080079bool
80TcpTransport::canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const
Yukai Tu16aabbc2015-10-06 05:08:42 -070081{
Yanbiao Li32dab972016-11-27 12:26:09 +080082 return true;
83}
84
85void
86TcpTransport::afterChangePersistency(ndn::nfd::FacePersistency oldPersistency)
87{
88 // if persistency was changed from permanent to any other value
89 if (oldPersistency == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
Weiwei Liudcdf6212016-08-31 14:34:22 -070090 if (this->getState() == TransportState::DOWN) {
91 // non-permanent transport cannot be in DOWN state, so fail hard
92 this->setState(TransportState::FAILED);
93 doClose();
94 }
Yukai Tu16aabbc2015-10-06 05:08:42 -070095 }
96}
97
Weiwei Liudcdf6212016-08-31 14:34:22 -070098void
99TcpTransport::handleError(const boost::system::error_code& error)
100{
101 if (this->getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT) {
102 NFD_LOG_FACE_TRACE("TCP socket error: " << error.message());
103 this->setState(TransportState::DOWN);
104
105 // cancel all outstanding operations
106 boost::system::error_code error;
107 m_socket.cancel(error);
108
109 // do this asynchronously because there could be some callbacks still pending
110 getGlobalIoService().post([this] { reconnect(); });
111 }
112 else {
113 StreamTransport::handleError(error);
114 }
115}
116
117void
118TcpTransport::reconnect()
119{
120 NFD_LOG_FACE_TRACE(__func__);
121
122 if (getState() == TransportState::CLOSING ||
123 getState() == TransportState::FAILED ||
124 getState() == TransportState::CLOSED) {
125 // transport is shutting down, don't attempt to reconnect
126 return;
127 }
128
129 BOOST_ASSERT(getPersistency() == ndn::nfd::FACE_PERSISTENCY_PERMANENT);
130 BOOST_ASSERT(getState() == TransportState::DOWN);
131
132 // recreate the socket
133 m_socket = protocol::socket(m_socket.get_io_service());
134 this->resetReceiveBuffer();
135 this->resetSendQueue();
136
137 m_reconnectEvent = scheduler::schedule(m_nextReconnectWait,
138 [this] { handleReconnectTimeout(); });
139 m_socket.async_connect(m_remoteEndpoint,
140 [this] (const boost::system::error_code& error) { handleReconnect(error); });
141}
142
143void
144TcpTransport::handleReconnect(const boost::system::error_code& error)
145{
146 if (getState() == TransportState::CLOSING ||
147 getState() == TransportState::FAILED ||
148 getState() == TransportState::CLOSED ||
149 error == boost::asio::error::operation_aborted) {
150 // transport is shutting down, abort the reconnection attempt and ignore any errors
151 return;
152 }
153
154 if (error) {
155 NFD_LOG_FACE_TRACE("Reconnection attempt failed: " << error.message());
156 return;
157 }
158
159 m_reconnectEvent.cancel();
160 m_nextReconnectWait = s_initialReconnectWait;
161
162 this->setLocalUri(FaceUri(m_socket.local_endpoint()));
163 NFD_LOG_FACE_TRACE("TCP connection reestablished");
164 this->setState(TransportState::UP);
165 this->startReceive();
166}
167
168void
169TcpTransport::handleReconnectTimeout()
170{
171 // abort the reconnection attempt
172 boost::system::error_code error;
173 m_socket.close(error);
174
175 // exponentially back off the reconnection timer
176 m_nextReconnectWait =
177 std::min(time::duration_cast<time::milliseconds>(m_nextReconnectWait * s_reconnectWaitMultiplier),
178 s_maxReconnectWait);
179
180 // do this asynchronously because there could be some callbacks still pending
181 getGlobalIoService().post([this] { reconnect(); });
182}
183
184void
185TcpTransport::doClose()
186{
187 m_reconnectEvent.cancel();
188 StreamTransport::doClose();
189}
190
Yukai Tu16aabbc2015-10-06 05:08:42 -0700191} // namespace face
192} // namespace nfd