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/>. |
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 | |
| 26 | #include "udp-face.hpp" |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 27 | // #include "core/global-io.hpp" // for #1718 manual test below |
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 { |
| 37 | |
| 38 | NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(DatagramFace, UdpFace::protocol, "UdpFace"); |
| 39 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 40 | UdpFace::UdpFace(const FaceUri& remoteUri, const FaceUri& localUri, |
| 41 | protocol::socket socket, bool isOnDemand, |
| 42 | const time::seconds& idleTimeout) |
| 43 | : DatagramFace(remoteUri, localUri, std::move(socket)) |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 44 | , m_idleTimeout(idleTimeout) |
| 45 | , m_lastIdleCheck(time::steady_clock::now()) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 46 | { |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 47 | this->setOnDemand(isOnDemand); |
| 48 | |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 49 | #ifdef __linux__ |
| 50 | // |
| 51 | // By default, Linux does path MTU discovery on IPv4 sockets, |
| 52 | // and sets the DF (Don't Fragment) flag on datagrams smaller |
| 53 | // than the interface MTU. However this does not work for us, |
| 54 | // because we cannot properly respond to ICMP "packet too big" |
| 55 | // messages by fragmenting the packet at the application level, |
| 56 | // since we want to rely on IP for fragmentation and reassembly. |
| 57 | // |
| 58 | // Therefore, we disable PMTU discovery, which prevents the kernel |
| 59 | // from setting the DF flag on outgoing datagrams, and thus allows |
| 60 | // routers along the path to perform fragmentation as needed. |
| 61 | // |
| 62 | const int value = IP_PMTUDISC_DONT; |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 63 | if (::setsockopt(m_socket.native_handle(), IPPROTO_IP, |
| 64 | IP_MTU_DISCOVER, &value, sizeof(value)) < 0) { |
| 65 | NFD_LOG_FACE_WARN("Failed to disable path MTU discovery: " << std::strerror(errno)); |
| 66 | } |
Davide Pesavento | 0e76f62 | 2014-06-25 09:58:20 +0200 | [diff] [blame] | 67 | #endif |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 68 | |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 69 | if (this->isOnDemand() && m_idleTimeout > time::seconds::zero()) { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 70 | m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout, bind(&UdpFace::closeIfIdle, this)); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 74 | ndn::nfd::FaceStatus |
| 75 | UdpFace::getFaceStatus() const |
| 76 | { |
Davide Pesavento | 13b76f0 | 2015-02-26 03:59:54 +0100 | [diff] [blame] | 77 | auto status = DatagramFace::getFaceStatus(); |
Davide Pesavento | 66ff098 | 2015-01-29 22:39:00 +0100 | [diff] [blame] | 78 | |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 79 | if (isOnDemand()) { |
Davide Pesavento | 13b76f0 | 2015-02-26 03:59:54 +0100 | [diff] [blame] | 80 | time::milliseconds left = m_idleTimeout; |
| 81 | left -= time::duration_cast<time::milliseconds>(time::steady_clock::now() - m_lastIdleCheck); |
| 82 | |
Alexander Afanasyev | 40c61f7 | 2014-06-30 17:21:01 -0700 | [diff] [blame] | 83 | if (left < time::milliseconds::zero()) |
| 84 | left = time::milliseconds::zero(); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 85 | |
Davide Pesavento | 13b76f0 | 2015-02-26 03:59:54 +0100 | [diff] [blame] | 86 | if (hasBeenUsedRecently()) |
| 87 | left += m_idleTimeout; |
| 88 | |
| 89 | status.setExpirationPeriod(left); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 90 | } |
Davide Pesavento | 66ff098 | 2015-01-29 22:39:00 +0100 | [diff] [blame] | 91 | |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 92 | return status; |
| 93 | } |
| 94 | |
| 95 | void |
| 96 | UdpFace::closeIfIdle() |
| 97 | { |
| 98 | // Face can be switched from on-demand to non-on-demand mode |
| 99 | // (non-on-demand -> on-demand transition is not allowed) |
| 100 | if (isOnDemand()) { |
| 101 | if (!hasBeenUsedRecently()) { |
Davide Pesavento | be40fb1 | 2015-02-23 21:09:34 +0100 | [diff] [blame] | 102 | NFD_LOG_FACE_INFO("Closing for inactivity"); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 103 | close(); |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 104 | |
| 105 | // #1718 manual test: uncomment, run NFD in valgrind, send in a UDP packet |
| 106 | // expect read-after-free error and crash |
| 107 | // getGlobalIoService().post([this] { |
Davide Pesavento | be40fb1 | 2015-02-23 21:09:34 +0100 | [diff] [blame] | 108 | // NFD_LOG_FACE_ERROR("Remaining references: " << this->shared_from_this().use_count()); |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 109 | // }); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 110 | } |
| 111 | else { |
| 112 | resetRecentUsage(); |
| 113 | |
| 114 | m_lastIdleCheck = time::steady_clock::now(); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 115 | m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout, bind(&UdpFace::closeIfIdle, this)); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | // else do nothing and do not reschedule the event |
| 119 | } |
| 120 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 121 | } // namespace nfd |