Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 4 | * 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
| 26 | #include "udp-channel.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 27 | #include "generic-link-service.hpp" |
| 28 | #include "unicast-udp-transport.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 29 | #include "core/global-io.hpp" |
| 30 | |
| 31 | namespace nfd { |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 32 | namespace face { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 33 | |
| 34 | NFD_LOG_INIT("UdpChannel"); |
| 35 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 36 | namespace ip = boost::asio::ip; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 37 | |
| 38 | UdpChannel::UdpChannel(const udp::Endpoint& localEndpoint, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 39 | const time::seconds& timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | : m_localEndpoint(localEndpoint) |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 41 | , m_socket(getGlobalIoService()) |
Giulio Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 42 | , m_idleFaceTimeout(timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 43 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 44 | setUri(FaceUri(m_localEndpoint)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 45 | } |
| 46 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 47 | void |
| 48 | UdpChannel::connect(const udp::Endpoint& remoteEndpoint, |
Yukai Tu | 375dcb0 | 2015-08-01 13:04:43 +0800 | [diff] [blame] | 49 | ndn::nfd::FacePersistency persistency, |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 50 | const FaceCreatedCallback& onFaceCreated, |
Davide Pesavento | 47ab029 | 2015-11-02 18:45:39 +0100 | [diff] [blame] | 51 | const FaceCreationFailedCallback& onConnectFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 52 | { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 53 | shared_ptr<Face> face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 54 | try { |
Yukai Tu | 375dcb0 | 2015-08-01 13:04:43 +0800 | [diff] [blame] | 55 | face = createFace(remoteEndpoint, persistency).second; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 56 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 57 | catch (const boost::system::system_error& e) { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 58 | NFD_LOG_WARN("[" << m_localEndpoint << "] Connect failed: " << e.what()); |
| 59 | if (onConnectFailed) |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 60 | onConnectFailed(504, std::string("Connect failed: ") + e.what()); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 61 | return; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 62 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 63 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 64 | // 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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 69 | void |
| 70 | UdpChannel::listen(const FaceCreatedCallback& onFaceCreated, |
| 71 | const FaceCreationFailedCallback& onReceiveFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 72 | { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 73 | 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 | |
| 87 | void |
| 88 | UdpChannel::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 | |
| 99 | void |
| 100 | UdpChannel::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 Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 111 | onReceiveFailed(500, "Receive failed: " + error.message()); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 112 | return; |
| 113 | } |
| 114 | |
| 115 | NFD_LOG_DEBUG("[" << m_localEndpoint << "] New peer " << m_remoteEndpoint); |
| 116 | |
| 117 | bool isCreated = false; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 118 | shared_ptr<Face> face; |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 119 | 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 Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 126 | onReceiveFailed(504, "Failed to create face for peer"); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 127 | return; |
| 128 | } |
| 129 | |
| 130 | if (isCreated) |
| 131 | onFaceCreated(face); |
| 132 | |
| 133 | // dispatch the datagram to the face for processing |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 134 | static_cast<UnicastUdpTransport*>(face->getTransport())->receiveDatagram(m_inputBuffer, nBytesReceived, error); |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 135 | |
| 136 | this->waitForNewPeer(onFaceCreated, onReceiveFailed); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 137 | } |
| 138 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 139 | std::pair<bool, shared_ptr<Face>> |
Yukai Tu | 375dcb0 | 2015-08-01 13:04:43 +0800 | [diff] [blame] | 140 | UdpChannel::createFace(const udp::Endpoint& remoteEndpoint, ndn::nfd::FacePersistency persistency) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 141 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 142 | auto it = m_channelFaces.find(remoteEndpoint); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 143 | if (it != m_channelFaces.end()) { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 144 | // we already have a face for this endpoint, so reuse it |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 145 | return {false, it->second}; |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 146 | } |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 147 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 148 | // 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 DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 153 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 154 | auto linkService = make_unique<GenericLinkService>(); |
| 155 | auto transport = make_unique<UnicastUdpTransport>(std::move(socket), persistency, m_idleFaceTimeout); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 156 | auto face = make_shared<Face>(std::move(linkService), std::move(transport)); |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 157 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 158 | m_channelFaces[remoteEndpoint] = face; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 159 | connectFaceClosedSignal(*face, |
| 160 | [this, remoteEndpoint] { |
Junxiao Shi | c540149 | 2015-12-23 16:33:21 -0700 | [diff] [blame] | 161 | NFD_LOG_TRACE("Erasing " << remoteEndpoint << " from channel face map"); |
| 162 | m_channelFaces.erase(remoteEndpoint); |
| 163 | }); |
| 164 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 165 | return {true, face}; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 166 | } |
| 167 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 168 | } // namespace face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 169 | } // namespace nfd |