httpbis M. Thomson
Internet-Draft Mozilla
Intended status: Informational June 16, 2017
Expires: December 18, 2017

Merkle-Integrity Signature Extension for Responses
draft-thomson-http-miser-latest

Abstract

Use of a signature is described to provide integrity for the content of HTTP responses. Content can be progressively processed without losing integrity if a client is prepared to accept the risk of truncation.

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at http://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any 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 December 18, 2017.

Copyright Notice

Copyright (c) 2017 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

A scheme for providing integrity for the content of HTTP messages is described in [I-D.thomson-http-mice]. That scheme permits a recipient to process the content of a message without having to receive the entire message. Though the content might subsequently be truncated, the partial content that is received is known to be correct. This is similar to the integrity guarantee provided by HTTPS [RFC2818].

The major drawback of any integrity scheme that it is not possible to prime a recipient with any information that would allow them to make a decision regarding content that isn’t yet known. Thus, for example, it is impossible to construct an integrity protected reference such as the one described in [SRI] without first knowing the precise details of the content that is being referred to.

A signature-based integrity scheme avoids this problem by allowing a recipient to be given a signature public key that can be used to verify the integrity of message content. This allows a reference to be constructed prior to generating dynamic content. More generally, it makes it possible to provide an integrity-protected reference to content without having to know the specific content of what is being referred to.

1.1. Signature Limitations

Signature-based schemes do have several downsides that need to be carefully considered.

This document defines a signature scheme with a narrow scope, the intent being to provide the ability to use signatures for integrity protection without running afoul of the many pitfalls of previous attempts at signing HTTP messages or content.

In particular, this document only describes how the content of an HTTP response is signed.

ISSUE: Should this further limit the signature to responses to GET requests? In looking at the various ways in which these signatures can be transplanted, limiting in this way would avoid problems with different requests. Since most requests can be trivially parlayed into a GET request, this doesn’t seem like an unbearable restriction on use.

ISSUE: SHOULD this also prohibit content negotiation? That the signatures on XML and JSON variants of responses to the same resource are interchangeable doesn’t seem obviously exploitable, but not all changes in response to content negotiation are so clearly delineated.

1.2. Terminology

RFC 2119 [RFC2119] defines the terms MUST, SHOULD, and MAY.

1.3. Example

The following shows an HTTP/1.1 response to a request to https://example.com/hello.

HTTP/1.1 200 OK
Date: Wed, 29 Jun 2016 01:16:02 GMT
Content-Length: 15
Crypto-Key: keyid=a;
    p256ecdsa=BLqanccr81i6vKOl3cUpc5GyxeGP4A05DtsxNLMGtzqV
              KzIUmJz3rQNUgMZc8gv7fk0xQJ80BVnrjW4VifawAZ8
MI: keyid=a;
    p256ecdsa=iPn7MWjD7nCcnq6OJn2nTYbKyYhj3IB1ngmsiatFiARh
              zqVsuaH7KsB2et2PCX33SDX6ZlEges_wDiPkIp5zqA

Hello, World!

Line wrapping is added to this example to fit formatting constraints. The omitted p attribute for this example is included in [I-D.thomson-http-mice].

2. Signature Usage

A signature uses the MI header field defined in [I-D.thomson-http-mice]. A new p256ecdsa parameter is defined that carries an ECDSA [X9.62] signature over the P-256 curve [FIPS186] using the SHA-256 hash [FIPS180]. The signature is encoded in the parameter using base64url encoding [RFC7515].

The input to the signature is the concatenation of:

The p256ecdsa field contains the concatenated bitstrings of the R and S outputs of the ECDSA signature algorithm.

If a recipient is expected to use the signature to validate content, the p256ecdsa parameter can replace the p parameter of the MI header field. Both parameters MAY be included, though both should agree.

Signatures MUST NOT be used to protect the content of a request. Clients frequently make multiple requests of the same resource with different header fields and content. Relying on signatures for requests could allow attacks where content from one request is interchanged with other requests to the same resource.

2.1. URI Normalization

The consequence of including the effective request URI under the signature is that the signature is exposed to the vagaries of URI encoding. Though two URIs might be considered equivalent, differences in the encoding of those URIs will produce different signatures.

A potential approach to this problem has the server signal the precise encoding that it used to produce the signature. However, this changes the problem from a normalization problem to a comparison problem. A client that fails to correctly compare their effective request URI with the claimed URI could be exposed to attacks where the content of resources with similar URIs are interchanged. A client cannot know that a server will consider two different URI encodings to be identical.

Thus, a normalization scheme specific to https:// URIs is defined, based on the recommendations in [RFC7230] and [RFC3986]. Use of signatures with other URI schemes is not defined. The following transformations are made to the effective request URI, with reference to the corresponding part of Section 6.2 of [RFC3986]:

Note that an effective request URI does not contain a fragment.

Unfortunately, devising a perfect normalization scheme for all https:// URIs isn’t possible, since servers could apply additional rules for determining URI equivalance that are context-specific.

Clients that encounter signature failures MAY attempt to re-acquire resources by passing the normalized effective request URI in a request that uses the absolute-form (see Section 5.3.2 of [RFC7230]).

Servers that receive a request in the absolute-form SHOULD use the octets provided by the client as input as input to the above normalization procedure when producing a signature. In other words, servers that permit a range of possible URI encodings to identify the same logical resource might need to produce multiple signatures for that resource depending on how a client requests that resource.

