An ARP cache. More...
#include "arp-cache.h"
Classes | |
class | Entry |
A record that that holds information about an ArpCache entry. More... | |
Public Types | |
typedef std::pair< Ptr< Packet >, Ipv4Header > | Ipv4PayloadHeaderPair |
Pair of a packet and an Ipv4 header. | |
Public Member Functions | |
ArpCache () | |
ArpCache (const ArpCache &)=delete | |
~ArpCache () override | |
ArpCache::Entry * | Add (Ipv4Address to) |
Add an Ipv4Address to this ARP cache. | |
void | Flush () |
Clear the ArpCache of all entries. | |
Time | GetAliveTimeout () const |
Get the time the entry will be in ALIVE state (unless refreshed) | |
Time | GetDeadTimeout () const |
Get the time the entry will be in DEAD state before being removed. | |
Ptr< NetDevice > | GetDevice () const |
Returns the NetDevice that this ARP cache is associated with. | |
Ptr< Ipv4Interface > | GetInterface () const |
Returns the Ipv4Interface that this ARP cache is associated with. | |
Time | GetWaitReplyTimeout () const |
Get the time the entry will be in WAIT_REPLY state. | |
ArpCache::Entry * | Lookup (Ipv4Address destination) |
Do lookup in the ARP cache against an IP address. | |
std::list< ArpCache::Entry * > | LookupInverse (Address destination) |
Do lookup in the ARP cache against a MAC address. | |
ArpCache & | operator= (const ArpCache &)=delete |
void | PrintArpCache (Ptr< OutputStreamWrapper > stream) |
Print the ARP cache entries. | |
void | Remove (ArpCache::Entry *entry) |
Remove an entry. | |
void | RemoveAutoGeneratedEntries () |
Clear the ArpCache of all Auto-Generated entries. | |
void | SetAliveTimeout (Time aliveTimeout) |
Set the time the entry will be in ALIVE state (unless refreshed) | |
void | SetArpRequestCallback (Callback< void, Ptr< const ArpCache >, Ipv4Address > arpRequestCallback) |
This callback is set when the ArpCache is set up and allows the cache to generate an Arp request when the WaitReply time expires and a retransmission must be sent. | |
void | SetDeadTimeout (Time deadTimeout) |
Set the time the entry will be in DEAD state before being removed. | |
void | SetDevice (Ptr< NetDevice > device, Ptr< Ipv4Interface > interface) |
Set the NetDevice and Ipv4Interface associated with the ArpCache. | |
void | SetWaitReplyTimeout (Time waitReplyTimeout) |
Set the time the entry will be in WAIT_REPLY state. | |
void | StartWaitReplyTimer () |
This method will schedule a timeout at WaitReplyTimeout interval in the future, unless a timer is already running for the cache, in which case this method does nothing. | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. | |
~Object () override | |
Destructor. | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. | |
void | Dispose () |
Dispose of this Object. | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. | |
bool | IsInitialized () const |
Check if the object has been initialized. | |
void | UnidirectionalAggregateObject (Ptr< Object > other) |
Aggregate an Object to another Object. | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. | |
void | GetAttribute (std::string name, AttributeValue &value, bool permissive=false) const |
Get the value of an attribute, raising fatal errors if unsuccessful. | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. | |
Private Types | |
typedef std::map< Ipv4Address, ArpCache::Entry * > | Cache |
ARP Cache container. | |
typedef std::map< Ipv4Address, ArpCache::Entry * >::iterator | CacheI |
ARP Cache container iterator. | |
Private Member Functions | |
void | DoDispose () override |
Destructor implementation. | |
void | HandleWaitReplyTimeout () |
This function is an event handler for the event that the ArpCache wants to check whether it must retry any Arp requests. | |
Private Attributes | |
Time | m_aliveTimeout |
cache alive state timeout | |
Cache | m_arpCache |
the ARP cache | |
Callback< void, Ptr< const ArpCache >, Ipv4Address > | m_arpRequestCallback |
reply timeout callback | |
Time | m_deadTimeout |
cache dead state timeout | |
Ptr< NetDevice > | m_device |
NetDevice associated with the cache. | |
TracedCallback< Ptr< const Packet > > | m_dropTrace |
trace for packets dropped by the ARP cache queue | |
Ptr< Ipv4Interface > | m_interface |
Ipv4Interface associated with the cache. | |
uint32_t | m_maxRetries |
max retries for a resolution | |
uint32_t | m_pendingQueueSize |
number of packets waiting for a resolution | |
Time | m_waitReplyTimeout |
cache reply state timeout | |
EventId | m_waitReplyTimer |
cache alive state timer | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. | |
virtual void | DoInitialize () |
Initialize() implementation. | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. | |
Related Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
An ARP cache.
A cached lookup table for translating layer 3 addresses to layer 2. This implementation does lookups from IPv4 to a MAC address
Definition at line 41 of file arp-cache.h.
|
private |
ARP Cache container.
Definition at line 313 of file arp-cache.h.
|
private |
ARP Cache container iterator.
Definition at line 317 of file arp-cache.h.
typedef std::pair<Ptr<Packet>, Ipv4Header> ns3::ArpCache::Ipv4PayloadHeaderPair |
Pair of a packet and an Ipv4 header.
Definition at line 167 of file arp-cache.h.
ns3::ArpCache::ArpCache | ( | ) |
Definition at line 75 of file arp-cache.cc.
References NS_LOG_FUNCTION.
|
override |
Definition at line 82 of file arp-cache.cc.
References NS_LOG_FUNCTION.
|
delete |
ArpCache::Entry * ns3::ArpCache::Add | ( | Ipv4Address | to | ) |
Add an Ipv4Address to this ARP cache.
to | the destination address of the ARP entry. |
Definition at line 341 of file arp-cache.cc.
References m_arpCache, NS_ASSERT, and NS_LOG_FUNCTION.
|
overrideprivatevirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden version of this method and chain up to their parent's implementation once they are done. i.e, for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose() method.
It is safe to call GetObject() from within this method.
Reimplemented from ns3::Object.
Definition at line 88 of file arp-cache.cc.
References ns3::EventId::Cancel(), ns3::Object::DoDispose(), Flush(), ns3::EventId::IsPending(), m_device, m_interface, m_waitReplyTimer, and NS_LOG_FUNCTION.
void ns3::ArpCache::Flush | ( | ) |
Clear the ArpCache of all entries.
Definition at line 234 of file arp-cache.cc.
References ns3::EventId::Cancel(), ns3::EventId::IsPending(), m_arpCache, m_waitReplyTimer, ns3::Simulator::Now(), NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Referenced by ns3::ArpL3Protocol::CreateCache(), and DoDispose().
Time ns3::ArpCache::GetAliveTimeout | ( | ) | const |
Get the time the entry will be in ALIVE state (unless refreshed)
Definition at line 145 of file arp-cache.cc.
References m_aliveTimeout, and NS_LOG_FUNCTION.
Time ns3::ArpCache::GetDeadTimeout | ( | ) | const |
Get the time the entry will be in DEAD state before being removed.
Definition at line 152 of file arp-cache.cc.
References m_deadTimeout, and NS_LOG_FUNCTION.
Returns the NetDevice that this ARP cache is associated with.
Definition at line 110 of file arp-cache.cc.
References m_device, and NS_LOG_FUNCTION.
Ptr< Ipv4Interface > ns3::ArpCache::GetInterface | ( | ) | const |
Returns the Ipv4Interface that this ARP cache is associated with.
Definition at line 117 of file arp-cache.cc.
References m_interface, and NS_LOG_FUNCTION.
|
static |
Get the type ID.
Definition at line 30 of file arp-cache.cc.
References m_aliveTimeout, m_deadTimeout, m_dropTrace, m_maxRetries, m_pendingQueueSize, m_waitReplyTimeout, ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MakeTraceSourceAccessor(), ns3::MakeUintegerAccessor(), ns3::MakeUintegerChecker(), ns3::Seconds(), and ns3::TypeId::SetParent().
Time ns3::ArpCache::GetWaitReplyTimeout | ( | ) | const |
Get the time the entry will be in WAIT_REPLY state.
Definition at line 159 of file arp-cache.cc.
References m_waitReplyTimeout, and NS_LOG_FUNCTION.
|
private |
This function is an event handler for the event that the ArpCache wants to check whether it must retry any Arp requests.
If there are no Arp requests pending, this event is not scheduled.
Definition at line 186 of file arp-cache.cc.
References ns3::ArpCache::Entry::ClearRetries(), ns3::ArpCache::Entry::DequeuePending(), ns3::ArpCache::Entry::GetIpv4Address(), ns3::ArpCache::Entry::GetRetries(), HandleWaitReplyTimeout(), ns3::ArpCache::Entry::IncrementRetries(), ns3::ArpCache::Entry::IsWaitReply(), m_arpCache, m_arpRequestCallback, m_device, m_dropTrace, m_maxRetries, m_waitReplyTimeout, m_waitReplyTimer, ns3::ArpCache::Entry::MarkDead(), ns3::Simulator::Now(), NS_LOG_FUNCTION, NS_LOG_LOGIC, and ns3::Simulator::Schedule().
Referenced by HandleWaitReplyTimeout(), and StartWaitReplyTimer().
ArpCache::Entry * ns3::ArpCache::Lookup | ( | Ipv4Address | destination | ) |
Do lookup in the ARP cache against an IP address.
destination | The destination IPv4 address to lookup the MAC address of |
Definition at line 329 of file arp-cache.cc.
References m_arpCache, and NS_LOG_FUNCTION.
std::list< ArpCache::Entry * > ns3::ArpCache::LookupInverse | ( | Address | destination | ) |
Do lookup in the ARP cache against a MAC address.
destination | The destination MAC address to lookup of |
Definition at line 312 of file arp-cache.cc.
References ns3::ArpCache::Entry::GetMacAddress(), m_arpCache, and NS_LOG_FUNCTION.
void ns3::ArpCache::PrintArpCache | ( | Ptr< OutputStreamWrapper > | stream | ) |
Print the ARP cache entries.
stream | the ostream the ARP cache entries is printed to |
Definition at line 251 of file arp-cache.cc.
References ns3::Names::FindName(), m_arpCache, m_device, and NS_LOG_FUNCTION.
void ns3::ArpCache::Remove | ( | ArpCache::Entry * | entry | ) |
Remove an entry.
entry | pointer to delete it from the list |
Definition at line 353 of file arp-cache.cc.
References ns3::ArpCache::Entry::ClearPendingPacket(), m_arpCache, NS_LOG_FUNCTION, and NS_LOG_WARN.
void ns3::ArpCache::RemoveAutoGeneratedEntries | ( | ) |
Clear the ArpCache of all Auto-Generated entries.
Definition at line 295 of file arp-cache.cc.
References m_arpCache, and NS_LOG_FUNCTION.
void ns3::ArpCache::SetAliveTimeout | ( | Time | aliveTimeout | ) |
Set the time the entry will be in ALIVE state (unless refreshed)
aliveTimeout | the Alive state timeout |
Definition at line 124 of file arp-cache.cc.
References m_aliveTimeout, and NS_LOG_FUNCTION.
void ns3::ArpCache::SetArpRequestCallback | ( | Callback< void, Ptr< const ArpCache >, Ipv4Address > | arpRequestCallback | ) |
This callback is set when the ArpCache is set up and allows the cache to generate an Arp request when the WaitReply time expires and a retransmission must be sent.
arpRequestCallback | Callback for transmitting an Arp request. |
Definition at line 166 of file arp-cache.cc.
References m_arpRequestCallback, and NS_LOG_FUNCTION.
void ns3::ArpCache::SetDeadTimeout | ( | Time | deadTimeout | ) |
Set the time the entry will be in DEAD state before being removed.
deadTimeout | the Dead state timeout |
Definition at line 131 of file arp-cache.cc.
References m_deadTimeout, and NS_LOG_FUNCTION.
void ns3::ArpCache::SetDevice | ( | Ptr< NetDevice > | device, |
Ptr< Ipv4Interface > | interface ) |
Set the NetDevice and Ipv4Interface associated with the ArpCache.
device | The hardware NetDevice associated with this ARP cache |
interface | the Ipv4Interface associated with this ARP cache |
Definition at line 102 of file arp-cache.cc.
References m_device, m_interface, and NS_LOG_FUNCTION.
void ns3::ArpCache::SetWaitReplyTimeout | ( | Time | waitReplyTimeout | ) |
Set the time the entry will be in WAIT_REPLY state.
waitReplyTimeout | the WAIT_REPLY state timeout |
Definition at line 138 of file arp-cache.cc.
References m_waitReplyTimeout, and NS_LOG_FUNCTION.
void ns3::ArpCache::StartWaitReplyTimer | ( | ) |
This method will schedule a timeout at WaitReplyTimeout interval in the future, unless a timer is already running for the cache, in which case this method does nothing.
Definition at line 173 of file arp-cache.cc.
References HandleWaitReplyTimeout(), ns3::EventId::IsPending(), m_waitReplyTimeout, m_waitReplyTimer, ns3::Simulator::Now(), NS_LOG_FUNCTION, NS_LOG_LOGIC, and ns3::Simulator::Schedule().
|
private |
cache alive state timeout
Definition at line 323 of file arp-cache.h.
Referenced by GetAliveTimeout(), GetTypeId(), and SetAliveTimeout().
|
private |
the ARP cache
Definition at line 338 of file arp-cache.h.
Referenced by Add(), Flush(), HandleWaitReplyTimeout(), Lookup(), LookupInverse(), PrintArpCache(), Remove(), and RemoveAutoGeneratedEntries().
|
private |
reply timeout callback
Definition at line 328 of file arp-cache.h.
Referenced by HandleWaitReplyTimeout(), and SetArpRequestCallback().
|
private |
cache dead state timeout
Definition at line 324 of file arp-cache.h.
Referenced by GetDeadTimeout(), GetTypeId(), and SetDeadTimeout().
NetDevice associated with the cache.
Definition at line 321 of file arp-cache.h.
Referenced by DoDispose(), GetDevice(), HandleWaitReplyTimeout(), PrintArpCache(), and SetDevice().
|
private |
trace for packets dropped by the ARP cache queue
Definition at line 340 of file arp-cache.h.
Referenced by GetTypeId(), and HandleWaitReplyTimeout().
|
private |
Ipv4Interface associated with the cache.
Definition at line 322 of file arp-cache.h.
Referenced by DoDispose(), GetInterface(), and SetDevice().
|
private |
max retries for a resolution
Definition at line 329 of file arp-cache.h.
Referenced by GetTypeId(), and HandleWaitReplyTimeout().
|
private |
number of packets waiting for a resolution
Definition at line 337 of file arp-cache.h.
Referenced by GetTypeId().
|
private |
cache reply state timeout
Definition at line 325 of file arp-cache.h.
Referenced by GetTypeId(), GetWaitReplyTimeout(), HandleWaitReplyTimeout(), SetWaitReplyTimeout(), and StartWaitReplyTimer().
|
private |
cache alive state timer
Definition at line 326 of file arp-cache.h.
Referenced by DoDispose(), Flush(), HandleWaitReplyTimeout(), and StartWaitReplyTimer().