29 #include "ns3/string.h"
30 #include "ns3/queue.h"
33 #include "ns3/net-device-queue-interface.h"
45 .SetGroupName (
"TrafficControl")
119 .SetGroupName (
"TrafficControl")
121 .AddAttribute (
"UseEcn",
122 "True to use ECN (packets are marked instead of being dropped)",
126 .AddAttribute (
"Interval",
127 "The CoDel algorithm interval for each FqCobalt queue",
131 .AddAttribute (
"Target",
132 "The CoDel algorithm target queue delay for each FqCobalt queue",
136 .AddAttribute (
"MaxSize",
137 "The maximum number of packets accepted by this queue disc",
142 .AddAttribute (
"Flows",
143 "The number of queues into which the incoming packets are classified",
146 MakeUintegerChecker<uint32_t> ())
147 .AddAttribute (
"DropBatchSize",
148 "The maximum number of packets dropped from the fat flow",
151 MakeUintegerChecker<uint32_t> ())
152 .AddAttribute (
"Perturbation",
153 "The salt used as an additional input to the hash function used to classify packets",
156 MakeUintegerChecker<uint32_t> ())
157 .AddAttribute (
"CeThreshold",
158 "The FqCobalt CE threshold for marking packets",
162 .AddAttribute (
"EnableSetAssociativeHash",
163 "Enable/Disable Set Associative Hash",
167 .AddAttribute (
"SetWays",
168 "The size of a set of queues (used by set associative hash)",
171 MakeUintegerChecker<uint32_t> ())
172 .AddAttribute (
"UseL4s",
173 "True to use L4S (only ECT1 packets are marked at CE threshold)",
177 .AddAttribute (
"Pdrop",
178 "Marking Probability",
181 MakeDoubleChecker<double> ())
182 .AddAttribute (
"Increment",
183 "Pdrop increment value",
186 MakeDoubleChecker<double> ())
187 .AddAttribute (
"Decrement",
188 "Pdrop decrement Value",
191 MakeDoubleChecker<double> ())
192 .AddAttribute (
"BlueThreshold",
193 "The Threshold after which Blue is enabled",
231 uint32_t h = (flowHash %
m_flows);
233 uint32_t outerHash = h - innerHash;
235 for (uint32_t i = outerHash; i < outerHash +
m_setWays; i++)
251 m_tags[outerHash] = flowHash;
260 uint32_t flowHash, h;
272 flowHash =
static_cast<uint32_t
> (ret);
276 NS_LOG_ERROR (
"No filter has been able to classify this packet, drop it.");
294 NS_LOG_DEBUG (
"Creating a new flow queue with index " << h);
307 flow->SetQueueDisc (qd);
325 flow->GetQueueDisc ()->Enqueue (item);
354 if (flow->GetDeficit () <= 0)
356 NS_LOG_DEBUG (
"Increase deficit for new flow index " << flow->GetIndex ());
364 NS_LOG_DEBUG (
"Found a new flow " << flow->GetIndex () <<
" with positive deficit");
373 if (flow->GetDeficit () <= 0)
375 NS_LOG_DEBUG (
"Increase deficit for old flow index " << flow->GetIndex ());
382 NS_LOG_DEBUG (
"Found an old flow " << flow->GetIndex () <<
" with positive deficit");
393 item = flow->GetQueueDisc ()->Dequeue ();
397 NS_LOG_DEBUG (
"Could not get a packet from the selected flow queue");
412 NS_LOG_DEBUG (
"Dequeued packet " << item->GetPacket ());
417 flow->IncreaseDeficit (item->GetSize () * -1);
434 NS_LOG_ERROR (
"FqCobaltQueueDisc cannot have internal queues");
445 if (ndqi && (dev = ndqi->GetObject<
NetDevice> ()))
460 NS_LOG_ERROR (
"The number of queues must be an integer multiple of the size "
461 "of the set of queues used by set associative hash");
471 NS_LOG_WARN (
"Enabling ECN as L4S mode is enabled");
498 uint32_t maxBacklog = 0, index = 0;
506 if (bytes > maxBacklog)
514 uint32_t len = 0, count = 0, threshold = maxBacklog >> 1;
520 NS_LOG_DEBUG (
"Drop packet (overflow); count: " << count <<
" len: " << len <<
" threshold: " << threshold);
523 len += item->GetSize ();
AttributeValue implementation for Boolean.
Cobalt packet queue disc.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
A flow queue used by the FqCobalt queue disc.
int32_t GetDeficit(void) const
Get the deficit for this flow.
uint32_t GetIndex(void) const
Get the index of this flow.
FlowStatus GetStatus(void) const
Get the status of this flow.
void SetDeficit(uint32_t deficit)
Set the deficit for this flow.
FqCobaltFlow()
FqCobaltFlow constructor.
void SetIndex(uint32_t index)
Set the index for this flow.
void IncreaseDeficit(int32_t deficit)
Increase the deficit for this flow.
int32_t m_deficit
the deficit for this flow
uint32_t m_index
the index for this flow
static TypeId GetTypeId(void)
Get the type ID.
FlowStatus
Used to determine the status of this flow queue.
FlowStatus m_status
the status of this flow
void SetStatus(FlowStatus status)
Set the status for this flow.
A FqCobalt packet queue disc.
ObjectFactory m_flowFactory
Factory to create a new flow.
std::map< uint32_t, uint32_t > m_tags
Tags used by set associative hash.
uint32_t GetQuantum(void) const
Get the quantum value.
bool m_useL4s
True if L4S is used (ECT1 packets are marked at CE threshold)
Time m_ceThreshold
Threshold above which to CE mark.
bool m_enableSetAssociativeHash
whether to enable set associative hash
std::map< uint32_t, uint32_t > m_flowsIndices
Map with the index of class for each flow.
uint32_t FqCobaltDrop(void)
Drop a packet from the head of the queue with the largest current byte count.
virtual bool CheckConfig(void)
Check whether the current configuration is correct.
std::list< Ptr< FqCobaltFlow > > m_newFlows
The list of new flows.
uint32_t m_quantum
Deficit assigned to flows at each round.
std::list< Ptr< FqCobaltFlow > > m_oldFlows
The list of old flows.
bool m_useEcn
True if ECN is used (packets are marked instead of being dropped)
uint32_t SetAssociativeHash(uint32_t flowHash)
Compute the index of the queue for the flow having the given flowHash, according to the set associati...
std::string m_target
CoDel target attribute.
uint32_t m_perturbation
hash perturbation value
FqCobaltQueueDisc()
FqCobaltQueueDisc constructor.
uint32_t m_dropBatchSize
Max number of packets dropped from the fat flow.
double m_increment
increment value for marking probability
std::string m_interval
CoDel interval attribute.
static constexpr const char * OVERLIMIT_DROP
Overlimit dropped packets.
double m_decrement
decrement value for marking probability
static constexpr const char * UNCLASSIFIED_DROP
No packet filter able to classify packet.
void SetQuantum(uint32_t quantum)
Set the quantum value.
Time m_blueThreshold
Threshold to enable blue enhancement.
virtual void InitializeParams(void)
Initialize parameters (if any) before the first packet is enqueued.
virtual ~FqCobaltQueueDisc()
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
ObjectFactory m_queueDiscFactory
Factory to create a new queue.
double m_Pdrop
Drop Probability.
uint32_t m_flows
Number of flow queues.
static TypeId GetTypeId(void)
Get the type ID.
virtual bool DoEnqueue(Ptr< QueueDiscItem > item)
This function actually enqueues a packet into the queue disc.
uint32_t m_setWays
size of a set of queues (used by set associative hash)
Network layer to device interface.
virtual uint16_t GetMtu(void) const =0
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
static const int PF_NO_MATCH
Standard value used by packet filters to indicate that no match was possible.
Smart pointer class similar to boost::intrusive_ptr.
QueueDiscClass is the base class for classes that are included in a queue disc.
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
QueueSize GetCurrentSize(void)
Get the current size of the queue disc in bytes, if operating in bytes mode, or packets,...
void AddQueueDiscClass(Ptr< QueueDiscClass > qdClass)
Add a queue disc class to the tail of the list of classes.
uint32_t GetNBytes(void) const
Get the amount of bytes stored by the queue disc.
QueueSize GetMaxSize(void) const
Get the maximum size of the queue disc.
Ptr< InternalQueue > GetInternalQueue(std::size_t i) const
Get the i-th internal queue.
int32_t Classify(Ptr< QueueDiscItem > item)
Classify a packet by calling the packet filters, one at a time, until either a filter able to classif...
void DropAfterDequeue(Ptr< const QueueDiscItem > item, const char *reason)
Perform the actions required when the queue disc is notified of a packet dropped after dequeue.
Ptr< NetDeviceQueueInterface > GetNetDeviceQueueInterface(void) const
std::size_t GetNPacketFilters(void) const
Get the number of packet filters.
Ptr< QueueDiscClass > GetQueueDiscClass(std::size_t i) const
Get the i-th queue disc class.
std::size_t GetNQueueDiscClasses(void) const
Get the number of queue disc classes.
bool SetMaxSize(QueueSize size)
Set the maximum size of the queue disc.
std::size_t GetNInternalQueues(void) const
Get the number of internal queues.
void DropBeforeEnqueue(Ptr< const QueueDiscItem > item, const char *reason)
Perform the actions required when the queue disc is notified of a packet dropped before enqueue.
Class for representing queue sizes.
AttributeValue implementation for QueueSize.
Hold variables of type string.
static Time Max()
Maximum representable Time Not to be confused with Max(Time,Time).
AttributeValue implementation for Time.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Hold an unsigned integer type.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeChecker > MakeQueueSizeChecker(void)
Ptr< const AttributeAccessor > MakeQueueSizeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeAccessor > MakeStringAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeChecker > MakeStringChecker(void)
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
#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_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.
@ INACTIVE
Inactive Period or unslotted CSMA-CA.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
QueueSizeUnit
Enumeration of the operating modes of queues.
@ PACKETS
Use number of packets for queue size.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
QueueDiscSizePolicy
Enumeration of the available policies to handle the queue disc size.
@ MULTIPLE_QUEUES
Used by queue discs with multiple internal queues/child queue discs.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.