3. Identifying and Describing Signature Keys

A keyid parameter is added for use with the MI header field. This allows a recipient to identify the key that can be used to validate the signature in the p256ecdsa parameter. The keyid SHOULD match a value in the Crypto-Key header field [I-D.ietf-httpbis-encryption-encoding] if that header field is is used.

Providing a signature key is typically only useful where the provision of the key can be attributed a higher level of trust than the signature itself. A message sent using out-of-band content-encoding [I-D.reschke-http-oob-encoding] is one situation that might benefit from the use of this header field.

This document defines a new parameter for use with the Crypto-Key header field. The p256ecdsa parameter conveys an uncompressed P-256 public key [X9.62]. The p256ecdsa parameter for the Crypto-Key header field is encoded using base64url encoding [RFC7515].

4. Security Considerations

Determining whether a signature is valid is only a small part of authenticating a response. This document doesn’t describe a complete solution for identifying which signing keys are accepted.

The signature does not authenticate header fields or any part of the request. The signature only covers the effective request URI, which is to prevent signed content from being replayed for responses to other URIs. A recipient of a signed payload needs to be especially careful that decisions that rely on authenticating the payload do not take any unauthenticated material as input. In particular, the Content-Type header field are not authenticated by this scheme.

No replay protection is offered for signatures. This means that valid messages can be captured and replayed. The only restriction is that they are limited to responses for the same URI. The following changes are not detectable based on the signature:

In particular, if content negotiation (see Section 3.4 of [RFC7231]) is used, then all alternative representations for a given URI will all have valid signatures. For this reason, servers SHOULD avoid combining content negotiation with signatures.

A recipient of encrypted [I-D.ietf-httpbis-encryption-encoding] content that is also signed, cannot assume that the encrypted content was originally generated by the holder of the signing key. A signature might be applied to encrypted content without knowing its contents. For a similar reason, an encrypted message might not have been originally sent to the holder of the decryption keys. More generally, a recipient of encrypted HTTP response content cannot assume that the message was encrypted specifically for them.

A key used to sign response content MUST NOT be used for other purposes. A key SHOULD also be used over a limited scope and time. A key might be limited to use with a single request.

5. IANA Considerations

5.1. Additions to the MI Parameter Registry

This memo registers the p256ecdsa and keyid in the “Hypertext Transfer Protocol (HTTP) MI Parameters” registry established in [I-D.thomson-http-mice].

For keyid:

For p256ecdsa:

5.2. Additions to the Crypto-Key Parameter Registry

This memo registers the p256ecdsa and keyid in the “Hypertext Transfer Protocol (HTTP) Crypto-Key Parameters” registry established in [I-D.ietf-httpbis-encryption-encoding].

6. References

6.1. Normative References

[FIPS186] National Institute of Standards and Technology (NIST), "Digital Signature Standard (DSS)", NIST PUB 186-4 , July 2013.
[I-D.ietf-httpbis-encryption-encoding] Thomson, M., "Encrypted Content-Encoding for HTTP", Internet-Draft draft-ietf-httpbis-encryption-encoding-09, April 2017.
[I-D.thomson-http-mice] Thomson, M., "Merkle Integrity Content Encoding", Internet-Draft draft-thomson-http-mice-02, October 2016.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997.
[RFC3629] Yergeau, F., "UTF-8, a transformation format of ISO 10646", STD 63, RFC 3629, DOI 10.17487/RFC3629, November 2003.
[RFC3986] Berners-Lee, T., Fielding, R. and L. Masinter, "Uniform Resource Identifier (URI): Generic Syntax", STD 66, RFC 3986, DOI 10.17487/RFC3986, January 2005.
[RFC5952] Kawamura, S. and M. Kawashima, "A Recommendation for IPv6 Address Text Representation", RFC 5952, DOI 10.17487/RFC5952, August 2010.
[RFC7230] Fielding, R. and J. Reschke, "Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing", RFC 7230, DOI 10.17487/RFC7230, June 2014.
[RFC7515] Jones, M., Bradley, J. and N. Sakimura, "JSON Web Signature (JWS)", RFC 7515, DOI 10.17487/RFC7515, May 2015.
[X9.62] ANSI, "Public Key Cryptography For The Financial Services Industry: The Elliptic Curve Digital Signature Algorithm (ECDSA)", ANSI X9.62 , 1998.

6.2. Informative References

[DAVIS] Davis, D., "Defective Sign & Encrypt in S​/​MIME, PKCS#7, MOSS, PEM, PGP, and XML", May 2001.
[FIPS180] Dang, Q., "Secure Hash Standard", National Institute of Standards and Technology report, DOI 10.6028/nist.fips.180-4, July 2015.
[I-D.reschke-http-oob-encoding] Reschke, J. and S. Loreto, "'Out-Of-Band' Content Coding for HTTP", Internet-Draft draft-reschke-http-oob-encoding-11, March 2017.
[RFC2818] Rescorla, E., "HTTP Over TLS", RFC 2818, DOI 10.17487/RFC2818, May 2000.
[RFC7231] Fielding, R. and J. Reschke, "Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content", RFC 7231, DOI 10.17487/RFC7231, June 2014.
[SRI] Akhawe, D., Braun, F., Marier, F. and J. Weinberger, "Subresource Integrity", W3C CR , November 2015.

Author's Address

Martin Thomson Mozilla EMail: martin.thomson@gmail.com
Fork me on GitHub