This document specifies an extended data format whereby XMPP service discovery responses can include detailed information about the software application that powers a given XMPP entity for including detailed data about the in service discovery responses.
WARNING: This Standards-Track document is Experimental. Publication as an XMPP Extension Protocol does not imply approval of this proposal by the XMPP Standards Foundation. Implementation of the protocol described herein is encouraged in exploratory implementations, but production systems should not deploy implementations of this protocol until it advances to a status of Draft.
Series: XEP
Number: 0232
Publisher: XMPP Standards Foundation
Status:
Experimental
Type:
Standards Track
Version: 0.1
Last Updated: 2008-01-30
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0030
Supersedes: None
Superseded By: None
Short Name: NOT YET ASSIGNED
Wiki Page: <http://wiki.jabber.org/index.php/Software Information (XEP-0232)>
JabberID:
stpeter@jabber.org
URI:
https://stpeter.im/
The preferred venue for discussion of this document is the Standards discussion list: <http://mail.jabber.org/mailman/listinfo/standards>.
Errata may be sent to <editor@xmpp.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 following 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. Introduction
2. Use Case
3. Security Considerations
4. IANA Considerations
5. XMPP Registrar Considerations
5.1. Field Standardization
Notes
Revision History
Service Discovery Extensions [1] defines a way for an XMPP entity to include extended information in its responses to Service Discovery [2] information requests. This document specifies a usage of XEP-0128 whereby an XMPP entity can provide detailed data about itself in such responses. This protocol is intended to replace Software Version [3] for software information discovery (thus reducing or eliminating the need for distinct software version requests) and also provides a format that can be encapsulated into Entity Capabilities [4] notifications.
To illustrate this usage, consider the following example of a disco#info request-response interaction that includes detailed client information:
<iq from='romeo@montaguue.lit/orchard' to='juliet@capulet.lit/chamber' id='disco1' type='get'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
<iq from='juliet@capulet.lit/chamber' to='romeo@montague.lit/orchard' id='disco1' type='result'> <query xmlns='http://jabber.org/protocol/disco#info'> <identity category='client' name='Exodus' type='pc'/> <feature var='http://jabber.org/protocol/disco'/> <x xmlns='jabber:x:data' type='result'> <field var='FORM_TYPE' type='hidden'> <value>urn:xmpp:dataforms:softwareinfo</value> </field> <field var='os'> <value>Windows</value> </field> <field var='os_version'> <value>XP</value> </field> <field var='software'> <value>Exodus</value> </field> <field var='software_version'> <value>0.9.1</value> </field> </x> </query> </iq>
The fields have the following meaning:
Service discovery information is typically world-readable. Therefore, care should be taken in exposing information that may make it easier for a potential attacker to target the publishing entity's system (e.g., the operating system on which the software is running).
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [5].
The XMPP Registrar [6] shall include the following information in its registries.
Field Standardization for Data Forms [7] defines a process for standardizing the fields used within Data Forms qualified by a particular namespace, and XEP-0128 describes how to use field standardization in the context of service discovery. This section registers fields for software information scoped by the "urn:xmpp:dataforms:softwareinfo" FORM_TYPE.
<form_type> <name>urn:xmpp:dataforms:softwareinfo</name> <doc>XEP-0232</doc> <desc> Forms enabling the communication of detailed information about an XMPP client. </desc> <field var='os' type='text-single' label='The operating system on which the XMPP software is running'/> <field var='os_version' type='text-single' label='The operating system version'/> <field var='software' type='text-single' label='The XMPP software running at the entity'/> <field var='software_version' type='text-single' label='The XMPP software version'/> </form_type>
1. XEP-0128: Service Discovery Extensions <http://www.xmpp.org/extensions/xep-0128.html>.
2. XEP-0030: Service Discovery <http://www.xmpp.org/extensions/xep-0030.html>.
3. XEP-0092: Software Version <http://www.xmpp.org/extensions/xep-0092.html>.
4. XEP-0115: Entity Capabilities <http://www.xmpp.org/extensions/xep-0115.html>.
5. 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/>.
6. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://www.xmpp.org/registrar/>.
7. XEP-0068: Field Data Standardization for Data Forms <http://www.xmpp.org/extensions/xep-0068.html>.
Initial published version.
(psa)Added software field; generalized to be software information, not client information.
(psa)Clarified relationship to Software Version (XEP-0092).
(psa)First draft.
(psa)END