Abstract: | This document defines a DNS TXT Resource Record format for use in discovering alternative methods of connecting to an XMPP server. |
Authors: | Joe Hildebrand, Peter Saint-Andre, Lance Stout |
Copyright: | © 1999 – 2018 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | Draft |
Type: | Standards Track |
Version: | 1.2.0 |
Last Updated: | 2019-02-20 |
NOTICE: The protocol defined herein is a Draft Standard of the XMPP Standards Foundation. Implementations are encouraged and the protocol is appropriate for deployment in production systems, but some changes to the protocol are possible before it becomes a Final Standard.
1. Introduction
2. DNS Lookup Method
2.1. Record Format
2.2. Business Rules
2.3. Examples
3. HTTP Lookup Method
3.1. Link Format
3.2. Business Rules
3.3. Examples
4. Implementation Notes
5. Security Considerations
6. IANA Considerations
7. XMPP Registrar Considerations
7.1. Namespaces
7.2. Alternative Connection Methods Registry
7.2.1. Process
7.2.2. Registered Values
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
Although XMPP Core [1] specifies the use of TCP as the method of connecting to an XMPP server, alternative connection methods exist, including the BOSH (XEP-0124) [2] method (for which XMPP Over BOSH (XEP-0206) [3] is the XMPP profile) and the websocket subprotocol specified in RFC 7395 [4]. For some of these methods, it is necessary to discover further parameters before connecting, such as the HTTP URL of an alternative connection manager. Without ways to auto-discover alternative connection methods, the relevant information would need to be provided manually by a human user (which is cumbersome and error-prone) or hard-coded into XMPP software applications (which is brittle and not interoperable).
This document defines two ways to encapsulate information about alternative connection methods for auto-discovery:
The following format for DNS TXT resource records is specified in RFC 1464:
<owner> <class> <ttl> <TXT> <"attribute name=attribute value">
This document specifies that the following additional rules apply for DNS TXT resource records used to specify alternative connection methods:
The following business rules apply:
The following examples show two DNS TXT resource records: the first indicates support for the XMPP Over BOSH connection method defined in XEP-0124 and XEP-0206 and the second indicates support for XMPP over WebSocket connections defined in RFC 7395;.
_xmppconnect IN TXT "_xmpp-client-xbosh=https://web.example.org:5280/bosh" _xmppconnect IN TXT "_xmpp-client-websocket=wss://web.example.com:443/ws"
The HTTP lookup method uses Web Host Metadata RFC 6415 [6] to categorize and list the URIs of alternative connection methods. It is primarily intended for use by clients in environments where the ability to perform DNS queries is restricted, such as in web browsers.
Each alternative connection method is specified in the host-meta (XRD) file using a distinctive link relation RFC 5988 [7]. This specification defines several extension relation types:
The following business rules apply:
The following examples show two host-meta link records: the first indicates support for the XMPP Over BOSH connection method defined in XEP-0124 and XEP-0206 and the second indicates support for the XMPP Over WebSocket connection method defined in RFC 7395 [4].
As specified in RFC 6120 §3, support for the XML encoding of the host-meta resource is REQUIRED while alternative representations such as JSON are OPTIONAL.
<?xml version='1.0' encoding='utf-8'?> <XRD xmlns='http://docs.oasis-open.org/ns/xri/xrd-1.0'> ... <Link rel="urn:xmpp:alt-connections:xbosh" href="https://web.example.com:5280/bosh" /> <Link rel="urn:xmpp:alt-connections:websocket" href="wss://web.example.com:443/ws" /> ... </XRD>
It is possible to use an alternative JSON format for host-meta information, in which case the above example would be presented as:
{ ... "links": [ ... { "rel": "urn:xmpp:alt-connections:xbosh", "href": "https://web.example.com:5280/bosh" }, { "rel": "urn:xmpp:alt-connections:websocket", "href": "wss://web.example.com:443/ws" } ] }
To make connection discovery work in web clients (including those hosted on a different domain) the host service SHOULD set appropriate CORS headers for Web Host Metadata files. The exact headers and values are out of scope of this document but may include: Access-Control-Allow-Origin, Access-Control-Allow-Methods and Access-Control-Allow-Headers.
Due care has to be exercised in limiting the scope of Access-Control-Allow-Origin response header to Web Host Metadata files only.
Access-Control-Allow-Origin: *
Access-Control-Allow-Origin header with a value of * allows JavaScript code running on a different domain to read the content of Web Host Metadata files. Special value * ensures that the request will only succeed if it is invoked without user credentials (e.g. cookies, HTTP authentication).
It is possible that advertisement of alternative connection methods can introduce security vulnerabilities, since a connecting entity (usually a client) might deliberately seek to connect using the method with the weakest security mechanisms (e.g., no channel encryption or relatively weak authentication). Care needs to be taken in determining which alternative connection methods are appropriate to advertise.
Entities that use these connection methods MUST conform to the security considerations of each method, for example by preferring to use 'https' or 'wss' URLs that are protected using Transport Layer Security (TLS).
Because the link relations specified here are extension relation types rather than registered relation types (see Section 4 of RFC 5988), this document requires no interaction with the Internet Assigned Numbers Authority (IANA) [8].
The XMPP Registrar [9] shall include 'urn:xmpp:alt-connections' in its registry of protocol namespaces (see <https://xmpp.org/registrar/namespaces.html>).
The XMPP Registrar [9] maintains a registry of attributes for use in DNS TXT resource records that advertise alternative XMPP connection methods (see <https://xmpp.org/registrar/alt-connections.html>).
In order to submit new values to this registry, the registrant shall define an XML fragment of the following form and either include it in the relevant XMPP Extension Protocol or send it to the email address <registrar@xmpp.org>:
<method> <name>the name of the attribute to be used in DNS TXT records</name> <desc>a natural-language description of the alternative connection method</desc> <syntax>the syntax of the DNS TXT record attribute value</syntax> <doc>the document in which the alternative connection method is specified</doc> </method>
The registrant can register more than one attribute at a time, each contained in a separate <method/> element.
This document registers the following values.
<method> <name>_xmpp-client-httppoll</name> <desc>HTTP Polling connection method</desc> <syntax> The http: or https: URL at which to contact the HTTP Polling connection manager or proxy </syntax> <doc>XEP-0025</doc> </method> <method> <name>_xmpp-client-websocket</name> <desc>XMPP Over WebSocket connection method</desc> <syntax> The ws: or wss: URL at which to contact the WebSocket connection manager or proxy </syntax> <doc>RFC 7395</doc> </method> <method> <name>_xmpp-client-xbosh</name> <desc>XMPP Over Bosh connection method</desc> <syntax> The http: or https: URL at which to contact the HTTP Binding (BOSH) connection manager or proxy </syntax> <doc>XEP-0206</doc> </method>
Series: XEP
Number: 0156
Publisher: XMPP Standards Foundation
Status:
Draft
Type:
Standards Track
Version: 1.2.0
Last Updated: 2019-02-20
Approving Body: XMPP Council
Dependencies: XMPP Core, RFC 1464
Supersedes: None
Superseded By: None
Short Name: alt-connections
Registry:
<http://xmpp.org/registrar/alt-connections.html>
Source Control:
HTML
This document in other formats:
XML
PDF
Email:
jhildebr@cisco.com
JabberID:
hildjj@jabber.org
Email:
xsf@stpeter.im
JabberID:
peter@jabber.org
URI:
http://stpeter.im/
Email:
lance@andyet.com
JabberID:
lance@lance.im
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) 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.
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.
Given that this XMPP Extension Protocol normatively references IETF technologies, discussion on the <xsf-ietf@xmpp.org> list might also be appropriate.
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. RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core <http://tools.ietf.org/html/rfc6120>.
2. XEP-0124: Bidirectional-streams Over Synchronous HTTP <https://xmpp.org/extensions/xep-0124.html>.
3. XEP-0206: XMPP Over BOSH <https://xmpp.org/extensions/xep-0206.html>.
4. RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket <http://tools.ietf.org/html/rfc7395>.
5. The point of this rule is to prevent someone from defining a new XEP-0156 connection method like "_xmpp-client-tcp" to override the SRV records defined in the core XMPP specification.
6. RFC 6415: Web Host Metadata <http://tools.ietf.org/html/rfc6415>.
7. RFC 5988: Web Linking <http://tools.ietf.org/html/rfc5988>.
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 <https://xmpp.org/registrar/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Add information about CORS header usage and requirements
(wk)Make JSON example less error-prone.
(jsc)Fix XML header on example.
(jsc)Replace references to draft-ietf-xmpp-websocket with RFC7395 (XMPP over WebSocket).
(egp)Fix a small typo in one of the examples (UTF-9 encoding).
(XSF Editor: ssw)Defined HTTP lookup methods using well-known URIs as specified in RFC 5785.
(ls/psa)Per a vote of the XMPP Council, advanced status to Draft; XMPP Registrar assigned alt-connections shortname and created appropriate registry.
(psa)Updated to reflect renaming of HTTP Binding to XMPP Over BOSH.
(psa)Finally and definitively removed _xmpp-client-tcp and _xmpp-server-tcp attributes since clients and servers should use either SRV records or standard XMPP ports (5222 or 5269).
(psa)Removed _xmpp-client-tcpssl attribute since use of the old-style SSL-only port is discouraged.
(psa)Added _xmpp-client-tcpssl for old-style SSL connections; added discussion of IETF U-NAPTR technology.
(psa)Clarified order of lookups; restored _xmpp-client-tcp and added _xmpp-server-tcp as optional records if SRV is not supported or accessible.
(psa)Removed _xmpp-client-tcp from TXT records (belongs in SRV records only).
(psa)Initial version.
(psa)More fully specified the rationale for using DNS TXT records.
(psa)Added security considerations and registrar considerations.
(psa)First draft.
(psa/jh)END