WebRTC

From Wikipedia, the free encyclopedia
WebRTC
Original author(s)Justin Uberti
Peter Thatcher
Initial release2011; 13 years ago (2011)
Stable release
1.0[1] / May 4, 2018; 5 years ago (2018-05-04)
Repositorywebrtc.googlesource.com
Written inC++,[2] JavaScript
Standard(s)w3.org/TR/webrtc/
LicenseBSD license [citation needed]
Websitewebrtc.org

WebRTC (Web Real-Time Communication) is a free and open-source project providing web browsers and mobile applications with real-time communication (RTC) via application programming interfaces (APIs). It allows audio and video communication and streaming to work inside web pages by allowing direct peer-to-peer communication, eliminating the need to install plugins or download native apps.[3]

Supported by Apple, Google, Microsoft, Mozilla, and Opera, WebRTC specifications have been published by the World Wide Web Consortium (W3C) and the Internet Engineering Task Force (IETF).[4][5]

According to the webrtc.org website, the purpose of the project is to "enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols".[6]

History[edit]

In May 2010, Google bought Global IP Solutions or GIPS, a VoIP and videoconferencing software company that had developed many components required for RTC, such as codecs and echo cancellation techniques. Google open-sourced the GIPS technology and engaged with relevant standards bodies at the IETF and W3C to ensure industry consensus.[7][8] In May 2011, Google released an open-source project for browser-based real-time communication known as WebRTC.[9] This has been followed by ongoing work to standardize the relevant protocols in the IETF[10] and browser APIs in the W3C.[11]

In January 2011, Ericsson Labs built the first implementation of WebRTC using a modified WebKit library.[12][13] In October 2011, the W3C published its first draft for the spec.[14] WebRTC milestones include the first cross-browser video call (February 2013), first cross-browser data transfers (February 2014), and as of July 2014 Google Hangouts was "kind of" using WebRTC.[15]

The W3C draft API was based on preliminary work done in the WHATWG.[16] It was referred to as the ConnectionPeer API, and a pre-standards concept implementation was created at Ericsson Labs.[12] The WebRTC Working Group expects this specification to evolve significantly based on:

  • Outcomes of ongoing exchanges in the companion RTCWEB group at IETF[17] to define the set of protocols that, together with this document, define real-time communications in web browsers. While no one signaling protocol is mandated, SIP over WebSockets (RFC 7118) is often used partially due to the applicability of SIP[18] to most of the envisaged communication scenarios as well as the availability of open-source software such as JsSIP.
  • Privacy issues that arise when exposing local capabilities and local streams
  • Technical discussions within the group, on implementing data channels in particular[19]
  • Experience gained through early experimentation
  • Feedback from other groups and individuals

In November 2017, the WebRTC 1.0 specification transitioned from Working Draft to Candidate Recommendation.[20]

In January 2021, the WebRTC 1.0 specification transitioned from Candidate Recommendation to Recommendation.[4]

Design[edit]

