QUIC

From Wikipedia, the free encyclopedia
QUIC
Communication protocol
Purposegeneral‐purpose
Developer(s)IETF
IntroducedOctober 12, 2012; 8 years ago (2012-10-12)
OSI layerTransport layer
RFC(s)RFC 8999, RFC 9000
Websitequicwg.org

QUIC (pronounced "quick") is a general-purpose[1] transport layer[2] network protocol initially designed by Jim Roskind at Google,[3] implemented, and deployed in 2012,[4] announced publicly in 2013 as experimentation broadened,[5][6][7] and described at an IETF meeting.[8] QUIC is used by more than half of all connections from the Chrome web browser to Google's servers.[9] Microsoft Edge,[10] Firefox,[11] and Safari[12] support it, even if not enabled by default.

Although its name was initially proposed as the acronym for "Quick UDP Internet Connections",[3][8] IETF's use of the word QUIC is not an acronym; it is simply the name of the protocol.[1] QUIC improves performance of connection-oriented web applications that are currently using TCP.[2][9] It does this by establishing a number of multiplexed connections between two endpoints using User Datagram Protocol (UDP), and is designed to obsolete TCP at the network layer for many applications, thus earning the protocol the occasional nickname "TCP/2".[13]

QUIC works hand-in-hand with HTTP/2's multiplexed connections, allowing multiple streams of data to reach all the endpoints independently, and hence independent of packet losses involving other streams. In contrast, HTTP/2 hosted on Transmission Control Protocol (TCP) can suffer head-of-line-blocking delays of all multiplexed streams if any of the TCP packets are delayed or lost.

QUIC's secondary goals include reduced connection and transport latency, and bandwidth estimation in each direction to avoid congestion. It also moves congestion control algorithms into the user space at both endpoints, rather than the kernel space, which it is claimed will allow these algorithms to improve more rapidly. Additionally, the protocol can be extended with forward error correction (FEC) to further improve performance when errors are expected, and this is seen as the next step in the protocol's evolution.

In June 2015, an Internet Draft of a specification for QUIC was submitted to the IETF for standardization.[14][15] A QUIC working group was established in 2016.[16] In October 2018, the IETF's HTTP and QUIC Working Groups jointly decided to call the HTTP mapping over QUIC "HTTP/3" in advance of making it a worldwide standard.[17] In May 2021, the IETF standardized QUIC in RFC 9000, supported by RFC 8999, RFC 9001 and RFC 9002.[18]

Background[]

Transmission Control Protocol, or TCP, aims to provide an interface for sending streams of data between two endpoints. Data is handed to the TCP system, which ensures the data makes it to the other end in exactly the same form, or the connection will indicate that an error condition exists.[19]

To do this, TCP breaks up the data into network packets and adds small amounts of data to each packet. This additional data includes a sequence number that is used to detect packets that are lost or arrive out of order, and a checksum that allows the errors within packet data to be detected. When either problem occurs, TCP uses automatic repeat request (ARQ) to tell the sender to re-send the lost or damaged packet.[19]

In most implementations, TCP will see any error on a connection as a blocking operation, stopping further transfers until the error is resolved or the connection is considered failed. If a single connection is being used to send multiple streams of data, as is the case in the HTTP/2 protocol, all of these streams are blocked although only one of them might have a problem. For instance, if a single error occurs while downloading a GIF image used for a favicon, the entire rest of the page will wait while that problem is resolved.[19]

As the TCP system is designed to look like a "data pipe", or stream, it deliberately contains little understanding of the data it transmits. If that data has additional requirements, like encryption using TLS, this must be set up by systems running on top of TCP, using TCP to communicate with similar software on the other end of the connection. Each of these sorts of setup tasks requires its own handshake process. This often requires several round-trips of requests and responses until the connection is established. Due to the inherent latency of long-distance communications, this can add significant overhead to the overall transmission.[19]

Characteristics[]

QUIC aims to be nearly equivalent to a TCP connection but with much-reduced latency. It does this primarily through two changes that rely on the understanding of the behaviour of HTTP traffic.[19]

The first change is to greatly reduce overhead during connection setup. As most HTTP connections will demand TLS, QUIC makes the exchange of setup keys and supported protocols part of the initial handshake process. When a client opens a connection, the response packet includes the data needed for future packets to use encryption. This eliminates the need to set up the TCP connection and then negotiate the security protocol via additional packets. Other protocols can be serviced in the same way, combining together multiple steps into a single request-response. This data can then be used both for following requests in the initial setup, as well as future requests that would otherwise be negotiated as separate connections.[19]

