A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ipv6-pmtu-cache.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013 Universita' di Firenze
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Tommaso Pecorella <tommaso.pecorella@unifi.it>
19  */
20 
21 #include "ipv6-pmtu-cache.h"
22 #include "ns3/log.h"
23 #include "ns3/simulator.h"
24 
25 NS_LOG_COMPONENT_DEFINE ("Ipv6PmtuCache");
26 
27 namespace ns3 {
28 
29 NS_OBJECT_ENSURE_REGISTERED (Ipv6PmtuCache);
30 
32 {
33  static TypeId tid = TypeId ("ns3::Ipv6PmtuCache")
34  .SetParent<Object> ()
35  .AddAttribute ("CacheExpiryTime",
36  "Validity time for a Path MTU entry. Default is 10 minutes, minimum is 5 minutes.",
37  TimeValue (Seconds (60 * 10)),
38  MakeTimeAccessor (&Ipv6PmtuCache::m_validityTime),
39  MakeTimeChecker (Time (Seconds (60 * 5))))
40  ;
41  return tid;
42 }
43 
45 {
46 }
47 
49 {
50 }
51 
53 {
54  for (pathMtuTimerIter iter = m_pathMtuTimer.begin (); iter != m_pathMtuTimer.end (); iter++)
55  {
56  iter->second.Cancel ();
57  }
58  m_pathMtuTimer.clear ();
59  m_pathMtu.clear ();
60 }
61 
63 {
64  NS_LOG_FUNCTION (this << dst);
65 
66  if (m_pathMtu.find (dst) != m_pathMtu.end ())
67  {
68  return m_pathMtu[dst];
69  }
70  return 0;
71 }
72 
73 void Ipv6PmtuCache::SetPmtu (Ipv6Address dst, uint32_t pmtu)
74 {
75  NS_LOG_FUNCTION (this << dst << pmtu);
76 
77  m_pathMtu[dst] = pmtu;
78  if (m_pathMtuTimer.find (dst) != m_pathMtuTimer.end ())
79  {
80  m_pathMtuTimer[dst].Cancel ();
81  }
82  EventId pMtuTimer;
84  m_pathMtuTimer[dst] = pMtuTimer;
85 }
86 
88 {
89  NS_LOG_FUNCTION (this);
90  return m_validityTime;
91 }
92 
94 {
95  NS_LOG_FUNCTION (this << validity);
96 
97  if (validity > Seconds (60 * 5))
98  {
99  m_validityTime = validity;
100  return true;
101  }
102 
103  NS_LOG_LOGIC ("rejecting a PMTU validity timer lesser than 5 minutes");
104  return false;
105 }
106 
108 {
109  NS_LOG_FUNCTION (this << dst);
110 
111  m_pathMtu.erase (dst);
112  m_pathMtuTimer.erase (dst);
113 }
114 
115 }
116 
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:79
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
uint32_t GetPmtu(Ipv6Address dst)
Gets the known Path MTU for the specific destination.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register the class in the ns-3 factory.
Definition: object-base.h:38
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
Definition: simulator.h:825
bool SetPmtuValidityTime(Time validity)
Sets the Path MTU validity time (minimum is 5 minutes)
Ipv6PmtuCache()
Constructor.
hold objects of type ns3::Time
Definition: nstime.h:1008
std::map< Ipv6Address, uint32_t > m_pathMtu
Path MTU table.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:233
virtual void DoDispose()
Dispose object.
std::map< Ipv6Address, EventId > m_pathMtuTimer
Path MTU Expiration table.
Time GetPmtuValidityTime() const
Gets the Path MTU validity time.
static TypeId GetTypeId()
Get the type ID.
~Ipv6PmtuCache()
Destructor.
Describes an IPv6 address.
Definition: ipv6-address.h:46
an identifier for simulation events.
Definition: event-id.h:46
std::map< Ipv6Address, EventId >::iterator pathMtuTimerIter
Container of the IPv6 PMTU data (Ipv6 destination address and expiration event).
Time m_validityTime
Path MTU entry validity time.
void SetPmtu(Ipv6Address dst, uint32_t pmtu)
Sets the Path MTU for the specific destination.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Definition: time.cc:441
void ClearPmtu(Ipv6Address dst)
Clears the Path MTU for the specific destination.
a base class which provides memory management and object aggregation
Definition: object.h:64
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610