22 #include "ns3/simulator.h"
47 recipient (recipient),
61 .SetGroupName (
"Wifi")
93 it =
m_agreements.find (std::make_pair (recipient, tid));
99 return it->second.first.IsInactive ();
101 return it->second.first.IsEstablished ();
103 return it->second.first.IsPending ();
105 return it->second.first.IsUnsuccessful ();
117 std::pair<Mac48Address, uint8_t> key (recipient, reqHdr->
GetTid ());
122 agreement.SetBufferSize (64);
123 agreement.SetWinEnd ((agreement.GetStartingSequence () + agreement.GetBufferSize () - 1) % 4096);
129 agreement.SetImmediateBlockAck ();
133 agreement.SetDelayedBlockAck ();
137 std::pair<OriginatorBlockAckAgreement, PacketQueue> value (agreement, queue);
151 if ((*i)->hdr.GetAddr1 () == recipient && (*i)->hdr.GetQosTid () == tid)
162 for (std::list<Bar>::const_iterator i =
m_bars.begin (); i !=
m_bars.end (); )
164 if (i->recipient == recipient && i->tid == tid)
180 uint8_t tid = respHdr->
GetTid ();
218 Item item (packet, hdr, tStamp);
222 for (; queueIt != it->second.second.end (); )
224 if (((hdr.
GetSequenceNumber () - queueIt->hdr.GetSequenceNumber () + 4096) % 4096) > 2047)
226 queueIt = it->second.second.insert (queueIt, item);
234 if (queueIt == it->second.second.end ())
236 it->second.second.push_back (item);
260 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
263 if ((*it)->hdr.IsQosData ())
265 tid = (*it)->hdr.GetQosTid ();
269 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
271 recipient = (*it)->hdr.GetAddr1 ();
276 if (
QosUtilsIsOldPacket (agreement->second.first.GetStartingSequence (),(*it)->hdr.GetSequenceNumber ()))
279 NS_LOG_DEBUG (
"The Retry packet have sequence number < WinStartO --> Discard " << (*it)->hdr.GetSequenceNumber () <<
" " << agreement->second.first.GetStartingSequence ());
280 agreement->second.second.erase ((*it));
284 else if ((*it)->hdr.GetSequenceNumber () > (agreement->second.first.GetStartingSequence () + 63) % 4096)
286 agreement->second.first.SetStartingSequence ((*it)->hdr.GetSequenceNumber ());
289 packet = (*it)->packet->
Copy ();
298 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
301 if (!agreement->second.first.IsHtSupported ()
320 i->second.second.erase (*it);
343 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
346 if (!(*it)->hdr.IsQosData ())
348 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
350 if ((*it)->hdr.GetAddr1 () == recipient && (*it)->hdr.GetQosTid () == tid)
352 if (
QosUtilsIsOldPacket (agreement->second.first.GetStartingSequence (),(*it)->hdr.GetSequenceNumber ()))
355 NS_LOG_DEBUG (
"The Retry packet have sequence number < WinStartO --> Discard " << (*it)->hdr.GetSequenceNumber () <<
" " << agreement->second.first.GetStartingSequence ());
356 agreement->second.second.erase ((*it));
361 else if ((*it)->hdr.GetSequenceNumber () > (agreement->second.first.GetStartingSequence () + 63) % 4096)
363 agreement->second.first.SetStartingSequence ((*it)->hdr.GetSequenceNumber ());
365 packet = (*it)->packet->
Copy ();
368 *tstamp = (*it)->timestamp;
371 if (!agreement->second.first.IsHtSupported ()
399 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
402 if (!(*it)->hdr.IsQosData ())
404 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
406 if ((*it)->hdr.GetAddr1 () == recipient && (*it)->hdr.GetQosTid () == tid && (*it)->hdr.GetSequenceNumber () == seqnumber)
413 i->second.second.erase ((*it));
447 uint32_t nPackets = 0;
452 uint16_t currentSeq = 0;
453 while (queueIt != (*it).second.second.end ())
455 currentSeq = (*queueIt).hdr.GetSequenceNumber ();
458 while (queueIt != (*it).second.second.end () && (*queueIt).hdr.GetSequenceNumber () == currentSeq)
472 uint32_t nPackets = 0;
473 uint16_t currentSeq = 0;
476 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
479 if (!(*it)->hdr.IsQosData ())
481 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
483 if ((*it)->hdr.GetAddr1 () == recipient && (*it)->hdr.GetQosTid () == tid)
485 currentSeq = (*it)->hdr.GetSequenceNumber ();
488 while (it !=
m_retryPackets.end () && (*it)->hdr.GetSequenceNumber () == currentSeq)
520 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
524 if (!(*it)->hdr.IsQosData ())
526 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
528 if ((*it)->hdr.GetAddr1 () == recipient && (*it)->hdr.GetQosTid () == tid && currentSeq == (*it)->hdr.GetSequenceNumber ())
541 uint16_t sequenceFirstLost = 0;
547 bool foundFirstLost =
false;
548 uint8_t nSuccessfulMpdus = 0;
549 uint8_t nFailedMpdus = 0;
553 if (it->second.first.m_inactivityEvent.IsRunning ())
558 it->second.first.m_inactivityEvent.Cancel ();
567 for (
PacketQueueI queueIt = it->second.second.begin (); queueIt != queueEnd; )
570 (*queueIt).hdr.GetFragmentNumber ()))
574 queueIt = it->second.second.erase (queueIt);
580 foundFirstLost =
true;
581 sequenceFirstLost = (*queueIt).hdr.GetSequenceNumber ();
582 (*it).second.first.SetStartingSequence (sequenceFirstLost);
585 if (!
AlreadyExists ((*queueIt).hdr.GetSequenceNumber (),recipient,tid))
595 for (
PacketQueueI queueIt = it->second.second.begin (); queueIt != queueEnd; )
597 uint16_t currentSeq = (*queueIt).hdr.GetSequenceNumber ();
600 while (queueIt != queueEnd
601 && (*queueIt).hdr.GetSequenceNumber () == currentSeq)
609 queueIt = it->second.second.erase (queueIt);
616 foundFirstLost =
true;
617 sequenceFirstLost = (*queueIt).hdr.GetSequenceNumber ();
618 (*it).second.first.SetStartingSequence (sequenceFirstLost);
625 if (!
AlreadyExists ((*queueIt).hdr.GetSequenceNumber (),recipient,tid))
638 it->second.first.CompleteExchange ();
668 if ((*it).second.first.IsBlockAckRequestNeeded ()
711 it->second.first.SetStartingSequence (startingSeq);
740 nextSeq = nextSeqNumber;
742 it->second.first.NotifyMpduTransmission (nextSeq);
748 Bar request (bar, recipient, tid, it->second.first.IsImmediateBlockAck ());
749 m_bars.push_back (request);
785 if ((seqNumber + 63) < it->second.first.GetStartingSequence ())
799 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
802 if ((*it)->hdr.GetAddr1 () == address
803 && (*it)->hdr.GetQosTid () == tid
804 && (*it)->hdr.GetSequenceNumber () == seq)
821 if (j->second.second.empty ())
827 for (
PacketQueueI i = j->second.second.begin (); i != j->second.second.end (); i++)
837 j->second.first.GetTid (),
838 i->hdr.GetSequenceNumber ());
841 j->second.second.erase (j->second.second.begin (), end);
842 j->second.first.SetStartingSequence (end->hdr.GetSequenceNumber ());
885 std::list<PacketQueueI>::const_iterator it =
m_retryPackets.begin ();
888 if (!(*it)->hdr.IsQosData ())
890 NS_FATAL_ERROR (
"Packet in blockAck manager retry queue is not Qos Data");
892 if ((*it)->hdr.GetAddr1 () == recipient && (*it)->hdr.GetQosTid () == tid)
894 return (*it)->hdr.GetSequenceNumber ();
916 NS_LOG_INFO (
"Adding to retry queue " << (*item).hdr.GetSequenceNumber ());
925 if (((item->hdr.GetSequenceNumber () - (*it)->hdr.GetSequenceNumber () + 4096) % 4096) > 2047)
void SetUnblockDestinationCallback(Callback< void, Mac48Address, uint8_t > callback)
Set unblock destination callback.
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Simulation virtual time values and global simulation resolution.
void NotifyGotBlockAck(const CtrlBAckResponseHeader *blockAck, Mac48Address recipient, double rxSnr, WifiMode txMode, double dataSnr)
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
std::list< Item > PacketQueue
typedef for a list of Item struct.
Maintains the state and information about transmitted MPDUs with ack policy block ack for an originat...
uint16_t GetTimeout(void) const
Return the timeout.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
std::map< std::pair< Mac48Address, uint8_t >, std::pair< OriginatorBlockAckAgreement, PacketQueue > >::const_iterator AgreementsCI
typedef for a const iterator for Agreements.
void CreateAgreement(const MgtAddBaRequestHeader *reqHdr, Mac48Address recipient)
Ptr< const Packet > PeekNextPacketByTidAndAddress(WifiMacHeader &hdr, Mac48Address recipient, uint8_t tid, Time *timestamp)
Peek in retransmit queue and get the next packet having address indicated by type equals to addr...
void StorePacket(Ptr< const Packet > packet, const WifiMacHeader &hdr, Time tStamp)
uint8_t m_blockAckThreshold
bock ack threshold
Agreements m_agreements
This data structure contains, for each block ack agreement (recipient, tid), a set of packets for whi...
bool IsNull(void) const
Check for null implementation.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
std::map< std::pair< Mac48Address, uint8_t >, std::pair< OriginatorBlockAckAgreement, PacketQueue > >::iterator AgreementsI
typedef for an iterator for Agreements.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
bool QosUtilsIsOldPacket(uint16_t startingSeq, uint16_t seqNumber)
This function checks if packet with sequence number seqNumber is an "old" packet. ...
bool HasPackets(void) const
Returns true if there are packets that need of retransmission or at least a BAR is scheduled...
Ptr< const Packet > GetNextPacket(WifiMacHeader &hdr, bool removePacket)
BlockAckType
Enumeration for different block ACK policies.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
TxOk m_txOkCallback
transmit ok callback
uint16_t GetStartingSequence(void) const
Return the starting squence number.
void RemoveFromRetryQueue(Mac48Address address, uint8_t tid, uint16_t seq)
Remove items from retransmission queue.
void SetTxFailedCallback(TxFailed callback)
Ptr< Packet > ScheduleBlockAckReqIfNeeded(Mac48Address recipient, uint8_t tid)
bool AlreadyExists(uint16_t currentSeq, Mac48Address recipient, uint8_t tid) const
Checks if the packet already exists in the retransmit queue or not if it does then it doesn't add it ...
void NotifyAgreementEstablished(Mac48Address recipient, uint8_t tid, uint16_t startingSeq)
static EventId Schedule(Time const &delay, MEM mem_ptr, OBJ obj)
Schedule an event to expire after delay.
void UpdateAgreement(const MgtAddBaResponseHeader *respHdr, Mac48Address recipient)
void SetQueue(const Ptr< WifiMacQueue > queue)
uint32_t GetNRetryNeededPackets(Mac48Address recipient, uint8_t tid) const
void SetBlockAckType(BlockAckType bAckType)
void SetWifiRemoteStationManager(const Ptr< WifiRemoteStationManager > manager)
Set up WifiRemoteStationManager associated with this BlockAckManager.
uint16_t GetSeqNumOfNextRetryPacket(Mac48Address recipient, uint8_t tid) const
void NotifyAgreementUnsuccessful(Mac48Address recipient, uint8_t tid)
static TypeId GetTypeId(void)
Get the type ID.
void InsertInRetryQueue(PacketQueueI item)
std::string GetUniqueName(void) const
std::list< PacketQueueI > m_retryPackets
This list contains all iterators to stored packets that need to be retransmitted. ...
Ptr< MacTxMiddle > m_txMiddle
the MacTxMiddle
void SetBlockDestinationCallback(Callback< void, Mac48Address, uint8_t > callback)
Set block destination callback.
void DestroyAgreement(Mac48Address recipient, uint8_t tid)
Item(Ptr< const Packet > packet, const WifiMacHeader &hdr, Time tStamp)
Constructor.
void SetState(State state)
Set the current state.
void SetTxOkCallback(TxOk callback)
bool HasBar(Bar &bar)
Returns true if the BAR is scheduled.
void SetStartingSequence(uint16_t seq)
Set starting sequence number.
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void InactivityTimeout(Mac48Address recipient, uint8_t tid)
Inactivity timeout function.
bool RemovePacket(uint8_t tid, Mac48Address recipient, uint16_t seqnumber)
Remove a packet after you peek in the queue and get it.
Callback< void, Mac48Address, uint8_t, bool > m_blockAckInactivityTimeout
block ack inactivity timeout callback
QosAckPolicy
ACK policy for QoS frames.
Callback< void, Mac48Address, uint8_t > m_blockPackets
block packets callback
bool ExistsAgreementInState(Mac48Address recipient, uint8_t tid, OriginatorBlockAckAgreement::State state) const
static Time Now(void)
Return the current simulation virtual time.
void SetBlockAckInactivityCallback(Callback< void, Mac48Address, uint8_t, bool > callback)
Set block ack inactivity callback.
void SetMaxPacketDelay(Time maxDelay)
void NotifyMpduTransmission(Mac48Address recipient, uint8_t tid, uint16_t nextSeqNumber, WifiMacHeader::QosAckPolicy policy)
bool HasHtSupported(void) const
Return whether the device has HT capability support enabled.
void SetDelayedBlockAck(void)
Set Block ACK policy to delayed ACK.
EventId m_inactivityEvent
inactivity event
bool NeedBarRetransmission(uint8_t tid, uint16_t seqNumber, Mac48Address recipient)
This function returns true if the lifetime of the packets a BAR refers to didn't expire yet else it r...
void SetAmsduSupport(bool supported)
Enable or disable A-MSDU support.
A struct for packet, Wifi header, and timestamp.
bool SwitchToBlockAckIfNeeded(Mac48Address recipient, uint8_t tid, uint16_t startingSeq)
std::list< Item >::const_iterator PacketQueueCI
typedef for a const iterator for PacketQueue.
Callback< void, Mac48Address, uint8_t > m_unblockPackets
unblock packets callback
uint32_t GetNBufferedPackets(Mac48Address recipient, uint8_t tid) const
std::list< Bar > m_bars
list of BARs
void CleanupBuffers(void)
This method removes packets whose lifetime was exceeded.
void SetTxMiddle(const Ptr< MacTxMiddle > txMiddle)
Set the MacTxMiddle.
void SetBlockAckThreshold(uint8_t nPackets)
void CompleteAmpduExchange(Mac48Address recipient, uint8_t tid)
BlockAckType m_blockAckType
bock ack type
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
State
Represents the state for this agreement.
void SetImmediateBlockAck(void)
Set Block ACK policy to immediate ACK.
Time m_maxDelay
maximum delay
void SetTimeout(uint16_t timeout)
Set timeout.
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
void ReportAmpduTxStatus(Mac48Address address, uint8_t tid, uint8_t nSuccessfulMpdus, uint8_t nFailedMpdus, double rxSnr, double dataSnr)
Typically called per A-MPDU, either when a Block ACK was successfully received or when a BlockAckTime...
A base class which provides memory management and object aggregation.
Manages all block ack agreements for an originator station.
bool ExistsAgreement(Mac48Address recipient, uint8_t tid) const
TxFailed m_txFailedCallback
transmit failed callback
Ptr< WifiRemoteStationManager > m_stationManager
the station manager
void SetBufferSize(uint16_t bufferSize)
Set buffer size.
uint16_t GetNextSeqNumberByTidAndAddress(uint8_t tid, Mac48Address addr) const
Return the next sequence number for the Traffic ID and destination.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
void AddHeader(const Header &header)
Add header to this packet.
Ptr< WifiMacQueue > m_queue
queue
void CompleteExchange(void)
Complete exchange function.
std::list< Item >::iterator PacketQueueI
typedef for an iterator for PacketQueue.