DesignXMPP presence

Version 13 (Adrian Georgescu, 05/31/2012 04:31 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 12 Adrian Georgescu
h3. Subscribe Models
17 1 Tijmen de Mes
18 13 Adrian Georgescu
In SIP protocol, the client is responsible for starting and maintaing subscriptions. Subscriptions are timed, so the client needs to take care of refreshing the subscription when/if it expires.
19 1 Tijmen de Mes
20 13 Adrian Georgescu
In XMPP protocol, the client doesn't initiate 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. This subscriptions last for as long as a user has a contact in his roster, they don't need to be refreshed.
21 3 Saúl Ibarra Corretgé
22 13 Adrian Georgescu
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. Because subscriptions are permanent (until explicitly revoked) there is no indication about when a subscription has started and when it ends. 
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 3 Saúl Ibarra Corretgé
h2. SIP-XMPP 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 3 Saúl Ibarra Corretgé
TODO (picture)
31 3 Saúl Ibarra Corretgé
32 3 Saúl Ibarra Corretgé
h3. Overview
33 3 Saúl Ibarra Corretgé
34 3 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.
35 3 Saúl Ibarra Corretgé
36 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.
37 3 Saúl Ibarra Corretgé
 
38 3 Saúl Ibarra Corretgé
39 3 Saúl Ibarra Corretgé
h2. XMPP-SIP translation
40 1 Tijmen de Mes
41 4 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.
42 1 Tijmen de Mes
43 5 Saúl Ibarra Corretgé
TODO (picture)
44 4 Saúl Ibarra Corretgé
45 1 Tijmen de Mes
h3. Overview
46 3 Saúl Ibarra Corretgé
47 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.
48 3 Saúl Ibarra Corretgé
49 4 Saúl Ibarra Corretgé
50 1 Tijmen de Mes
h2. Payload translation
51 4 Saúl Ibarra Corretgé
52 4 Saúl Ibarra Corretgé
As mentioned earlier, XMPP and SIP have two completely different formats for conveying presence state. The draft-saintandre-sip-xmpp-presence 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.
53 4 Saúl Ibarra Corretgé
54 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.
55 4 Saúl Ibarra Corretgé
56 4 Saúl Ibarra Corretgé
57 6 Saúl Ibarra Corretgé
h4. Status
58 6 Saúl Ibarra Corretgé
59 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.
60 6 Saúl Ibarra Corretgé
61 6 Saúl Ibarra Corretgé
SIPSIMPLE SDK implements an extension to PIDF 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:
62 6 Saúl Ibarra Corretgé
63 6 Saúl Ibarra Corretgé
<pre>
64 6 Saúl Ibarra Corretgé
    <tuple id='id1234'>
65 6 Saúl Ibarra Corretgé
        <status>
66 6 Saúl Ibarra Corretgé
            <basic>open</basic>
67 6 Saúl Ibarra Corretgé
            <extended>away</extended>
68 6 Saúl Ibarra Corretgé
        </status>
69 1 Tijmen de Mes
    </tuple>
70 1 Tijmen de Mes
</pre>
71 7 Saúl Ibarra Corretgé
72 7 Saúl Ibarra Corretgé
The new _extended_ element is used to translate the _show_ element from XMPP.
73 7 Saúl Ibarra Corretgé
74 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.
75 7 Saúl Ibarra Corretgé
76 7 Saúl Ibarra Corretgé
h4. Resource and URI
77 7 Saúl Ibarra Corretgé
78 7 Saúl Ibarra Corretgé
According to the draft 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.
79 7 Saúl Ibarra Corretgé
80 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.
81 7 Saúl Ibarra Corretgé
82 7 Saúl Ibarra Corretgé
h4. Device information
83 7 Saúl Ibarra Corretgé
84 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_.
85 7 Saúl Ibarra Corretgé
86 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:
87 7 Saúl Ibarra Corretgé
88 7 Saúl Ibarra Corretgé
<pre>
89 7 Saúl Ibarra Corretgé
    <device-info id="ID-6d61696e20636f6d7075746572" description="main computer"/>
90 7 Saúl Ibarra Corretgé
</pre>
91 7 Saúl Ibarra Corretgé
92 7 Saúl Ibarra Corretgé
h4. Notes
93 7 Saúl Ibarra Corretgé
94 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.