GSoC 2020 Project Report
Student: Bhaskar Kataria
Mentors: Tom Henderson, Mohit Tahiliani, Vivek jain, Ankit Deepak
Organisation: ns-3 Network Simulator
Project Overview
For GSoC 2020 with ns-3, I worked on Active Queue Management (AQM) and specifically on developing Low loss low latency, and scalable throughput (L4S) models for various queue disciplines and most of the work is for the traffic-control module of ns-3. L4S is proposed to provide low latency for particular traffic types like video calls, interactive gaming, etc. With the help of the UseL4s attribute, ns-3 users can easily enable L4S and run tests. L4S can now be used with various queue disciplines like CoDel, Cobalt and PIE, and fair queueing versions FqCoDel, FqCobalt, and FqPIE. With the help of these fair queue queue disciplines, seperate queues are created for packets based on various parameters like source, destination, port etc, and because of these seperate queues and L4S, video call and gaming like traffic which does not take up much bandwidth can easily be delivered with low queue delays and hence improving the real time experience for such activities. With the help of example provided or by writing custom scripts, ns-3 users can efficiently work with various scenarios. For verification of the fundamental behavior, unit test cases were also added, and for better understanding, proper documentation was added, which includes the steps to run the tests. The project was divided into 3 phases, and the phase-wise work done is available below.
Community Bonding Period
We worked on writing ECN tests cases CoDel, FqCoDel and Cobalt queue discipline. We also aligned ns-3 PIE queue discipline with the RFC 8033 and some minor bug fixes.
Commits
- traffic-control: Added ECN tests for CoDel queue disc.
- traffic-control: Add ECN marking test for FqCoDel
- core: Include typedefs for int64_t and uint64_t
- traffic-control: Add ECN tests for COBALT queue disc
- traffic-control: Add usage of timestamp for latency calculation for PIE
- traffic-control: Add capDropAdjustment test for PIE
- traffic-control: Add ECN tests for PIE.
- traffic-control: Add derandomization tests for PIE
- traffic-control: Update PIE doc with tests for RFC features
Phase 1
After discussing with mentors about the implementation, L4S mode for FqCoDel and CoDel queue disciplines was implemented, and while implementing L4S mode, the same packet getting marked twice issue in CoDel queue discipline was found and resolved. The first phase ended with writing an example script which demonstrates and verifies the L4S mode for FqCoDel queue discipline with TCP DCTCP and TCP Cubic
Download
Commits
- traffic-control: Add L4S extensions to FqCoDel and CoDel
- traffic-control: (fixes #225) Do not mark packet twice within a CoDel queue
Phase 2
While considering some other options which are available in the documentation, we finally chose to work on FqCobalt which is an essential part of the CAKE module, so in second phase FqCobalt was implemented with complete tests and documentation
Download
Merge Requests
- traffic-control: Added FqCobalt queue disc (GSoC 2020) Merge Request
Phase 3
The third phase included the implementation of FqPIE queue discipline with complete unit test cases and documentation. One minor bug related to multiple bottlenecks was also fixed during this phase, and the patch was provided for previous phases too. We also added Active/Inactive feature for PIE queue discipline. During the last week of GSoC, we started writing a document that describes the procedure and results of the test cases required to test the implementation of fair queueing models extensively.
Download
Merge Requests
- traffic-control: CE packets treated as ECT1 when L4S mode is enabled for CoDel and FqCoDel queue disc Merge Request
- traffic-control: FqPIE with L4S mode (GSoC 2020) Merge Request
- traffic-control: Add Active/inactive feature (section 5.3 of RFC 8033) to PIE queue disc Merge Request
Steps to build phase 1
- Clone ns-3-dev from above provided link
- Configure ns-3-dev: ./waf configure –enable-tests –enable-examples
- Build ns-3-dev: ./waf build
- To run the test suite: ./test.py –suite=fq-codel-queue-disc
- Run the example program: ./waf –run “fqcodel-l4s-example –scenarioNum=5”
Steps to build phase 2
- Clone ns-3-dev from above provided link
- Configure ns-3-dev: ./waf configure –enable-tests –enable-examples
- Build ns-3-dev: ./waf build
- To run the test suite: ./test.py –suite=fq-cobalt-queue-disc
Steps to build phase 3
- Clone ns-3-dev from above provided link
- Configure ns-3-dev: ./waf configure –enable-tests –enable-examples
- Build ns-3-dev: ./waf build
- To run the test suite: ./test.py –suite=fq-pie-queue-disc
Possible Extensions
- Extensive testing of L4S mode and implementation of fair queueing queue disciplines as started in the last week of GSoC.
- Some possible extensions are available in the documentation of FqCoDel
Online References
Project Wiki
Source Code
Acknowledgement
I would like to thank all the mentors who helped me with every difficulty I faced with the project and all those extremely good and informational discussions we had, and for providing me the best mentorship, I could have expected. All the guidance and motivation, I got from you all had and will definitely help me in the days to come. It was a great experience working with you. I would also like to thank Google for providing such a great opportunity.