This specification defines an XMPP extension for delegating access to protected resources over XMPP, using the OAuth protocol. In the language of OAuth, a User can authorize a Consumer to access a Protected Resource that is hosted by a Service Provider; this authorization is encapsulated in a token that the User requests from the Service Provider, that the User shares with the Consumer, and that the Consumer then presents to the Service Provider. This specification assumes that OAuth tokens will be acquired via HTTP as defined in the core OAuth specification, then presented over XMPP to a Service Provider. The Protected Resources accessible over XMPP might include groupchat rooms, data feeds hosted at publish-subscribe nodes, media relays, communication gateways, and other items of interest.
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 should not deploy implementations of this protocol until it advances to a status of Draft.
Series: XEP
Number: 0235
Publisher: XMPP Standards Foundation
Status:
Experimental
Type:
Standards Track
Version: 0.4
Last Updated: 2008-08-07
Approving Body: XMPP Council
Dependencies: XMPP Core
Supersedes: None
Superseded By: None
Short Name: NOT_YET_ASSIGNED
Wiki Page: <http://wiki.jabber.org/index.php/OAuth Over XMPP (XEP-0235)>
JabberID:
stpeter@jabber.org
URI:
https://stpeter.im/
The preferred venue for discussion of this document is the Standards discussion list: <http://mail.jabber.org/mailman/listinfo/standards>.
Errata may be sent to <editor@xmpp.org>.
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.
The following 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. Introduction
2. Protocol Flow
3. Determining Support
4. Security Considerations
4.1. Signature Generation Algorithm
4.2. Replay Attacks
5. IANA Considerations
6. XMPP Registrar Considerations
6.1. Protocol Namespaces
7. XML Schema
8. Acknowledgements
Notes
Revision History
Although authentication is required in order to access the XMPP network, in some situations it is desirable to require authorization in order for an authenticated entity to access certain resources on the network. For example, authorization may be required to join a Multi-User Chat [1] room, subscribe to a Publish-Subscribe [2] node, or to access other resources of interest (such as a media relay or communications gateway).
Dedicated technologies exist for authorization. One such technology is OAuth [3], as defined at <http://oauth.net/core/1.0/>. In the language of OAuth, a User can authorize a Consumer to access a Protected Resource that is hosted by a Service Provider; this authorization is encapsulated in a token that the User requests from the Service Provider, that the User shares with the Consumer, and that the Consumer then presents to the Service Provider.
This specification assumes that OAuth Access Tokens will be acquired outside the XMPP (i.e., via HTTP as defined in the core OAuth specification) and merely presented over XMPP.
The typical scenario is for a Consumer to request the authorization to act as a delegated authority on behalf of the User to access a Protected Resource owned by the User at a Service Provider. For example, the owner of a pubsub node could allow a remote entity to publish to that node (the single lines show protocol flows over HTTP and the double lines show protocol flows over XMPP):
Consumer Service Provider | | | request a Request Token | |---------------------------->| | grant the Request Token | |<----------------------------| | | | [Consumer redirects User | | to Service Provider] | | | | request an Access Token | |---------------------------->| | grant the Access Token | |<----------------------------| | access Protected Resource | |============================>| | |
Before presenting an access token to a Service Provider via XMPP, a Consumer SHOULD verify that the Service Provider supports this protocol, as described under the Determining Support section of this document.
Consider the example of a User (say, <world-traveler@example.com>) who wishes to authorize a Consumer (say, an application called FindMeNow as represented by the JID <travelbot@findemenow.tld>) to access the User's geolocation feed at a Service Provider called WorldGPS (as represented by a publish-subscribe node of <feeds.worldgps.tld/world-traveler>). The order of events might be as follows.
As a result, FindMeNow gets updated every time the User publishes items to his geolocation node at WorldGPS.
Steps 1 through 10 occur via HTTP. Step 11 would be represented in XMPP as follows.
<iq type='set' from='travelbot@findmenow.tld/bot' to='feeds.worldgps.tld' id='sub1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <subscribe node='bard_geoloc'/> <oauth xmlns='urn:xmpp:tmp:oauth'> <oauth_consumer_key>0685bd9184jfhq22</oauth_consumer_key> <oauth_token>ad180jjd733klru7</oauth_token> <oauth_signature_method>HMAC-SHA1</oauth_signature_method> <oauth_signature>wOJIO9A2W5mFwDgiDvZbTSMK%2FPY%3D</oauth_signature> </oauth> </pubsub> </iq>
If a service provides and accepts authorization tokens, it MUST advertise support for the 'urn:xmpp:tmp:oauth' namespace in its disco#info replies (if provided) its Entity Capabilities [4] notations (see Protocol Namespaces regarding issuance of one or more permanent namespaces).
When sending OAuth Access Tokens over XMPP, the signature method MUST be HMAC-SHA1. The Signature Base String SHALL be constructed from the following items:
As an example, consider the following stanza:
<iq to="x@example.com" from="y@example.org" id="1234"> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <subscribe node='mynode'/> <oauth xmlns='urn:xmpp:tmp:oauth'> <oauth_consumer_key>foo</oauth_consumer_key> <oauth_token>bar</oauth_token> <oauth_signature_method>HMAC-SHA1</oauth_signature_method> <oauth_signature>h2vvES3WQpdYmjzUK7Fl2G1Nez8=</oauth_signature> </oauth> </pubsub> </iq>
The Signature Base String would be as follows (where line endings have been added for readability and denoted by the "\" character):
iq&x%40example.com%26y%40example.org&oauth_consumer_key%3Dfoo\ %40oauth_signature_method%3DHMAC-SHA1%40oauth_token%3Dbar
So assuming a consumer secret of 'consumersecret' and a token secret of 'tokensecret', the signature will be:
h2vvES3WQpdYmjzUK7Fl2G1Nez8=
Signatures generated according to the signature generation algorithm might be subject to replay attacks. However, inclusions of the XMPP "to" and "from" addresses limits these attackes to compromised servers or client-to-server connections. OAuth tokens SHOULD be sent only over TLS-encrypted client-to-server connections, and all server-to-server connections SHOULD be TLS-enabled. Additional security can be provided using appropriate methods for the end-to-end encryption of XMPP traffic, such as Current Jabber OpenPGP Usage [5], RFC 3923 [6] Encrypted Session Negotiation [7], or End-to-End XML Streams [8].
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [9].
Until this specification advances to a status of Draft, its associated namespace shall be "urn:xmpp:tmp:oauth"; upon advancement of this specification, the XMPP Registrar [10] shall issue a permanent namespace in accordance with the process defined in Section 4 of XMPP Registrar Function [11]. The permanent namespace "urn:xmpp:oauth" will be requested, which is thought to be unique per the XMPP Registrar's requirements.
<?xml version='1.0' encoding='UTF-8'?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='urn:xmpp:tmp:oauth' xmlns='urn:xmpp:tmp:oauth' elementFormDefault='qualified'> <xs:element name='oauth'> <xs:complexType> <xs:choice> <xs:element name='oauth_consumer_key' type='xs:string'/> <xs:element name='oauth_nonce' type='xs:string'/> <xs:element name='oauth_signature' type='xs:string'/> <xs:element name='oauth_signature_method' type='xs:string'/> <xs:element name='oauth_timestamp' type='xs:string'/> <xs:element name='oauth_token' type='xs:string'/> <xs:element name='oauth_token_secret' type='xs:string'/> </xs:choice> </xs:complexType> </xs:element> <xs:simpleType name='empty'> <xs:restriction base='xs:string'> <xs:enumeration value=''/> </xs:restriction> </xs:simpleType> </xs:schema>
The author gratefully acknowledges the contributions of Blaine Cook, Leah Culver, Kellan Elliott-McCrea, Seth Fitzsimmons, Nathan Fritz, Evan Henshaw-Plath, Joe Hildebrand, and Ralph Meijer to the content of this specification, as provided during the XMPP Summit held in Portland, Oregon, on July 21 and 22, 2008. Thanks also to Dave Cridland and Pedro Melo for their comments on an early draft.
1. XEP-0045: Multi-User Chat <http://www.xmpp.org/extensions/xep-0045.html>.
2. XEP-0060: Publish-Subscribe <http://www.xmpp.org/extensions/xep-0060.html>.
3. OAuth Core 1.0 <http://oauth.net/core/1.0/>.
4. XEP-0115: Entity Capabilities <http://www.xmpp.org/extensions/xep-0115.html>.
5. XEP-0027: Current Jabber OpenPGP Usage <http://www.xmpp.org/extensions/xep-0027.html>.
6. RFC 3923: End-to-End Signing and Object Encryption for the Extensible Messaging and Presence Protocol (XMPP) <http://tools.ietf.org/html/rfc3923>.
7. XEP-0116: Encrypted Session Negotiation <http://www.xmpp.org/extensions/xep-0116.html>.
8. XEP-0246: End-to-End XML Streams <http://www.xmpp.org/extensions/xep-0246.html>.
9. 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/>.
10. 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://www.xmpp.org/registrar/>.
11. XEP-0053: XMPP Registrar Function <http://www.xmpp.org/extensions/xep-0053.html>.
Incorporated consensus reached at XMPP Summit #5: specified that HTTP is used except for presentation of an Access Token, corrected signature generation algorithm, specified security considerations, and removed invitation and account registration use cases.
(psa)Changed data forms usage to semantic XML format (except for in-band registration).
(psa)Generalized to cover authorization tokens; added use cases for pubsub node subscriptions and XMPP account registration.
(psa)Initial published version.
(psa)First draft.
(psa)END