blob: 81e915ce483895e33403812de2f9be592cb90e0e [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"
27
Davide Pesavento0e76f622014-06-25 09:58:20 +020028#ifdef __linux__
29#include <netinet/in.h> // for IP_MTU_DISCOVER and IP_PMTUDISC_DONT
30#include <sys/socket.h> // for setsockopt()
31#endif
32
Giulio Grassi624f6c62014-02-18 19:42:14 +010033namespace nfd {
34
35NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(DatagramFace, UdpFace::protocol, "UdpFace");
36
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070037UdpFace::UdpFace(const shared_ptr<UdpFace::protocol::socket>& socket,
38 bool isOnDemand,
39 const time::seconds& idleTimeout)
Junxiao Shi79494162014-04-02 18:25:11 -070040 : DatagramFace<protocol>(FaceUri(socket->remote_endpoint()),
41 FaceUri(socket->local_endpoint()),
42 socket, isOnDemand)
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070043 , m_idleTimeout(idleTimeout)
44 , m_lastIdleCheck(time::steady_clock::now())
Giulio Grassi624f6c62014-02-18 19:42:14 +010045{
Davide Pesavento0e76f622014-06-25 09:58:20 +020046#ifdef __linux__
47 //
48 // By default, Linux does path MTU discovery on IPv4 sockets,
49 // and sets the DF (Don't Fragment) flag on datagrams smaller
50 // than the interface MTU. However this does not work for us,
51 // because we cannot properly respond to ICMP "packet too big"
52 // messages by fragmenting the packet at the application level,
53 // since we want to rely on IP for fragmentation and reassembly.
54 //
55 // Therefore, we disable PMTU discovery, which prevents the kernel
56 // from setting the DF flag on outgoing datagrams, and thus allows
57 // routers along the path to perform fragmentation as needed.
58 //
59 const int value = IP_PMTUDISC_DONT;
60 if (::setsockopt(socket->native_handle(), IPPROTO_IP,
61 IP_MTU_DISCOVER, &value, sizeof(value)) < 0)
62 {
63 NFD_LOG_WARN("[id:" << this->getId()
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -070064 << ",uri:" << this->getRemoteUri()
Davide Pesavento0e76f622014-06-25 09:58:20 +020065 << "] Failed to disable path MTU discovery");
66 }
67#endif
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070068
69 if (isOnDemand && m_idleTimeout > time::seconds::zero()) {
70 m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout,
71 bind(&UdpFace::closeIfIdle, this));
72 }
73}
74
75UdpFace::~UdpFace()
76{
77 scheduler::cancel(m_closeIfIdleEvent);
Giulio Grassi624f6c62014-02-18 19:42:14 +010078}
79
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070080ndn::nfd::FaceStatus
81UdpFace::getFaceStatus() const
82{
83 ndn::nfd::FaceStatus status = Face::getFaceStatus();
84 if (isOnDemand()) {
Alexander Afanasyev40c61f72014-06-30 17:21:01 -070085 time::milliseconds left = m_idleTimeout - time::duration_cast<time::milliseconds>(
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070086 time::steady_clock::now() - m_lastIdleCheck);
Alexander Afanasyev40c61f72014-06-30 17:21:01 -070087 if (left < time::milliseconds::zero())
88 left = time::milliseconds::zero();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070089
90 if (hasBeenUsedRecently()) {
91 status.setExpirationPeriod(left + m_idleTimeout);
92 }
93 else {
94 status.setExpirationPeriod(left);
95 }
96 }
97 return status;
98}
99
100void
101UdpFace::closeIfIdle()
102{
103 // Face can be switched from on-demand to non-on-demand mode
104 // (non-on-demand -> on-demand transition is not allowed)
105 if (isOnDemand()) {
106 if (!hasBeenUsedRecently()) {
107 // face has been idle since the last time closeIfIdle
108 // has been called. Going to close it
109 NFD_LOG_DEBUG("Found idle face id: " << getId());
110
111 NFD_LOG_INFO("[id:" << this->getId()
Alexander Afanasyev29d1fab2014-07-07 19:27:16 -0700112 << ",uri:" << this->getRemoteUri()
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700113 << "] Idle for more than " << m_idleTimeout << ", closing");
114 close();
115 }
116 else {
117 resetRecentUsage();
118
119 m_lastIdleCheck = time::steady_clock::now();
120 m_closeIfIdleEvent = scheduler::schedule(m_idleTimeout,
121 bind(&UdpFace::closeIfIdle, this));
122 }
123 }
124 // else do nothing and do not reschedule the event
125}
126
Giulio Grassi624f6c62014-02-18 19:42:14 +0100127} // namespace nfd