DesignXMPP presence

Version 31 (Saúl Ibarra Corretgé, 05/31/2012 05:02 pm)

1 1 Tijmen de Mes
h1. SIP-XMPP Presence
2 2 Saúl Ibarra Corretgé
3 11 Adrian Georgescu
The mechanisms described here follows the currently available specifications for SIP-XMPP interoperability:
4 11 Adrian Georgescu
5 11 Adrian Georgescu
* http://xmpp.org/internet-drafts/attic/draft-saintandre-sip-xmpp-presence-02.html
6 11 Adrian Georgescu
7 9 Adrian Georgescu
XMPP defines two ways for exchanging presence information: simple presence and rich presence.
8 2 Saúl Ibarra Corretgé
9 2 Saúl Ibarra Corretgé
* Simple presence: The _presence_ stanza is used and it conveys basic information about the user's availability, such as the status, availability note and a timestamp indicating the last time it was seen.
10 2 Saúl Ibarra Corretgé
* Rich presence: _IQ_ stanzas are used and it enhances the simple presence by adding information such as the user avatar, music the user is listening to, etc.
11 2 Saúl Ibarra Corretgé
12 2 Saúl Ibarra Corretgé
SIP protocol defines a single framework for presence ("SIMPLE":http://datatracker.ietf.org/wg/simple/charter/) and then multiple extensions have been published which extend the information that can be conveyed in the payload.
13 2 Saúl Ibarra Corretgé
14 2 Saúl Ibarra Corretgé
The current SylkServer implementation acts as a gateway for XMPP simple presence, support for rich presence will be added at a later stage.
15 2 Saúl Ibarra Corretgé
16 27 Adrian Georgescu
h2. Subscription Models
17 1 Tijmen de Mes
18 20 Saúl Ibarra Corretgé
In SIP protocol, the client is responsible for starting and maintaing subscriptions dialogs as described in "RFC 3265":http://tools.ietf.org/html/rfc5627 by using SUBSCRIBE method.  Subscriptions are temporary, so the client needs to take care of refreshing them when they expires. As a result of a SUBSCRIBE, subsequent NOTIFY messages are received back as part of the same dialog.
19 1 Tijmen de Mes
20 22 Saúl Ibarra Corretgé
In XMPP protocol, the client doesn't create directly a subscription, the server does so on his behalf, by sending a presence stanza of type _probe_ to each of the contacts in his roster. Then each contact will send his presence state and the server will dispatch it back to the clients that requested it. This subscriptions last for as long as a user has a contact in his roster, they don't need to be explicitely refreshed.
21 3 Saúl Ibarra Corretgé
22 26 Saúl Ibarra Corretgé
XMPP servers maintain one or more TCP connections with other servers in order to exchange stanzas, and any kind of stanza is exchanged over those connections. Subscriptions are permanent (until explicitly revoked). 
23 4 Saúl Ibarra Corretgé
24 13 Adrian Georgescu
SylkServer implements the concept of a 'virtual' subscription, by identifying stanzas and abstracting the model so that it matches the one in SIP.
25 1 Tijmen de Mes
26 27 Adrian Georgescu
h2. SIP-XMPP presence translation
27 1 Tijmen de Mes
28 3 Saúl Ibarra Corretgé
When a SIP SUBSCRIBE needs to be translated to XMPP a presence stanza of type _subscribe_ will be sent. This is only necessary the first tine a user is subscribed, but this can't be known in advance. Just in case the XMPP server disregards the stanza another presence stanza is sent, this time of type _probe_ in order to instruct the remote XMPP server that it should deliver the last known presence state for the requested user.
29 3 Saúl Ibarra Corretgé
30 17 Saúl Ibarra Corretgé
!{ 700px, center}xmppgw_presence_s2x.png!
31 3 Saúl Ibarra Corretgé
32 31 Saúl Ibarra Corretgé
When a SIP SUBSCRIBE is received a 'virtual' XMPP subscription is created between the bare SIP URI and bare XMPP JID. If another SIP client (with the same SIP account) sends a SUBSCRIBE for the same user, the subscription is added to a list of SIP subscriptions for this translation path (SIP user -> XMPP user). That is, there might be multiple SIP subscriptions matching a single XMPP subscription.
33 3 Saúl Ibarra Corretgé
34 3 Saúl Ibarra Corretgé
When a XMPP presence stanza is received it will be converted to a SIP PIDF following the mechanism defined in the *Payload translation* section and sent as an in-dialog NOTIFY request over each of the SIP subscriptions.
35 3 Saúl Ibarra Corretgé
36 27 Adrian Georgescu
h2. XMPP-SIP presence translation
37 1 Tijmen de Mes
38 30 Saúl Ibarra Corretgé
As mentioned before, in XMPP a user only subscribes to another user once, after that his server will send a _probe_ stanza every time it needs to know the presence state of any contact. When either a _subscribe_ or _probe_ presence stanzas are received over XMPP, SylkServer will create a SIP subscription.
39 1 Tijmen de Mes
40 17 Saúl Ibarra Corretgé
!{ 700px, center}xmppgw_presence_x2s.png!
41 4 Saúl Ibarra Corretgé
42 4 Saúl Ibarra Corretgé
When a _subscribe_ or _probe_ presence stanza is received a 'virtual' XMPP subscription is created and an outgoing SIP subscription is created mirroring the one received on XMPP. SylkServer was designed to work behind a SIP proxy, thus, SylkServer doesn't need to send multiple SIP SUBSCRIBE requests to get the state of the user across multiple devices, the server will aggregate that information (because SIP proxies implement a presence agent that will do it). Thus, the translation path for XMPP-->SIP maps a single 'virtual' XMPP subscription to a single SIP subscription.
43 3 Saúl Ibarra Corretgé
44 1 Tijmen de Mes
h2. Payload translation
45 4 Saúl Ibarra Corretgé
46 24 Adrian Georgescu
As mentioned earlier, XMPP and SIP have two completely different formats for conveying presence state. The "draft-saintandre-sip-xmpp-presence":http://xmpp.org/internet-drafts/attic/draft-saintandre-sip-xmpp-presence-02.html draft defines a set of rules for translating XMPP stanzas to valid SIP PIDFs, but unfortunately doesn't cover all cases and some adjustments had to be made while implementing the translation mechanism in SylkServer.
47 4 Saúl Ibarra Corretgé
48 4 Saúl Ibarra Corretgé
This section contains a detailed description of the translation process followed by SylkServer. Some extensions to the PIDF have been defined by following the XML schema extension rules, thus interoperability between SIP clients unaware of this extensions hasn't been compromised.
49 4 Saúl Ibarra Corretgé
50 6 Saúl Ibarra Corretgé
h4. Status
51 6 Saúl Ibarra Corretgé
52 6 Saúl Ibarra Corretgé
In XMPP the availability of a given device is either 'available' or 'unavailable' and the _show_ element gives some extra information about it: free for chat, do not disturb, away or extended away. There is no way to map this information to PIDF, unfortunately. PIDF defines the _person_ element and RPID extends it to add activities, but there can only be a single person element per PIDF, so it can't be used as multiple XMPP stanzas need to be aggregated in a single PIDF document.
53 1 Tijmen de Mes
54 23 Adrian Georgescu
"SIP SIMPLE Client SDK":http://sipsimpleclient.com used by SylkServer implements an extension to "PIDF":http://sipsimpleclient.com/projects/sipsimpleclient/repository/entry/sipsimple/payloads/pidf.py which adds the _extended_ child element with the following allowed values: available, offline, away, extended-away and busy. Here is an example of the status element with both _basic_ and _extended_ elements:
55 6 Saúl Ibarra Corretgé
56 6 Saúl Ibarra Corretgé
<pre>
57 6 Saúl Ibarra Corretgé
    <tuple id='id1234'>
58 6 Saúl Ibarra Corretgé
        <status>
59 6 Saúl Ibarra Corretgé
            <basic>open</basic>
60 6 Saúl Ibarra Corretgé
            <extended>away</extended>
61 6 Saúl Ibarra Corretgé
        </status>
62 1 Tijmen de Mes
    </tuple>
63 1 Tijmen de Mes
</pre>
64 7 Saúl Ibarra Corretgé
65 7 Saúl Ibarra Corretgé
The new _extended_ element is used to translate the _show_ element from XMPP.
66 7 Saúl Ibarra Corretgé
67 7 Saúl Ibarra Corretgé
To avoid losing information a Person element is also created with the combined activities from all stanzas. Since only a single Person element makes sense in the PIDF document, the ID of the person is set to the MD5sum of the AoR (that is, user@domain) so that elements aggregating PIDF documents will find conflicting elements (ID can't be duplicated) and leave a single Person element.
68 7 Saúl Ibarra Corretgé
69 7 Saúl Ibarra Corretgé
h4. Resource and URI
70 7 Saúl Ibarra Corretgé
71 25 Adrian Georgescu
According to the "draft":http://xmpp.org/internet-drafts/attic/draft-saintandre-sip-xmpp-presence-02.html the XMPP resource should be used as the PIDF tuple ID. Unfortunately, since the resource can contain arbitrary unicode characters it will need to be encoded. The chosen mechanism is to encode the unicode resource in UTF8 and then hex encode it. The result is prefixed with "ID-" in order to comply with the rules of the XML xs:ID element.
72 7 Saúl Ibarra Corretgé
73 7 Saúl Ibarra Corretgé
In a similar manner, when building the Contact element of the PIDF, the XMPP JID will be converted to a SIP URI by encoding the resource as mentioned above and using it as the GRUU.
74 7 Saúl Ibarra Corretgé
75 7 Saúl Ibarra Corretgé
h4. Device information
76 7 Saúl Ibarra Corretgé
77 7 Saúl Ibarra Corretgé
PIDF defines a _device_ element which should contain information about the physical device. This information needs to be linked with the _tuple_ element of the PIDF by way of the _deviceid_ element. More than one _deviceid_ elements are allowed in a _tuple_.
78 7 Saúl Ibarra Corretgé
79 7 Saúl Ibarra Corretgé
In order to make it simpler to identify the device the _device-info_ extension was added, which can only be present once. The _device-info_ element contains the device ID (encoded resource) and a description:
80 7 Saúl Ibarra Corretgé
81 7 Saúl Ibarra Corretgé
<pre>
82 7 Saúl Ibarra Corretgé
    <device-info id="ID-6d61696e20636f6d7075746572" description="main computer"/>
83 7 Saúl Ibarra Corretgé
</pre>
84 7 Saúl Ibarra Corretgé
85 7 Saúl Ibarra Corretgé
h4. Notes
86 7 Saúl Ibarra Corretgé
87 7 Saúl Ibarra Corretgé
Status notes are translated directly as the meaning maps one-to-one and added as notes in the _tuple_ element.