39 #include <sys/types.h>
43 #include "ns3/simulator.h"
44 #include "ns3/timer.h"
45 #include "ns3/simple-ref-count.h"
46 #include "ns3/header.h"
48 #include "ns3/ipv4-address.h"
49 #include "ns3/nstime.h"
51 #include "ns3/ipv4-route.h"
52 #include "ns3/net-device.h"
53 #include "ns3/ipv4-l3-protocol.h"
54 #include "ns3/callback.h"
55 #include "ns3/wifi-mac-header.h"
56 #include "ns3/arp-cache.h"
178 typedef std::vector<Ipv4Address>::iterator
Iterator;
231 void Print (std::ostream & os)
const;
243 IP_VECTOR::const_iterator j = o.
m_path.begin ();
244 for (IP_VECTOR::const_iterator i =
m_path.begin (); i
245 !=
m_path.end (); i++, j++)
250 if (((*i) == 0) || ((*j) == 0))
254 else if (!((*i) == (*j)) )
442 void Print (std::ostream &os);
569 #define MAXWEIGHT 0xFFFF;
575 std::map<Ipv4Address, std::map<Ipv4Address, uint32_t> >
m_netGraph;
void SetMinLifeTime(Time minLifeTime)
Time GetBlacklistTimeout() const
bool DeleteRoute(Ipv4Address dst)
Delete the route with certain destination address.
keep track of time values and allow control of global simulation resolution
LinkStab(Time linkStab=Simulator::Now())
Constructor.
void PurgeMac()
Remove all expired mac entries.
void Purge()
Delete all outdated entries and invalidate valid entry if Lifetime is expired.
IP_VECTOR m_path
brief The IP address constructed route
void SetVector(IP_VECTOR v)
Time GetNodeStability() const
void Clear()
Delete all entries from routing table.
bool IncStability(Ipv4Address node)
increase the stability of the node
Ipv4Address m_dst
The destination Ip address.
Ipv4Address GetDestination() const
Ipv4InterfaceAddress m_iface
Output interface address.
void SetUnidirectional(bool u)
void SetCacheTimeout(Time t)
void SetLinkStability(Time linkStab)
set/get the link stability
virtual ~LinkStab()
Destructor.
uint32_t GetMaxEntriesEachDst() const
#define NS_ASSERT(condition)
Time RouteCacheTimeout
The maximum period of time that dsr is allowed to for an unused route.
bool AddRoute(RouteCacheEntry &rt)
Add route cache entry if it doesn't yet exist in route cache.
void RebuildBestRouteTable(Ipv4Address source)
USE MAXWEIGHT TO REPRESENT MAX; USE BROADCAST ADDRESS TO REPRESENT NULL PRECEEDING ADDRESS...
NodeStab(Time nodeStab=Simulator::Now())
void Print(std::ostream &os)
Print route cache.
RouteCache & operator=(RouteCache const &)
bool LookupRoute_Link(Ipv4Address id, RouteCacheEntry &rt)
used by LookupRoute when LinkCache
std::map< Ipv4Address, std::map< Ipv4Address, uint32_t > > m_netGraph
Current network graph state for this node, double is weight, which is calculated by the node informat...
void SetBadLinkLifetime(Time t)
void SetMaxCacheLen(uint32_t len)
uint32_t m_stabilityDecrFactor
Define the parameters for link cache type.
void SetInitStability(Time initStability)
void SetStabilityIncrFactor(uint64_t incrFactor)
std::map< Ipv4Address, uint16_t > m_ackIdCache
The id cache to ensure all the ids are unique.
Ptr< Ipv4 > m_ipv4
The Ipv4 layer 3.
bool operator==(RouteCacheEntry const &o) const
Compare the route cache entry.
void SetCacheType(std::string type)
Dijsktra algorithm to get the best route from m_netGraph and update the m_bestRoutesTable_link when c...
void UseExtends(RouteCacheEntry::IP_VECTOR rt)
When a link from the Route Cache is used in routing a packet originated or salvaged by that node...
RouteCacheEntry::IP_VECTOR m_vector
The route vector to save the ip addresses for intermediate nodes.
uint16_t CheckUniqueAckId(Ipv4Address nextHop)
Check for duplicate ids and save new entries if the id is not present in the table.
Time GetMinLifeTime() const
std::list< RouteCacheEntry::IP_VECTOR > routeVector
Define the vector of route entries.
void AddNeighbor(std::vector< Ipv4Address > nodeList, Ipv4Address ownAddress, Time expire)
Add to the neighbor list.
void ClearMac()
Remove all entries.
void UpdateNeighbor(std::vector< Ipv4Address > nodeList, Time expire)
Update expire time for entry with address addr, if it exists, else add new entry. ...
void ScheduleTimer()
Schedule m_ntimer.
std::vector< Ipv4Address > IP_VECTOR
Define the vector to hold Ip address.
bool m_subRoute
Check if save the sub route entries or not.
bool UpdateRouteEntry(Ipv4Address dst)
Update route cache entry if it has been recently used and successfully delivered the data packet...
The route cache structure.
void Invalidate(Time badLinkLifetime)
Mark entry as "down" (i.e. disable it)
void DelArpCache(Ptr< ArpCache >)
Don't use given ARP cache any more (interface is down)
RouteCacheEntry(IP_VECTOR const &ip=IP_VECTOR(), Ipv4Address dst=Ipv4Address(), Time exp=Simulator::Now())
uint32_t m_maxCacheLen
The maximum number of packets that we allow a routing protocol to buffer.
void PrintRouteVector(std::list< RouteCacheEntry > route)
Print all the route vector elements from the route list.
std::map< Link, LinkStab > m_linkCache
The data structure to store link info.
uint32_t GetMaxCacheLen() const
void SetSubRoute(bool subRoute)
virtual ~RouteCacheEntry()
Callback< void, WifiMacHeader const & > m_txErrorCallback
TX error callback.
void ProcessTxError(WifiMacHeader const &)
Process layer 2 TX error notification.
uint32_t m_stabilityIncrFactor
Mac48Address LookupMacAddress(Ipv4Address)
Find MAC address by IP using list of ARP caches.
uint8_t m_reqCount
Number of route requests.
bool AddRoute_Link(RouteCacheEntry::IP_VECTOR nodelist, Ipv4Address node)
void SetUseExtends(Time useExtends)
Time GetInitStability() const
Ipv4Address m_neighborAddress
std::list< RouteCacheEntry > routeEntryVector
Define the route cache data structure.
void RemoveLastEntry(std::list< RouteCacheEntry > &rtVector)
Remove the aged route cache entries when the route cache is full.
Ptr< Ipv4Route > m_ipv4Route
The Ipv4 route.
void PrintVector(std::vector< Ipv4Address > &vec)
Print the route vector elements.
void Print(std::ostream &os) const
Print necessary fields.
Time GetUseExtends() const
Time GetLinkStability() const
Time GetBadLinkLifetime() const
static TypeId GetTypeId()
DSR route request queue Since DSR is an on demand routing we queue requests while looking for route...
void SetCallback(Callback< void, Ipv4Address, uint8_t > cb)
uint16_t GetAckSize()
Get the ack table size.
Time GetExpireTime() const
static Time Now(void)
Return the "current simulation time".
Link(Ipv4Address ip1, Ipv4Address ip2)
IP_VECTOR GetVector() const
std::vector< Ptr< ArpCache > > m_arp
list of ARP cached to be used for layer 2 notifications processing
bool operator<(Link const &L) const
void SetExpireTime(Time exp)
Mac48Address m_hardwareAddress
Callback< void, Ipv4Address, uint8_t > GetCallback() const
bool LookupRoute(Ipv4Address id, RouteCacheEntry &rt)
Lookup route cache entry with destination address dst.
uint64_t GetStabilityIncrFactor() const
void SetNodeStability(Time nodeStab)
bool m_blackListState
Indicate if this entry is in "blacklist".
Ipv4 addresses are stored in host order in this class.
uint32_t m_maxEntriesEachDst
number of entries for each destination
Timer m_ntimer
Timer for neighbor's list. Schedule Purge().
Callback< void, WifiMacHeader const & > GetTxErrorCallback() const
Get callback to ProcessTxError, this callback is trying to use the wifi mac tx error header to notify...
Time GetCacheTimeout() const
std::map< Ipv4Address, RouteCacheEntry::IP_VECTOR > m_bestRoutesTable_link
for link route cache
a class to store IPv4 address information on an interface
std::map< Ipv4Address, routeEntryVector > m_sortedRoutes
Map the ipv4Address to route entry vector.
Time m_expire
Expire time for queue entry.
uint64_t GetStabilityDecrFactor() const
Time m_badLinkLifetime
The time for which the neighboring node is put into the blacklist.
void SetStabilityDecrFactor(uint64_t decrFactor)
Timer m_ackTimer
RREP_ACK timer.
void UpdateNetGraph()
Update the Net Graph for the link and node cache has changed.
Callback< void, Ipv4Address, uint8_t > m_handleLinkFailure
The following code handles link-layer acks.
Time m_blackListTimeout
Time for which the node is put into the blacklist.
bool FindSameRoute(RouteCacheEntry &rt, std::list< RouteCacheEntry > &rtVector)
Find the same route in the route cache.
a base class which provides memory management and object aggregation
void DeleteAllRoutesIncludeLink(Ipv4Address errorSrc, Ipv4Address unreachNode, Ipv4Address node)
Delete all the routes which includes the link from next hop address that has just been notified as un...
bool DecStability(Ipv4Address node)
decrease the stability of the node
Neighbor(Ipv4Address ip, Mac48Address mac, Time t)
void SetBlacklistTimeout(Time t)
std::vector< Neighbor > m_nb
vector of entries
routeEntryVector m_routeEntryVector
Define the route vector.
bool m_isLinkCache
Check if the route is using path cache or link cache.
a unique identifier for an interface.
bool IsNeighbor(Ipv4Address addr)
Check that node with address addr is neighbor.
Time GetExpireTime(Ipv4Address addr)
Return expire time for neighbor node with address addr, if exists, else return 0. ...
void SetDestination(Ipv4Address d)
Time m_linkStability
The link stability lifetime expected, when the time is due, the link expires the expiration happens w...
Time m_delay
This timeout deals with the passive ack.
void SetMaxEntriesEachDst(uint32_t entries)
void AddArpCache(Ptr< ArpCache >)
Add ARP cache to be used to allow layer 2 notifications processing.
std::vector< Ipv4Address >::iterator Iterator
Define the iterator.
bool IsUnidirectional() const
std::map< Ipv4Address, NodeStab > m_nodeCache
The data structure to store node info.