blob: 821c6d7d8ee42f00d3d9000b011a92d96bdc6c55 [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/*
Eric Newberry0c841642018-01-17 15:01:00 -07003 * Copyright (c) 2014-2018, 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"
Yukai Tu16aabbc2015-10-06 05:08:42 -070027#include "generic-link-service.hpp"
28#include "tcp-transport.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "core/global-io.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080030
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080031namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040032namespace face {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080033
Alexander Afanasyev3958b012014-01-31 15:06:13 -080034NFD_LOG_INIT("TcpChannel");
35
Yukai Tu16aabbc2015-10-06 05:08:42 -070036namespace ip = boost::asio::ip;
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080037
Eric Newberry0c841642018-01-17 15:01:00 -070038TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint, bool wantCongestionMarking)
Davide Pesavento292e5e12015-03-13 02:08:33 +010039 : m_localEndpoint(localEndpoint)
40 , m_acceptor(getGlobalIoService())
Davide Pesavento77911cc2017-04-08 22:12:30 -040041 , m_socket(getGlobalIoService())
Eric Newberry0c841642018-01-17 15:01:00 -070042 , m_wantCongestionMarking(wantCongestionMarking)
Junxiao Shi61e3cc52014-03-03 20:40:28 -070043{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010044 setUri(FaceUri(m_localEndpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040045 NFD_LOG_CHAN_INFO("Creating channel");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080046}
47
48void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080049TcpChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010050 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080051 int backlog/* = tcp::acceptor::max_connections*/)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080052{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010053 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040054 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010055 return;
56 }
57
58 m_acceptor.open(m_localEndpoint.protocol());
59 m_acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040060 if (m_localEndpoint.address().is_v6()) {
Davide Pesavento6ad890a2015-03-09 03:43:17 +010061 m_acceptor.set_option(ip::v6_only(true));
Davide Pesavento77911cc2017-04-08 22:12:30 -040062 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010063 m_acceptor.bind(m_localEndpoint);
64 m_acceptor.listen(backlog);
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070065
Davide Pesavento6ad890a2015-03-09 03:43:17 +010066 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -040067 NFD_LOG_CHAN_DEBUG("Started listening");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080068}
69
70void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080071TcpChannel::connect(const tcp::Endpoint& remoteEndpoint,
Davide Pesavento15b55052018-01-27 19:09:28 -050072 const FaceParams& params,
Davide Pesavento47ab0292015-11-02 18:45:39 +010073 const FaceCreatedCallback& onFaceCreated,
74 const FaceCreationFailedCallback& onConnectFailed,
Davide Pesaventoc19408d2017-04-08 00:42:55 -040075 time::nanoseconds timeout)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080076{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010077 auto it = m_channelFaces.find(remoteEndpoint);
78 if (it != m_channelFaces.end()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040079 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Davide Pesavento6ad890a2015-03-09 03:43:17 +010080 onFaceCreated(it->second);
Alexander Afanasyev334b7142014-01-28 12:59:39 -080081 return;
82 }
83
Davide Pesavento292e5e12015-03-13 02:08:33 +010084 auto clientSocket = make_shared<ip::tcp::socket>(ref(getGlobalIoService()));
Davide Pesavento77911cc2017-04-08 22:12:30 -040085 auto timeoutEvent = scheduler::schedule(timeout, bind(&TcpChannel::handleConnectTimeout, this,
86 remoteEndpoint, clientSocket, onConnectFailed));
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080087
Davide Pesavento77911cc2017-04-08 22:12:30 -040088 NFD_LOG_CHAN_TRACE("Connecting to " << remoteEndpoint);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080089 clientSocket->async_connect(remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +010090 bind(&TcpChannel::handleConnect, this,
Eric Newberry2642cd22017-07-13 21:34:53 -040091 boost::asio::placeholders::error, remoteEndpoint, clientSocket,
Davide Pesavento15b55052018-01-27 19:09:28 -050092 params, timeoutEvent, onFaceCreated, onConnectFailed));
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080093}
94
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080095void
Yukai Tu16aabbc2015-10-06 05:08:42 -070096TcpChannel::createFace(ip::tcp::socket&& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -050097 const FaceParams& params,
Eric Newberryf40551a2016-09-05 15:41:16 -070098 const FaceCreatedCallback& onFaceCreated)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -080099{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700100 shared_ptr<Face> face;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100101 tcp::Endpoint remoteEndpoint = socket.remote_endpoint();
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600102
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100103 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100104 if (it == m_channelFaces.end()) {
Eric Newberry2642cd22017-07-13 21:34:53 -0400105 GenericLinkService::Options options;
Davide Pesavento15b55052018-01-27 19:09:28 -0500106 options.allowLocalFields = params.wantLocalFields;
107 options.reliabilityOptions.isEnabled = params.wantLpReliability;
Eric Newberryf40551a2016-09-05 15:41:16 -0700108
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700109 if (boost::logic::indeterminate(params.wantCongestionMarking)) {
110 // Use default value for this channel if parameter is indeterminate
111 options.allowCongestionMarking = m_wantCongestionMarking;
112 }
113 else {
114 options.allowCongestionMarking = params.wantCongestionMarking;
115 }
116
117 if (params.baseCongestionMarkingInterval) {
118 options.baseCongestionMarkingInterval = *params.baseCongestionMarkingInterval;
119 }
120 if (params.defaultCongestionThreshold) {
121 options.defaultCongestionThreshold = *params.defaultCongestionThreshold;
122 }
123
124 auto linkService = make_unique<GenericLinkService>(options);
Davide Pesavento15b55052018-01-27 19:09:28 -0500125 auto transport = make_unique<TcpTransport>(std::move(socket), params.persistency);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700126 face = make_shared<Face>(std::move(linkService), std::move(transport));
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600127
Davide Pesavento292e5e12015-03-13 02:08:33 +0100128 m_channelFaces[remoteEndpoint] = face;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400129 connectFaceClosedSignal(*face, [this, remoteEndpoint] { m_channelFaces.erase(remoteEndpoint); });
Davide Pesavento292e5e12015-03-13 02:08:33 +0100130 }
131 else {
132 // we already have a face for this endpoint, just reuse it
133 face = it->second;
Davide Pesavento77911cc2017-04-08 22:12:30 -0400134 NFD_LOG_CHAN_TRACE("Reusing existing face for " << remoteEndpoint);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700135
Davide Pesavento292e5e12015-03-13 02:08:33 +0100136 boost::system::error_code error;
137 socket.shutdown(ip::tcp::socket::shutdown_both, error);
138 socket.close(error);
139 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800140
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600141 // Need to invoke the callback regardless of whether or not we have already created
142 // the face so that control responses and such can be sent.
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800143 onFaceCreated(face);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800144}
145
146void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100147TcpChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100148 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800149{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400150 m_acceptor.async_accept(m_socket, bind(&TcpChannel::handleAccept, this,
151 boost::asio::placeholders::error,
152 onFaceCreated, onAcceptFailed));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800153}
154
155void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100156TcpChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100157 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100158 const FaceCreationFailedCallback& onAcceptFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800159{
160 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400161 if (error != boost::asio::error::operation_aborted) {
162 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
163 if (onAcceptFailed)
164 onAcceptFailed(500, "Accept failed: " + error.message());
165 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800166 return;
167 }
168
Davide Pesavento77911cc2017-04-08 22:12:30 -0400169 NFD_LOG_CHAN_TRACE("Incoming connection from " << m_socket.remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500170
171 FaceParams params;
172 params.persistency = ndn::nfd::FACE_PERSISTENCY_ON_DEMAND;
173 createFace(std::move(m_socket), params, onFaceCreated);
Alexander Afanasyev334b7142014-01-28 12:59:39 -0800174
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100175 // prepare accepting the next connection
176 accept(onFaceCreated, onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800177}
178
179void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100180TcpChannel::handleConnect(const boost::system::error_code& error,
Davide Pesavento77911cc2017-04-08 22:12:30 -0400181 const tcp::Endpoint& remoteEndpoint,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100182 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento15b55052018-01-27 19:09:28 -0500183 const FaceParams& params,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100184 const scheduler::EventId& connectTimeoutEvent,
185 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100186 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800187{
Alexander Afanasyev18861802014-06-13 17:49:03 -0700188 scheduler::cancel(connectTimeoutEvent);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800189
Alexander Afanasyev7465d5f2014-07-07 10:19:42 -0700190#if (BOOST_VERSION == 105400)
191 // To handle regression in Boost 1.54
192 // https://svn.boost.org/trac/boost/ticket/8795
193 boost::system::error_code anotherErrorCode;
194 socket->remote_endpoint(anotherErrorCode);
195 if (error || anotherErrorCode) {
196#else
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800197 if (error) {
Alexander Afanasyev7465d5f2014-07-07 10:19:42 -0700198#endif
Davide Pesavento77911cc2017-04-08 22:12:30 -0400199 if (error != boost::asio::error::operation_aborted) {
200 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " failed: " << error.message());
201 if (onConnectFailed)
202 onConnectFailed(504, "Connection failed: " + error.message());
203 }
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800204 return;
205 }
206
Davide Pesavento77911cc2017-04-08 22:12:30 -0400207 NFD_LOG_CHAN_TRACE("Connected to " << socket->remote_endpoint());
Davide Pesavento15b55052018-01-27 19:09:28 -0500208 createFace(std::move(*socket), params, onFaceCreated);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800209}
210
211void
Davide Pesavento77911cc2017-04-08 22:12:30 -0400212TcpChannel::handleConnectTimeout(const tcp::Endpoint& remoteEndpoint,
213 const shared_ptr<ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100214 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800215{
Davide Pesavento77911cc2017-04-08 22:12:30 -0400216 NFD_LOG_CHAN_DEBUG("Connection to " << remoteEndpoint << " timed out");
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100217
218 // abort the connection attempt
219 boost::system::error_code error;
220 socket->close(error);
221
222 if (onConnectFailed)
Davide Pesavento77911cc2017-04-08 22:12:30 -0400223 onConnectFailed(504, "Connection timed out");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800224}
225
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400226} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800227} // namespace nfd