« Previous - Version 4/49 (diff) - Next » - Current version
Saúl Ibarra Corretgé, 05/31/2012 12:20 pm


SIP-XMPP Presence

XMPP defines 2 ways for exchanging presence information: simple presence and rich presence.

  • 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.
  • 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.

SIP, on the contrary, defines a single framework for presence (SIMPLE) and then multiple extensions have been published which extend the information that can be conveyed in the payload.

The current implementation acts as a gateway just for XMPP simple presence, support for rich presence will be added at a later stage.

The mechanisms described here follow the currently available specifications for SIP-XMPP interoperability:

Model differences

In XMPP 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.

In SIP, on the other hand, 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.

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. SylkServer implements the concept of a 'virtual' subscription, by identifying stanzas and abstracting the model so that it matches the one in SIP.

SIP-XMPP translation

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.

TODO (picture)

Overview

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.

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.

XMPP-SIP translation

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.

Overview

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.

Payload translation

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.

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.

XMPP stanza to PIDF

TODO

PIDF to XMPP stanza

TODO

xmppgw_presence_s2x.png (59.1 kB) Saúl Ibarra Corretgé, 05/31/2012 04:35 pm

xmppgw_presence_x2s.png (52.9 kB) Saúl Ibarra Corretgé, 05/31/2012 05:35 pm