A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ipv4-l3-protocol.h
Go to the documentation of this file.
1 // -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*-
2 //
3 // Copyright (c) 2006 Georgia Tech Research Corporation
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: George F. Riley<riley@ece.gatech.edu>
19 //
20 
21 #ifndef IPV4_L3_PROTOCOL_H
22 #define IPV4_L3_PROTOCOL_H
23 
24 #include <list>
25 #include <map>
26 #include <vector>
27 #include <stdint.h>
28 #include "ns3/ipv4-address.h"
29 #include "ns3/ptr.h"
30 #include "ns3/net-device.h"
31 #include "ns3/ipv4.h"
32 #include "ns3/traced-callback.h"
33 #include "ns3/ipv4-header.h"
34 #include "ns3/ipv4-routing-protocol.h"
35 #include "ns3/nstime.h"
36 #include "ns3/simulator.h"
37 
39 
40 namespace ns3 {
41 
42 class Packet;
43 class NetDevice;
44 class Ipv4Interface;
45 class Ipv4Address;
46 class Ipv4Header;
47 class Ipv4RoutingTableEntry;
48 class Ipv4Route;
49 class Node;
50 class Socket;
51 class Ipv4RawSocketImpl;
52 class IpL4Protocol;
53 class Icmpv4L4Protocol;
54 
55 
79 class Ipv4L3Protocol : public Ipv4
80 {
81 public:
86  static TypeId GetTypeId (void);
87  static const uint16_t PROT_NUMBER;
88 
90  virtual ~Ipv4L3Protocol ();
91 
96  enum DropReason
97  {
104  };
105 
110  void SetNode (Ptr<Node> node);
111 
112  // functions defined in base class Ipv4
113 
114  void SetRoutingProtocol (Ptr<Ipv4RoutingProtocol> routingProtocol);
116 
118  void DeleteRawSocket (Ptr<Socket> socket);
119 
130  void Insert (Ptr<IpL4Protocol> protocol);
139  virtual Ptr<IpL4Protocol> GetProtocol (int protocolNumber) const;
146  void Remove (Ptr<IpL4Protocol> protocol);
147 
154  void SetDefaultTtl (uint8_t ttl);
155 
169  void Receive ( Ptr<NetDevice> device, Ptr<const Packet> p, uint16_t protocol, const Address &from,
170  const Address &to, NetDevice::PacketType packetType);
171 
182  void Send (Ptr<Packet> packet, Ipv4Address source,
183  Ipv4Address destination, uint8_t protocol, Ptr<Ipv4Route> route);
192  void SendWithHeader (Ptr<Packet> packet, Ipv4Header ipHeader, Ptr<Ipv4Route> route);
193 
194  uint32_t AddInterface (Ptr<NetDevice> device);
200  Ptr<Ipv4Interface> GetInterface (uint32_t i) const;
201  uint32_t GetNInterfaces (void) const;
202 
203  int32_t GetInterfaceForAddress (Ipv4Address addr) const;
204  int32_t GetInterfaceForPrefix (Ipv4Address addr, Ipv4Mask mask) const;
205  int32_t GetInterfaceForDevice (Ptr<const NetDevice> device) const;
206  bool IsDestinationAddress (Ipv4Address address, uint32_t iif) const;
207 
208  bool AddAddress (uint32_t i, Ipv4InterfaceAddress address);
209  Ipv4InterfaceAddress GetAddress (uint32_t interfaceIndex, uint32_t addressIndex) const;
210  uint32_t GetNAddresses (uint32_t interface) const;
211  bool RemoveAddress (uint32_t interfaceIndex, uint32_t addressIndex);
212  bool RemoveAddress (uint32_t interface, Ipv4Address address);
215 
216 
217  void SetMetric (uint32_t i, uint16_t metric);
218  uint16_t GetMetric (uint32_t i) const;
219  uint16_t GetMtu (uint32_t i) const;
220  bool IsUp (uint32_t i) const;
221  void SetUp (uint32_t i);
222  void SetDown (uint32_t i);
223  bool IsForwarding (uint32_t i) const;
224  void SetForwarding (uint32_t i, bool val);
225 
226  Ptr<NetDevice> GetNetDevice (uint32_t i);
227 
238  bool IsUnicast (Ipv4Address ad) const;
239 
240 protected:
241 
242  virtual void DoDispose (void);
247  virtual void NotifyNewAggregate ();
248 private:
249  friend class ::Ipv4L3ProtocolTestCase;
250 
257 
265 
266  // class Ipv4 attributes
267  virtual void SetIpForward (bool forward);
268  virtual bool GetIpForward (void) const;
269  virtual void SetWeakEsModel (bool model);
270  virtual bool GetWeakEsModel (void) const;
271 
284  Ipv4Address source,
285  Ipv4Address destination,
286  uint8_t protocol,
287  uint16_t payloadSize,
288  uint8_t ttl,
289  uint8_t tos,
290  bool mayFragment);
291 
298  void
300  Ptr<Packet> packet,
301  Ipv4Header const &ipHeader);
302 
309  void
310  IpForward (Ptr<Ipv4Route> rtentry,
312  const Ipv4Header &header);
313 
320  void
323  const Ipv4Header &header);
324 
331  void LocalDeliver (Ptr<const Packet> p, Ipv4Header const&ip, uint32_t iif);
332 
339  void RouteInputError (Ptr<const Packet> p, const Ipv4Header & ipHeader, Socket::SocketErrno sockErrno);
340 
346  uint32_t AddIpv4Interface (Ptr<Ipv4Interface> interface);
347 
351  void SetupLoopback (void);
352 
357  Ptr<Icmpv4L4Protocol> GetIcmp (void) const;
358 
365  bool IsUnicast (Ipv4Address ad, Ipv4Mask interfaceMask) const;
366 
373  void DoFragmentation (Ptr<Packet> packet, uint32_t outIfaceMtu, std::list<Ptr<Packet> >& listFragments);
374 
382  bool ProcessFragment (Ptr<Packet>& packet, Ipv4Header & ipHeader, uint32_t iif);
383 
390  void HandleFragmentsTimeout ( std::pair<uint64_t, uint32_t> key, Ipv4Header & ipHeader, uint32_t iif);
391 
395  typedef std::vector<Ptr<Ipv4Interface> > Ipv4InterfaceList;
399  typedef std::list<Ptr<Ipv4RawSocketImpl> > SocketList;
403  typedef std::list<Ptr<IpL4Protocol> > L4List_t;
404 
405  bool m_ipForward;
409  uint8_t m_defaultTos;
410  uint8_t m_defaultTtl;
411  std::map<uint8_t, uint16_t> m_identification;
413 
420 
421  // The following two traces pass a packet with an IP header
426  // <ip-header, payload, reason, ifindex> (ifindex not valid if reason is DROP_NO_ROUTE)
429 
431 
433 
438  class Fragments : public SimpleRefCount<Fragments>
439  {
440 public:
444  Fragments ();
445 
449  ~Fragments ();
450 
457  void AddFragment (Ptr<Packet> fragment, uint16_t fragmentOffset, bool moreFragment);
458 
463  bool IsEntire () const;
464 
469  Ptr<Packet> GetPacket () const;
470 
475  Ptr<Packet> GetPartialPacket () const;
476 
477 private:
482 
486  std::list<std::pair<Ptr<Packet>, uint16_t> > m_fragments;
487 
488  };
489 
491  typedef std::map< std::pair<uint64_t, uint32_t>, Ptr<Fragments> > MapFragments_t;
493  typedef std::map< std::pair<uint64_t, uint32_t>, EventId > MapFragmentsTimers_t;
494 
498 
499 };
500 
501 } // Namespace ns3
502 
503 #endif /* IPV4_L3_PROTOCOL_H */
bool m_weakEsModel
Weak ES model state.
void SetDefaultTtl(uint8_t ttl)
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:79
virtual void SetIpForward(bool forward)
Set or unset the IP forwarding state.
Ptr< Packet > GetPacket() const
Get the entire packet.
std::map< std::pair< uint64_t, uint32_t >, EventId > MapFragmentsTimers_t
Container of fragment timeout event, stored as pairs(src+dst addr, src+dst port) / EventId...
virtual void NotifyNewAggregate()
This function will notify other components connected to the node that a new stack member is now conne...
Time m_fragmentExpirationTimeout
Expiration timeout.
std::list< Ptr< IpL4Protocol > > L4List_t
Container of the IPv4 L4 instances.
TracedCallback< const Ipv4Header &, Ptr< const Packet >, uint32_t > m_sendOutgoingTrace
Trace of sent packets.
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:222
forward calls to a chain of CallbackAn ns3::TracedCallback has almost exactly the same API as a norma...
std::map< std::pair< uint64_t, uint32_t >, Ptr< Fragments > > MapFragments_t
Container of fragments, stored as pairs(src+dst addr, src+dst port) / fragment.
virtual bool GetWeakEsModel(void) const
Get the Weak Es Model status.
std::list< std::pair< Ptr< Packet >, uint16_t > > m_fragments
The current fragments.
int32_t GetInterfaceForDevice(Ptr< const NetDevice > device) const
int32_t GetInterfaceForPrefix(Ipv4Address addr, Ipv4Mask mask) const
Return the interface number of first interface found that has an Ipv4 address within the prefix speci...
uint32_t AddInterface(Ptr< NetDevice > device)
TracedCallback< const Ipv4Header &, Ptr< const Packet >, DropReason, Ptr< Ipv4 >, uint32_t > m_dropTrace
Trace of dropped packets.
SocketErrno
Enumeration of the possible errors returned by a socket.
Definition: socket.h:82
Ptr< Ipv4RoutingProtocol > m_routingProtocol
Routing protocol associated with the stack.
void SetUp(uint32_t i)
uint8_t m_defaultTos
Default TOS.
L4List_t m_protocols
List of transport protocol.
a polymophic address class
Definition: address.h:86
Ipv4InterfaceAddress GetAddress(uint32_t interfaceIndex, uint32_t addressIndex) const
Because addresses can be removed, the addressIndex is not guaranteed to be static across calls to thi...
DropReason
Reason why a packet has been dropped.
Ipv4InterfaceList m_interfaces
List of IPv4 interfaces.
bool IsDestinationAddress(Ipv4Address address, uint32_t iif) const
Determine whether address and interface corresponding to received packet can be accepted for local de...
Ptr< Packet > GetPartialPacket() const
Get the complete part of the packet.
TracedCallback< Ptr< const Packet >, Ptr< Ipv4 >, uint32_t > m_rxTrace
Trace of received packets.
Packet header for IPv4.
Definition: ipv4-header.h:31
void SetupLoopback(void)
Setup loopback interface.
Ptr< Icmpv4L4Protocol > GetIcmp(void) const
Get ICMPv4 protocol.
TracedCallback< Ptr< const Packet >, Ptr< Ipv4 >, uint32_t > m_txTrace
Trace of transmitted packets.
TracedCallback< const Ipv4Header &, Ptr< const Packet >, uint32_t > m_localDeliverTrace
Trace of locally delivered packets.
bool IsEntire() const
If all fragments have been added.
void SetMetric(uint32_t i, uint16_t metric)
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Ptr< Socket > CreateRawSocket(void)
Creates a raw socket.
void Send(Ptr< Packet > packet, Ipv4Address source, Ipv4Address destination, uint8_t protocol, Ptr< Ipv4Route > route)
static TypeId GetTypeId(void)
Get the type ID.
bool IsUp(uint32_t i) const
MapFragments_t m_fragments
Fragmented packets.
void SendWithHeader(Ptr< Packet > packet, Ipv4Header ipHeader, Ptr< Ipv4Route > route)
void IpForward(Ptr< Ipv4Route > rtentry, Ptr< const Packet > p, const Ipv4Header &header)
Forward a packet.
A Set of Fragment belonging to the same packet (src, dst, identification and proto) ...
std::vector< Ptr< Ipv4Interface > > Ipv4InterfaceList
Container of the IPv4 Interfaces.
#define list
bool RemoveAddress(uint32_t interfaceIndex, uint32_t addressIndex)
Remove the address at addressIndex on named interface.
void AddFragment(Ptr< Packet > fragment, uint16_t fragmentOffset, bool moreFragment)
Add a fragment.
Access to the Ipv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:76
bool m_ipForward
Forwarding packets (i.e.
void SetForwarding(uint32_t i, bool val)
std::list< Ptr< Ipv4RawSocketImpl > > SocketList
Container of the IPv4 Raw Sockets.
std::map< uint8_t, uint16_t > m_identification
Identification (for each protocol)
Implement the Ipv4 layer.
int32_t GetInterfaceForAddress(Ipv4Address addr) const
Return the interface number of the interface that has been assigned the specified IP address...
void DoFragmentation(Ptr< Packet > packet, uint32_t outIfaceMtu, std::list< Ptr< Packet > > &listFragments)
Fragment a packet.
Ptr< Node > m_node
Node attached to stack.
void RouteInputError(Ptr< const Packet > p, const Ipv4Header &ipHeader, Socket::SocketErrno sockErrno)
Fallback when no route is found.
Ipv4Header BuildHeader(Ipv4Address source, Ipv4Address destination, uint8_t protocol, uint16_t payloadSize, uint8_t ttl, uint8_t tos, bool mayFragment)
Construct an IPv4 header.
void SendRealOut(Ptr< Ipv4Route > route, Ptr< Packet > packet, Ipv4Header const &ipHeader)
Send packet with route.
Ptr< NetDevice > GetNetDevice(uint32_t i)
bool ProcessFragment(Ptr< Packet > &packet, Ipv4Header &ipHeader, uint32_t iif)
Process a packet fragment.
uint32_t AddIpv4Interface(Ptr< Ipv4Interface > interface)
Add an IPv4 interface to the stack.
void Remove(Ptr< IpL4Protocol > protocol)
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:38
virtual void SetWeakEsModel(bool model)
Set or unset the Weak Es Model.
void SetNode(Ptr< Node > node)
Set node associated with this stack.
a class to store IPv4 address information on an interface
an identifier for simulation events.
Definition: event-id.h:46
SocketList m_sockets
List of IPv4 raw sockets.
void DeleteRawSocket(Ptr< Socket > socket)
Deletes a particular raw socket.
bool AddAddress(uint32_t i, Ipv4InterfaceAddress address)
Ptr< Ipv4Interface > GetInterface(uint32_t i) const
Get an interface.
void Insert(Ptr< IpL4Protocol > protocol)
bool IsUnicast(Ipv4Address ad) const
Check if an IPv4 address is unicast according to the node.
Ipv4L3Protocol & operator=(const Ipv4L3Protocol &)
Copy constructor.
void LocalDeliver(Ptr< const Packet > p, Ipv4Header const &ip, uint32_t iif)
Deliver a packet.
void IpMulticastForward(Ptr< Ipv4MulticastRoute > mrtentry, Ptr< const Packet > p, const Ipv4Header &header)
Forward a multicast packet.
uint32_t GetNAddresses(uint32_t interface) const
MapFragmentsTimers_t m_fragmentsTimers
Expiration events.
uint16_t GetMtu(uint32_t i) const
void Receive(Ptr< NetDevice > device, Ptr< const Packet > p, uint16_t protocol, const Address &from, const Address &to, NetDevice::PacketType packetType)
Lower layer calls this method after calling L3Demux::Lookup The ARP subclass needs to know from which...
uint8_t m_defaultTtl
Default TTL.
uint32_t GetNInterfaces(void) const
virtual Ptr< IpL4Protocol > GetProtocol(int protocolNumber) const
Interface is down so can not send packet.
tuple address
Definition: first.py:37
PacketType
Packet types are used as they are in Linux.
Definition: net-device.h:274
TracedCallback< const Ipv4Header &, Ptr< const Packet >, uint32_t > m_unicastForwardTrace
Trace of unicast forwarded packets.
uint16_t GetMetric(uint32_t i) const
Ptr< Ipv4RoutingProtocol > GetRoutingProtocol(void) const
Get the routing protocol to be used by this Ipv4 stack.
A template-based reference counting class.
a unique identifier for an interface.
Definition: type-id.h:49
void SetDown(uint32_t i)
void HandleFragmentsTimeout(std::pair< uint64_t, uint32_t > key, Ipv4Header &ipHeader, uint32_t iif)
Process the timeout for packet fragments.
virtual bool GetIpForward(void) const
Get the IP forwarding state.
static const uint16_t PROT_NUMBER
Protocol number (0x0800)
bool m_moreFragment
True if other fragments will be sent.
bool IsForwarding(uint32_t i) const
Ipv4Address SelectSourceAddress(Ptr< const NetDevice > device, Ipv4Address dst, Ipv4InterfaceAddress::InterfaceAddressScope_e scope)
Return the first primary source address with scope less than or equal to the requested scope...
void SetRoutingProtocol(Ptr< Ipv4RoutingProtocol > routingProtocol)
Register a new routing protocol to be used by this Ipv4 stack.