The second change is to use UDP rather than TCP as its basis, which does not include loss recovery. Instead, each QUIC stream is separately flow controlled and lost data retransmitted at the level of QUIC, not UDP. This means that if an error occurs in one stream, like the favicon example above, the protocol stack can continue servicing other streams independently. This can be very useful in improving performance on error-prone links, as in most cases considerable additional data may be received before TCP notices a packet is missing or broken, and all of this data is blocked or even flushed while the error is corrected. In QUIC, this data is free to be processed while the single multiplexed stream is repaired.[20]

QUIC includes a number of other more mundane changes that also improve overall latency and throughput. For instance, the packets are encrypted individually, so that they do not result in the encrypted data waiting for partial packets. This is not generally possible under TCP, where the encryption records are in a bytestream and the protocol stack is unaware of higher-layer boundaries within this stream. These can be negotiated by the layers running on top, but QUIC aims to do all of this in a single handshake process.[8]

Another goal of the QUIC system was to improve performance during network-switch events, like what happens when a user of a mobile device moves from a local WiFi hotspot to a mobile network. When this occurs on TCP, a lengthy process starts where every existing connection times out one-by-one and is then re-established on demand. To solve this problem, QUIC includes a connection identifier which uniquely identifies the connection to the server regardless of source. This allows the connection to be re-established simply by sending a packet, which always contains this ID, as the original connection ID will still be valid even if the user's IP address changes.[21][better source needed]

QUIC can be implemented in the application-space, as opposed to being in the operating system kernel. This generally invokes additional overhead due to context switches as data is moved between applications. However, in the case of QUIC, the protocol stack is intended to be used by a single application, with each application using QUIC having its own connections hosted on UDP. Ultimately the difference could be very small because much of the overall HTTP/2 stack is already in the applications (or their libraries, more commonly). Placing the remaining parts in those libraries, essentially the error correction, has little effect on the HTTP/2 stack's size or overall complexity.[8]

This organization allows future changes to be made more easily as it does not require changes to the kernel for updates. One of QUIC's longer-term goals is to add new systems for forward error correction (FEC) and improved congestion control.[21]

One concern about the move from TCP to UDP is that TCP is widely adopted and many of the "middle-boxes" in the internet infrastructure are tuned for TCP and rate-limit or even block UDP. Google carried out a number of exploratory experiments to characterize this and found that only a small number of connections were blocked in this manner.[3] This led to the use of a rapid fallback-to-TCP system; Chromium's network stack opens both a QUIC and traditional TCP connection at the same time, which allows it to fallback with negligible latency.[22]

Google QUIC (gQUIC)[]

The protocol that was created by Google and taken to the IETF under the name QUIC (already in 2012 around QUIC version 20) is quite different from the QUIC that has continued to evolve and be refined within the IETF. The original Google QUIC was designed to be a general purpose protocol, though it was initially deployed as a protocol to support HTTP(S) in Chromium. The current evolution of the IETF QUIC protocol is a general purpose transport protocol. Chromium developers continued to track the evolution of IETF QUIC's standardization efforts to adopt and fully comply with the most recent internet standards for QUIC in Chromium.

Adoption[]

Client and browser support[]

The QUIC code was experimentally developed in Google Chrome starting in 2012,[4] and was announced as part of Chromium version 29 (released on August 20, 2013).[17] It is currently enabled by default in Chromium. In the Chrome browser, experimental QUIC support can be enabled in chrome://flags. There is also a browser extension[23] to indicate which pages are served by QUIC.

Similarly, it has been introduced in Opera 16,[24] it can be turned on at opera://flags/#enable-quic, and active sessions can be seen at opera://net-internals/#quic.

Support in Firefox Nightly arrived in November 2019.[25][26]

The cronet library for QUIC and other protocols is available to Android applications as a module loadable via Google Play Services.[27]

Apple added experimental support in the WebKit engine through the Safari Technology Preview 104 in April 2020.[28] Official support was added in Safari 14, included in macOS Big Sur and iOS 14,[29] but the feature must be turned on manually.[11]

cURL 7.66, released 11 September 2019, supports HTTP/3 (and thus QUIC).[30][31]

In October 2020, Facebook announced[32] that it has successfully migrated its apps, including Instagram, and server infrastructure to QUIC, with already 75% of its Internet traffic using QUIC.

All mobile apps from Google support QUIC, including YouTube and Gmail.[33][34] Uber's mobile app also uses QUIC.[34]

Server support[]

