blob: 400e7dca82bf2a0e133c9437f232b7145bb038b0 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -07003 * Copyright (c) 2014, 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 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/>.
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
26#include "udp-face.hpp"
Junxiao Shic099ddb2014-12-25 20:53:20 -070027// #include "core/global-io.hpp" // for #1718 manual test below
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
Davide Pesavento0e76f622014-06-25 09:58:20 +020029#ifdef __linux__
30#include <netinet/in.h> // for IP_MTU_DISCOVER and IP_PMTUDISC_DONT
31#include <sys/socket.h> // for setsockopt()
32#endif
33
Giulio Grassi624f6c62014-02-18 19:42:14 +010034namespace nfd {
35
36NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(DatagramFace, UdpFace::protocol, "UdpFace");
37
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070038UdpFace::UdpFace(const shared_ptr<UdpFace::protocol::socket>& socket,
39 bool isOnDemand,
40 const time::seconds& idleTimeout)
Junxiao Shi79494162014-04-02 18:25:11 -070041 : DatagramFace<protocol>(FaceUri(socket->remote_endpoint()),
42 FaceUri(socket->local_endpoint()),
43 socket, isOnDemand)
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070044 , m_idleTimeout(idleTimeout)
45 , m_lastIdleCheck(time::steady_clock::now())
Giulio Grassi624f6c62014-02-18 19:42:14 +010046{
Davide Pesavento0e76f622014-06-25 09:58:20 +020047#ifdef __linux__
48 //
49 // By default, Linux does path MTU discovery on IPv4 sockets,
50 // and sets the DF (Don't Fragment) flag on datagrams smaller
51 // than the interface MTU. However this does not work for us,
52 // because we cannot properly respond to ICMP "packet too big"
53 // messages by fragmenting the packet at the application level,
54 // since we want to rely on IP for fragmentation and reassembly.
55 //
56 // Therefore, we disable PMTU discovery, which prevents the kernel
57 // from setting the DF flag on outgoing datagrams, and thus allows
58 // routers along the path to perform fragmentation as needed.
59 //
60 const int value = IP_PMTUDISC_DONT;
61 if (::setsockopt(socket->native_handle(), IPPROTO_IP,
62 IP_MTU_DISCOVER, &value, sizeof(value)) < 0)
63 {
64 NFD_LOG_WARN("[id:" << this->getId()
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -070065 << ",uri:" << this->getRemoteUri()
Davide Pesavento0e76f622014-06-25 09:58:20 +020066 << "] Failed to disable path MTU discovery");
67 }
68#endif
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070069
70 if (isOnDemand && m_idleTimeout > time::seconds::zero()) {
71 m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout,
72 bind(&UdpFace::closeIfIdle, this));
73 }
74}
75
76UdpFace::~UdpFace()
77{
78 scheduler::cancel(m_closeIfIdleEvent);
Giulio Grassi624f6c62014-02-18 19:42:14 +010079}
80
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070081ndn::nfd::FaceStatus
82UdpFace::getFaceStatus() const
83{
84 ndn::nfd::FaceStatus status = Face::getFaceStatus();
85 if (isOnDemand()) {
Alexander Afanasyev40c61f72014-06-30 17:21:01 -070086 time::milliseconds left = m_idleTimeout - time::duration_cast<time::milliseconds>(
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070087 time::steady_clock::now() - m_lastIdleCheck);
Alexander Afanasyev40c61f72014-06-30 17:21:01 -070088 if (left < time::milliseconds::zero())
89 left = time::milliseconds::zero();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070090
91 if (hasBeenUsedRecently()) {
92 status.setExpirationPeriod(left + m_idleTimeout);
93 }
94 else {
95 status.setExpirationPeriod(left);
96 }
97 }
98 return status;
99}
100
101void
102UdpFace::closeIfIdle()
103{
104 // Face can be switched from on-demand to non-on-demand mode
105 // (non-on-demand -> on-demand transition is not allowed)
106 if (isOnDemand()) {
107 if (!hasBeenUsedRecently()) {
108 // face has been idle since the last time closeIfIdle
109 // has been called. Going to close it
110 NFD_LOG_DEBUG("Found idle face id: " << getId());
111
112 NFD_LOG_INFO("[id:" << this->getId()
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -0700113 << ",uri:" << this->getRemoteUri()
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700114 << "] Idle for more than " << m_idleTimeout << ", closing");
115 close();
Junxiao Shic099ddb2014-12-25 20:53:20 -0700116
117 // #1718 manual test: uncomment, run NFD in valgrind, send in a UDP packet
118 // expect read-after-free error and crash
119 // getGlobalIoService().post([this] {
120 // NFD_LOG_ERROR("Remaining references: " << this->shared_from_this().use_count());
121 // });
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700122 }
123 else {
124 resetRecentUsage();
125
126 m_lastIdleCheck = time::steady_clock::now();
127 m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout,
128 bind(&UdpFace::closeIfIdle, this));
129 }
130 }
131 // else do nothing and do not reschedule the event
132}
133
Giulio Grassi624f6c62014-02-18 19:42:14 +0100134} // namespace nfd