Abstract: | This specification defines a Jingle transport method that results in sending data via the In-Band Bytestreams (IBB) protocol defined in XEP-0047. Essentially this transport method reuses XEP-0047 semantics for sending the data and defines native Jingle methods for starting and ending an IBB session. |
Author: | Peter Saint-Andre |
Copyright: | © 1999 - 2011 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | Experimental |
Type: | Standards Track |
Version: | 0.6 |
Last Updated: | 2011-03-07 |
WARNING: This Standards-Track document is Experimental. Publication as an XMPP Extension Protocol does not imply approval of this proposal by the XMPP Standards Foundation. Implementation of the protocol described herein is encouraged in exploratory implementations, but production systems are advised to carefully consider whether it is appropriate to deploy implementations of this protocol before it advances to a status of Draft.
1. Introduction
2. Protocol
2.1. Flow
2.2. Establishing a Bytestream
2.3. Exchanging Data
2.4. Managing Multiple IBB Sessions
2.5. Closing the Bytestream
3. Processing Rules and Usage Guidelines
4. Determining Support
5. Security Considerations
5.1. Encryption of Media
5.2. Use of Base64
6. IANA Considerations
7. XMPP Registrar Considerations
7.1. Protocol Namespaces
7.2. Protocol Versioning
7.3. Jingle Transport Methods
8. XML Schema
9. Acknowledgements
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
Jingle [1] defines a framework for negotiating and managing data sessions over XMPP. In order to provide a flexible framework, the base Jingle specification defines neither data transport methods nor application formats, leaving that up to separate specifications. The current document defines a transport method for establishing and managing data exchanges between XMPP entities using the existing In-Band Bytestreams (IBB) protocol specified in In-Band Bytestreams [2]. This "jingle-ibb" method results in a streaming transport method suitable for use in Jingle application types where packet loss cannot be tolerated (e.g., file transfer); however, because the "jingle-ibb" transport method sends data over the XMPP channel itself (albeit not the Jingle signalling channel), it is intended as a transport of last resort when other streaming transports (e.g., Jingle SOCKS5 Bytestreams Transport Method [3]) cannot be negotiated.
The approach taken in this specification is to use the existing IBB mechanisms described in XEP-0047 for transporting the data, and to define Jingle-specific methods only to start and end the in-band bytestream.
The basic flow is as follows.
Initiator Responder | | | session-initiate | | (with IBB info) | |--------------------------->| | ack | |<---------------------------| | session-accept | |<---------------------------| | ack | |--------------------------->| | IBB <open/> | |--------------------------->| | ack | |<---------------------------| | IBB "SESSION" | |<==========================>| | session-terminate | |<---------------------------| | ack | |--------------------------->| | |
This flow is illustrated in the following sections (to prevent confusion these use a "stub" description instead of a real application type).
First the initiator sends a Jingle session-initiate request.
<iq from='romeo@montague.lit/orchard' id='xn28s7gk' to='juliet@capulet.lit/balcony' type='set'> <jingle xmlns='urn:xmpp:jingle:1'> action='session-initiate' initiator='romeo@montague.lit/orchard' sid='a73sjjvkla37jfea'> <content creator='initiator' name='stub'> <description xmlns='urn:xmpp:jingle:apps:stub:0'/> <transport xmlns='urn:xmpp:jingle:transports:ibb:1' block-size='4096' sid='ch3d9s71'/> </content> </jingle> </iq>
Note: The default value of the 'stanza' attribute is "iq", signifying use of <iq/> stanzas for data exchange; a value of "message" signifies that <message/> stanzas are to be used for data exchange. See XEP-0047 for further discussion regarding use of these stanza types for data exchange.
The responder immediately acknowledges receipt (but does not yet accept the session).
<iq from='juliet@capulet.lit/balcony' id='xn28s7gk' to='romeo@montague.lit/orchard' type='result'/>
If the offer is acceptable, the responder returns a Jingle session-accept. If the responder wishes to use a smaller block-size, the responder can specify that in the session-accept by returning a different value for the 'block-size' attribute.
<iq from='juliet@capulet.lit/balcony' id='bsa91h56' to='romeo@montague.lit/orchard' type='set'> <jingle xmlns='urn:xmpp:jingle:1' action='session-accept' initiator='romeo@montague.lit/orchard' responder='juliet@capulet.lit/balcony' sid='a73sjjvkla37jfea'> <content creator='initiator' name='stub'> <description xmlns='urn:xmpp:jingle:apps:stub:0'/> <transport xmlns='urn:xmpp:jingle:transports:ibb:1' block-size='2048' sid='ch3d9s71'/> </content> </jingle> </iq>
The initiator then acknowledges the session-accept.
<iq from='romeo@montague.lit/orchard' id='bsa91h56' to='juliet@capulet.lit/balcony' type='result'/>
In essence, the foregoing Jingle negotiation replaces the <open/> element from XEP-0047. However, to provide consistent layering of Jingle on top of IBB (thus enabling separation of existing IBB code from new Jingle code), the initiator now MUST also send the <open/> element, with the same 'block-size' and 'sid' values as for the Jingle <transport/> element it negotiated with the recipient (i.e., if the recipient sent a modified <transport/> element element containing a different block size, the initiator MUST use the negotiated values). This adds a roundtrip to the negotiation and could be considered a "no-op", but the extra roundtrip is inconsequential given that the parties will be exchanging base64-encoded data in-band.
<iq from='romeo@montague.net/orchard' id='jn3h8g65' to='juliet@capulet.com/balcony' type='set'> <open xmlns='http://jabber.org/protocol/ibb' block-size='2048' sid='ch3d9s71' stanza='iq'/> </iq>
If no error occurs, the responder returns an IQ-result to the initiator.
<iq from='juliet@capulet.com/balcony' id='jn3h8g65' to='romeo@montague.net/orchard' type='result'/>
However, one of the errors described in XEP-0047 might occur; in particular, if the value of the IBB 'block-size' attribute sent by the initiator in the <open/> element does not match the value of the 'block-size' attribute communicated by the responder in the Jingle session-accept message then the responder SHOULD return a <resource-constraint/> error as described in XEP-0047.
Now the initiator can begin sending IBB packets using an IQ-set for each chunk as described in XEP-0047, where the responder will acknowledge each IQ-set in accordance with RFC 3920 [4].
<iq from='romeo@montague.net/orchard' id='ls72b58f' to='juliet@capulet.com/balcony' type='set'> <data xmlns='http://jabber.org/protocol/ibb' seq='0' sid='ch3d9s71'> qANQR1DBwU4DX7jmYZnncmUQB/9KuKBddzQH+tZ1ZywKK0yHKnq57kWq+RFtQdCJ WpdWpR0uQsuJe7+vh3NWn59/gTc5MDlX8dS9p0ovStmNcyLhxVgmqS8ZKhsblVeu IpQ0JgavABqibJolc3BKrVtVV1igKiX/N7Pi8RtY1K18toaMDhdEfhBRzO/XB0+P AQhYlRjNacGcslkhXqNjK5Va4tuOAPy2n1Q8UUrHbUd0g+xJ9Bm0G0LZXyvCWyKH kuNEHFQiLuCY6Iv0myq6iX6tjuHehZlFSh80b5BVV9tNLwNR5Eqz1klxMhoghJOA </data> </iq>
<iq from='juliet@capulet.com/balcony' id='ls72b58f' to='romeo@montague.net/orchard' type='result'/>
As IBB is defined in XEP-0047, there is one session per bytestream (which can be used in both directions). However, because Jingle-IBB provides a management layer on top of IBB, it can be used to run multiple IBB sessions over a single bytestream. This can be done by sending a transport-info message that authorizes an additional session, as shown in the following example (although this example shows the initiator adding a session, the responder could just as well do so).
<iq from='romeo@montague.lit/orchard' id='znb376s4' to='juliet@capulet.lit/balcony' type='set'> <jingle xmlns='urn:xmpp:jingle:1'> action='transport-info' initiator='romeo@montague.lit/orchard' sid='a73sjjvkla37jfea'> <content creator='initiator' name='stub'> <transport xmlns='urn:xmpp:jingle:transports:ibb:1' block-size='2048' sid='bt8a71h6'/> </content> </jingle> </iq>
Here the Jingle Session ID is the same ("a73sjjvkla37jfea") but the new IBB Session ID ("bt8a71h6") is different from the old IBB Session ID that is already in use ("ch3d9s71").
If a party wishes to close one session within a bytestream, it sends an IBB <close/> element as defined in XEP-0047 specifying the appropriate IBB SessionID.
<iq from='romeo@montague.net/orchard' id='us71g45j' to='juliet@capulet.com/balcony' type='set'> <close xmlns='http://jabber.org/protocol/ibb' sid='bt8a71h6'/> </iq>
The receiving party then acknowledges that the IBB session has been closed by returning an IQ-result.
<iq from='juliet@capulet.com/balcony' id='us71g45j' to='romeo@montague.net/orchard' type='result'/>
If a party wishes to close the bytestream itself (e.g., because the parties have finished using all sessions associated with the bytestream), it sends a Jingle session-terminate action as defined in XEP-0166.
<iq from='romeo@montague.lit/orchard' id='hz81vf48' to='juliet@capulet.lit/balcony' type='set'> <jingle xmlns='urn:xmpp:jingle:1' action='session-terminate' initiator='romeo@montague.lit/orchard' sid='a73sjjvkla37jfea'> <reason><success/></reason> </jingle> </iq>
The other party then acknowledges the session-terminate and the Jingle session is finished.
<iq from='juliet@capulet.lit/balcony' id='hz81vf48' to='romeo@montague.lit/orchard' type='result'/>
The same processing rules and usage guidelines defined in XEP-0047 apply to the Jingle IBB Transport Method.
To advertise its support for the Jingle In-Band Bytestreams Transport Method, when replying to Service Discovery [5] information requests an entity MUST return URNs for any version of this protocol that the entity supports -- e.g., "urn:xmpp:jingle:transports:ibb:1" for this version (see Namespace Versioning regarding the possibility of incrementing the version number).
<iq from='romeo@montague.lit/orchard' id='uw72g176' to='juliet@capulet.lit/balcony' type='get'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
<iq from='juliet@capulet.lit/balcony' id='uw72g176' to='romeo@montague.lit/orchard' type='result'> <query xmlns='http://jabber.org/protocol/disco#info'> <feature var='urn:xmpp:jingle:1'/> <feature var='urn:xmpp:jingle:transports:ibb:1'/> </query> </iq>
In order for an application to determine whether an entity supports this protocol, where possible it SHOULD use the dynamic, presence-based profile of service discovery defined in Entity Capabilities [6]. However, if an application has not received entity capabilities information from an entity, it SHOULD use explicit service discovery instead.
A Jingle implementation SHOULD support security preconditions that are enforced before application media is allowed to flow over the bytestream, such as those described in Jingle XTLS [7].
See XEP-0047 for security considerations related to the user of Base64.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [8].
This specification defines the following XML namespace:
Upon advancement of this specification from a status of Experimental to a status of Draft, the XMPP Registrar [9] shall add the foregoing namespace to the registry located at <http://xmpp.org/registrar/namespaces.html>, as described in Section 4 of XMPP Registrar Function [10].
If the protocol defined in this specification undergoes a revision that is not fully backwards-compatible with an older version, the XMPP Registrar shall increment the protocol version number found at the end of the XML namespaces defined herein, as described in Section 4 of XEP-0053.
The XMPP Registrar shall add to its registry of Jingle transport methods a definition for the "jingle-ibb" transport method. The registry submission is as follows:
<transport> <name>ibb</name> <desc>A method for data exchange over In-Band Bytestreams.</desc> <type>streaming</type> <doc>XEP-0261</doc> </transport>
<?xml version='1.0' encoding='UTF-8'?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='urn:xmpp:jingle:transports:ibb:1' xmlns='urn:xmpp:jingle:transports:ibb:1' elementFormDefault='qualified'> <xs:element name='transport'> <xs:complexType> <xs:simpleContent> <xs:extension base='empty'> <xs:attribute name='block-size' type='xs:short' use='required'/> <xs:attribute name='sid' type='xs:string' use='required'/> <xs:attribute name='stanza' use='optional' default='iq'> <xs:simpleType> <xs:restriction base='xs:NCName'> <xs:enumeration value='iq'/> <xs:enumeration value='message'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element> <xs:simpleType name='empty'> <xs:restriction base='xs:string'> <xs:enumeration value=''/> </xs:restriction> </xs:simpleType> </xs:schema>
Thanks to Paul Aurich, Fabio Forno, and Marcus Lundblad for their feedback.
Series: XEP
Number: 0261
Publisher: XMPP Standards Foundation
Status:
Experimental
Type:
Standards Track
Version: 0.6
Last Updated: 2011-03-07
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0047
Supersedes: None
Superseded By: None
Short Name: jingle-ibb
Source Control:
HTML
RSS
This document in other formats:
XML
PDF
Email:
stpeter@jabber.org
JabberID:
stpeter@jabber.org
URI:
https://stpeter.im/
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
There exists a special venue for discussion related to the technology described in this document: the <jingle@xmpp.org> mailing list.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. XEP-0166: Jingle <http://xmpp.org/extensions/xep-0166.html>.
2. XEP-0047: In-Band Bytestreams <http://xmpp.org/extensions/xep-0047.html>.
3. XEP-0260: Jingle SOCKS5 Bytestreams Transport Method <http://xmpp.org/extensions/xep-0260.html>.
4. RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core <http://tools.ietf.org/html/rfc3920>.
5. XEP-0030: Service Discovery <http://xmpp.org/extensions/xep-0030.html>.
6. XEP-0115: Entity Capabilities <http://xmpp.org/extensions/xep-0115.html>.
7. Extensible Messaging and Presence Protocol (XMPP) End-to-End Encryption Using Transport Layer Security ("XTLS") <http://tools.ietf.org/html/draft-meyer-xmpp-e2e-encryption>.
8. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
9. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://xmpp.org/registrar/>.
10. XEP-0053: XMPP Registrar Function <http://xmpp.org/extensions/xep-0053.html>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Clarified error flows and handling of multiple IBB sessions within the bytestream.
(psa)Incremented the protocol version from 0 to 1 because the changes in document version 0.4 are backward-incompatible.
(psa)Added roundtrip for exchange of IBB <open/> element to provide proper layering between Jingle and IBB; defined how to close a single session within the bytestream; defined how to close the bytestream itself.
(psa)Added negotiation flow for block size; corrected some slight errors.
(psa)Minor changes to track modifications to XEP-0166; updated security considerations for consistency with other transport methods; added section on service discovery.
(psa)Initial published version.
(psa)END