As of 2017, there are four actively maintained implementations. Google servers support QUIC and Google has published a prototype server.[35] Akamai Technologies has been supporting QUIC since July 2016.[36][37] A Go implementation called quic-go[38] is also available, and powers experimental QUIC support in the Caddy server.[39] On July 11, 2017, LiteSpeed Technologies officially began supporting QUIC in their load balancer (WebADC)[40] and LiteSpeed Web Server products.[41] As of October 2019, 88.6% of QUIC websites used LiteSpeed and 10.8% used Nginx.[42] Although at first only Google servers supported HTTP-over-QUIC connections, Facebook also launched the technology in 2018,[17] and Cloudflare has been offering QUIC support on a beta basis since 2018.[43] As of March 2021, 5.0% of all websites use QUIC.[44]

In addition, there are several stale community projects: libquic[45] was created by extracting the Chromium implementation of QUIC and modifying it to minimize dependency requirements, and goquic[46] provides Go bindings of libquic. Finally, quic-reverse-proxy[47] is a Docker image that acts as a reverse proxy server, translating QUIC requests into plain HTTP that can be understood by the origin server.

.NET 5 introduces experimental support for QUIC using the MsQuic library.[48]

Source code[]

The following implementations of QUIC or gQUIC are available in source form:
Implementation License Language Description
Chromium Free C++ This is the source code of the Chrome web browser and the reference gQUIC implementation. It contains a standalone gQUIC and QUIC client and server programs that can be used for testing. Browsable source code. This version is also the basis of LINE's stellite and Google's cronet.
QUIC Library (mvfst) MIT License C++ mvfst (Pronounced move fast) is a client and server implementation of IETF QUIC protocol in C++ by Facebook.
LiteSpeed QUIC Library (lsquic) MIT License C This is the QUIC and HTTP/3 implementation used by LiteSpeed Web Server and OpenLiteSpeed.
ngtcp2 MIT License C This is a QUIC library that's crypto library agnostic and works with OpenSSL or GnuTLS. For HTTP/3, it needs a separate library like nghttp3.
Quiche BSD-2-Clause License Rust Socket-agnostic and exposes a C API for use in C/C++ applications.
quicly MIT License C This library is the QUIC implementation for the H2O web server.
quic-go MIT License Go This library provides QUIC support in Caddy web server. Client functionality is also available.
Quinn Apache License 2.0 Rust
Neqo Apache License 2.0 Rust This implementation from Mozilla is planned to be integrated in Necko, a network library used in the Firefox web browser
aioquic BSD-3-Clause License Python This library features an I/O-free API suitable for embedding in both clients and servers.
picoquic BSD-3-Clause License C A minimal implementation of QUIC aligned with the IETF specifications
pquic MIT License C An extensible QUIC implementation that includes an eBPF virtual machine that is able to dynamically load extensions as plugins
MsQuic MIT License C A cross platform QUIC implementation from Microsoft designed to be a general purpose QUIC library.
QUANT BSD-2-Clause License C Quant supports traditional POSIX platforms (Linux, MacOS, FreeBSD, etc.) as well as embedded systems.
quic BSD-3-Clause License Haskell This package implements QUIC based on Haskell lightweight threads.
netty-incubator-codec-quic Apache License 2.0 Java This package implements QUIC in netty based on the Quiche implementation.

See also[]

