Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, Regents of the University of California, |
| 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" |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 27 | #include "udp-face.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 28 | #include "core/global-io.hpp" |
| 29 | |
| 30 | namespace nfd { |
| 31 | |
| 32 | NFD_LOG_INIT("UdpChannel"); |
| 33 | |
| 34 | using namespace boost::asio; |
| 35 | |
| 36 | UdpChannel::UdpChannel(const udp::Endpoint& localEndpoint, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 37 | const time::seconds& timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 38 | : m_localEndpoint(localEndpoint) |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 39 | , m_socket(getGlobalIoService()) |
Giulio Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 40 | , m_idleFaceTimeout(timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 41 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 42 | setUri(FaceUri(m_localEndpoint)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | void |
| 46 | UdpChannel::listen(const FaceCreatedCallback& onFaceCreated, |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 47 | const ConnectFailedCallback& onReceiveFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 48 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 49 | if (isListening()) { |
| 50 | NFD_LOG_WARN("[" << m_localEndpoint << "] Already listening"); |
| 51 | return; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 52 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 53 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 54 | m_socket.open(m_localEndpoint.protocol()); |
| 55 | m_socket.set_option(ip::udp::socket::reuse_address(true)); |
| 56 | if (m_localEndpoint.address().is_v6()) |
| 57 | m_socket.set_option(ip::v6_only(true)); |
| 58 | |
| 59 | m_socket.bind(m_localEndpoint); |
| 60 | m_socket.async_receive_from(boost::asio::buffer(m_inputBuffer, ndn::MAX_NDN_PACKET_SIZE), |
| 61 | m_remoteEndpoint, |
| 62 | bind(&UdpChannel::handleNewPeer, this, |
| 63 | boost::asio::placeholders::error, |
| 64 | boost::asio::placeholders::bytes_transferred, |
| 65 | onFaceCreated, onReceiveFailed)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 68 | void |
| 69 | UdpChannel::connect(const udp::Endpoint& remoteEndpoint, |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 70 | const FaceCreatedCallback& onFaceCreated, |
| 71 | const ConnectFailedCallback& onConnectFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 72 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 73 | shared_ptr<UdpFace> face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 74 | try { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 75 | face = createFace(remoteEndpoint, false).second; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 76 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 77 | catch (const boost::system::system_error& e) { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 78 | NFD_LOG_WARN("[" << m_localEndpoint << "] Connect failed: " << e.what()); |
| 79 | if (onConnectFailed) |
| 80 | onConnectFailed(e.what()); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 81 | return; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 82 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 83 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 84 | // Need to invoke the callback regardless of whether or not we had already |
| 85 | // created the face so that control responses and such can be sent |
| 86 | onFaceCreated(face); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 87 | } |
| 88 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 89 | size_t |
| 90 | UdpChannel::size() const |
| 91 | { |
| 92 | return m_channelFaces.size(); |
| 93 | } |
| 94 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 95 | std::pair<bool, shared_ptr<UdpFace>> |
| 96 | UdpChannel::createFace(const udp::Endpoint& remoteEndpoint, bool isOnDemand) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 97 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 98 | auto it = m_channelFaces.find(remoteEndpoint); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 99 | if (it != m_channelFaces.end()) { |
| 100 | // we already have a face for this endpoint, just reuse it |
| 101 | if (!isOnDemand) |
| 102 | // only on-demand -> non-on-demand transition is allowed |
| 103 | it->second->setOnDemand(false); |
| 104 | return {false, it->second}; |
| 105 | } |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 106 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 107 | // else, create a new face |
| 108 | ip::udp::socket socket(getGlobalIoService(), m_localEndpoint.protocol()); |
| 109 | socket.set_option(ip::udp::socket::reuse_address(true)); |
| 110 | socket.bind(m_localEndpoint); |
| 111 | socket.connect(remoteEndpoint); |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 112 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 113 | auto face = make_shared<UdpFace>(FaceUri(remoteEndpoint), FaceUri(m_localEndpoint), |
| 114 | std::move(socket), isOnDemand, m_idleFaceTimeout); |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 115 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 116 | face->onFail.connectSingleShot([this, remoteEndpoint] (const std::string&) { |
| 117 | NFD_LOG_TRACE("Erasing " << remoteEndpoint << " from channel face map"); |
| 118 | m_channelFaces.erase(remoteEndpoint); |
| 119 | }); |
| 120 | m_channelFaces[remoteEndpoint] = face; |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 121 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 122 | return {true, face}; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | void |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 126 | UdpChannel::handleNewPeer(const boost::system::error_code& error, |
| 127 | size_t nBytesReceived, |
| 128 | const FaceCreatedCallback& onFaceCreated, |
| 129 | const ConnectFailedCallback& onReceiveFailed) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 130 | { |
Alexander Afanasyev | 90c20fa | 2015-02-12 16:46:45 -0800 | [diff] [blame] | 131 | if (error) { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 132 | if (error == boost::asio::error::operation_aborted) // when the socket is closed by someone |
Alexander Afanasyev | 90c20fa | 2015-02-12 16:46:45 -0800 | [diff] [blame] | 133 | return; |
| 134 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 135 | NFD_LOG_DEBUG("[" << m_localEndpoint << "] Receive failed: " << error.message()); |
| 136 | if (onReceiveFailed) |
| 137 | onReceiveFailed(error.message()); |
Alexander Afanasyev | 90c20fa | 2015-02-12 16:46:45 -0800 | [diff] [blame] | 138 | return; |
| 139 | } |
| 140 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 141 | NFD_LOG_DEBUG("[" << m_localEndpoint << "] New peer " << m_remoteEndpoint); |
Alexander Afanasyev | 6f5ff63 | 2014-03-07 16:40:10 +0000 | [diff] [blame] | 142 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 143 | bool created; |
Alexander Afanasyev | 6f5ff63 | 2014-03-07 16:40:10 +0000 | [diff] [blame] | 144 | shared_ptr<UdpFace> face; |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 145 | try { |
| 146 | std::tie(created, face) = createFace(m_remoteEndpoint, true); |
Alexander Afanasyev | 6f5ff63 | 2014-03-07 16:40:10 +0000 | [diff] [blame] | 147 | } |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 148 | catch (const boost::system::system_error& e) { |
| 149 | NFD_LOG_WARN("[" << m_localEndpoint << "] Failed to create face for peer " |
| 150 | << m_remoteEndpoint << ": " << e.what()); |
| 151 | if (onReceiveFailed) |
| 152 | onReceiveFailed(e.what()); |
| 153 | return; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 156 | if (created) |
| 157 | onFaceCreated(face); |
| 158 | |
Davide Pesavento | a753058 | 2014-06-30 20:45:52 +0200 | [diff] [blame] | 159 | // dispatch the datagram to the face for processing |
| 160 | face->receiveDatagram(m_inputBuffer, nBytesReceived, error); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 161 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 162 | m_socket.async_receive_from(boost::asio::buffer(m_inputBuffer, ndn::MAX_NDN_PACKET_SIZE), |
| 163 | m_remoteEndpoint, |
| 164 | bind(&UdpChannel::handleNewPeer, this, |
| 165 | boost::asio::placeholders::error, |
| 166 | boost::asio::placeholders::bytes_transferred, |
| 167 | onFaceCreated, onReceiveFailed)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 168 | } |
| 169 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 170 | } // namespace nfd |