blob: d22b23cd5b035da67888afdd99a3d07136c1b4d5 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yanbiao Li58ba3f92017-02-15 14:27:18 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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 Shi5dd26c32014-07-20 23:15:14 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
26#include "udp-channel.hpp"
Yukai Tu0a49d342015-09-13 12:54:22 +080027#include "generic-link-service.hpp"
28#include "unicast-udp-transport.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010029#include "core/global-io.hpp"
30
31namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040032namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010033
34NFD_LOG_INIT("UdpChannel");
35
Davide Pesavento8fd15e62017-04-06 19:58:54 -040036namespace ip = boost::asio::ip;
Giulio Grassi624f6c62014-02-18 19:42:14 +010037
38UdpChannel::UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070039 const time::seconds& timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +010040 : m_localEndpoint(localEndpoint)
Davide Pesavento292e5e12015-03-13 02:08:33 +010041 , m_socket(getGlobalIoService())
Giulio Grassi69871f02014-03-09 16:14:44 +010042 , m_idleFaceTimeout(timeout)
Giulio Grassi624f6c62014-02-18 19:42:14 +010043{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010044 setUri(FaceUri(m_localEndpoint));
Giulio Grassi624f6c62014-02-18 19:42:14 +010045}
46
Giulio Grassi624f6c62014-02-18 19:42:14 +010047void
48UdpChannel::connect(const udp::Endpoint& remoteEndpoint,
Yukai Tu375dcb02015-08-01 13:04:43 +080049 ndn::nfd::FacePersistency persistency,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060050 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010051 const FaceCreationFailedCallback& onConnectFailed)
Giulio Grassi624f6c62014-02-18 19:42:14 +010052{
Junxiao Shic5401492015-12-23 16:33:21 -070053 shared_ptr<Face> face;
Giulio Grassi624f6c62014-02-18 19:42:14 +010054 try {
Yukai Tu375dcb02015-08-01 13:04:43 +080055 face = createFace(remoteEndpoint, persistency).second;
Giulio Grassi624f6c62014-02-18 19:42:14 +010056 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010057 catch (const boost::system::system_error& e) {
Davide Pesavento292e5e12015-03-13 02:08:33 +010058 NFD_LOG_WARN("[" << m_localEndpoint << "] Connect failed: " << e.what());
59 if (onConnectFailed)
Eric Newberry42602412016-08-27 09:33:18 -070060 onConnectFailed(504, std::string("Connect failed: ") + e.what());
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060061 return;
Giulio Grassi624f6c62014-02-18 19:42:14 +010062 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010063
Davide Pesavento292e5e12015-03-13 02:08:33 +010064 // Need to invoke the callback regardless of whether or not we had already
65 // created the face so that control responses and such can be sent
66 onFaceCreated(face);
Giulio Grassi624f6c62014-02-18 19:42:14 +010067}
68
Junxiao Shic5401492015-12-23 16:33:21 -070069void
70UdpChannel::listen(const FaceCreatedCallback& onFaceCreated,
71 const FaceCreationFailedCallback& onReceiveFailed)
Giulio Grassi624f6c62014-02-18 19:42:14 +010072{
Junxiao Shic5401492015-12-23 16:33:21 -070073 if (isListening()) {
74 NFD_LOG_WARN("[" << m_localEndpoint << "] Already listening");
75 return;
76 }
77
78 m_socket.open(m_localEndpoint.protocol());
79 m_socket.set_option(ip::udp::socket::reuse_address(true));
80 if (m_localEndpoint.address().is_v6())
81 m_socket.set_option(ip::v6_only(true));
82
83 m_socket.bind(m_localEndpoint);
84 this->waitForNewPeer(onFaceCreated, onReceiveFailed);
85}
86
87void
88UdpChannel::waitForNewPeer(const FaceCreatedCallback& onFaceCreated,
89 const FaceCreationFailedCallback& onReceiveFailed)
90{
91 m_socket.async_receive_from(boost::asio::buffer(m_inputBuffer, ndn::MAX_NDN_PACKET_SIZE),
92 m_remoteEndpoint,
93 bind(&UdpChannel::handleNewPeer, this,
94 boost::asio::placeholders::error,
95 boost::asio::placeholders::bytes_transferred,
96 onFaceCreated, onReceiveFailed));
97}
98
99void
100UdpChannel::handleNewPeer(const boost::system::error_code& error,
101 size_t nBytesReceived,
102 const FaceCreatedCallback& onFaceCreated,
103 const FaceCreationFailedCallback& onReceiveFailed)
104{
105 if (error) {
106 if (error == boost::asio::error::operation_aborted) // when the socket is closed by someone
107 return;
108
109 NFD_LOG_DEBUG("[" << m_localEndpoint << "] Receive failed: " << error.message());
110 if (onReceiveFailed)
Eric Newberry42602412016-08-27 09:33:18 -0700111 onReceiveFailed(500, "Receive failed: " + error.message());
Junxiao Shic5401492015-12-23 16:33:21 -0700112 return;
113 }
114
115 NFD_LOG_DEBUG("[" << m_localEndpoint << "] New peer " << m_remoteEndpoint);
116
117 bool isCreated = false;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700118 shared_ptr<Face> face;
Junxiao Shic5401492015-12-23 16:33:21 -0700119 try {
120 std::tie(isCreated, face) = createFace(m_remoteEndpoint, ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
121 }
122 catch (const boost::system::system_error& e) {
123 NFD_LOG_WARN("[" << m_localEndpoint << "] Failed to create face for peer "
124 << m_remoteEndpoint << ": " << e.what());
125 if (onReceiveFailed)
Eric Newberry42602412016-08-27 09:33:18 -0700126 onReceiveFailed(504, "Failed to create face for peer");
Junxiao Shic5401492015-12-23 16:33:21 -0700127 return;
128 }
129
130 if (isCreated)
131 onFaceCreated(face);
132
133 // dispatch the datagram to the face for processing
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400134 static_cast<UnicastUdpTransport*>(face->getTransport())->receiveDatagram(m_inputBuffer, nBytesReceived, error);
Junxiao Shic5401492015-12-23 16:33:21 -0700135
136 this->waitForNewPeer(onFaceCreated, onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100137}
138
Junxiao Shicde37ad2015-12-24 01:02:05 -0700139std::pair<bool, shared_ptr<Face>>
Yukai Tu375dcb02015-08-01 13:04:43 +0800140UdpChannel::createFace(const udp::Endpoint& remoteEndpoint, ndn::nfd::FacePersistency persistency)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100141{
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100142 auto it = m_channelFaces.find(remoteEndpoint);
Davide Pesavento292e5e12015-03-13 02:08:33 +0100143 if (it != m_channelFaces.end()) {
Eric Newberryf40551a2016-09-05 15:41:16 -0700144 // we already have a face for this endpoint, so reuse it
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000145 return {false, it->second};
Davide Pesavento292e5e12015-03-13 02:08:33 +0100146 }
Junxiao Shic099ddb2014-12-25 20:53:20 -0700147
Davide Pesavento292e5e12015-03-13 02:08:33 +0100148 // else, create a new face
149 ip::udp::socket socket(getGlobalIoService(), m_localEndpoint.protocol());
150 socket.set_option(ip::udp::socket::reuse_address(true));
151 socket.bind(m_localEndpoint);
152 socket.connect(remoteEndpoint);
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600153
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400154 auto linkService = make_unique<GenericLinkService>();
155 auto transport = make_unique<UnicastUdpTransport>(std::move(socket), persistency, m_idleFaceTimeout);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700156 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
Steve DiBenedetto2aa4eca2014-06-20 10:47:40 -0600157
Yukai Tu0a49d342015-09-13 12:54:22 +0800158 m_channelFaces[remoteEndpoint] = face;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700159 connectFaceClosedSignal(*face,
160 [this, remoteEndpoint] {
Junxiao Shic5401492015-12-23 16:33:21 -0700161 NFD_LOG_TRACE("Erasing " << remoteEndpoint << " from channel face map");
162 m_channelFaces.erase(remoteEndpoint);
163 });
164
Davide Pesavento292e5e12015-03-13 02:08:33 +0100165 return {true, face};
Giulio Grassi624f6c62014-02-18 19:42:14 +0100166}
167
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400168} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100169} // namespace nfd