References[]

  1. ^ Jump up to: a b QUIC: A UDP-Based Multiplexed and Secure Transport. IETF. sec. 1. I-D draft-ietf-quic-transport-34.
  2. ^ Jump up to: a b Nathan Willis. "Connecting on the QUIC". Linux Weekly News. Retrieved 2013-07-16.
  3. ^ Jump up to: a b c "QUIC: Design Document and Specification Rationale". Jim Roskind, Chromium Contributor.
  4. ^ Jump up to: a b "First Chromium Code Landing: CL 11125002: Add QuicFramer and friends". Retrieved 2012-10-16.
  5. ^ "Experimenting with QUIC". Chromium Official Blog. Retrieved 2013-07-16.
  6. ^ "QUIC, Google wants to make the web faster". François Beaufort, Chromium Evangelist.
  7. ^ "QUIC: next generation multiplexed transport over UDP". YouTube. Retrieved 2014-04-04.
  8. ^ Jump up to: a b c d "QUIC: IETF-88 TSV Area Presentation" (PDF). Jim Roskind, Google. Retrieved 2013-11-07.
  9. ^ Jump up to: a b Lardinois, Frederic. "Google Wants To Speed Up The Web With Its QUIC Protocol". TechCrunch. Retrieved 2016-10-25.
  10. ^ Christopher Fernandes (April 3, 2018). "Microsoft to add support for Google's QUIC fast internet protocol in Windows 10 Redstone 5". Retrieved 2020-05-08.
  11. ^ Jump up to: a b "How to enable HTTP3 in Chrome / Firefox / Safari". bram.us. April 8, 2020.
  12. ^ "The state of QUIC and HTTP/3 2020". www.fastly.com. Retrieved 2020-10-21.
  13. ^ Tatsuhiro Tsujikawa. "ngtcp2". GitHub. Retrieved 2020-10-17.
  14. ^ "Google Will Propose QUIC As IETF Standard". InfoQ. Retrieved 2016-10-25.
  15. ^ "I-D Action: draft-tsvwg-quic-protocol-00.txt". i-d-announce (Mailing list). 17 Jun 2015.
  16. ^ "QUIC - IETF Working Group". datatracker.ietf.org. Retrieved 2016-10-25.
  17. ^ Jump up to: a b c Cimpanu, Catalin (12 November 2018). "HTTP-over-QUIC to be renamed HTTP/3". ZDNet.
  18. ^ "QUIC is now RFC 9000". www.fastly.com. 2021-05-27. Retrieved 2021-05-28.
  19. ^ Jump up to: a b c d e f Bright, Peter (12 November 2018). "The next version of HTTP won't be using TCP". Arstechnica.
  20. ^ Behr, Michael; Swett, Ian. "Introducing QUIC support for HTTPS load balancing". Google Cloud Platform Blog. Retrieved 16 June 2018.
  21. ^ Jump up to: a b "QUIC at 10,000 feet". Chromium.
  22. ^ "Applicability of the QUIC Transport Protocol". IETF Network Working Group. Oct 22, 2018.
  23. ^ "HTTP/2 and SPDY indicator". chrome.google.com. Retrieved Aug 7, 2020.
  24. ^ Parfeni, Lucian (19 July 2013). "The First Opera 16 Next Brings an Experimental "Flags" Section". Softpedia. Retrieved 26 June 2021.
  25. ^ Daniel, Stenberg. "Daniel Stenberg announces HTTP/3 support in Firefox Nightly". Twitter. Retrieved 5 November 2019.
  26. ^ Cimpanu, Catalin (Sep 26, 2019). "Cloudflare, Google Chrome, and Firefox add HTTP/3 support". ZDNet. Retrieved Sep 27, 2019.
  27. ^ "Perform network operations using Cronet". Android Developers. Retrieved 2019-07-20.
  28. ^ "Release Notes for Safari Technology Preview 104". webkit.org. 8 April 2020. Retrieved 7 August 2020.
  29. ^ "Safari 14 Release Notes". developer.apple.com. Retrieved 4 December 2020.
  30. ^ "curl - Changes". curl.haxx.se. Retrieved 2019-09-30.
  31. ^ "curl 7.66.0 – the parallel HTTP/3 future is here | daniel.haxx.se". Retrieved 2019-09-30.
  32. ^ "How Facebook is bringing QUIC to billions". Facebook Engineering. 2020-10-21. Retrieved 2020-10-23.
  33. ^ "How Google's QUIC Protocol Impacts Network Security and Reporting". Fastvue. 2020-10-21. Retrieved 26 June 2021.
  34. ^ Jump up to: a b Green, Emily (30 September 2020). "This is what you need to know about the new QUIC protocol". NordVPN. Retrieved 26 June 2021.
  35. ^ https://code.google.com/p/chromium/codesearch#chromium/src/net/tools/quic/quic_server.cc
  36. ^ QUIC support by Akamai, Retrieved 20 May 2020.
  37. ^ QUIC in the Wild, Passive Active Measurements Conference (PAM), 2018, Retrieved 20 May 2020.
  38. ^ "lucas-clemente/quic-go". Aug 7, 2020. Retrieved Aug 7, 2020 – via GitHub.
  39. ^ QUIC support in Caddy, Retrieved 13 July 2016.
  40. ^ "LiteSpeed Web ADC - Load Balancer - LiteSpeed Technologies". www.litespeedtech.com. Retrieved Aug 7, 2020.
  41. ^ LiteSpeed Technologies QUIC Blog Post, Retrieved July 11, 2017.
  42. ^ "Distribution of Web Servers among websites that use QUIC". w3techs.com. Retrieved Aug 7, 2020.
  43. ^ "Get a head start with QUIC". 2018-09-25. Retrieved 2019-07-16.
  44. ^ "Usage Statistics of QUIC for Websites, March 2021". w3techs.com. Retrieved 2021-03-04.
  45. ^ "devsisters/libquic". Aug 5, 2020. Retrieved Aug 7, 2020 – via GitHub.
  46. ^ "devsisters/goquic". Aug 5, 2020. Retrieved Aug 7, 2020 – via GitHub.
  47. ^ "Docker Hub". hub.docker.com. Retrieved Aug 7, 2020.
  48. ^ ".NET 5 Networking Improvements". .NET Blog. 2021-01-11. Retrieved 2021-01-26.

External links[]

Retrieved from ""