Updating hashes
Summary: GitHub commits:
https://github.com/facebook/CacheLib/commit/131894ee9cfdc7844d3afe2e5c0fb029fcf0922e https://github.com/facebook/fb303/commit/dbf38812da70f065e81aeaabaa45c7751f95d1ef https://github.com/facebook/fbthrift/commit/06b44f1cec1ad98e090971cbfd7def33cf509d46 https://github.com/facebook/folly/commit/866efdcff136065dd195f7914e2c24187e6d4189 https://github.com/facebook/hermes/commit/65df94b394f7c3a6417d4efbaf613b7ae7608494 https://github.com/facebook/mvfst/commit/cbf07a90962938c40ed11d8899d0e8b2e8771dd5 https://github.com/facebook/proxygen/commit/029d51d1070ba40ea2215fc5f9e8f70df93e438a https://github.com/facebook/pyrefly/commit/fb7004fb993c92927a5264de237daf64ef601c55 https://github.com/facebook/wangle/commit/0d0fd40dc75adf157f9cfa75b4e0963c9c527bce https://github.com/facebookexperimental/edencommon/commit/150a9280848272c64a7623de979697b60b0f71cc https://github.com/facebookexperimental/rust-shed/commit/71a5492f7e1f3686903f9fb40555b2202afb9d15 https://github.com/facebookincubator/fizz/commit/cbdf23e3df653bd4d44898c09545dd0f5cdc923b
Reviewed By: kainanpeace666
fbshipit-source-id: 96dc26580af50bce1d4bc8bba1c3011bc90e8dd6
版权所有:中国计算机学会技术支持:开源发展技术委员会
京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.