Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, 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/>. |
Alexander Afanasyev | 29d1fab | 2014-07-07 19:27:16 -0700 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 26 | #include "unicast-udp-transport.hpp" |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 27 | #include "udp-protocol.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 28 | |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 29 | #ifdef __linux__ |
Davide Pesavento | 66ff098 | 2015-01-29 22:39:00 +0100 | [diff] [blame] | 30 | #include <cerrno> // for errno |
| 31 | #include <cstring> // for std::strerror() |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 32 | #include <netinet/in.h> // for IP_MTU_DISCOVER and IP_PMTUDISC_DONT |
| 33 | #include <sys/socket.h> // for setsockopt() |
| 34 | #endif |
| 35 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 36 | namespace nfd { |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 37 | namespace face { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 38 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 39 | NFD_LOG_MEMBER_INIT_SPECIALIZED((DatagramTransport<boost::asio::ip::udp, Unicast>), UnicastUdpTransport); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 41 | UnicastUdpTransport::UnicastUdpTransport(protocol::socket&& socket, |
| 42 | ndn::nfd::FacePersistency persistency, |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 43 | time::nanoseconds idleTimeout) |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 44 | : DatagramTransport(std::move(socket)) |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 45 | , m_idleTimeout(idleTimeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 46 | { |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 47 | this->setLocalUri(FaceUri(m_socket.local_endpoint())); |
| 48 | this->setRemoteUri(FaceUri(m_socket.remote_endpoint())); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 49 | this->setScope(ndn::nfd::FACE_SCOPE_NON_LOCAL); |
Yukai Tu | 375dcb0 | 2015-08-01 13:04:43 +0800 | [diff] [blame] | 50 | this->setPersistency(persistency); |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 51 | this->setLinkType(ndn::nfd::LINK_TYPE_POINT_TO_POINT); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 52 | this->setMtu(udp::computeMtu(m_socket.local_endpoint())); |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 53 | |
| 54 | NFD_LOG_FACE_INFO("Creating transport"); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 55 | |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 56 | #ifdef __linux__ |
| 57 | // |
| 58 | // By default, Linux does path MTU discovery on IPv4 sockets, |
| 59 | // and sets the DF (Don't Fragment) flag on datagrams smaller |
| 60 | // than the interface MTU. However this does not work for us, |
| 61 | // because we cannot properly respond to ICMP "packet too big" |
| 62 | // messages by fragmenting the packet at the application level, |
| 63 | // since we want to rely on IP for fragmentation and reassembly. |
| 64 | // |
| 65 | // Therefore, we disable PMTU discovery, which prevents the kernel |
| 66 | // from setting the DF flag on outgoing datagrams, and thus allows |
| 67 | // routers along the path to perform fragmentation as needed. |
| 68 | // |
| 69 | const int value = IP_PMTUDISC_DONT; |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 70 | if (::setsockopt(m_socket.native_handle(), IPPROTO_IP, |
| 71 | IP_MTU_DISCOVER, &value, sizeof(value)) < 0) { |
| 72 | NFD_LOG_FACE_WARN("Failed to disable path MTU discovery: " << std::strerror(errno)); |
| 73 | } |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 74 | #endif |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 75 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 76 | if (getPersistency() == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND && |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 77 | m_idleTimeout > time::nanoseconds::zero()) { |
| 78 | scheduleClosureWhenIdle(); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 79 | } |
| 80 | } |
| 81 | |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 82 | bool |
| 83 | UnicastUdpTransport::canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 84 | { |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 85 | return true; |
| 86 | } |
| 87 | |
| 88 | void |
| 89 | UnicastUdpTransport::afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) |
| 90 | { |
| 91 | if (getPersistency() == ndn::nfd::FACE_PERSISTENCY_ON_DEMAND && |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 92 | m_idleTimeout > time::nanoseconds::zero()) { |
| 93 | scheduleClosureWhenIdle(); |
| 94 | } |
| 95 | else { |
| 96 | m_closeIfIdleEvent.cancel(); |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 97 | setExpirationTime(time::steady_clock::TimePoint::max()); |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | |
| 101 | void |
| 102 | UnicastUdpTransport::scheduleClosureWhenIdle() |
| 103 | { |
| 104 | m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout, [this] { |
Davide Pesavento | 0b0a71d | 2017-07-02 13:57:36 -0400 | [diff] [blame] | 105 | if (!hasRecentlyReceived()) { |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 106 | NFD_LOG_FACE_INFO("Closing due to inactivity"); |
| 107 | this->close(); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 108 | } |
| 109 | else { |
Davide Pesavento | 0b0a71d | 2017-07-02 13:57:36 -0400 | [diff] [blame] | 110 | resetRecentlyReceived(); |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 111 | scheduleClosureWhenIdle(); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 112 | } |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 113 | }); |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 114 | setExpirationTime(time::steady_clock::now() + m_idleTimeout); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 117 | } // namespace face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 118 | } // namespace nfd |