Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make addition of CC algorithms modular #1856

Merged
merged 5 commits into from
Mar 17, 2025
Merged

Conversation

huitema
Copy link
Collaborator

@huitema huitema commented Mar 16, 2025

We like to use picoquic to investigate congestion control and test multiple algorithms. However, we do not want to load the code of multiple algorithms in every executable program that uses picoquic. For example, some developers are looking at Arduino class devices, and want to make the code as small as possible.

The general approach is to use dynamic linking. If an object file does not include any function required by the program, it will not be linked into the executable. But to achieve that, the program shall not have any reference to the function, including no calls in a rarely used branch, and no addition to the function pointer in a list of "external" objects. We apply this logic to congestion control algorithms as follow:

  • remove the list of congestion algorithm pointers in picoquic.h
  • declare a separate header file for each congestion control algorithm, to be included in the programs using that algorithm
  • add a dynamic table of congestion control algorithm, either initialized by a program to the small set that it uses or initialized by a "register all algorithms" function for programs like picoquicdemo that want to surface all available options
  • modify the "config" functions to use the table of algorithms registered by the program.

@huitema huitema requested a review from hfstco March 16, 2025 22:37
@huitema
Copy link
Collaborator Author

huitema commented Mar 17, 2025

Review of PR #1853 show that we need one more effort to get a fully generic solution: some generic way to pass algorithm specific parameters from the UI/CLI/App to the CC code. Let's work on that before merging this PR.

@hfstco
Copy link
Collaborator

hfstco commented Mar 17, 2025

Just a note from my side:

Because there is a header file for each CC now, we can also consider to define the functions of the CC there. Currently there is no way to do some unit tests with the CC algos. And it should not increase the file size of the executable too.

But I think we could discuss and do that in a separate PR.

@huitema
Copy link
Collaborator Author

huitema commented Mar 17, 2025

@hfstco Thanks for the review. Yes, adding unit tests for CC algos would be a great idea, and documenting the functions to be tested in the header files would be very neat. I am also adding in this PR a generic way to pass an option string to the CC Algo. This is tested in one of the BBR/Wi-Fi tests.

@huitema
Copy link
Collaborator Author

huitema commented Mar 17, 2025

Next step after this is to update the picoquic_ns project to automatically pick up the definition of the algorithms that we add to the picoquic depot. With that, we should be able to quickly assess new protocols like Hybla...

@huitema huitema merged commit 965b8ad into master Mar 17, 2025
11 checks passed
@huitema huitema deleted the modular-cc-algorithms branch March 17, 2025 20:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants