JEP-0138: Stream Compression

This JEP defines a mechanism for compressing XML streams.


WARNING: This Standards-Track JEP is Experimental. Publication as a Jabber Enhancement Proposal does not imply approval of this proposal by the Jabber Software 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.


JEP Information

Status: Experimental
Type: Standards Track
Number: 0138
Version: 0.2
Last Updated: 2004-09-28
JIG: Standards JIG
Approving Body: Jabber Council
Dependencies: XMPP Core
Supersedes: None
Superseded By: None
Short Name: compress

Author Information

Joe Hildebrand

Email: jhildebrand@jabber.com
JID: hildjj@jabber.org

Peter Saint-Andre

Email: stpeter@jabber.org
JID: stpeter@jabber.org

Legal Notice

This Jabber Enhancement Proposal is copyright 1999 - 2004 by the Jabber Software Foundation (JSF) and is in full conformance with the JSF's Intellectual Property Rights Policy <http://www.jabber.org/jsf/ipr-policy.php>. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at <http://www.opencontent.org/openpub/>).

Discussion Venue

The preferred venue for discussion of this document is the Standards-JIG discussion list: <http://mail.jabber.org/mailman/listinfo/standards-jig>.

Relation to XMPP

The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core and XMPP IM specifications contributed by the Jabber Software Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocols defined in this JEP have been developed outside the Internet Standards Process and are to be understood as extensions to XMPP rather than as an evolution, development, or modification of XMPP itself.

Conformance Terms

The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.


Table of Contents

1. Introduction
2. Use Case
3. Implementation Notes
3.1. zlib
4. Security Considerations
5. IANA Considerations
6. Jabber Registrar Considerations
6.1. Stream Features
6.2. Protocol Namespaces
7. XML Schemas
7.1. Stream Feature
7.2. Protocol Namespace
Notes
Revision History


1. Introduction

XMPP Core [1] specifies the use of Transport Layer Security (see RFC 2246 [2]) for encryption of XML streams, and TLS includes the ability to compress encrypted traffic (see RFC 3749 [3]). However, not all devices are able to implement TLS, and traffic compression may be desirable for communication by such devices. This JEP defines a mechanism for compressing XML streams outside the context of TLS. Such compression could be performed using any number of compression methods, but the only method required by this JEP is ZLIB as specified in RFC 1950 [4].

2. Use Case

The protocol flow is as follows:

Example 1. Server Offers Stream Compression Feature

<stream:features>
  <starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
  <compression xmlns='http://jabber.org/features/compress'>
    <method>zlib</method>
  </compression>
</stream:features>
    

Example 2. Client Requests Stream Compression

<compress xmlns='http://jabber.org/protocol/compress'>
  <method>zlib</method>
</compress>
    

Example 3. Server Acknowledges Stream Compression

<compressed xmlns='http://jabber.org/features/compress'/>
    

Both entities MUST now consider the previous stream to be null and void, just as with TLS negotiation and SASL negotiation (as specified in XMPP Core). Therefore the client MUST initiate a new stream to the server:

Example 4. Client Initiates New Stream

<stream:stream
    xmlns='jabber:client'
    xmlns:stream='http://etherx.jabber.org/streams'
    to='shakespeare.lit'>
    

Note well the following:

3. Implementation Notes

3.1 zlib

When using zlib for compression, the sending application SHOULD complete a partial flush of zlib when its current send is complete. Note that this statement is deliberately somewhat vague: the sending application may end up performing this partial flush after sending every XML stanza, but on the other hand may perform the partial flush only after sending a group of stanzas that have been queued up for delivery. When to flush the state of the compression application is up to the sending application.

4. Security Considerations

Stream encryption via TLS (as defined in XMPP Core) and stream compression (as defined herein) are not mutually exclusive, but stream encryption via TLS MUST be negotiated before negotiation of stream compression in order to secure the stream.

5. IANA Considerations

This JEP requires no interaction with the Internet Assigned Numbers Authority (IANA) [5].

6. Jabber Registrar Considerations

6.1 Stream Features

Upon approval of this JEP, the Jabber Registrar shall add 'http://jabber.org/features/compress' to its registry of stream features.

6.2 Protocol Namespaces

Upon advancement of this JEP to a status of Draft, the Jabber Registrar [6] shall add 'http://jabber.org/protocol/compress' to its registry of protocol namespaces.

7. XML Schemas

7.1 Stream Feature

<?xml version='1.0' encoding='UTF-8'?>

<xs:schema
    xmlns:xs='http://www.w3.org/2001/XMLSchema'
    targetNamespace='http://jabber.org/features/compress'
    xmlns='http://jabber.org/features/compress'
    elementFormDefault='qualified'>

  <xs:element name='compression'/>
    <xs:complexType>
      <xs:sequence>
        <xs:element ref='method' minOccurs='0' maxOccurs='unbounded'/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>

  <xs:element name='method' type='xs:string'/>

</xs:schema>
      

7.2 Protocol Namespace

<?xml version='1.0' encoding='UTF-8'?>

<xs:schema
    xmlns:xs='http://www.w3.org/2001/XMLSchema'
    targetNamespace='http://jabber.org/protocol/compress'
    xmlns='http://jabber.org/protocol/compress'
    elementFormDefault='qualified'>

  <xs:element name='compress' type='empty'/>
  <xs:element name='compressed' type='empty'/>

  <xs:simpleType name='empty'>
    <xs:restriction base='xs:string'>
      <xs:enumeration value=''/>
    </xs:restriction>
  </xs:simpleType>

</xs:schema>
      


Notes

1. RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core <http://www.ietf.org/rfc/rfc3920.txt>.

2. RFC 2246: The TLS Protocol Version 1.0 <http://www.ietf.org/rfc/rfc2246.txt>.

3. RFC 3749: Transport Layer Security Protocol Compression Methods <http://www.ietf.org/rfc/rfc3749.txt>.

4. RFC 1950: ZLIB Compressed Data Format Specification version 3.3 <http://www.ietf.org/rfc/rfc1950.txt>.

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 Jabber Registrar maintains a list of reserved Jabber protocol namespaces as well as registries of parameters used in the context of protocols approved by the Jabber Software Foundation. For further information, see <http://www.jabber.org/registrar/>.


Revision History

Version 0.2 (2004-09-28)

Fixed TLS text per list discussion. (psa)

Version 0.1 (2004-07-16)

Initial version. (jjh/psa)


END