blob: be029d0ab6d551d182ca65c6c4fd56351e9064c4 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry2642cd22017-07-13 21:34:53 -04002/*
Junxiao Shib98aa3a2022-01-12 01:14:08 +00003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shia1937bf2014-11-06 11:43:40 -070024 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080025
26#include "tcp-channel.hpp"
Davide Pesaventocb425e82019-07-14 21:48:22 -040027#include "face.hpp"
Yukai Tu16aabbc2015-10-06 05:08:42 -070028#include "generic-link-service.hpp"
29#include "tcp-transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040030#include "common/global.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080033
Davide Pesaventoa3148082018-04-12 18:21:54 -040034NFD_LOG_INIT(TcpChannel);
Alexander Afanasyev3958b012014-01-31 15:06:13 -080035
Yukai Tu16aabbc2015-10-06 05:08:42 -070036namespace ip = boost::asio::ip;
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080037
Alexander Afanasyevded17422018-04-03 19:00:23 -040038TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking,
39 DetermineFaceScopeFromAddress determineFaceScope)
Davide Pesavento292e5e12015-03-13 02:08:33 +010040 : m_localEndpoint(localEndpoint)
41 , m_acceptor(getGlobalIoService())
Davide Pesavento77911cc2017-04-08 22:12:30 -040042 , m_socket(getGlobalIoService())
Eric Newberry0c841642018-01-17 15:01:00 -070043 , m_wantCongestionMarking(wantCongestionMarking)
Alexander Afanasyevded17422018-04-03 19:00:23 -040044 , m_determineFaceScope(std::move(determineFaceScope))
Junxiao Shi61e3cc52014-03-03 20:40:28 -070045{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010046 setUri(FaceUri(m_localEndpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040047 NFD_LOG_CHAN_INFO("Creating channel");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080048}
49
50void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080051TcpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010052 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080053 int backlog/* = tcp::acceptor::max_connections*/)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080054{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010055 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040056 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010057 return;
58 }
59
60 m_acceptor.open(m_localEndpoint.protocol());
61 m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040062 if (m_localEndpoint.address().is_v6()) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +010063 m_acceptor.set_option(ip::v6_only(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040064 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010065 m_acceptor.bind(m_localEndpoint);
66 m_acceptor.listen(backlog);
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070067
Davide Pesavento6ad890a2015-03-09 03:43:17 +010068 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -040069 NFD_LOG_CHAN_DEBUG("Started listening");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080070}
71
72void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080073TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -050074 const FaceParams& params,
Davide Pesavento47ab0292015-11-02 18:45:39 +010075 const FaceCreatedCallback& onFaceCreated,
76 const FaceCreationFailedCallback& onConnectFailed,
Davide Pesaventoc19408d2017-04-08 00:42:55 -040077 time::nanoseconds timeout)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080078{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010079 auto it = m_channelFaces.find(remoteEndpoint);
80 if (it != m_channelFaces.end()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040081 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Davide Pesavento6ad890a2015-03-09 03:43:17 +010082 onFaceCreated(it->second);
Alexander Afanasyev334b7142014-01-28 12:59:39 -080083 return;
84 }
85
Alexander Afanasyeva6bd7da2019-04-25 17:26:11 -040086 auto clientSocket = make_shared<ip::tcp::socket>(getGlobalIoService());
Davide Pesavento3dade002019-03-19 11:29:56 -060087 auto timeoutEvent = getScheduler().schedule(timeout, [=] {
Davide Pesaventoe4b22382018-06-10 14:37:24 -040088 handleConnectTimeout(remoteEndpoint, clientSocket, onConnectFailed);
89 });
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080090
Davide Pesavento77911cc2017-04-08 22:12:30 -040091 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
Davide Pesaventoe4b22382018-06-10 14:37:24 -040092 clientSocket->async_connect(remoteEndpoint, [=] (const auto& e) {
93 this->handleConnect(e, remoteEndpoint, clientSocket, params, timeoutEvent, onFaceCreated, onConnectFailed);
94 });
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080095}
96
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080097void
Yukai Tu16aabbc2015-10-06 05:08:42 -070098TcpChannel::createFace(ip::tcp::socket&& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -050099 const FaceParams& params,
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000100 const FaceCreatedCallback& onFaceCreated,
101 const FaceCreationFailedCallback& onFaceCreationFailed)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800102{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700103 shared_ptr<Face> face;
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000104 boost::system::error_code ec;
105 tcp::Endpoint remoteEndpoint = socket.remote_endpoint(ec);
106 if (ec) {
107 NFD_LOG_CHAN_DEBUG("Retrieve socket remote endpoint failed: " << ec.message());
108 if (onFaceCreationFailed) {
109 onFaceCreationFailed(500, "Retrieve socket remote endpoint failed: " + ec.message());
110 }
111 return;
112 }
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600113
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100114 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100115 if (it == m_channelFaces.end()) {
Eric Newberry2642cd22017-07-13 21:34:53 -0400116 GenericLinkService::Options options;
Davide Pesavento15b55052018-01-27 19:09:28 -0500117 options.allowLocalFields = params.wantLocalFields;
118 options.reliabilityOptions.isEnabled = params.wantLpReliability;
Eric Newberryf40551a2016-09-05 15:41:16 -0700119
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700120 if (boost::logic::indeterminate(params.wantCongestionMarking)) {
121 // Use default value for this channel if parameter is indeterminate
122 options.allowCongestionMarking = m_wantCongestionMarking;
123 }
124 else {
Davide Pesaventofa2aa502019-03-22 13:30:02 -0400125 options.allowCongestionMarking = bool(params.wantCongestionMarking);
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700126 }
127
128 if (params.baseCongestionMarkingInterval) {
129 options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval;
130 }
131 if (params.defaultCongestionThreshold) {
132 options.defaultCongestionThreshold = *params.defaultCongestionThreshold;
133 }
134
135 auto linkService = make_unique<GenericLinkService>(options);
Alexander Afanasyevded17422018-04-03 19:00:23 -0400136 auto faceScope = m_determineFaceScope(socket.local_endpoint().address(),
137 socket.remote_endpoint().address());
138 auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency, faceScope);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700139 face = make_shared<Face>(std::move(linkService), std::move(transport));
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400140 face->setChannel(weak_from_this());
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600141
Davide Pesavento292e5e12015-03-13 02:08:33 +0100142 m_channelFaces[remoteEndpoint] = face;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400143 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
Davide Pesavento292e5e12015-03-13 02:08:33 +0100144 }
145 else {
146 // we already have a face for this endpoint, just reuse it
147 face = it->second;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400148 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700149
Davide Pesavento292e5e12015-03-13 02:08:33 +0100150 boost::system::error_code error;
151 socket.shutdown(ip::tcp::socket::shutdown_both, error);
152 socket.close(error);
153 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800154
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600155 // Need to invoke the callback regardless of whether or not we have already created
156 // the face so that control responses and such can be sent.
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800157 onFaceCreated(face);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800158}
159
160void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100161TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100162 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800163{
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400164 m_acceptor.async_accept(m_socket, [=] (const auto& e) { this->handleAccept(e, onFaceCreated, onAcceptFailed); });
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800165}
166
167void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100168TcpChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100169 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100170 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800171{
172 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400173 if (error != boost::asio::error::operation_aborted) {
174 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
175 if (onAcceptFailed)
176 onAcceptFailed(500, "Accept failed: " + error.message());
177 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800178 return;
179 }
180
Davide Pesavento77911cc2017-04-08 22:12:30 -0400181 NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500182
183 FaceParams params;
184 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000185 createFace(std::move(m_socket), params, onFaceCreated, onAcceptFailed);
Alexander Afanasyev334b7142014-01-28 12:59:39 -0800186
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100187 // prepare accepting the next connection
188 accept(onFaceCreated, onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800189}
190
191void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100192TcpChannel::handleConnect(const boost::system::error_code& error,
Davide Pesavento77911cc2017-04-08 22:12:30 -0400193 const tcp::Endpoint& remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100194 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500195 const FaceParams& params,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100196 const scheduler::EventId& connectTimeoutEvent,
197 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100198 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800199{
Davide Pesavento3dade002019-03-19 11:29:56 -0600200 connectTimeoutEvent.cancel();
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800201
202 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400203 if (error != boost::asio::error::operation_aborted) {
204 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
205 if (onConnectFailed)
206 onConnectFailed(504, "Connection failed: " + error.message());
207 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800208 return;
209 }
210
Davide Pesavento77911cc2017-04-08 22:12:30 -0400211 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
Junxiao Shib98aa3a2022-01-12 01:14:08 +0000212 createFace(std::move(*socket), params, onFaceCreated, onConnectFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800213}
214
215void
Davide Pesavento77911cc2017-04-08 22:12:30 -0400216TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
217 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100218 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800219{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400220 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100221
222 // abort the connection attempt
223 boost::system::error_code error;
224 socket->close(error);
225
226 if (onConnectFailed)
Davide Pesavento77911cc2017-04-08 22:12:30 -0400227 onConnectFailed(504, "Connection timed out");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800228}
229
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400230} // namespace nfd::face