WebRTC Data Channel Protocol WebRTC Data Channel Protocol <http://tools.ietf.org/html/draft-jesup-rtcweb-data-protocol-04>." > WebRTC 1.0: Real-time Communication Between Browsers WebRTC 1.0: Real-time Communication Between Browsers <http://www.w3.org/TR/2013/WD-webrtc-20130910/>." > RFC 3758 RFC 3758: Stream Control Transmission Protocol (SCTP) Partial Reliability Extension <http://tools.ietf.org/html/rfc3758>." > %ents; ]>
Signaling WebRTC datachannels in Jingle This specification defines how to use the ICE-UDP Jingle transport method to send media data using WebRTC DataChannels, so technically uses DTLS/SCTP on top of the Interactive Connectivity Establishment (ICE) methodology, which provides robust NAT traversal for media traffic. &LEGALNOTICE; 0343 Deferred Standards Track Standards Council XEP-0176 XEP-0320 jingle-webrtc-datachannels Jens Bavendiek bavendiek@dbis.rwth-aachen.de 0.3 2017-09-11 XEP Editor (jwi) Defer due to lack of activity. 0.2 2014-07-15 ph

Add optional explicit signaling of channels to the transport element.

0.1 2014-01-23 psa

Initial published version approved by the XMPP Council.

0.0.1 2013-12-03 jab

First draft.

This document specifies a method for establishing a direct connection using SCTP channels over DTLS. As WebRTC supports the SCTP partial reliability extension (see &rfc3758;), the connection established can either be reliable or partial-reliable. However due to the wider use (e.g. &xep0234;) and easier maintenance, this transport method defines the mandatory use of reliable and in-order-delivery datachannels (thus a streaming transport). If the need for partial-reliability is there, a second specification for datagram type datachannels might be created. The establishment of this connection is managed by &xep0176;. The establishment of security provided by DTLS is described in &xep0320;.

There are several use cases. Given below are a few examples:

  1. Two parties engaged in a WebRTC-based video conference want to share a file via &xep0234;
  2. A browser application that uses XMPP for communication wants to support file-transfer
  3. A browser based application wants to send a file to a non-browser client

In accordance with Section 10 of XEP-0166, this document specifies the following information related to the Jingle DTLS/SCTP transport method:

  1. The transport negotiation process is defined in the Protocol Description section of this document.

  2. The semantics of the &SCTPMAP; element are defined in the Syntax section of this document.

This protocol requires the Stream Control Transmission Protocol (SCTP) to run within the security context of the Datagram Transport Layer Security (DTLS) protocol. As determined by RTCWeb Data Channels running SCTP on top of DTLS is preferred, as in this order the control messages are encrypted as well and the DTLS channel can be shared with several applications

In order for the initiator in a Jingle exchange to start the negotiation, it sends a Jingle "session-initiate" stanza that includes at least one content type, as described in XEP-0166. If the initiator wishes to negotiate the SCTP transport method for an application format, it MUST include a &SCTPMAP; child element qualified by the 'urn:xmpp:jingle:transports:dtls-sctp:1' namespace &VNOTE;. The &TRANSPORT; element SHOULD in turn contain one &CANDIDATE; element for each of the initiator's higher-priority transport candidates as determined in accordance with the ICE methodology, but MAY instead be empty (with each candidate to be sent as the payload of a transport-info message).

1969-07-21T02:56:15Z This is a test. If this were a real file... test.txt 1022 552da749930852c69ae5d2141d3766b1 02:1A:CC:54:27:AB:EB:9C:53:3F:3E:4B:65:2E:7D:46:3F:54:42:CD:54:F1:7A:03:A2:7D:F9:B0:7F:46:19:B2 ]]>

As seen in the example, there is no notion about DataChannel internals. The only things negotiated here are the port on which the SCTP Stream runs and the name of the DataChannel. Further negotiation is happening through the &webrtc-protocol;, thus the DataChannel is identified through the content name.

For some uses like negotiated datachannels, it might be required to explicitly signal the channel properties. This is done by including a <channel/> element qualified by the 'urn:xmpp:jingle:transports:webrtc-datachannel:0' namespace &VNOTE; as child of the &TRANSPORT; for each channel that has to be signaled. An abbreviated example follows:

[...] ]]>

The values and names for the &SCTPMAP; element are taken from the corresponding SDP. The attributes of the <sctpmap/> element are as follows.

Name Description SDP Syntax Example
port A port number where the channel is to be contacted Port value in a=sctpmap line 5000
protocol Media format Protocol value in a=sctpmap line webrtc-datachannel
streams Number of supported incoming streams Stream value in a=sctpmap line 16

The attributes of the <channel/> element map directly to the attributes of the RTCDataChannelInit dictionary as defined in &w3-webrtc-draft;.

As described in XEP-0166, to acknowledge receipt of the session initiation request, the responder immediately returns an IQ-result.

]]>

Depending on the application type, a user agent controlled by a human user might need to wait for the user to affirm a desire to proceed with the session before continuing. When the user agent has received such affirmation (or if the user agent can automatically proceed for any reason, e.g. because no human intervention is expected or because a human user has configured the user agent to automatically accept sessions with a given entity), it returns a Jingle session-accept message. This message MUST contain a &TRANSPORT; element qualified by the 'urn:xmpp:jingle:transports:ice-udp:1' namespace, which SHOULD in turn contain one &SCTPMAP; element qualified by the 'urn:xmpp:jingle:transports:dtls-sctp:1' namespace for the channel used by the responder.

Note: See the Security Considerations section of this document regarding the exposure of IP addresses by the responder's client.

1969-07-21T02:56:15Z This is a test. If this were a real file... test.txt 1022 552da749930852c69ae5d2141d3766b1 02:1A:CC:54:27:AB:EB:9C:53:3F:3E:4B:65:2E:7D:46:3F:54:42:CD:54:F1:7A:03:A2:7D:F9:B0:7F:46:19:B2 ]]>

The initiator acknowledges the Jingle session-accept.

]]>

Even after media has begun to flow, either party MAY continue to send additional channels to the other party (e.g., because the user wants to transmit a new file). Such events are shared by sending a content-add message.

]]>

The receiving party MUST acknowledge receipt.

]]>

By design is the sent media already encrypted by the DTLS layer

Special thanks to István Koren at i5 and their XMPP Experience

Thanks to Philipp Hancke and Tobias Markmann for their help and support and all the XEP-Authors for their examples.

This document requires no interaction with &IANA;.

This specification defines the following XML namespace:

  • urn:xmpp:jingle:transports:dtls-sctp:1
  • urn:xmpp:jingle:transports:webrtc-datachannel:0

The ®ISTRAR; includes the foregoing namespace in its registry at &NAMESPACES;, as governed by &xep0053;.

&NSVER;

The registry submission is as follows.

IETF Draft MMUSIC Signals support for SCTP in the SDP as described in draft-ietf-mmusic-sctp-sdp-05 XEP-SCTP ]]>
The protocol documented by this schema is defined in XEP-0343: http://www.xmpp.org/extensions/xep-0343.html The protocol documented by this schema is defined in XEP-0343: http://www.xmpp.org/extensions/xep-0343.html ]]>