git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@815 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2007-05-07 19:43:00 +00:00
parent 8b7a844d58
commit 80d54e4f38
1 changed files with 97 additions and 41 deletions

View File

@ -19,8 +19,14 @@
</dependencies>
<supersedes/>
<supersededby/>
<shortname>ping</shortname>
<shortname>TO BE ASSIGNED</shortname>
&stpeter;
<revision>
<version>0.3</version>
<date>2007-05-07</date>
<initials>psa</initials>
<remark><p>Added use case for client pinging server; changed namespace to conform to XMPP Registrar requirements, with namespace to be issued upon advancement to Draft; added section on discovering support.</p></remark>
</revision>
<revision>
<version>0.2</version>
<date>2006-11-22</date>
@ -35,128 +41,178 @@
</revision>
</header>
<section1 topic='Introduction' anchor='intro'>
<p>As specified in &rfc3920;, the XML streams used in XMPP are bound to TCP. Unfortunately, TCP connections can go down without the application (XMPP) layer knowing about it. The traditional approach to solving this issue has been to periodically send so-called "whitespace pings" over the XML stream. This document recommends a more XML-friendly approach, which can also be used with other bindings such as the &xep0124;.</p>
<p>As specified in &rfc3920;, the XML streams used in XMPP are bound to TCP. Unfortunately, TCP connections can go down without the application (XMPP) layer knowing about it. The traditional approach to solving this issue has been to periodically send so-called "whitespace pings" over the XML stream. This document recommends a more XML-friendly approach, which can also be used with other bindings such as the &xep0124; method for which &xep0206; is the XMPP profile.</p>
</section1>
<section1 topic='Requirements' anchor='reqs'>
<p>This document addresses the following requirements:</p>
<p>This specification addresses the following requirements:</p>
<ol start='1'>
<li>Determining the viability of an XML stream (i.e., its underlying binding) between a client and a server, or between two servers.</li>
<li>Determining end-to-end connectivity between any two XMPP entities (e.g., two clients).</li>
</ol>
<p>The number of "hops" for which the ping tests connectivity depends on how far the pinged entity is from the pinging entity, as shown in the following use cases. However, this specification does not provide per-hop information similar to that provided by the traceroute protocol (&rfc1393;); a future specification may define such functionality for XMPP.</p>
</section1>
<section1 topic='Protocol' anchor='protocol'>
<p>The XMPP ping protocol is extremely simple:</p>
<ol>
<li>The pinging entity sends an IQ-get containing a &lt;ping/&gt; element qualified by the 'urn:xmpp:ping' namespace.</li>
<li>The pinging entity sends an IQ-get containing a &lt;ping/&gt; element qualified by the 'http://www.xmpp.org/extensions/xep-0199.html#ns' namespace &NSNOTE;.</li>
<li>The pinged entity returns either an IQ-result (if it supports the namespace) or an IQ-error (if it does not). <note>The pinged entity MAY ignore the IQ (i.e., return neither a result nor an error) if doing so would reveal its presence information to an entity that is not authorized to view that information; this mainly applies to client-to-client pings.</note></li>
</ol>
<p>The number of "hops" for which the ping tests connectivity depends on how far the pinged entity is from the pinging entity, as shown in the following use cases.</p>
</section1>
<section1 topic='Use Cases' anchor='usecases'>
<section2 topic='Client-To-Server Pings' anchor='c2s'>
<p>One popular usage is for a server to test the viability of the underlying stream connection by pinging a connected client (note: a client may send pings as well). This is done by sending an &IQ; get over the stream between the two entities.</p>
<section2 topic='Server-To-Client Pings' anchor='s2c'>
<p>One popular usage is for a server to test the viability of the underlying stream connection by pinging a connected client. This is done by sending an &IQ; get over the stream from the server to the client.</p>
<example caption="Ping"><![CDATA[
<iq from='capulet.com' to='juliet@capulet.com/balcony' id='ping123' type='get'>
<ping xmlns='urn:xmpp:ping'/>
<iq from='capulet.lit' to='juliet@capulet.lit/balcony' id='s2c1' type='get'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
</iq>
]]></example>
<p>If the other party to the stream supports the ping namespace, it MUST return an IQ result:</p>
<p>If the client supports the ping namespace, it MUST return an IQ result:</p>
<example caption="Pong"><![CDATA[
<iq from='juliet@capulet.com/balcony' to='capulet.com' id='ping123' type='result'/>
<iq from='juliet@capulet.lit/balcony' to='capulet.lit' id='s2c1' type='result'/>
]]></example>
<p>If the other party to the stream does not support the ping namespace, it MUST return an IQ error, which SHOULD be &unavailable;:</p>
<p>If the client does not support the ping namespace, it MUST return an IQ error, which SHOULD be &unavailable;:</p>
<example caption="Ping Not Supported"><![CDATA[
<iq from='juliet@capulet.com/balcony' to='capulet.com' id='ping123' type='error'>
<ping xmlns='urn:xmpp:ping'/>
<iq from='juliet@capulet.lit/balcony' to='capulet.lit' id='s2c1' type='error'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
]]></example>
<p>The other error conditions defined in <cite>RFC 3920</cite> could also be returned if appropriate.</p>
</section2>
<section2 topic='Client-To-Server Pings' anchor='c2s'>
<p>A client may also ping its server by sending an &IQ; get over the stream between the two entities.</p>
<example caption="Ping"><![CDATA[
<iq from='juliet@capulet.lit/balcony' to='capulet.lit' id='c2s1' type='get'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
</iq>
]]></example>
<p>Note: The client MAY include a 'to' address of the client's bare JID (&BAREJID;, in this instance "juliet@capulet.lit" or MAY include no 'to' address (this signifies that the stanza shall be handled by the server on behalf of the connected user's bare JID, which in the case of &IQ; stanzas is equivalent to directing the IQ-get to the server itself).</p>
<p>If the server supports the ping namespace, it MUST return an IQ result:</p>
<example caption="Pong"><![CDATA[
<iq from='capulet.lit' to='juliet@capulet.lit/balcony' id='c2s1' type='result'/>
]]></example>
<p>If the server does not support the ping namespace, it MUST return an IQ error, which SHOULD be &unavailable;:</p>
<example caption="Ping Not Supported"><![CDATA[
<iq from='capulet.lit' to='juliet@capulet.lit/balcony' id='c2s1' type='error'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
]]></example>
<p>The other error conditions defined in <cite>RFC 3920</cite> could also be returned if appropriate.</p>
</section2>
<section2 topic='Server-To-Server Pings' anchor='s2s'>
<p>Pings can also be used to test a server-to-server connection. This is done by sending an &IQ; get over the stream from one server to another.</p>
<example caption="Ping"><![CDATA[
<iq from='capulet.com' to='montague.net' id='ping234' type='get'>
<ping xmlns='urn:xmpp:ping'/>
<iq from='capulet.lit' to='montague.lit' id='s2s1' type='get'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
</iq>
]]></example>
<p>If the other party to the stream supports the ping namespace, it MUST return an IQ result:</p>
<example caption="Pong"><![CDATA[
<iq from='montague.net' to='capulet.com' id='ping234' type='result'/>
<iq from='montague.lit' to='capulet.lit' id='s2s1' type='result'/>
]]></example>
<p>If the other party to the stream does not support the ping namespace, it MUST return an IQ error, which SHOULD be &unavailable;:</p>
<example caption="Ping Not Supported"><![CDATA[
<iq from='montague.net' to='capulet.com' id='ping234' type='error'>
<ping xmlns='urn:xmpp:ping'/>
<iq from='montague.lit' to='capulet.lit' id='s2s1' type='error'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
]]></example>
<p>The other error conditions defined in <cite>RFC 3920</cite> could also be returned if appropriate.</p>
</section2>
<section2 topic='Client-to-Client Pings' anchor='e2e'>
<p>Pings can also be used for client-to-client (i.e., end-to-end) pings.</p>
<example caption="Ping"><![CDATA[
<iq from='romeo@montague.net/home'
to='juliet@capulet.com/chamber'
<iq from='romeo@montague.lit/home'
to='juliet@capulet.lit/chamber'
type='get'
id='ping345'>
<ping xmlns='urn:xmpp:ping'/>
id='e2e1'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
</iq>
]]></example>
<p>If the pinged entity supports the ping namespace, it SHOULD return an IQ result:</p>
<example caption="Pong"><![CDATA[
<iq from='juliet@capulet.com/chamber'
to='romeo@montague.net/home'
id='ping345'
<iq from='juliet@capulet.lit/chamber'
to='romeo@montague.lit/home'
id='e2e1'
type='result'/>
]]></example>
<p>If the pinged entity does not support the ping namespace, it SHOULD return an IQ error, which SHOULD be &unavailable;:</p>
<example caption="Ping Not Supported"><![CDATA[
<iq from='juliet@capulet.com/chamber'
to='romeo@montague.net/home'
id='ping345'
<iq from='juliet@capulet.lit/chamber'
to='romeo@montague.lit/home'
id='e2e1'
type='result'>
<ping xmlns='urn:xmpp:ping'/>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
]]></example>
<p>The other error conditions defined in <cite>RFC 3920</cite> could also be returned if appropriate.</p>
</section2>
<section2 topic='Component-to-Client Pings' anchor='other'>
<p>Pings can also be used for component-to-client pings, for example from a &xep0045; component to a client.</p>
<example caption="Ping"><![CDATA[
<iq from='chat.shakespeare.lit'
to='juliet@capulet.com/chamber'
to='juliet@capulet.lit/chamber'
type='get'
id='ping456'>
<ping xmlns='urn:xmpp:ping'/>
id='comp1'>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
</iq>
]]></example>
<p>If the pinged entity supports the ping namespace, it SHOULD return an IQ result:</p>
<example caption="Pong"><![CDATA[
<iq from='juliet@capulet.com/chamber'
<iq from='juliet@capulet.lit/chamber'
to='chat.shakespeare.lit'
id='ping456'
id='comp1'
type='result'/>
]]></example>
<p>If the pinged entity does not support the ping namespace, it SHOULD return an IQ error, which SHOULD be &unavailable;:</p>
<example caption="Ping Not Supported"><![CDATA[
<iq from='juliet@capulet.com/chamber'
<iq from='juliet@capulet.lit/chamber'
to='chat.shakespeare.lit'
id='ping456'
id='comp1'
type='error'>
<ping xmlns='urn:xmpp:ping'/>
<ping xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
]]></example>
<p>The other error conditions defined in <cite>RFC 3920</cite> could also be returned if appropriate.</p>
</section2>
</section1>
<section1 topic='Discovering Support' anchor='disco'>
<p>If an entity supports the XMPP Ping protocol, it MUST report that by including a service discovery feature of "http://www.xmpp.org/extensions/xep-0199.html#ns" &NSNOTE; in response to a &xep0030; information request:</p>
<example caption="Service Discovery information request"><![CDATA[
<iq type='get'
from='juliet@capulet.lit/balcony'
from='capulet.lit'
id='disco1'>
<query xmlns='http://jabber.org/protocol/disco#info'/>
</iq>
]]></example>
<example caption="Service Discovery information response"><![CDATA[
<iq type='result'
from='capulet.lit'
to='juliet@capulet.lit/balcony'
id='disco1'>
<query xmlns='http://jabber.org/protocol/disco#info'>
...
<feature var='http://www.xmpp.org/extensions/xep-0199.html#ns'/>
...
</query>
</iq>
]]></example>
</section1>
<section1 topic='Security Considerations' anchor='security'>
<p>A pinged entity MAY ignore the IQ (i.e., return neither a result nor an error) if doing so would reveal its presence information to an entity that is not authorized to view that information; this mainly applies to client-to-client pings.</p>
</section1>
@ -167,7 +223,7 @@
<section1 topic='XMPP Registrar Considerations' anchor='registrar'>
<section2 topic='Protocol Namespaces' anchor='registrar-ns'>
<p>The &REGISTRAR; shall include 'urn:xmpp:ping' in its registry of protocol namespaces (see &NAMESPACES;).</p>
<p>Until this specification advances to a status of Draft, its associated namespace shall be "http://www.xmpp.org/extensions/xep-0199.html#ns"; upon advancement of this specification, the &REGISTRAR; shall issue a permanent namespace in accordance with the process defined in Section 4 of &xep0053;.</p>
</section2>
</section1>
@ -177,8 +233,8 @@
<xs:schema
xmlns:xs='http://www.w3.org/2001/XMLSchema'
targetNamespace='urn:xmpp:ping'
xmlns='urn:xmpp:ping'
targetNamespace='http://www.xmpp.org/extensions/xep-0199.html#ns'
xmlns='http://www.xmpp.org/extensions/xep-0199.html#ns'
elementFormDefault='qualified'>
<xs:element name='ping' type='empty'/>