Network Working GroupInternet Engineering Task Force (IETF) A. LangleyInternet-DraftRequest for Comments: 7685 Google Inc Updates: 5246(if approved) SeptOctober 2015Intended status:Category: Standards TrackExpires: March 11, 2016ISSN: 2070-1721 ATLSTransport Layer Security (TLS) ClientHellopadding extension draft-ietf-tls-padding-04Padding Extension Abstract This memo describes aTLSTransport Layer Security (TLS) extension that can be used to pad ClientHello messages to a desired size. Status of This Memo ThisInternet-Draftissubmitted in full conformance with the provisions of BCP 78 and BCP 79. Internet-Drafts are working documentsan Internet Standards Track document. This document is a product of the Internet Engineering Task Force (IETF).Note that other groups may also distribute working documents as Internet-Drafts. The listIt represents the consensus ofcurrent Internet- Drafts is at http://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents validthe IETF community. It has received public review and has been approved fora maximumpublication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 ofsix monthsRFC 5741. Information about the current status of this document, any errata, and how to provide feedback on it may beupdated, replaced, or obsoleted by other documentsobtained atany time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." This Internet-Draft will expire on March 11, 2016.http://www.rfc-editor.org/info/rfc7685. Copyright Notice Copyright (c) 2015 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License. Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2 2. Requirements Notation . . . . . . . . . . . . . . . . . . . . 2 3. Padding Extension . . . . . . . . . . . . . . . . . . . . . . 2 4. ExampleusageUsage . . . . . . . . . . . . . . . . . . . . . . . . 3 5. Security Considerations . . . . . . . . . . . . . . . . . . . 3 6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 3 7.AcknowledgementsNormative References . . . . . . . . . . . . . . . . . . . . 4 Acknowledgements . . . .4 8. Normative References. . . . . . . . . . . . . . . . . . . . 4 Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 4 1. Introduction Successive TLS [RFC5246] versions have added support for more cipher suites and, over time, more TLS extensions have been defined. This has caused the size of the TLS ClientHello togrowgrow, and the additional size has caused some implementation bugs to come to light. At least one of these implementation bugs can be ameliorated by making the ClientHello even larger. This is desirable given that fully comprehensive patching of affected implementations is difficult to achieve. This memo describes a TLS extension that can be used to pad a ClientHello to a desired size in order to avoid implementation bugs caused by certain ClientHello sizes. 2. Requirements Notation The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC2119]. 3. Padding Extension A new extension type ("padding(21)") is defined and MAY be included by the client in its ClientHello message. enum { padding(21), (65535) } ExtensionType; The "extension_data" for the extension consists of an arbitrary number of zero bytes. For example, the smallest "padding" extension is four bytes long and is encoded as 0x00 0x15 0x00 0x00. Aten byteten-byte extension would include6six bytes of "extension_data" and would be encoded as: 00 15 00 06 00 00 00 00 00 00 |---| |---| |---------------| | | | | | \- extension_data: 6 zero bytes | | | \------------- 16-bit, extension_data length | \------------------- extension_type for padding extension The client MUST fill the padding extension completely with zero bytes, although the padding extension_data field may be empty. The server MUST NOT echo the extension. 4. ExampleusageUsage As an example, consider a client that wishes to avoid sending a ClientHello with arecord sizeTLSCiphertext.length between 256 and 511 bytes (inclusive). This case is considered because at least one TLS implementation is known to hang the connection when such a ClientHello record is received. After building a ClientHello as normal, the client can add four bytes to the length (to account for the "msg_type" and "length" fields of the handshake protocol) and test whether the resulting length falls into that range. If it does, a padding extension can be added in order to push the length to (at least) 512 bytes. Note that if the original ClientHello size was between 505 and 507bytesbytes, then, with the handshake protocol overhead, the record payload would be between 509 and 511 bytes long. Since it's not possible for an extension to take less than four bytes of space, the additional padding would have to expand the ClientHello recordpastpayload beyond 512 bytes in these cases. 5. Security Considerations The contents of the padding extension could be used as a covert channel. In order to prevent this, the contents are required to be all zeros, although the length of the extension can still be used as a much smaller covert channel. 6. IANA ConsiderationsRFC EDITOR: Please delete this section prior to publication. An early code-point assignment (21) was made for this draft in the registry of TLS ExtensionType values.IANAis requested tohas permanentlyassign this code-point. 7. Acknowledgements The author gratefully acknowledges the contributions of Wan-Teh Chang andregistered value 21 (padding) in thesuggestions of Eric Rescorla. 8."ExtensionType Values" registry. 7. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997, <http://www.rfc-editor.org/info/rfc2119>. [RFC5246] Dierks, T. and E. Rescorla, "The Transport Layer Security (TLS) Protocol Version 1.2", RFC 5246, DOI 10.17487/RFC5246, August 2008, <http://www.rfc-editor.org/info/rfc5246>. Acknowledgements The author gratefully acknowledges the contributions of Wan-Teh Chang and the suggestions of Eric Rescorla. Author's Address Adam Langley Google Inc Email: agl@google.com