A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ns3::EpcSgwPgwApplication Class Reference

This application implements the SGW/PGW functionality. More...

#include <epc-sgw-pgw-application.h>

+ Inheritance diagram for ns3::EpcSgwPgwApplication:
+ Collaboration diagram for ns3::EpcSgwPgwApplication:

Classes

struct  EnbInfo
 
class  UeInfo
 store info for each UE connected to this SGW More...
 

Public Member Functions

 EpcSgwPgwApplication (const Ptr< VirtualNetDevice > tunDevice, const Ptr< Socket > s1uSocket)
 Constructor that binds the tap device to the callback methods. More...
 
virtual ~EpcSgwPgwApplication (void)
 Destructor. More...
 
void AddEnb (uint16_t cellId, Ipv4Address enbAddr, Ipv4Address sgwAddr)
 Let the SGW be aware of a new eNB. More...
 
void AddUe (uint64_t imsi)
 Let the SGW be aware of a new UE. More...
 
virtual void DoDispose ()
 This method is called by Object::Dispose or by the object's destructor, whichever comes first. More...
 
EpcS11SapSgwGetS11SapSgw ()
 
void RecvFromS1uSocket (Ptr< Socket > socket)
 Method to be assigned to the recv callback of the S1-U socket. More...
 
bool RecvFromTunDevice (Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
 Method to be assigned to the callback of the Gi TUN VirtualNetDevice. More...
 
void SendToS1uSocket (Ptr< Packet > packet, Ipv4Address enbS1uAddress, uint32_t teid)
 Send a packet to the SGW via the S1-U interface. More...
 
void SendToTunDevice (Ptr< Packet > packet, uint32_t teid)
 Send a packet to the internet via the Gi interface of the SGW/PGW. More...
 
void SetS11SapMme (EpcS11SapMme *s)
 Set the MME side of the S11 SAP. More...
 
void SetUeAddress (uint64_t imsi, Ipv4Address ueAddr)
 set the address of a previously added UE More...
 
- Public Member Functions inherited from ns3::Application
 Application ()
 
virtual ~Application ()
 
Ptr< NodeGetNode () const
 
void SetNode (Ptr< Node > node)
 
void SetStartTime (Time start)
 Specify application start time. More...
 
void SetStopTime (Time stop)
 Specify application stop time. More...
 
- Public Member Functions inherited from ns3::Object
 Object ()
 
virtual ~Object ()
 
void AggregateObject (Ptr< Object > other)
 
void Dispose (void)
 Run the DoDispose methods of this object and all the objects aggregated to it. More...
 
AggregateIterator GetAggregateIterator (void) const
 
virtual TypeId GetInstanceTypeId (void) const
 
template<typename T >
Ptr< T > GetObject (void) const
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 
void Initialize (void)
 This method calls the virtual DoInitialize method on all the objects aggregated to this object. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment. More...
 
void Ref (void) const
 Increment the reference count. More...
 
void Unref (void) const
 Decrement the reference count. More...
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor. More...
 
void GetAttribute (std::string name, AttributeValue &value) const
 
bool GetAttributeFailSafe (std::string name, AttributeValue &attribute) const
 
void SetAttribute (std::string name, const AttributeValue &value)
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 

Static Public Member Functions

static TypeId GetTypeId (void)
 
- Static Public Member Functions inherited from ns3::Application
static TypeId GetTypeId (void)
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId (void)
 Register this type. More...
 
- Static Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
static void Cleanup (void)
 Noop. More...
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId (void)
 Get the type ID. More...
 

Private Member Functions

void DoCreateSessionRequest (EpcS11SapSgw::CreateSessionRequestMessage msg)
 
void DoModifyBearerRequest (EpcS11SapSgw::ModifyBearerRequestMessage msg)
 

Private Attributes

std::map< uint16_t, EnbInfom_enbInfoByCellId
 
uint16_t m_gtpuUdpPort
 UDP port to be used for GTP. More...
 
EpcS11SapMmem_s11SapMme
 MME side of the S11 SAP. More...
 
EpcS11SapSgwm_s11SapSgw
 SGW side of the S11 SAP. More...
 
Ptr< Socketm_s1uSocket
 UDP socket to send and receive GTP-U packets to and from the S1-U interface. More...
 
uint32_t m_teidCount
 
Ptr< VirtualNetDevicem_tunDevice
 TUN VirtualNetDevice used for tunneling/detunneling IP packets from/to the internet over GTP-U/UDP/IP on the S1 interface. More...
 
std::map< Ipv4Address, Ptr
< UeInfo > > 
m_ueInfoByAddrMap
 Map telling for each UE address the corresponding UE info. More...
 
std::map< uint64_t, Ptr< UeInfo > > m_ueInfoByImsiMap
 Map telling for each IMSI the corresponding UE info. More...
 

Friends

class MemberEpcS11SapSgw< EpcSgwPgwApplication >
 

Additional Inherited Members

- Protected Member Functions inherited from ns3::Application
virtual void DoInitialize (void)
 This method is called only once by Object::Initialize. More...
 
- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 
virtual void NotifyNewAggregate (void)
 This method is invoked whenever two sets of objects are aggregated together. More...
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 
virtual void NotifyConstructionCompleted (void)
 This method is invoked once all member attributes have been initialized. More...
 
- Protected Attributes inherited from ns3::Application
Ptr< Nodem_node
 
EventId m_startEvent
 The simulation time that the appliacation will end. More...
 
Time m_startTime
 The node that this application is installed on. More...
 
EventId m_stopEvent
 The event that will fire at m_startTime to start the application. More...
 
Time m_stopTime
 The simulation time that the appliacation will start. More...
 

Detailed Description

This application implements the SGW/PGW functionality.

Definition at line 48 of file epc-sgw-pgw-application.h.

Constructor & Destructor Documentation

ns3::EpcSgwPgwApplication::EpcSgwPgwApplication ( const Ptr< VirtualNetDevice tunDevice,
const Ptr< Socket s1uSocket 
)

Constructor that binds the tap device to the callback methods.

Parameters
tunDeviceTUN VirtualNetDevice used to tunnel IP packets from the Gi interface of the PGW/SGW over the internet over GTP-U/UDP/IP on the S1-U interface
s1uSocketsocket used to send GTP-U packets to the eNBs

Definition at line 113 of file epc-sgw-pgw-application.cc.

References m_s11SapSgw, m_s1uSocket, ns3::MakeCallback(), NS_LOG_FUNCTION, RecvFromS1uSocket(), and ns3::Socket::SetRecvCallback().

+ Here is the call graph for this function:

ns3::EpcSgwPgwApplication::~EpcSgwPgwApplication ( void  )
virtual

Destructor.

Definition at line 126 of file epc-sgw-pgw-application.cc.

References NS_LOG_FUNCTION.

Member Function Documentation

void ns3::EpcSgwPgwApplication::AddEnb ( uint16_t  cellId,
Ipv4Address  enbAddr,
Ipv4Address  sgwAddr 
)

Let the SGW be aware of a new eNB.

Parameters
cellIdthe cell identifier
enbAddrthe address of the eNB
sgwAddrthe address of the SGW

Definition at line 225 of file epc-sgw-pgw-application.cc.

References ns3::EpcSgwPgwApplication::EnbInfo::enbAddr, m_enbInfoByCellId, NS_LOG_FUNCTION, and ns3::EpcSgwPgwApplication::EnbInfo::sgwAddr.

void ns3::EpcSgwPgwApplication::AddUe ( uint64_t  imsi)

Let the SGW be aware of a new UE.

Parameters
imsithe unique identifier of the UE

Definition at line 235 of file epc-sgw-pgw-application.cc.

References m_ueInfoByImsiMap, and NS_LOG_FUNCTION.

void ns3::EpcSgwPgwApplication::DoDispose ( void  )
virtual

This method is called by Object::Dispose or by the object's destructor, whichever comes first.

Subclasses are expected to implement their real destruction code in an overriden 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::Application.

Definition at line 103 of file epc-sgw-pgw-application.cc.

References m_s11SapSgw, m_s1uSocket, ns3::MakeNullCallback(), NS_LOG_FUNCTION, and ns3::Socket::SetRecvCallback().

+ Here is the call graph for this function:

EpcS11SapSgw * ns3::EpcSgwPgwApplication::GetS11SapSgw ( )
Returns
the SGW side of the S11 SAP

Definition at line 219 of file epc-sgw-pgw-application.cc.

References m_s11SapSgw.

TypeId ns3::EpcSgwPgwApplication::GetTypeId ( void  )
static

Definition at line 95 of file epc-sgw-pgw-application.cc.

References ns3::TypeId::SetParent().

+ Here is the call graph for this function:

void ns3::EpcSgwPgwApplication::RecvFromS1uSocket ( Ptr< Socket socket)

Method to be assigned to the recv callback of the S1-U socket.

It is called when the SGW/PGW receives a data packet from the eNB that is to be forwarded to the internet.

Parameters
socketpointer to the S1-U socket
Internal:
Workaround for Bug 231

Definition at line 171 of file epc-sgw-pgw-application.cc.

References ns3::GtpuHeader::GetTeid(), m_s1uSocket, NS_ASSERT, NS_LOG_FUNCTION, ns3::Socket::Recv(), ns3::Packet::RemoveHeader(), ns3::Packet::RemovePacketTag(), and SendToTunDevice().

Referenced by EpcSgwPgwApplication().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

bool ns3::EpcSgwPgwApplication::RecvFromTunDevice ( Ptr< Packet packet,
const Address source,
const Address dest,
uint16_t  protocolNumber 
)

Method to be assigned to the callback of the Gi TUN VirtualNetDevice.

It is called when the SGW/PGW receives a data packet from the internet (including IP headers) that is to be sent to the UE via its associated eNB, tunneling IP over GTP-U/UDP/IP.

Parameters
packet
source
dest
protocolNumber
Returns
true always

Definition at line 133 of file epc-sgw-pgw-application.cc.

References ns3::Packet::Copy(), ns3::Ipv4Header::GetDestination(), ns3::Packet::GetSize(), m_ueInfoByAddrMap, NS_LOG_FUNCTION, NS_LOG_LOGIC, NS_LOG_WARN, and SendToS1uSocket().

Referenced by ns3::PointToPointEpcHelper::PointToPointEpcHelper().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::EpcSgwPgwApplication::SendToS1uSocket ( Ptr< Packet packet,
Ipv4Address  enbS1uAddress,
uint32_t  teid 
)

Send a packet to the SGW via the S1-U interface.

Parameters
packetpacket to be sent
enbS1uAddressthe address of the eNB
teidthe Tunnel Enpoint IDentifier

Definition at line 197 of file epc-sgw-pgw-application.cc.

References ns3::Packet::AddHeader(), ns3::GtpuHeader::GetSerializedSize(), ns3::Packet::GetSize(), m_gtpuUdpPort, m_s1uSocket, NS_LOG_FUNCTION, ns3::Socket::SendTo(), ns3::GtpuHeader::SetLength(), and ns3::GtpuHeader::SetTeid().

Referenced by RecvFromTunDevice().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::EpcSgwPgwApplication::SendToTunDevice ( Ptr< Packet packet,
uint32_t  teid 
)

Send a packet to the internet via the Gi interface of the SGW/PGW.

Parameters
packet

Definition at line 189 of file epc-sgw-pgw-application.cc.

References ns3::VirtualNetDevice::GetAddress(), ns3::Packet::GetSize(), m_tunDevice, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::NetDevice::PACKET_HOST, and ns3::VirtualNetDevice::Receive().

Referenced by RecvFromS1uSocket().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::EpcSgwPgwApplication::SetS11SapMme ( EpcS11SapMme s)

Set the MME side of the S11 SAP.

Parameters
sthe MME side of the S11 SAP

Definition at line 213 of file epc-sgw-pgw-application.cc.

References m_s11SapMme, and s.

void ns3::EpcSgwPgwApplication::SetUeAddress ( uint64_t  imsi,
Ipv4Address  ueAddr 
)

set the address of a previously added UE

Parameters
imsithe unique identifier of the UE
ueAddrthe IPv4 address of the UE

Definition at line 243 of file epc-sgw-pgw-application.cc.

References m_ueInfoByAddrMap, m_ueInfoByImsiMap, NS_ASSERT_MSG, and NS_LOG_FUNCTION.

Friends And Related Function Documentation

friend class MemberEpcS11SapSgw< EpcSgwPgwApplication >
friend

Definition at line 50 of file epc-sgw-pgw-application.h.

Member Data Documentation

std::map<uint16_t, EnbInfo> ns3::EpcSgwPgwApplication::m_enbInfoByCellId
private
uint16_t ns3::EpcSgwPgwApplication::m_gtpuUdpPort
private

UDP port to be used for GTP.

Definition at line 243 of file epc-sgw-pgw-application.h.

Referenced by SendToS1uSocket().

EpcS11SapMme* ns3::EpcSgwPgwApplication::m_s11SapMme
private

MME side of the S11 SAP.

Definition at line 251 of file epc-sgw-pgw-application.h.

Referenced by DoCreateSessionRequest(), DoModifyBearerRequest(), and SetS11SapMme().

EpcS11SapSgw* ns3::EpcSgwPgwApplication::m_s11SapSgw
private

SGW side of the S11 SAP.

Definition at line 257 of file epc-sgw-pgw-application.h.

Referenced by DoDispose(), EpcSgwPgwApplication(), and GetS11SapSgw().

Ptr<Socket> ns3::EpcSgwPgwApplication::m_s1uSocket
private

UDP socket to send and receive GTP-U packets to and from the S1-U interface.

Definition at line 222 of file epc-sgw-pgw-application.h.

Referenced by DoDispose(), EpcSgwPgwApplication(), RecvFromS1uSocket(), and SendToS1uSocket().

uint32_t ns3::EpcSgwPgwApplication::m_teidCount
private

Definition at line 245 of file epc-sgw-pgw-application.h.

Referenced by DoCreateSessionRequest().

Ptr<VirtualNetDevice> ns3::EpcSgwPgwApplication::m_tunDevice
private

TUN VirtualNetDevice used for tunneling/detunneling IP packets from/to the internet over GTP-U/UDP/IP on the S1 interface.

Definition at line 228 of file epc-sgw-pgw-application.h.

Referenced by SendToTunDevice().

std::map<Ipv4Address, Ptr<UeInfo> > ns3::EpcSgwPgwApplication::m_ueInfoByAddrMap
private

Map telling for each UE address the corresponding UE info.

Definition at line 233 of file epc-sgw-pgw-application.h.

Referenced by RecvFromTunDevice(), and SetUeAddress().

std::map<uint64_t, Ptr<UeInfo> > ns3::EpcSgwPgwApplication::m_ueInfoByImsiMap
private

Map telling for each IMSI the corresponding UE info.

Definition at line 238 of file epc-sgw-pgw-application.h.

Referenced by AddUe(), DoCreateSessionRequest(), DoModifyBearerRequest(), and SetUeAddress().


The documentation for this class was generated from the following files: