/usr/include/ns3.26/ns3/queue-disc.h is in libns3-dev 3.26+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2007, 2014 University of Washington
* 2015 Universita' degli Studi di Napoli Federico II
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef QUEUE_DISC_H
#define QUEUE_DISC_H
#include "ns3/object.h"
#include "ns3/traced-value.h"
#include <ns3/queue.h>
#include "ns3/net-device.h"
#include <vector>
#include "packet-filter.h"
namespace ns3 {
class Packet;
class QueueDisc;
/**
* \ingroup traffic-control
*
* QueueDiscItem is the abstract base class for items that are stored in a queue
* disc. It is derived from QueueItem (which only consists of a Ptr<Packet>)
* to additionally store the destination MAC address, the
* L3 protocol number and the transmission queue index,
*/
class QueueDiscItem : public QueueItem {
public:
/**
* \brief Create a queue disc item.
* \param p the packet included in the created item.
* \param addr the destination MAC address
* \param protocol the L3 protocol number
*/
QueueDiscItem (Ptr<Packet> p, const Address & addr, uint16_t protocol);
virtual ~QueueDiscItem ();
/**
* \brief Get the MAC address included in this item
* \return the MAC address included in this item.
*/
Address GetAddress (void) const;
/**
* \brief Get the L3 protocol included in this item
* \return the L3 protocol included in this item.
*/
uint16_t GetProtocol (void) const;
/**
* \brief Get the transmission queue index included in this item
* \return the transmission queue index included in this item.
*/
uint8_t GetTxQueueIndex (void) const;
/**
* \brief Set the transmission queue index to store in this item
* \param txq the transmission queue index to store in this item.
*/
void SetTxQueueIndex (uint8_t txq);
/**
* \brief Add the header to the packet
*
* Subclasses may keep header and payload separate to allow manipulating the header,
* so this method allows to add the header to the packet before sending the packet
* to the device.
*/
virtual void AddHeader (void) = 0;
/**
* \brief Print the item contents.
* \param os output stream in which the data should be printed.
*/
virtual void Print (std::ostream &os) const;
private:
/**
* \brief Default constructor
*
* Defined and unimplemented to avoid misuse
*/
QueueDiscItem ();
/**
* \brief Copy constructor
*
* Defined and unimplemented to avoid misuse
*/
QueueDiscItem (const QueueDiscItem &);
/**
* \brief Assignment operator
*
* Defined and unimplemented to avoid misuse
* \returns
*/
QueueDiscItem &operator = (const QueueDiscItem &);
Address m_address; //!< MAC destination address
uint16_t m_protocol; //!< L3 Protocol number
uint8_t m_txq; //!< Transmission queue index
};
/**
* \ingroup traffic-control
*
* QueueDiscClass is the base class for classes that are included in a queue
* disc. It has a single attribute, QueueDisc, used to set the child queue disc
* attached to the class. Classful queue discs needing to set parameters for
* their classes can subclass QueueDiscClass and add the required parameters
* as attributes.
*/
class QueueDiscClass : public Object {
public:
/**
* \brief Get the type ID.
* \return the object TypeId
*/
static TypeId GetTypeId (void);
QueueDiscClass ();
virtual ~QueueDiscClass () {}
/**
* \brief Get the queue disc attached to this class
* \return the queue disc attached to this class.
*/
Ptr<QueueDisc> GetQueueDisc (void) const;
/**
* \brief Set the queue disc attached to this class
*/
void SetQueueDisc (Ptr<QueueDisc> qd);
protected:
/**
* \brief Dispose of the object
*/
virtual void DoDispose (void);
private:
Ptr<QueueDisc> m_queueDisc; //!< Queue disc attached to this class
};
/**
* \ingroup traffic-control
*
* QueueDisc is an abstract base class providing the interface and implementing
* the operations common to all the queueing disciplines. Child classes
* need to implement the methods used to enqueue a packet (DoEnqueue),
* dequeue a single packet (DoDequeue), get a copy of the next packet
* to extract (DoPeek), check whether the current configuration is correct
* (CheckConfig).
*
* As in Linux, a queue disc may contain distinct elements:
* - queues, which actually store the packets waiting for transmission
* - classes, which allow to reserve a different treatment to different packets
* - filters, which determine the queue or class which a packet is destined to
*
* Notice that a child queue disc must be attached to every class and a packet
* filter is only able to classify packets of a single protocol. Also, while in Linux
* some queue discs (e.g., fq-codel) use an internal classifier and do not make use of
* packet filters, in ns-3 every queue disc including multiple queues or multiple classes
* needs an external filter to classify packets (this is to avoid having the traffic-control
* module depend on other modules such as internet).
*
* Queue disc configuration vary from queue disc to queue disc. A typical taxonomy divides
* queue discs in classful (i.e., support classes) and classless (i.e., do not support
* classes). More recently, after the appearance of multi-queue devices (such as Wifi),
* some multi-queue aware queue discs have been introduced. Multi-queue aware queue discs
* handle as many queues (or queue discs -- without using classes) as the number of
* transmission queues used by the device on which the queue disc is installed.
* An attempt is made, also, to enqueue each packet in the "same" queue both within the
* queue disc and within the device.
*
* The traffic control layer interacts with a queue disc in a simple manner: after requesting
* to enqueue a packet, the traffic control layer requests the qdisc to "run", i.e., to
* dequeue a set of packets, until a predefined number ("quota") of packets is dequeued
* or the netdevice stops the queue disc. A netdevice may stop the queue disc when its
* transmission queue(s) is/are (almost) full. Also, a netdevice may wake the
* queue disc when its transmission queue(s) is/are (almost) empty. Waking a queue disc
* is equivalent to make it run.
*
* The design and implementation of this class is heavily inspired by Linux.
* For more details, see the traffic-control model page.
*/
class QueueDisc : public Object {
public:
/**
* \brief Get the type ID.
* \return the object TypeId
*/
static TypeId GetTypeId (void);
QueueDisc ();
/**
* \brief Get the number of packets stored by the queue disc
* \return the number of packets stored by the queue disc.
*
* Note that the number of packets stored by the queue disc is updated as soon
* as a packet is received by the queue disc and before actually enqueuing the
* packet (i.e., before calling DoEnqueue). Thus, while implementing the DoEnqueue
* method of a subclass, keep in mind that GetNPackets returns the number of
* packets stored in the queue disc, including the packet that we are trying
* to enqueue.
*/
uint32_t GetNPackets (void) const;
/**
* \brief Get the amount of bytes stored by the queue disc
* \return the amount of bytes stored by the queue disc.
*
* Note that the amount of bytes stored by the queue disc is updated as soon
* as a packet is received by the queue disc and before actually enqueuing the
* packet (i.e., before calling DoEnqueue). Thus, while implementing the DoEnqueue
* method of a subclass, keep in mind that GetNBytes returns the amount of
* bytes stored in the queue disc, including the size of the packet that we are
* trying to enqueue.
*/
uint32_t GetNBytes (void) const;
/**
* \brief Get the total number of received packets
* \return the total number of received packets.
*/
uint32_t GetTotalReceivedPackets (void) const;
/**
* \brief Get the total amount of received bytes
* \return the total amount of received bytes.
*/
uint32_t GetTotalReceivedBytes (void) const;
/**
* \brief Get the total number of dropped packets
* \return the total number of dropped packets.
*/
uint32_t GetTotalDroppedPackets (void) const;
/**
* \brief Get the total amount of dropped bytes
* \return the total amount of dropped bytes.
*/
uint32_t GetTotalDroppedBytes (void) const;
/**
* \brief Get the total number of requeued packets
* \return the total number of requeued packets.
*/
uint32_t GetTotalRequeuedPackets (void) const;
/**
* \brief Get the total amount of requeued bytes
* \return the total amount of requeued bytes.
*/
uint32_t GetTotalRequeuedBytes (void) const;
/**
* \brief Set the NetDevice on which this queue discipline is installed.
* \param device the NetDevice on which this queue discipline is installed.
*/
void SetNetDevice (Ptr<NetDevice> device);
/**
* \brief Get the NetDevice on which this queue discipline is installed
* \return the NetDevice on which this queue discipline is installed.
*/
Ptr<NetDevice> GetNetDevice (void) const;
/**
* \brief Set the maximum number of dequeue operations following a packet enqueue
* \param quota the maximum number of dequeue operations following a packet enqueue.
*/
virtual void SetQuota (const uint32_t quota);
/**
* \brief Get the maximum number of dequeue operations following a packet enqueue
* \return the maximum number of dequeue operations following a packet enqueue.
*/
virtual uint32_t GetQuota (void) const;
/**
* Pass a packet to store to the queue discipline. This function only updates
* the statistics and calls the (private) DoEnqueue function, which must be
* implemented by derived classes.
* \param item item to enqueue
* \return True if the operation was successful; false otherwise
*/
bool Enqueue (Ptr<QueueDiscItem> item);
/**
* Request the queue discipline to extract a packet. This function only updates
* the statistics and calls the (private) DoDequeue function, which must be
* implemented by derived classes.
* \return 0 if the operation was not successful; the item otherwise.
*/
Ptr<QueueDiscItem> Dequeue (void);
/**
* Get a copy of the next packet the queue discipline will extract, without
* actually extracting the packet. This function only calls the (private)
* DoPeek function, which must be implemented by derived classes.
* \return 0 if the operation was not successful; the item otherwise.
*/
Ptr<const QueueDiscItem> Peek (void) const;
/**
* Modelled after the Linux function __qdisc_run (net/sched/sch_generic.c)
* Dequeues multiple packets, until a quota is exceeded or sending a packet
* to the device failed.
*/
void Run (void);
/**
* \brief Add an internal queue to the tail of the list of queues.
* \param queue the queue to be added
*/
void AddInternalQueue (Ptr<Queue> queue);
/**
* \brief Get the i-th internal queue
* \param i the index of the queue
* \return the i-th internal queue.
*/
Ptr<Queue> GetInternalQueue (uint32_t i) const;
/**
* \brief Get the number of internal queues
* \return the number of internal queues.
*/
uint32_t GetNInternalQueues (void) const;
/**
* \brief Add a packet filter to the tail of the list of filters used to classify packets.
* \param filter the packet filter to be added
*/
void AddPacketFilter (Ptr<PacketFilter> filter);
/**
* \brief Get the i-th packet filter
* \param i the index of the packet filter
* \return the i-th packet filter.
*/
Ptr<PacketFilter> GetPacketFilter (uint32_t i) const;
/**
* \brief Get the number of packet filters
* \return the number of packet filters.
*/
uint32_t GetNPacketFilters (void) const;
/**
* \brief Add a queue disc class to the tail of the list of classes.
* \param qdClass the queue disc class to be added
*/
void AddQueueDiscClass (Ptr<QueueDiscClass> qdClass);
/**
* \brief Get the i-th queue disc class
* \param i the index of the queue disc class
* \return the i-th queue disc class.
*/
Ptr<QueueDiscClass> GetQueueDiscClass (uint32_t i) const;
/**
* \brief Get the number of queue disc classes
* \return the number of queue disc classes.
*/
uint32_t GetNQueueDiscClasses (void) const;
/**
* Classify a packet by calling the packet filters, one at a time, until either
* a filter able to classify the packet is found or all the filters have been
* processed.
* \param item item to classify
* \return -1 if no filter able to classify the packet has been found, the value
* returned by first filter found to be able to classify the packet otherwise.
*/
int32_t Classify (Ptr<QueueDiscItem> item);
/**
* \enum WakeMode
* \brief Used to determine whether the queue disc itself or its children must
* be activated when a netdevice wakes a transmission queue
*/
enum WakeMode
{
WAKE_ROOT = 0x00,
WAKE_CHILD = 0x01
};
/**
* When setting up the wake callbacks on the netdevice queues, it is necessary to
* determine which queue disc (the root queue disc or one of its children) should
* be activated when the netdevice wakes one of its transmission queues. The
* implementation of this method for the base class returns WAKE_ROOT, i.e., the
* root queue disc is activated. Subclasses implementing queue discs adopting
* a different strategy (e.g., multi-queue aware queue discs such as mq) have
* to redefine this method.
*
* \return the wake mode adopted by this queue disc.
*/
WakeMode GetWakeMode (void);
/// Callback invoked by a child queue disc to notify the parent of a packet drop
typedef Callback<void, Ptr<QueueItem> > ParentDropCallback;
/**
* \brief Set the parent drop callback
* \param cb the callback to set
*
* Called when a queue disc class is added to a queue disc in order to set a
* callback to the Drop method of the parent queue disc.
*/
virtual void SetParentDropCallback (ParentDropCallback cb);
protected:
/**
* \brief Dispose of the object
*/
virtual void DoDispose (void);
/**
* \brief Check whether the configuration is correct and initialize parameters
*/
virtual void DoInitialize (void);
/**
* \brief Drop a packet
* \param item item that was dropped
* This method is called by subclasses to notify parent (this class) of packet drops.
*/
void Drop (Ptr<QueueItem> item);
private:
/**
* \brief Notify the parent queue disc of a packet drop
* \param item item that was dropped
*/
void NotifyParentDrop (Ptr<QueueItem> item);
/**
* This function actually enqueues a packet into the queue disc.
* \param item item to enqueue
* \return True if the operation was successful; false otherwise
*/
virtual bool DoEnqueue (Ptr<QueueDiscItem> item) = 0;
/**
* This function actually extracts a packet from the queue disc.
* \return 0 if the operation was not successful; the item otherwise.
*/
virtual Ptr<QueueDiscItem> DoDequeue (void) = 0;
/**
* This function returns a copy of the next packet the queue disc will extract.
* \return 0 if the operation was not successful; the packet otherwise.
*/
virtual Ptr<const QueueDiscItem> DoPeek (void) const = 0;
/**
* Check whether the current configuration is correct. Default objects (such
* as internal queues) might be created by this method to ensure the
* configuration is correct.
* \return true if the configuration is correct, false otherwise
*/
virtual bool CheckConfig (void) = 0;
/**
* Initialize parameters (if any) before the first packet is enqueued.
*/
virtual void InitializeParams (void) = 0;
/**
* Modelled after the Linux function qdisc_run_begin (include/net/sch_generic.h).
* \return false if the qdisc is already running; otherwise, set the qdisc as running and return true.
*/
bool RunBegin (void);
/**
* Modelled after the Linux function qdisc_run_end (include/net/sch_generic.h).
* Set the qdisc as not running.
*/
void RunEnd (void);
/**
* Modelled after the Linux function qdisc_restart (net/sched/sch_generic.c)
* Dequeue a packet (by calling DequeuePacket) and send it to the device (by calling Transmit).
* \return true if a packet is successfully sent to the device.
*/
bool Restart (void);
/**
* Modelled after the Linux function dequeue_skb (net/sched/sch_generic.c)
* \return the requeued packet, if any, or the packet dequeued by the queue disc, otherwise.
*/
Ptr<QueueDiscItem> DequeuePacket (void);
/**
* Modelled after the Linux function dev_requeue_skb (net/sched/sch_generic.c)
* Requeues a packet whose transmission failed.
* \param item the packet to requeue
*/
void Requeue (Ptr<QueueDiscItem> item);
/**
* Modelled after the Linux function sch_direct_xmit (net/sched/sch_generic.c)
* Sends a packet to the device if the device queue is not stopped, and requeues
* it otherwise.
* \param item the packet to transmit
* \return true if the device queue is not stopped and the queue disc is not empty
*/
bool Transmit (Ptr<QueueDiscItem> item);
static const uint32_t DEFAULT_QUOTA = 64; //!< Default quota (as in /proc/sys/net/core/dev_weight)
std::vector<Ptr<Queue> > m_queues; //!< Internal queues
std::vector<Ptr<PacketFilter> > m_filters; //!< Packet filters
std::vector<Ptr<QueueDiscClass> > m_classes; //!< Classes
TracedValue<uint32_t> m_nPackets; //!< Number of packets in the queue
TracedValue<uint32_t> m_nBytes; //!< Number of bytes in the queue
uint32_t m_nTotalReceivedPackets; //!< Total received packets
uint32_t m_nTotalReceivedBytes; //!< Total received bytes
uint32_t m_nTotalDroppedPackets; //!< Total dropped packets
uint32_t m_nTotalDroppedBytes; //!< Total dropped bytes
uint32_t m_nTotalRequeuedPackets; //!< Total requeued packets
uint32_t m_nTotalRequeuedBytes; //!< Total requeued bytes
uint32_t m_quota; //!< Maximum number of packets dequeued in a qdisc run
Ptr<NetDevice> m_device; //!< The NetDevice on which this queue discipline is installed
Ptr<NetDeviceQueueInterface> m_devQueueIface; //!< NetDevice queue interface
bool m_running; //!< The queue disc is performing multiple dequeue operations
Ptr<QueueDiscItem> m_requeued; //!< The last packet that failed to be transmitted
ParentDropCallback m_parentDropCallback; //!< Parent drop callback
/// Traced callback: fired when a packet is enqueued
TracedCallback<Ptr<const QueueItem> > m_traceEnqueue;
/// Traced callback: fired when a packet is dequeued
TracedCallback<Ptr<const QueueItem> > m_traceDequeue;
/// Traced callback: fired when a packet is requeued
TracedCallback<Ptr<const QueueItem> > m_traceRequeue;
/// Traced callback: fired when a packet is dropped
TracedCallback<Ptr<const QueueItem> > m_traceDrop;
};
} // namespace ns3
#endif /* QueueDisc */
|