26 #include <ns3/ff-mac-common.h>
28 #include <ns3/lte-common.h>
29 #include <ns3/lte-control-messages.h>
30 #include <ns3/packet-burst.h>
31 #include <ns3/packet.h>
32 #include <ns3/pointer.h>
33 #include <ns3/random-variable-stream.h>
34 #include <ns3/simulator.h>
63 uint8_t prachMask)
override;
64 void SetRnti(uint16_t rnti)
override;
65 void AddLc(uint8_t lcId,
68 void RemoveLc(uint8_t lcId)
override;
69 void Reset()
override;
71 void SetImsi(uint64_t imsi)
override;
231 .AddTraceSource(
"RaResponseTimeout",
232 "trace fired upon RA response timeout",
234 "ns3::LteUeMac::RaResponseTimeoutTracedCallback")
247 m_rachConfigured(false),
248 m_waitingForRaResponse(false)
325 params.pdu->AddPacketTag(tag);
337 std::map<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>::iterator it;
348 std::pair<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>(
params.lcid,
375 std::map<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>::iterator it;
376 std::vector<uint32_t> queue(4, 0);
379 uint8_t lcid = it->first;
380 std::map<uint8_t, LcInfo>::iterator lcInfoMapIt;
384 (((*it).second.txQueueSize == 0) && ((*it).second.retxQueueSize == 0) &&
385 ((*it).second.statusPduSize == 0)),
386 "BSR should not be used for LCID 0");
387 uint8_t lcg = lcInfoMapIt->second.lcConfig.logicalChannelGroup;
389 ((*it).second.txQueueSize + (*it).second.retxQueueSize + (*it).second.statusPduSize);
413 bool contention =
true;
455 <<
", setting T-C-RNTI = " << raResponse.
m_rnti);
465 const uint8_t lc0Lcid = 0;
466 std::map<uint8_t, LcInfo>::iterator lc0InfoIt =
m_lcInfoMap.find(lc0Lcid);
468 std::map<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>::iterator lc0BsrIt =
470 if ((lc0BsrIt !=
m_ulBsrReceived.end()) && (lc0BsrIt->second.txQueueSize > 0))
473 "segmentation of Message 3 is not allowed");
481 txOpParams.
layer = 0;
485 txOpParams.
lcid = lc0Lcid;
486 lc0InfoIt->second.macSapUser->NotifyTxOpportunity(txOpParams);
487 lc0BsrIt->second.txQueueSize = 0;
505 NS_LOG_INFO(
"RAR timeout, preambleTransMax reached => giving up");
561 NS_LOG_FUNCTION(
this << rnti << (uint16_t)preambleId << (uint16_t)prachMask);
563 "requested PRACH MASK = " << (uint32_t)prachMask
564 <<
", but only PRACH MASK = 0 is supported");
568 bool contention =
false;
579 "cannot add channel because LCID " << (uint16_t)lcId <<
" is already present");
600 std::map<uint8_t, LcInfo>::iterator it =
m_lcInfoMap.begin();
644 it->second.macSapUser->ReceivePdu(rxPduParams);
667 std::map<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>::iterator itBsr;
668 uint16_t activeLcs = 0;
669 uint32_t statusPduMinSize = 0;
672 if (((*itBsr).second.statusPduSize > 0) || ((*itBsr).second.retxQueueSize > 0) ||
673 ((*itBsr).second.txQueueSize > 0))
676 if (((*itBsr).second.statusPduSize != 0) &&
677 ((*itBsr).second.statusPduSize < statusPduMinSize))
679 statusPduMinSize = (*itBsr).second.statusPduSize;
681 if (((*itBsr).second.statusPduSize != 0) && (statusPduMinSize == 0))
683 statusPduMinSize = (*itBsr).second.statusPduSize;
689 NS_LOG_ERROR(
this <<
" No active flows for this UL-DCI");
692 std::map<uint8_t, LcInfo>::iterator it;
693 uint32_t bytesPerActiveLc = dci.
m_tbSize / activeLcs;
694 bool statusPduPriority =
false;
695 if ((statusPduMinSize != 0) && (bytesPerActiveLc < statusPduMinSize))
698 statusPduPriority =
true;
699 NS_LOG_DEBUG(
this <<
" Reduced resource -> send only Status, b ytes "
700 << statusPduMinSize);
701 if (dci.
m_tbSize < statusPduMinSize)
703 NS_FATAL_ERROR(
"Insufficient Tx Opportunity for sending a status message");
707 << dci.
m_tbSize <<
" => " << bytesPerActiveLc
708 <<
" bytes per active LC"
709 <<
" statusPduMinSize " << statusPduMinSize);
716 NS_LOG_DEBUG(
this <<
" Processing LC " << (uint32_t)(*it).first
717 <<
" bytesPerActiveLc " << bytesPerActiveLc);
719 (((*itBsr).second.statusPduSize > 0) || ((*itBsr).second.retxQueueSize > 0) ||
720 ((*itBsr).second.txQueueSize > 0)))
722 if ((statusPduPriority) && ((*itBsr).second.statusPduSize == statusPduMinSize))
724 txOpParams.
bytes = (*itBsr).second.statusPduSize;
725 txOpParams.
layer = 0;
729 txOpParams.
lcid = (*it).first;
730 (*it).second.macSapUser->NotifyTxOpportunity(txOpParams);
731 NS_LOG_LOGIC(
this <<
"\t" << bytesPerActiveLc <<
" send "
732 << (*itBsr).second.statusPduSize <<
" status bytes to LC "
733 << (uint32_t)(*it).first <<
" statusQueue "
734 << (*itBsr).second.statusPduSize <<
" retxQueue"
735 << (*itBsr).second.retxQueueSize <<
" txQueue"
736 << (*itBsr).second.txQueueSize);
737 (*itBsr).second.statusPduSize = 0;
742 uint32_t bytesForThisLc = bytesPerActiveLc;
743 NS_LOG_LOGIC(
this <<
"\t" << bytesPerActiveLc <<
" bytes to LC "
744 << (uint32_t)(*it).first <<
" statusQueue "
745 << (*itBsr).second.statusPduSize <<
" retxQueue"
746 << (*itBsr).second.retxQueueSize <<
" txQueue"
747 << (*itBsr).second.txQueueSize);
748 if (((*itBsr).second.statusPduSize > 0) &&
749 (bytesForThisLc > (*itBsr).second.statusPduSize))
751 txOpParams.
bytes = (*itBsr).second.statusPduSize;
752 txOpParams.
layer = 0;
756 txOpParams.
lcid = (*it).first;
757 (*it).second.macSapUser->NotifyTxOpportunity(txOpParams);
758 bytesForThisLc -= (*itBsr).second.statusPduSize;
759 NS_LOG_DEBUG(
this <<
" serve STATUS " << (*itBsr).second.statusPduSize);
760 (*itBsr).second.statusPduSize = 0;
764 if ((*itBsr).second.statusPduSize > bytesForThisLc)
767 "Insufficient Tx Opportunity for sending a status message");
771 if ((bytesForThisLc > 7)
772 && (((*itBsr).second.retxQueueSize > 0) ||
773 ((*itBsr).second.txQueueSize > 0)))
775 if ((*itBsr).second.retxQueueSize > 0)
777 NS_LOG_DEBUG(
this <<
" serve retx DATA, bytes " << bytesForThisLc);
778 txOpParams.
bytes = bytesForThisLc;
779 txOpParams.
layer = 0;
783 txOpParams.
lcid = (*it).first;
784 (*it).second.macSapUser->NotifyTxOpportunity(txOpParams);
785 if ((*itBsr).second.retxQueueSize >= bytesForThisLc)
787 (*itBsr).second.retxQueueSize -= bytesForThisLc;
791 (*itBsr).second.retxQueueSize = 0;
794 else if ((*itBsr).second.txQueueSize > 0)
796 uint16_t lcid = (*it).first;
797 uint32_t rlcOverhead;
811 NS_LOG_DEBUG(
this <<
" serve tx DATA, bytes " << bytesForThisLc
812 <<
", RLC overhead " << rlcOverhead);
813 txOpParams.
bytes = bytesForThisLc;
814 txOpParams.
layer = 0;
818 txOpParams.
lcid = (*it).first;
819 (*it).second.macSapUser->NotifyTxOpportunity(txOpParams);
820 if ((*itBsr).second.txQueueSize >= bytesForThisLc - rlcOverhead)
822 (*itBsr).second.txQueueSize -= bytesForThisLc - rlcOverhead;
826 (*itBsr).second.txQueueSize = 0;
832 if (((*itBsr).second.retxQueueSize > 0) ||
833 ((*itBsr).second.txQueueSize > 0))
839 NS_LOG_LOGIC(
this <<
"\t" << bytesPerActiveLc <<
"\t new queues "
840 << (uint32_t)(*it).first <<
" statusQueue "
841 << (*itBsr).second.statusPduSize <<
" retxQueue"
842 << (*itBsr).second.retxQueueSize <<
" txQueue"
843 << (*itBsr).second.txQueueSize);
866 uint16_t raRnti = rarMsg->GetRaRnti();
867 NS_LOG_LOGIC(
this <<
"got RAR with RA-RNTI " << (uint32_t)raRnti <<
", expecting "
871 for (std::list<RarLteControlMessage::Rar>::const_iterator it =
872 rarMsg->RarListBegin();
873 it != rarMsg->RarListEnd();
889 NS_LOG_WARN(
this <<
" LteControlMessage not recognized");
905 NS_LOG_INFO(
this <<
" HARQ Proc Id " << i <<
" packets buffer expired");
static uint8_t BufferSize2BsrId(uint32_t val)
Convert Buffer size to BSR ID.
void Cancel()
This method is syntactic sugar for the ns3::Simulator::Cancel method.
Service Access Point (SAP) offered by the MAC to the RLC See Femto Forum MAC Scheduler Interface Spec...
Service Access Point (SAP) offered by the MAC to the RLC See Femto Forum MAC Scheduler Interface Spec...
Tag used to define the RNTI and LC id for each MAC packet trasmitted.
uint16_t GetRnti() const
Get RNTI function.
uint8_t GetLcid() const
Get LCID function.
Service Access Point (SAP) offered by the UE MAC to the UE RRC.
Service Access Point (SAP) offered by the UE MAC to the UE RRC.
virtual void NotifyRandomAccessFailed()=0
Notify the RRC that the MAC Random Access procedure failed.
virtual void NotifyRandomAccessSuccessful()=0
Notify the RRC that the MAC Random Access procedure completed successfully.
virtual void SetTemporaryCellRnti(uint16_t rnti)=0
std::vector< Ptr< PacketBurst > > m_miUlHarqProcessesPacket
Packets under transmission of the UL HARQ processes.
LteUePhySapUser * m_uePhySapUser
UE Phy SAP user.
uint8_t m_componentCarrierId
component carrier Id --> used to address sap
void RaResponseTimeout(bool contention)
RA response timeout function.
LteUeCmacSapProvider::RachConfig m_rachConfig
RACH configuration.
uint32_t m_frameNo
frame number
void DoSubframeIndication(uint32_t frameNo, uint32_t subframeNo)
Forwarded from LteUePhySapUser: trigger the start from a new frame.
void SendReportBufferStatus()
Send report buffer status.
void DoReportBufferStatus(LteMacSapProvider::ReportBufferStatusParameters params)
Report buffers status function.
TracedCallback< uint64_t, bool, uint8_t, uint8_t > m_raResponseTimeoutTrace
The RaResponseTimeout trace source.
LteUePhySapProvider * m_uePhySapProvider
UE Phy SAP provider.
void SetLteUePhySapProvider(LteUePhySapProvider *s)
Set the PHY SAP Provider.
Time m_bsrPeriodicity
BSR periodicity.
void RefreshHarqProcessesPacketBuffer()
Refresh HARQ processes packet buffer function.
EventId m_noRaResponseReceivedEvent
no RA response received event ID
LteUeCmacSapProvider * m_cmacSapProvider
CMAC SAP provider.
uint8_t m_preambleTransmissionCounter
preamble tranamission counter
Ptr< UniformRandomVariable > m_raPreambleUniformVariable
RA preamble random variable.
void SetComponentCarrierId(uint8_t index)
Set the component carried ID.
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model.
void DoConfigureRach(LteUeCmacSapProvider::RachConfig rc)
Configure RACH function.
LteUePhySapUser * GetLteUePhySapUser()
Get the PHY SAP user.
friend class UeMemberLteUePhySapUser
allow UeMemberLteUePhySapUser class friend access
bool m_rachConfigured
is RACH configured?
void DoRemoveLc(uint8_t lcId)
Remove LC function.
void RecvRaResponse(BuildRarListElement_s raResponse)
Receive the RA response function.
void DoReceivePhyPdu(Ptr< Packet > p)
Receive Phy PDU function.
uint8_t m_raPreambleId
RA preamble ID.
void DoNotifyConnectionSuccessful()
Notify MAC about the successful RRC connection establishment.
friend class UeMemberLteUeCmacSapProvider
allow UeMemberLteUeCmacSapProvider class friend access
std::vector< uint8_t > m_miUlHarqProcessesPacketTimer
timer for packet life in the buffer
void DoReceiveLteControlMessage(Ptr< LteControlMessage > msg)
Receive LTE control message function.
static TypeId GetTypeId()
Get the type ID.
void DoTransmitPdu(LteMacSapProvider::TransmitPduParameters params)
Transmit PDU function.
uint32_t m_subframeNo
subframe number
std::map< uint8_t, LteMacSapProvider::ReportBufferStatusParameters > m_ulBsrReceived
BSR received from RLC (the last one)
void DoDispose() override
Destructor implementation.
void DoReset()
Reset function.
LteUeCmacSapUser * m_cmacSapUser
CMAC SAP user.
bool m_freshUlBsr
true when a BSR has been received in the last TTI
LteMacSapProvider * GetLteMacSapProvider()
Get the LTE MAC SAP provider.
void DoStartNonContentionBasedRandomAccessProcedure(uint16_t rnti, uint8_t rapId, uint8_t prachMask)
Start non contention based random access procedure function.
LteUeCmacSapProvider * GetLteUeCmacSapProvider()
Get the LTE CMAC SAP provider.
bool m_waitingForRaResponse
waiting for RA response
void DoAddLc(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu)
Add LC function.
uint8_t m_harqProcessId
HARQ process ID.
friend class UeMemberLteMacSapProvider
allow UeMemberLteMacSapProvider class friend access
LteMacSapProvider * m_macSapProvider
MAC SAP provider.
void RandomlySelectAndSendRaPreamble()
Randomly select and send RA preamble function.
void DoStartContentionBasedRandomAccessProcedure()
Start contention based random access procedure function.
uint16_t m_backoffParameter
backoff parameter
void StartWaitingForRaResponse()
Start waiting for RA response function.
void DoSetRnti(uint16_t rnti)
Set RNTI.
void DoSetImsi(uint64_t imsi)
Set IMSI.
void SendRaPreamble(bool contention)
Send RA preamble function.
void SetLteUeCmacSapUser(LteUeCmacSapUser *s)
Set the LTE UE CMAC SAP user.
std::map< uint8_t, LcInfo > m_lcInfoMap
logical channel info map
Service Access Point (SAP) offered by the UE-PHY to the UE-MAC.
virtual void SendLteControlMessage(Ptr< LteControlMessage > msg)=0
Send SendLteControlMessage (PDCCH map, CQI feedbacks) using the ideal control channel.
virtual void SendRachPreamble(uint32_t prachId, uint32_t raRnti)=0
Send a preamble on the PRACH.
virtual void NotifyConnectionSuccessful()=0
Notify PHY about the successful RRC connection establishment.
virtual void SendMacPdu(Ptr< Packet > p)=0
Send the MAC PDU to the channel.
Service Access Point (SAP) offered by the PHY to the MAC.
A base class which provides memory management and object aggregation.
virtual void DoDispose()
Destructor implementation.
bool RemovePacketTag(Tag &tag)
Remove a packet tag.
Ptr< Packet > Copy() const
performs a COW copy of the packet.
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static Time Now()
Return the current simulation virtual time.
Simulation virtual time values and global simulation resolution.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
UeMemberLteMacSapProvider class.
LteUeMac * m_mac
the UE MAC
void TransmitPdu(TransmitPduParameters params) override
send an RLC PDU to the MAC for transmission.
void ReportBufferStatus(ReportBufferStatusParameters params) override
Report the RLC buffer status to the MAC.
UeMemberLteMacSapProvider(LteUeMac *mac)
Constructor.
UeMemberLteUeCmacSapProvider class.
void StartNonContentionBasedRandomAccessProcedure(uint16_t rnti, uint8_t preambleId, uint8_t prachMask) override
tell the MAC to start a non-contention-based random access procedure, e.g., as a consequence of hando...
LteUeMac * m_mac
the UE MAC
void SetImsi(uint64_t imsi) override
A method call by UE RRC to communicate the IMSI to the UE MAC.
void Reset() override
reset the MAC
void StartContentionBasedRandomAccessProcedure() override
tell the MAC to start a contention-based random access procedure, e.g., to perform RRC connection est...
void AddLc(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu) override
add a new Logical Channel (LC)
void RemoveLc(uint8_t lcId) override
remove an existing LC
void SetRnti(uint16_t rnti) override
void ConfigureRach(RachConfig rc) override
Configure RACH function.
void NotifyConnectionSuccessful() override
Notify MAC about the successful RRC connection establishment.
UeMemberLteUeCmacSapProvider(LteUeMac *mac)
Constructor.
UeMemberLteUePhySapUser(LteUeMac *mac)
Constructor.
LteUeMac * m_mac
the UE MAC
void ReceiveLteControlMessage(Ptr< LteControlMessage > msg) override
Receive SendLteControlMessage (PDCCH map, CQI feedbacks) using the ideal control channel.
void ReceivePhyPdu(Ptr< Packet > p) override
Receive Phy Pdu function.
void SubframeIndication(uint32_t frameNo, uint32_t subframeNo) override
Trigger the start from a new frame (input from Phy layer)
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
params
Fit Fluctuating Two Ray model to the 3GPP TR 38.901 using the Anderson-Darling goodness-of-fit ##.
See section 4.3.10 buildRARListElement.
Parameters for LteMacSapProvider::ReportBufferStatus.
Parameters for LteMacSapProvider::TransmitPdu.
Parameters for LteMacSapUser::ReceivePdu.
Ptr< Packet > p
the RLC PDU to be received
uint8_t lcid
the logical channel id
uint16_t rnti
the C-RNTI identifying the UE
Parameters for LteMacSapUser::NotifyTxOpportunity.
uint8_t harqId
the HARQ ID
uint16_t rnti
the C-RNTI identifying the UE
uint32_t bytes
the number of bytes to transmit
uint8_t componentCarrierId
the component carrier id
uint8_t layer
the layer of transmission (MIMO)
uint8_t lcid
the logical channel id
LogicalChannelConfig structure.
uint8_t raResponseWindowSize
RA response window size.
uint8_t preambleTransMax
preamble transmit maximum
uint8_t numberOfRaPreambles
number of RA preambles
LteUeCmacSapProvider::LogicalChannelConfig lcConfig
logical channel config
LteMacSapUser * macSapUser
MAC SAP user.
See section 4.3.14 macCEListElement.
struct MacCeValue_u m_macCeValue
MAC CE value.
std::vector< uint8_t > m_bufferStatus
buffer status
See section 4.3.2 ulDciListElement.