Major components of WebRTC include several JavaScript APIs:

  • getUserMedia acquires the audio and video media (e.g., by accessing a device's camera and microphone).[21]
  • RTCPeerConnection enables audio and video communication between peers. It performs signal processing, codec handling, peer-to-peer communication, security, and bandwidth management.[22]
  • RTCDataChannel allows bidirectional communication of arbitrary data between peers. The data is transported using SCTP over DTLS.[23] It uses the same API as WebSockets and has very low latency.[24]

The WebRTC API also includes a statistics function:

  • getStats allows the web application to retrieve a set of statistics about WebRTC sessions. These statistics data are being described in a separate W3C document.[25]

The WebRTC API includes no provisions for signaling, that is discovering peers to connect to and determine how to establish connections among them. Applications use Interactive Connectivity Establishment for connections and are responsible for managing sessions, possibly relying on any of Session Initiation Protocol, Extensible Messaging and Presence Protocol (XMPP), Message Queuing Telemetry Transport, Matrix, or another protocol. Signaling may depend on one or more servers.[26][27]

RFC 7478 requires implementations to provide PCMA/PCMU (RFC 3551), Telephone Event as DTMF (RFC 4733), and Opus (RFC 6716) audio codecs as minimum capabilities. The PeerConnection, data channel and media capture browser APIs are detailed in the W3C specification.

W3C is developing ORTC (Object Real-Time Communications) for WebRTC.[28]

Applications[edit]

WebRTC allows browsers to stream files directly to one another, reducing or entirely removing the need for server-side file hosting. WebTorrent uses a WebRTC transport to enable peer-to-peer file sharing using the BitTorrent protocol in the browser.[29] Some file-sharing websites use it to allow users to send files directly to one another in their browsers, although this requires the uploader to keep the tab open until the file has been downloaded.[30][31][32] A few CDNs, such as the Microsoft-owned Peer5, use the client's bandwidth to upload media to other connected peers, enabling each peer to act as an edge server.[33][34]

Although initially developed for web browsers, WebRTC has applications for non-browser devices, including mobile platforms and IoT devices. Examples include browser-based VoIP telephony, also called cloud phones or web phones, which allow calls to be made and received from within a web browser, replacing the requirement to download and install a softphone.[35]

Support[edit]

WebRTC is supported by the following browsers (incomplete list; oldest supported version specified):

GStreamer directly provides a free WebRTC implementation.[41]

Codec support across browsers[edit]

WebRTC establishes a standard set of codecs which all compliant browsers are required to implement. Some browsers may also support other codecs.[42]

Video codec compatibility
Codec name Profile(s) Browser compatibility
H.264 Constrained Baseline (CB) Chrome (52+), Edge, Firefox[1], Safari
VP8 - Chrome, Edge, Firefox, Safari (12.1+)[43]
VP9 - Chrome (48+), Firefox
Audio codec compatibility
Codec name Browser compatibility
Opus Chrome, Edge, Firefox, Safari
G.711 PCM (A-law) Chrome, Firefox, Safari
G.711 PCM (µ-law) Chrome, Firefox, Safari
G.722 Chrome, Firefox, Safari
iLBC Chrome, Safari
iSAC Chrome, Safari

Vulnerability[edit]

In January 2017, TorrentFreak reported a serious security flaw in browsers supporting WebRTC, that compromised the security of VPN tunnels by exposing a user's true IP address.[44] The IP address read requests are not visible in the browser's developer console, and they are not blocked by most ad blocking, privacy and security add-ons, enabling online tracking despite precautions.[45]

It has been reported that the cause of the address leak is not a bug that can be patched, but is foundational to the way WebRTC operates; however, there are several solutions to mitigate the problem. WebRTC leakage can be tested for, and solutions are offered for most browsers.[46] WebRTC can be disabled, if not required, in most browsers. The uBlock Origin add-on can fix this problem (as some browsers now fix this problem by themselves, from uBlock Origin v1.38 onwards this option has been disabled on these browsers[47]).

References[edit]

  1. ^ "WebRTC 1.0: Real-time Communication Between Browsers". World Wide Web Consortium. 27 September 2018. Archived from the original on 7 April 2019. Retrieved 25 March 2019.
  2. ^ "Src/webrtc - Git at Google". Archived from the original on 2018-04-23. Retrieved 2018-04-22.
  3. ^ How WebRTC Is Revolutionizing Telephony Archived 2014-04-07 at the Wayback Machine. Blogs.trilogy-lte.com (2014-02-21). Retrieved on 2014-04-11.
  4. ^ a b "Web Real-Time Communications (WebRTC) transforms the communications landscape as it becomes a World Wide Web Consortium (W3C) Recommendation and Internet Engineering Task Force (IETF) standards". World Wide Web Consortium. 26 Jan 2021. Archived from the original on 27 July 2022. Retrieved 27 Jan 2021.
  5. ^ "Rtcweb Status Pages". tools.ietf.org. Archived from the original on 2020-04-20. Retrieved 2021-02-18.
  6. ^ "WebRTC". WebRTC. Archived from the original on 28 January 2018. Retrieved 6 February 2018.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  7. ^ "Are the WebRTC components from Google's acquisition of Global IP Solutions?". WebRTC. Archived from the original on 7 June 2011. Retrieved 6 February 2018.
  8. ^ Wauters, Robin (18 May 2010). "Google makes $68.2 million cash offer for Global IP Solutions". TechCrunch. Archived from the original on 7 February 2018. Retrieved 6 February 2018.
  9. ^ Harald Alvestrand (2011-05-31). "Google release of WebRTC source code". public-webrtc@w3.org. Archived from the original on 2013-02-27. Retrieved 2012-09-12.
  10. ^ "Charter of the Real-Time Communication in WEB-browsers (rtcweb) working group". Archived from the original on 2013-11-11. Retrieved 2013-11-11.
  11. ^ "WebRTC 1.0: Real-time Communication Between Browsers". W3.org. Archived from the original on 2012-09-05. Retrieved 2012-09-12.
  12. ^ a b "Beyond HTML5: Peer-to-Peer Conversational Video". Ericsson Research blog. Labs.ericsson.com. 25 January 2011. Archived from the original on 25 February 2017. Retrieved 21 March 2021.
  13. ^ Stefan Håkansson; Stefan Ålund (26 May 2011). "Beyond HTML5: Experiment with Real-Time Communication in a Browser". Ericsson Research blog. Archived from the original on 7 February 2018. Retrieved 6 February 2018.
  14. ^ "WebRTC 1.0: Real-time Communication Between Browsers (W3C Working Draft 27 October 2011)". World Wide Web Consortium. 27 October 2011. Archived from the original on 29 October 2011. Retrieved 6 February 2018.
  15. ^ Nowak, Szymon. "WebRTC: So Much More Than Videoconferencing". GitHub. Archived from the original on 7 February 2018. Retrieved 6 February 2018.
  16. ^ "Introduction — HTML Standard". Whatwg.org. Archived from the original on 2014-08-16. Retrieved 2012-09-12.
  17. ^ "Rtcweb Status Pages". Tools.ietf.org. Archived from the original on 2012-09-05. Retrieved 2012-09-12.
  18. ^ SIP Trunking, MTPL (18 July 2023). "SIP Trunking VoIP with WebRTC SDK". Moon Technolabs. Archived from the original on 5 August 2023. Retrieved 18 July 2023.
  19. ^ "draft-jesup-rtcweb-data-protocol-00 - WebRTC Data Channel Protocol". Tools.ietf.org. Archived from the original on 2012-10-31. Retrieved 2012-09-12.
  20. ^ "WebRTC 1.0: Real-time Communication Between Browsers (W3C Candidate Recommendation 02 November 2017)". 2 November 2017. Archived from the original on 2 November 2017. Retrieved 25 March 2019.
  21. ^ "Media Capture and Streams: getUserMedia". W3C. 2013-09-03. Archived from the original on 2014-01-02. Retrieved 2014-01-15.
  22. ^ "WebRTC: RTCPeerConnection Interface". W3C. 2013-09-10. Archived from the original on 2012-09-05. Retrieved 2014-01-15.
  23. ^ "RFC 8831 - WebRTC Data Channels". datatracker.ietf.org. Archived from the original on 2022-03-10. Retrieved 2022-03-10.
  24. ^ "WebRTC: RTCDataChannel". W3C. 2013-09-10. Archived from the original on 2012-09-05. Retrieved 2014-01-15.
  25. ^ "Identifiers for WebRTC's Statistics API". W3C. 2014-09-29. Archived from the original on 2017-07-15. Retrieved 2017-12-02.
  26. ^ Tsahi Levent-Levi (13 April 2020). "WebRTC Server: What is it exactly?". BlogGeek.me. Archived from the original on 11 May 2020. Retrieved 10 June 2020.
  27. ^ Tsahi Levent-Levi (13 November 2014). "Matrix.org and WebRTC: An Interview with Matthew Hodgson". BlogGeek.me. Archived from the original on 25 February 2021. Retrieved 10 June 2020.
  28. ^ "W3C ORTC (Object Real-time Communications) Community Group". Archived from the original on 2014-10-29. Retrieved 2014-10-29.
  29. ^ "WebTorrent FAQ". webtorrent.io. Archived from the original on 2022-03-11. Retrieved 2022-03-10.
  30. ^ "How to Transfer Files Between Linux, Android, and iOS Using Snapdrop". MUO. 2021-08-04. Archived from the original on 2022-01-29. Retrieved 2022-03-10.
  31. ^ Pinola, Melanie (2014-04-07). "The easiest and quickest way to transfer files between devices on the same network". Computerworld. Archived from the original on 2022-06-28. Retrieved 2022-03-10.
  32. ^ "FilePizza: share files without the middleman in your browser - gHacks Tech News". gHacks Technology News. 2015-05-12. Archived from the original on 2022-01-23. Retrieved 2022-03-10.
  33. ^ Foley, Mary Jo. "Microsoft acquires Peer5 to supplement Teams' live video streaming". ZDNet. Archived from the original on 2022-03-10. Retrieved 2022-03-10.
  34. ^ "Overview - Peer5 P2P Docs". docs.peer5.com. Archived from the original on 2022-03-16. Retrieved 2022-03-10.
  35. ^ "Catch the Babelfish: Irish telco devises a new kind of cloud phone". November 2017. Archived from the original on 2017-11-01. Retrieved 2017-11-20.
  36. ^ "ORTC API is now available in Microsoft Edge". Microsoft. 2015-09-18. Archived from the original on 2015-10-09. Retrieved 2015-09-20.
  37. ^ Firefox Notes - Desktop Archived 2014-08-21 at the Wayback Machine. Mozilla.org (2013-06-25). Retrieved on 2014-04-11.
  38. ^ "Safari 11.0". Apple Inc. Archived from the original on 14 November 2017. Retrieved 6 June 2017.
  39. ^ Opera News Archived 2015-09-07 at the Wayback Machine. blogs.opera.com (2013-11-19). Retrieved on 2015-09-17.
  40. ^ Firefox Notes - Desktop Archived 2021-04-01 at the Wayback Machine. Mozilla.org (2013-09-17). Retrieved on 2014-08-04.
  41. ^ "GStreamer 1.14 release notes". gstreamer.freedesktop.org. Archived from the original on 2018-03-20. Retrieved 2019-12-19. since version 1.15
  42. ^ "Codecs used by WebRTC - Web media technologies | MDN". developer.mozilla.org. Archived from the original on 2021-07-27. Retrieved 2021-07-29.
  43. ^ Fablet, Youenn (2019-03-12). "On the Road to WebRTC 1.0, Including VP8". WebKit. Archived from the original on 2021-07-29. Retrieved 2021-07-29.
  44. ^ Huge Security Flaw Leaks VPN Users’ Real IP-addresses Archived 2021-01-08 at the Wayback Machine TorrentFreak.com (2015-01-30). Retrieved on 2015-02-21.
  45. ^ STUN IP Address requests for WebRTC Archived 2015-02-18 at the Wayback Machine Retrieved on 2015-02-21.
  46. ^ Timmerman, Crystal (28 February 2022). "WebRTC leaks real IP addresses (even with VPN)". IPVanish. Archived from the original on 13 August 2022. Retrieved 12 August 2022.
  47. ^ Raymond Hill (17 Sep 2021). "Prevent WebRTC from leaking local IP address". uBlock Origin documentation. Archived from the original on 21 February 2016. Retrieved 18 Dec 2021.

Further reading[edit]

External links[edit]