Software:WebRTC

From HandWiki
Short description: API that supports browser-to-browser communication
WebRTC
WebRTC Logo.svg
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 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

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

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

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

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

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

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

  1. "WebRTC 1.0: Real-time Communication Between Browsers". 27 September 2018. https://www.w3.org/TR/webrtc/. 
  2. "Src/webrtc - Git at Google". https://webrtc.googlesource.com/src/webrtc/. 
  3. How WebRTC Is Revolutionizing Telephony . Blogs.trilogy-lte.com (2014-02-21). Retrieved on 2014-04-11.
  4. 4.0 4.1 "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". 26 Jan 2021. https://www.w3.org/2021/01/pressrelease-webrtc-rec.html.en. 
  5. "Rtcweb Status Pages". https://tools.ietf.org/wg/rtcweb/. 
  6. "WebRTC". https://webrtc.org/. 
  7. "Are the WebRTC components from Google's acquisition of Global IP Solutions?". https://webrtc.org/faq/#are-the-webrtc-components-from-googles-acquisition-of-global-ip-solutions. 
  8. Wauters, Robin (18 May 2010). "Google makes $68.2 million cash offer for Global IP Solutions". TechCrunch. https://techcrunch.com/2010/05/18/google-makes-68-2-million-cash-offer-for-global-ip-solutions. 
  9. Harald Alvestrand (2011-05-31). "Google release of WebRTC source code". public-webrtc@w3.org. http://lists.w3.org/Archives/Public/public-webrtc/2011May/0022.html. 
  10. "Charter of the Real-Time Communication in WEB-browsers (rtcweb) working group". http://datatracker.ietf.org/wg/rtcweb/charter/. 
  11. "WebRTC 1.0: Real-time Communication Between Browsers". W3.org. http://www.w3.org/TR/webrtc/. 
  12. 12.0 12.1 "Beyond HTML5: Peer-to-Peer Conversational Video". Labs.ericsson.com. 25 January 2011. http://www.ericsson.com/research-blog/context-aware-communication/beyond-html5-peer-peer-conversational-video/. 
  13. Stefan Håkansson; Stefan Ålund (26 May 2011). "Beyond HTML5: Experiment with Real-Time Communication in a Browser". Ericsson Research blog. https://www.ericsson.com/research-blog/beyond-html5-experiment-real-time-communication-browser. 
  14. "WebRTC 1.0: Real-time Communication Between Browsers (W3C Working Draft 27 October 2011)". 27 October 2011. https://www.w3.org/TR/2011/WD-webrtc-20111027/. 
  15. Nowak, Szymon. "WebRTC: So Much More Than Videoconferencing". https://szimek.github.io/presentation-meetjs-summit-2014-webrtc/#16. 
  16. "Introduction — HTML Standard". Whatwg.org. http://www.whatwg.org/specs/web-apps/current-work/multipage/introduction.html#history-1. 
  17. "Rtcweb Status Pages". Tools.ietf.org. http://tools.ietf.org/wg/rtcweb/. 
  18. SIP Trunking, MTPL (18 July 2023). "SIP Trunking VoIP with WebRTC SDK". https://www.moontechnolabs.com/blog/sip-trunking/. 
  19. "draft-jesup-rtcweb-data-protocol-00 - WebRTC Data Channel Protocol". Tools.ietf.org. http://tools.ietf.org/html/draft-jesup-rtcweb-data-protocol-00. 
  20. "WebRTC 1.0: Real-time Communication Between Browsers (W3C Candidate Recommendation 02 November 2017)". 2 November 2017. https://www.w3.org/TR/2017/CR-webrtc-20171102/. 
  21. "Media Capture and Streams: getUserMedia". W3C. 2013-09-03. https://www.w3.org/TR/mediacapture-streams/#dom-mediadevices-getusermedia. 
  22. "WebRTC: RTCPeerConnection Interface". W3C. 2013-09-10. http://www.w3.org/TR/webrtc/#rtcpeerconnection-interface. 
  23. "RFC 8831 - WebRTC Data Channels" (in en). https://datatracker.ietf.org/doc/html/rfc8831. 
  24. "WebRTC: RTCDataChannel". W3C. 2013-09-10. http://www.w3.org/TR/webrtc/#rtcdatachannel. 
  25. "Identifiers for WebRTC's Statistics API". W3C. 2014-09-29. https://w3c.github.io/webrtc-stats/webrtc-stats.html. 
  26. Tsahi Levent-Levi (13 April 2020). "WebRTC Server: What is it exactly?". BlogGeek.me. https://bloggeek.me/webrtc-server/. 
  27. Tsahi Levent-Levi (13 November 2014). "Matrix.org and WebRTC: An Interview with Matthew Hodgson". BlogGeek.me. https://bloggeek.me/matrix-webrtc-interview/. 
  28. "W3C ORTC (Object Real-time Communications) Community Group". http://www.w3.org/community/ortc/. 
  29. "WebTorrent FAQ" (in en). https://webtorrent.io/faq. 
  30. "How to Transfer Files Between Linux, Android, and iOS Using Snapdrop" (in en-US). 2021-08-04. https://www.makeuseof.com/transfer-files-between-linux-android-ios-snapdrop/. 
  31. Pinola, Melanie (2014-04-07). "The easiest and quickest way to transfer files between devices on the same network" (in en). https://www.computerworld.com/article/2697955/the-easiest-and-quickest-way-to-transfer-files-between-devices-on-the-same-network.html. 
  32. "FilePizza: share files without the middleman in your browser - gHacks Tech News" (in en-US). 2015-05-12. https://www.ghacks.net/2015/05/12/filepizza-share-files-without-the-middleman-in-your-browser/. 
  33. Foley, Mary Jo. "Microsoft acquires Peer5 to supplement Teams' live video streaming" (in en). https://www.zdnet.com/article/microsoft-acquires-peer5-to-supplement-teams-live-video-streaming/. 
  34. "Overview - Peer5 P2P Docs". https://docs.peer5.com/overview/. 
  35. "Catch the Babelfish: Irish telco devises a new kind of cloud phone". November 2017. https://www.siliconrepublic.com/comms/babelfish-softphone-cloud-goldfish. 
  36. "ORTC API is now available in Microsoft Edge". Microsoft. 2015-09-18. https://blogs.windows.com/msedgedev/2015/09/18/ortc-api-is-now-available-in-microsoft-edge/. 
  37. Firefox Notes - Desktop . Mozilla.org (2013-06-25). Retrieved on 2014-04-11.
  38. "Safari 11.0". Apple Inc.. https://developer.apple.com/library/content/releasenotes/General/WhatsNewInSafari/Safari_11_0/Safari_11_0.html. 
  39. Opera News . blogs.opera.com (2013-11-19). Retrieved on 2015-09-17.
  40. Firefox Notes - Desktop . Mozilla.org (2013-09-17). Retrieved on 2014-08-04.
  41. "GStreamer 1.14 release notes". https://gstreamer.freedesktop.org/releases/1.14/.  since version 1.15
  42. "Codecs used by WebRTC - Web media technologies | MDN" (in en-US). https://developer.mozilla.org/en-US/docs/Web/Media/Formats/WebRTC_codecs. 
  43. Fablet, Youenn (2019-03-12). "On the Road to WebRTC 1.0, Including VP8". https://webkit.org/blog/8672/on-the-road-to-webrtc-1-0-including-vp8/. 
  44. Huge Security Flaw Leaks VPN Users’ Real IP-addresses TorrentFreak.com (2015-01-30). Retrieved on 2015-02-21.
  45. STUN IP Address requests for WebRTC Retrieved on 2015-02-21.
  46. Timmerman, Crystal (28 February 2022). "WebRTC leaks real IP addresses (even with VPN)". https://www.ipvanish.com/blog/webrtc/. 
  47. Raymond Hill (17 Sep 2021). "Prevent WebRTC from leaking local IP address". uBlock Origin documentation.. https://github.com/gorhill/uBlock/wiki/Prevent-WebRTC-from-leaking-local-IP-address. 

Further reading

External links