Updating hashes
Summary: GitHub commits:
https://github.com/facebook/CacheLib/commit/f2f83ceb43294e383bc4524bc294b681910737eb https://github.com/facebook/fb303/commit/ce8af6280bc7ce336ddc05064d0165cfdcb24b58 https://github.com/facebook/fbthrift/commit/da27a027f856b63281e2c36b1a35d3c38a7229cf https://github.com/facebook/folly/commit/e243181570d06e6e746bc3995f0745f0e3dfd532 https://github.com/facebook/hermes/commit/36ab30689cf94a66203f5f99d9a4dd4d7930c515 https://github.com/facebook/mvfst/commit/3fc45489431dea92fbbdbf6d74161da416178f1a https://github.com/facebook/proxygen/commit/4954ad12adc177a9654ef7b5f9c30a1bdc6d6658 https://github.com/facebook/pyrefly/commit/b4cf749b51534e0886d9568da126cbd7dae784cd https://github.com/facebook/wangle/commit/ab25c8c58a444e62adb5ba9cb59aa25d4aa1fb45 https://github.com/facebookexperimental/edencommon/commit/f7388c02828151cd5371e1a6d572f741aa7a31f2 https://github.com/facebookexperimental/rust-shed/commit/aaefb4dbc2685df0a63721e3ff2b45e0f5c3b124 https://github.com/facebookincubator/fizz/commit/7de8f52e9878206cd3a0192d9b4295cd58cd2ac9
Reviewed By: ajb85
fbshipit-source-id: 2f63954b9a484cc3590def6cf8ac9d41494bc41f
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802047560号
Introduction
mvfst(Pronounced move fast) is a client and server implementation of IETF QUIC protocol in C++ by Facebook. QUIC is a UDP based reliable, multiplexed transport protocol that will become an internet standard. The goal ofmvfstis to build a performant implementation of the QUIC transport protocol that applications could adapt for use cases on both the internet and the data-center.mvfsthas been tested at scale on android, iOS apps, as well as servers and has several features to support large scale deployments.Features
Server features:
Client features:
Source Layout
quic/api: Defines API that applications can use to interact with the QUIC transport layer.quic/client: Client transport implementationquic/codec: Read and write codec implementation for the protocolquic/common: Implementation of common utility functionsquic/congestion_control: Implementation of different congestion control algorithms such as Cubic and Copaquic/flowcontrol: Implementations of flow control functionsquic/handshake: Implementations cryptographic handshake layerquic/happyeyeballs: Implementation of mechanism to race IPV4 and IPV6 connection and pick a winnerquic/logging: Implementation of logging frameworkquic/loss: Implementations of different loss recovery algorithmsquic/samples: Example client and serverquic/server: Server transport implementationquic/state: Defines and implements both connection and stream level state artifacts and state machinesDependencies
mvfstlargely depends on two libraries: folly and fizz.Building mvfst
Method 1 [Recommended]: //mirrors/mvfst/tree/main/UsingGetdeps.py
This script is used by many of Meta’s OSS tools. It will download and build all of the necessary dependencies first, and will then invoke cmake, etc. to build mvfst. This will help ensure that you build with relevant versions of all of the dependent libraries, taking into account what versions are installed locally on your system.
It’s written in python so you’ll need python3.6 or later on your PATH. It works on Linux, macOS and Windows.
The settings for mvfst’s cmake build are held in its getdeps manifest
build/fbcode_builder/manifests/mvfst, which you can edit locally if desired.Dependencies
If on Linux or MacOS (with homebrew installed) you can install system dependencies to save building them:
If you’d like to see the packages before installing them:
On other platforms or if on Linux and without system dependencies
getdeps.pywill mostly download and build them for you during the build step.Build
For a simplified build, you can use the
getdeps.shwrapper script. This will download and build all the required dependencies, then build mvfst. It will use the default scratch path for building and install the result in _build.At the end of the build, mvfst binaries will be installed at
_build/mvfst. You can find the scratch path from the logs or by runningpython3 ./build/fbcode_builder/getdeps.py show-build-dir mvfst.For more control over
getdeps.py, you can run the tool directly.Run tests
By default
getdeps.pywill build the tests for mvfst. You can use it to run them too:Method 2 [Deprecated]: //mirrors/mvfst/tree/main/Usingbuild.shscript
This method can be used on Ubuntu 18+ and macOS.
To begin, you should install the dependencies we need for build. This largely consists of dependencies from folly as well as fizz.
Then, build and install folly and fizz
Alternatively, run the helper script
build_helper.shin this subdirectory. It will install and link the required dependencies and also build folly and fizz. This may take several minutes the first time.After building, the directory
_build/will contain the dependencies (under_build/deps) whereas_build/buildwill contain all the built libraries and binaries formvfst.You can also install
mvfstas well as its dependenciesfollyandfizzto a custom directory using the build script, by supplying anINSTALL_PREFIXenv var.See
./build_helper.sh --helpfor more optionsYou might need to run the script as root to install to certain directories.
By default the build script
build_helper.shenables the building of test target (i.e. runs with-DBUILD_TEST=ONoption). Since some of tests inmvfstrequire some test artifacts of Fizz, it is necessary to supply the path of the Fizz src directory (via optionDFIZZ_PROJECT) to correctly build all test targets inmvfst.Run a sample client and server
Building the test targets of
mvfstshould automatically build the sample client and server binaries into the build directory.For
getdeps.pybuild, you can find the echo binary at:For the deprecated
build.shscript, it will be at the following location if you used the default build path.The server will automatically bind to
::1by default if no host is used, but you can then spin a simple echo server by running:and to run a client:
For more options, see
HTTP/3
This repo implements the QUIC transport. For an HTTP/3 implementation that uses Mvfst, please check out Proxygen.
Contributing
We’d love to have your help in making
mvfstbetter. If you’re interested, please read our guide to guide to contributingPlease feel free to open an issue to ask questions or start discussions.
License
mvfstis MIT licensed, as found in the LICENSE file.API
The API should be considered in alpha. We can’t predict all the use cases that people will have, so we’re waiting some time before declaring a more stable API. We are open to have several different APIs for different constraints.
Reporting and Fixing Security Issues
Please do not open GitHub issues or pull requests - this makes the problem immediately visible to everyone, including malicious actors. Security issues in
mvfstcan be safely reported via Facebook’s Whitehat Bug Bounty program:https://www.facebook.com/whitehat
Facebook’s security team will triage your report and determine whether or not is it eligible for a bounty under our program.