Abstract: | In servers that deliver messages intended for the bare JID to all resources, the resource that claims a conversation notifies all of the other resources of that claim. |
Author: | Joe Hildebrand |
Copyright: | © 1999 - 2010 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | Deferred |
Type: | Standards Track |
Version: | 0.1 |
Last Updated: | 2009-01-21 |
WARNING: Consideration of this document has been Deferred by the XMPP Standards Foundation. Implementation of the protocol described herein is not recommended.
1. Introduction
2. Requirements
3. Use Cases
3.1. Determining Support: Servers
3.2. Determining Support: Clients
3.3. Receving a message to the bare JID
3.4. Broadcasting ownership requests
3.5. Claiming ownership
3.6. Notification of ownership claim
3.7. Claim processing
3.8. Claims for Multi-User Chat rooms
4. Error Cases
4.1. Invalid "whose"
5. Business Rules
5.1. Generating IDs
5.2. ID Semantics
5.3. Comparing IDs
5.4. Accepting Multiple IDs
5.5. When to send?
5.6. Legacy Clients
6. Implementation Notes
7. Accessibility Considerations
8. Security Considerations
9. IANA Considerations
10. XMPP Registrar Considerations
11. XML Schema
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
At the time of original writing of this XEP, many XMPP servers handle message stanzas sent to a user@host (or "bare") JID with no resource by delivering that message only to the resource with the highest priority for the target user. Some server implementations, however, have chosen to send these messages to all of the online resources for the target user. If the target user is online with multiple resources when the orginal message is sent, a conversation ensues on one of the user's devices; if the user subsequently switches devices, parts of the conversation may end up on the alternate device, causing the user to be confused, misled, or annoyed.
This XEP proposes an approach for cleaning up the leftover conversation shards on alternate devices, paving the way for servers to deliver messages to multiple devices. As the basic approach, the receiving server asks all of the resources of a user "whose message is this?". The first resource to say "mine!" wins.
If a server implements the Mine capability, it MUST specify the 'urn:xmpp:tmp:mine:0' feature in its service discovery information features as specified in Entity Capabilities [1] or Service Discovery [2]. Clients MUST NOT send ownership changes if their server does not support this feature.
<iq type='get' from='romeo@montague.net/orchard' id='info1'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
<iq type='get' to='romeo@montague.net/home' from='montague.net' id='info1'> <query xmlns='http://jabber.org/protocol/disco#info'> ... <feature var='urn:xmpp:tmp:mine:0'/> ... </query> </iq>
Clients that support this protocol MUST support XEP-0115, and MUST add the 'urn:xmpp:tmp:mine:0' feature to their entity capabilities, in order to allow for potential server optimizations.
<presence from='romeo@example.net/home'> <c xmlns='http://jabber.org/protocol/caps' hash='sha-1' node='http://example.com/clients/Mine' ver='j+5eLRCz6NP6IEPob80JB6sWR3Y='/> </presence>
<iq from='romeo@example.net/home' id='disco1' to='example.net' type='result'> <query xmlns='http://jabber.org/protocol/disco#info' node='http://example.com/clients/Mine#/WmLAKHhB87dOqn5NUgxrr5NbfE='> <identity category='client' type='pc' name='Mine'/> <feature var='urn:xmpp:tmp:mine:0'/> </query> </iq>
When a server that implements the Mine capability receives a message addressed to a user's bare JID, it MUST:
Messages that have been processed to include a valid "whose" element, are now also considered an "ownership request"
<message from='juliet@example.com/balcony' to='romeo@example.net' type='chat'> <body>Wherefore art thou, Romeo?</body> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> </message>
<message from='juliet@example.com/balcony' to='romeo@example.net' type='chat'> <body>Wherefore art thou, Romeo?</body> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <whose xmlns='urn:xmpp:tmp:mine:0' id='4'/> </message>
The receiving server MUST send a copy of the ownership request to each of that user's non-negative priority resources. Each copy of the message MUST contain a whose element, each of which has the same id attribute.
<message from='juliet@example.com/balcony' to='romeo@example.net/home' type='chat'> <body>Wherefore art thou, Romeo?</body> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <whose xmlns='urn:xmpp:tmp:mine:0' id='4'/> </message> <message from='juliet@example.com/balcony' to='romeo@example.net/work' type='chat'> <body>Wherefore art thou, Romeo?</body> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <whose xmlns='urn:xmpp:tmp:mine:0' id='4'/> </message> <message from='juliet@example.com/balcony' to='romeo@example.net/mobile' type='chat'> <body>Wherefore art thou, Romeo?</body> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <whose xmlns='urn:xmpp:tmp:mine:0' id='4'/> </message>
When one client for a receiving user detects that the user's attention has been directed to a given message, that client MUST send an ownership claim (mine!) to the bare JID of the receiving user. If there was a thread element in the original message, it MUST be included in the acceptance notification. There MUST NOT be a body element in the message, and the message SHOULD use the same message type as the ownership request. The mine element MUST include an id element for each of the messages that the client wants to accept. The mine element MUST include at least one id.
<message to='romeo@example.net' from='romeo@example.net/work' type='chat'> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <mine xmlns='urn:xmpp:tmp:mine:0'> <id>4</id> </mine> </message>
As with all messages sent to a bare JID at a server implementing the Mine feature, the acceptance message MUST be forwarded to all of the non-negative priority resources.
<message to='romeo@example.net/home' from='romeo@example.net/work' type='chat'> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <mine xmlns='urn:xmpp:tmp:mine:0'> <id>4</id> </mine> </message> <message to='romeo@example.net/work' from='romeo@example.net/work' type='chat'> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <mine xmlns='urn:xmpp:tmp:mine:0'> <id>4</id> </mine> </message> <message to='romeo@example.net/mobile' from='romeo@example.net/work' type='chat'> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <mine xmlns='urn:xmpp:tmp:mine:0'> <id>4</id> </mine> </message>
When a client receives an ownership claim that was sent from that client for an ID that has not been previously claimed, the client MUST note that the message associated with the ID has been confirmed, and ignore any further ownership claims for that ID.
When a client receives an ownership claim that was sent from a different client of the same user for a ID that has not been previously received, the client MUST note that the message associated with the ID has been retracted, and ignore any further ownership claims for that ID. Retracted messages SHOULD be removed from the client's user interface, or otherwise marked in some way as retracted.
Clients MUST ignore ownership claims for IDs for which they have no corresponding message.
Assuming that messages are delivered and processed in order, these rules should ensure that exactly one client resource has a confirmed copy of the message
The same approach that has been described for one-to-one messages above can also be used by Multi-User Chat [3] (MUC) rooms. Rooms that want to participate MUST send the 'urn:xmpp:tmp:mine:0' feature in the room's disco info. The room MUST then perform the role of the server in the above descriptions, ensuring that unique ID's are assigned to all outbound groupchat messages that were addressed to the bare JID of the room. Ownership claims MUST be sent to the bare JID of the room, not the receiving user.
This capability might be used to distribute questions to multiple experts in a room, such that a single expert answers a question.
<message from='hag66@shakespeare.lit/pda' to='darkcave@chat.shakespeare.lit' type='groupchat'> <body>Harpier cries: 'tis time, 'tis time.</body> </message>
<message from='darkcave@chat.shakespeare.lit/thirdwitch' to='crone1@shakespeare.lit/desktop' type='groupchat'> <body>Harpier cries: 'tis time, 'tis time.</body> <whose xmlns='urn:xmpp:tmp:mine:0' id='5'/> </message> <message from='darkcave@chat.shakespeare.lit/thirdwitch' to='wiccarocks@shakespeare.lit/laptop' type='groupchat'> <body>Harpier cries: 'tis time, 'tis time.</body> <whose xmlns='urn:xmpp:tmp:mine:0' id='5'/> </message> <message from='darkcave@chat.shakespeare.lit/thirdwitch' to='hag66@shakespeare.lit/pda' type='groupchat'> <body>Harpier cries: 'tis time, 'tis time.</body> <whose xmlns='urn:xmpp:tmp:mine:0' id='5'/> </message>
<message to='darkcave@chat.shakespeare.lit' from='crone1@shakespeare.lit/desktop' type='groupchat'> <mine xmlns='urn:xmpp:tmp:mine:0'> <id>5</id> </mine> </message>
A server receives a message addressed to the bare JID of a user, from a different user than the one in the to address, containing a "whose" or "mine" element, it MUST NOT forward the message on to any clients. This case is always either an attack, a misconfiguration, or the result of bad code. If the user in the from address is already known to the user in the to address (for example, to user in the to address has a presence subscription to the user in the from address), the server MAY send back a helpful "bad-request" error.
<message to='juliet@example.com/balcony' from='romeo@example.net' type='error> <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread> <body>My client runneth over</body> <whose xmlns='urn:xmpp:tmp:mine:0' id='4'> <error type='modify'> <bad-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> <text>Yours</text> </error> </message>
However, if the user in the from address is not known to the user in the to address, or the server perfers not to send helpful errors, the server MUST treat the message as if it was addressed to an unknown user. Otherwise, sending a message with an invalid "whose" or "mine" could allow an attacker to probe for valid users at a site.
The value of the id attribute sent by servers MUST be valid output from the NODEPREP profile of stringprep.
The value of the id resource is completely opqaque; receiving clients MUST NOT use any apparent order or semantic in the value of the id to perform optimizations or business logic.
Clients MUST only compare the value of ID's for equality, never for order. ID's MUST be compared for equality octet-for-octet or codepoint-for-codepoint; a basic string comparison with no extra canonicalization.
A client MAY send multiple id elements in an accceptance. Clients that receive a notification with multiple IDs MUST process each ID individually, as if multiple claims had been sent.
To avoid race conditions and edge cases (including invisibility), if both the client and server support the Mine capability, the client SHOULD send ownership queries regardless of whether or not the client sees other resources for the same user online, or the capabilities of those other resources.
Clients that do not implement the Mine capability MAY be sent notifications by the server. The server MAY be optimized to avoid these notifications, however.
Some examples of events that might lead to a client sending an ownsership claim:
Some care should be given to the events that can cause ownsership claims, particularly in the MUC client implementations, such that users with different abilities all have a chance to claim ownership.
Clients MUST ignore acceptance notifications received from other users.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [4].
This XEP proposes the new namespace 'urn:xmpp:tmp:mine:0'.
<?xml version='1.0' encoding='UTF-8' ?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='urn:xmpp:tmp:mine:0' xmlns='urn:xmpp:tmp:mine:0' elementFormDefault='qualified'> <xs:element name='whose'> <xs:complexType> <xs:attribute name='id' type='xs:string' use='required'/> </xs:complexType> </xs:element> <xs:element name='mine'> <xs:complexType> <xs:sequence> <xs:element ref='id' minOccurs='1' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='id'> <xs:complexType> <xs:simpleContent> <xs:extension base='xs:NMTOKEN'/> </xs:simpleContent> </xs:complexType> </xs:element> </xs:schema>
Series: XEP
Number: 0259
Publisher: XMPP Standards Foundation
Status:
Deferred
Type:
Standards Track
Version: 0.1
Last Updated: 2009-01-21
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0030, XEP-0045, XEP-0115
Supersedes: None
Superseded By: None
Short Name: mine
Source Control:
HTML
RSS
Email:
jhildebr@cisco.com
JabberID:
hildjj@jabber.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 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-0115: Entity Capabilities <http://xmpp.org/extensions/xep-0115.html>.
2. XEP-0030: Service Discovery <http://xmpp.org/extensions/xep-0030.html>.
3. XEP-0045: Multi-User Chat <http://xmpp.org/extensions/xep-0045.html>.
4. 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/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Initial published version.
(psa)First draft.
(jjh)END