blob: 90c182550aacc0d63fdf5e6bcab60a072c02c267 [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/*
Davide Pesavento3dade002019-03-19 11:29:56 -06003 * Copyright (c) 2014-2019, 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"
Davide Pesavento3dade002019-03-19 11:29:56 -060027#include "daemon/global.hpp"
Yukai Tu16aabbc2015-10-06 05:08:42 -070028
Eric Newberryb49313d2017-12-24 20:22:27 -070029#if defined(__linux__)
30#include <linux/sockios.h>
31#include <sys/ioctl.h>
32#endif
33
Yukai Tu16aabbc2015-10-06 05:08:42 -070034namespace nfd {
35namespace face {
36
Davide Pesaventoa3148082018-04-12 18:21:54 -040037NFD_LOG_MEMBER_INIT_SPECIALIZED(StreamTransport<boost::asio::ip::tcp>, TcpTransport);
Weiwei Liudcdf6212016-08-31 14:34:22 -070038
Davide Pesaventoe4b22382018-06-10 14:37:24 -040039time::milliseconds TcpTransport::s_initialReconnectWait = 1_s;
40time::milliseconds TcpTransport::s_maxReconnectWait = 5_min;
Weiwei Liudcdf6212016-08-31 14:34:22 -070041float TcpTransport::s_reconnectWaitMultiplier = 2.0f;
Yukai Tu16aabbc2015-10-06 05:08:42 -070042
Davide Pesavento3dade002019-03-19 11:29:56 -060043TcpTransport::TcpTransport(protocol::socket&& socket,
44 ndn::nfd::FacePersistency persistency,
45 ndn::nfd::FaceScope faceScope)
Yukai Tu16aabbc2015-10-06 05:08:42 -070046 : StreamTransport(std::move(socket))
Weiwei Liudcdf6212016-08-31 14:34:22 -070047 , m_remoteEndpoint(m_socket.remote_endpoint())
48 , m_nextReconnectWait(s_initialReconnectWait)
Yukai Tu16aabbc2015-10-06 05:08:42 -070049{
50 this->setLocalUri(FaceUri(m_socket.local_endpoint()));
51 this->setRemoteUri(FaceUri(m_socket.remote_endpoint()));
Alexander Afanasyevded17422018-04-03 19:00:23 -040052 this->setScope(faceScope);
Yukai Tu16aabbc2015-10-06 05:08:42 -070053 this->setPersistency(persistency);
54 this->setLinkType(ndn::nfd::LINK_TYPE_POINT_TO_POINT);
55 this->setMtu(MTU_UNLIMITED);
56
Davide Pesaventoa681a242019-03-29 23:48:27 -040057 NFD_LOG_FACE_DEBUG("Creating transport");
Yukai Tu16aabbc2015-10-06 05:08:42 -070058}
59
Eric Newberryb49313d2017-12-24 20:22:27 -070060ssize_t
61TcpTransport::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
Yanbiao Li32dab972016-11-27 12:26:09 +080082bool
83TcpTransport::canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const
Yukai Tu16aabbc2015-10-06 05:08:42 -070084{
Yanbiao Li32dab972016-11-27 12:26:09 +080085 return true;
86}
87
88void
89TcpTransport::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) {
Weiwei Liudcdf6212016-08-31 14:34:22 -070093 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 }
Yukai Tu16aabbc2015-10-06 05:08:42 -070098 }
99}
100
Weiwei Liudcdf6212016-08-31 14:34:22 -0700101void
102TcpTransport::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
Davide Pesavento3dade002019-03-19 11:29:56 -0600109 boost::system::error_code ec;
110 m_socket.cancel(ec);
Weiwei Liudcdf6212016-08-31 14:34:22 -0700111
112 // do this asynchronously because there could be some callbacks still pending
113 getGlobalIoService().post([this] { reconnect(); });
114 }
115 else {
116 StreamTransport::handleError(error);
117 }
118}
119
120void
121TcpTransport::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(m_socket.get_io_service());
137 this->resetReceiveBuffer();
138 this->resetSendQueue();
139
Davide Pesavento3dade002019-03-19 11:29:56 -0600140 m_reconnectEvent = getScheduler().schedule(m_nextReconnectWait,
141 [this] { this->handleReconnectTimeout(); });
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400142 m_socket.async_connect(m_remoteEndpoint, [this] (const auto& e) { this->handleReconnect(e); });
Weiwei Liudcdf6212016-08-31 14:34:22 -0700143}
144
145void
146TcpTransport::handleReconnect(const boost::system::error_code& error)
147{
148 if (getState() == TransportState::CLOSING ||
149 getState() == TransportState::FAILED ||
150 getState() == TransportState::CLOSED ||
151 error == boost::asio::error::operation_aborted) {
152 // transport is shutting down, abort the reconnection attempt and ignore any errors
153 return;
154 }
155
156 if (error) {
157 NFD_LOG_FACE_TRACE("Reconnection attempt failed: " << error.message());
158 return;
159 }
160
161 m_reconnectEvent.cancel();
162 m_nextReconnectWait = s_initialReconnectWait;
163
164 this->setLocalUri(FaceUri(m_socket.local_endpoint()));
165 NFD_LOG_FACE_TRACE("TCP connection reestablished");
166 this->setState(TransportState::UP);
167 this->startReceive();
168}
169
170void
171TcpTransport::handleReconnectTimeout()
172{
173 // abort the reconnection attempt
174 boost::system::error_code error;
175 m_socket.close(error);
176
177 // exponentially back off the reconnection timer
178 m_nextReconnectWait =
179 std::min(time::duration_cast<time::milliseconds>(m_nextReconnectWait * s_reconnectWaitMultiplier),
180 s_maxReconnectWait);
181
182 // do this asynchronously because there could be some callbacks still pending
183 getGlobalIoService().post([this] { reconnect(); });
184}
185
186void
187TcpTransport::doClose()
188{
189 m_reconnectEvent.cancel();
190 StreamTransport::doClose();
191}
192
Yukai Tu16aabbc2015-10-06 05:08:42 -0700193} // namespace face
194} // namespace nfd