Internet-Draft Oblivious Proxy Feedback March 2022
Reddy, et al. Expires 7 September 2022 [Page]
Workgroup:
ohai
Internet-Draft:
draft-rdb-ohai-feedback-to-proxy-00
Published:
Intended Status:
Standards Track
Expires:
Authors:
T. Reddy
Akamai
D. Wing
Citrix
M. Boucadair
Orange

Oblivious Proxy Feedback

Abstract

To provide equitable service to clients, servers often rate-limit incoming requests, often based upon the source IP address. However, oblivious HTTP removes the ability for the server to distinguish amongst clients so the server can only rate-limit traffic from the oblivious proxy. This harms all clients behind that oblivious proxy.

This specification provides feedback from a server to an oblivious proxy, enabling the oblivious proxy to rate-limit incoming requests from clients. Cooperating oblivious proxies can thus provide more equitable service to their distinguishable clients without triggering rate-limiting on the request resource or the target resource that would impact all clients behind that Oblivious proxy.

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 https://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 7 September 2022.

1. Introduction

Oblivious HTTP [I-D.ietf-ohai-ohttp] describes a method of encapsulation for binary HTTP messages [BINARY] using Hybrid Public Key Encryption (HPKE; [HPKE]). This protects the content of both requests and responses and enables a deployment architecture that can separate the identity of a requester from the request. This scheme requires that servers and proxies explicitly support it. The server is susceptible to attacks described below, but the server cannot take any mitigation action per client to protect itself from various attacks -- the server can only take mitigation actions per oblivious proxy. Rate-limiting traffic from an oblivious proxy impacts all clients behind that proxy -- both misbehaving clients and well-behaved clients.

Attacks against the Request and Target Resources can be classified into three primary categories:

  1. A client sends a malformed encapsulated request causing decryption failure or decryption overload failure on the oblivious request resource. This causes the oblivious request resource to send an error status code back to the oblivious proxy.
  2. A client sends an HTTP transaction that causes an HTTP error on the oblivious target tesource. This might be a malformed HTTP request, or request for a missing resource.,
  3. HTTP flood: A botnet performing an HTTP flood attack against a victim's server. Because each bot in a botnet makes seemingly legitimate network requests the traffic is not spoofed and may appear "normal" in origin. This might be too many requests from a single client, too many requests from the clients behind the same oblivious proxy or too many requests from all clients on the Internet.

This document defines how an overload indication is communicated to an oblivious proxy so that this proxy can rate limit transactions by overzealous or misbehaving clients, allowing the oblivious proxy to continue servicing well-behaved clients to that same oblivious target tesource.

2. Terminology

The key words "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 BCP 14 [RFC2119][RFC8174] when, and only when, they appear in all capitals, as shown here.

This document makes use of the terms defined in [I-D.ietf-ohai-ohttp].

4. Feedback Header Parameters

The feedback information includes the following parameters:

c-any-req:
The maximum number of HTTP requests allowed per second from any client interacting with the oblivious proxy. This is a optional parameter.
c-any-outstanding:
The maximum number of outstanding HTTP requests allowed from any client interacting with the oblivious proxy. This is an optional attribute.
p-req:
The maximum number of HTTP requests allowed per second from the proxy. This is an optional attribute.
p-outstanding:
The maximum number of outstanding HTTP requests allowed from the proxy. This is an optional attribute.
c-req:
The maximum number of HTTP requests allowed per second from the client which has sent a malformed request. This is an optional attribute.
c-outstanding:
The maximum number of outstanding HTTP requests allowed from the client which has sent a malformed request. This is an optional attribute.
td:
The time duration the OHAI target server wants this policy applied. A value of -1 indicates infinity. A value of 0 indicates all currently and previously-signaled feedback thresholds no longer apply. Value in seconds. This is a mandatory attribute.

TBD: Use of any other parameters like min-encap-request-size and max-encap-request-size to defend from garbled encapsulated requests.

TBD: Recommended lifetime of Feedback (3600 seconds) ?

Note that we plan to use short parameter names in future versions of the draft as recommended by [I-D.ietf-httpbis-bcp56bis].

The above parameters are in the form of a name=value pair. The feedback information header MUST include the td parameter and atleast one of the parameters c-any-req, c-any-outstanding, p-req, p-outstanding, c-req or c-outstanding.

Example: A target resource receives an malformed message and generate an HTTP response with a 400 status code, it adds the "Feedback" header to the 400 response and sends the 400 response to the request resource. The request resource copies the "Feedback" header from the 400 response, removes the "Feedback" header from the 400 response and encapsulates the 400 response. The request resource sends a single 200 response along with the copied "Feedback" header in the 200 response and encapsulated 400 response as the response content.

+---------+                             +-----------+                        +----------+         +-----------+
| Client  |                             | Proxy     |                        | Request  |         | Target    |
|         |                             | Resource  |                        | Resource |         | Resource  |
+---------+                             +-----------+                        +----------+         +-----------+
     |                                  |                                         |                   |
     | Encapsulated Request             |                                         |                   |
     |--------------------------------->|                                         |                   |
     |                                  |                                         |                   |
     |                                  | Encapsulated Request                    |                   |
     |                                  |---------------------------------------->|                   |
     |                                  |                                         |                   |
     |                                  |                                         | Request           |
     |                                  |                                         |------------------>|
     |                                  |                                         |                   | -----------------------------\
     |                                  |                                         |                   |-| Identify malformed request |
     |                                  |                                         |                   | |----------------------------|
     |                                  |                                         |                   |
     |                                  |                                         |      400 response |
     |                                  |                                         |<------------------|
     |                                  |                                         |                   |
     |                                  | 200 response with Feedback Header       |                   |
     }                                  | and Encapsulated 400 response           |                   |
     |                                  | as the response content                 |                   |
     |                                  |<----------------------------------------|                   |
     | -----------------------------\   |                                         |                   |
     | | Process Feedback Header    |   |                                         |                   |
     | } take mitigation action     |---|                                         |                   |
     | |----------------------------|   |                                         |                   |
     |                                  |                                         |                   |
     |  Encapsulated 400 response       |                                         |                   |
     |<---------------------------------|                                         |                   |
     |                                  |                                         |                   |
Figure 2: An Example of Feedback to Proxy

The response constructed by the oblivious request resource is depicted below:

  HTTP/1.1 200 OK
  Date: Wed, 27 March 2022 04:45:07 GMT
  Cache-Control: private, no-store
  Feedback: c-any-req=1000; p-any-outstanding=20000; td=600
  Content-Type: message/ohttp-res
  Content-Length: 38 <content is the encapsulated 400 response>

5. Request or Target Resource Generating Feedback Header

When an overlaod is experienced by the request or target resource it adds the Feedback header and parameters to request load adjustement. For example, when a HTTP server itself identifies high frequency or high volume anomalies in the traffic directed to the server it would include the Feedback header. Ideally the Feedback header provides enough detail to the oblivious proxy to avoid the server rate limiting the oblivious proxy's IP address.

6. Proxy Processing of Feedback Header

When presented with a response that contains a Feedback Header, the proxy can process the parameters in the headers and take appropriate action. There is no mechanism for proxy to indicate to server that feedback information was processed or was ignored. The proxy can honor the rate indicated by the request resource/resource target. To that aim, the proxy may take appropriate additional actions such as (1) rate-limiting the requests from a client not to exceed requests per second (c-req) value (2) rate-limit the outstanding HTTP requests from a client not to exceed outstanding requests (c-outstanding) value.

If the proxy ignores the feedback information, there is a risk that the overload may still be encountered by the request and target resources. More severe actions may be then taken at the server, e.g., block all the requests from this proxy for a given time duration.

7. Security Considerations

The security considerations for the Oblivious HTTP protocol are discussed in Section 8 of [I-D.ietf-ohai-ohttp]. The target and request resources SHOULD convey the Feedback header to trusted oblivious proxy. However, if this oblivious proxy is not trusted, security risks discussed below may arise:

  • If oblivious proxy and clients attacking the server are managed by an attacker, the attacker can use the Feedback information to identify the server has detected the attack and possibly change the attack strategy.
  • The oblivious proxy can colloude with the attacking clients and leak the Feedback information to the clients.

8. IANA Considerations

8.1. Registration of new HTTP Header Field

8.1.1. Feedback Header

This section describes a header field for registration in the Permanent Message Header Field Registry [RFC3864].

Header field name
Feedback
Applicable protocol
http
Status
standard
Author/Change controller
IETF
Specification document(s)
RFC XXXX
Related information
This header field is only used for Oblivious HTTP.

8.1.2. Feedback Parameter Name Registry

This specification requests the creation of a new IANA registry for Feedback Parameter Names to be sent in the Feedback Header in accordance with the principles set out in [RFC5226].

As part of this registry IANA will maintain the following information:

Parameter Name
The name of the parameter.

9. Acknowledgements

Thanks to Rich Salz and Brandon Williams for the discussion and comments.

10. References

10.1. Normative References

[BINARY]
Thomson, M. and C. A. Wood, "Binary Representation of HTTP Messages", Work in Progress, Internet-Draft, draft-ietf-httpbis-binary-message-01, , <https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-binary-message-01>.
[HPKE]
Barnes, R. L., Bhargavan, K., Lipp, B., and C. A. Wood, "Hybrid Public Key Encryption", Work in Progress, Internet-Draft, draft-irtf-cfrg-hpke-12, , <https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-hpke-12>.
[I-D.ietf-ohai-ohttp]
Thomson, M. and C. A. Wood, "Oblivious HTTP", Work in Progress, Internet-Draft, draft-ietf-ohai-ohttp-01, , <https://www.ietf.org/archive/id/draft-ietf-ohai-ohttp-01.txt>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/info/rfc2119>.
[RFC3864]
Klyne, G., Nottingham, M., and J. Mogul, "Registration Procedures for Message Header Fields", BCP 90, RFC 3864, DOI 10.17487/RFC3864, , <https://www.rfc-editor.org/info/rfc3864>.
[RFC5226]
Narten, T. and H. Alvestrand, "Guidelines for Writing an IANA Considerations Section in RFCs", RFC 5226, DOI 10.17487/RFC5226, , <https://www.rfc-editor.org/info/rfc5226>.
[RFC5234]
Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax Specifications: ABNF", STD 68, RFC 5234, DOI 10.17487/RFC5234, , <https://www.rfc-editor.org/info/rfc5234>.
[RFC7230]
Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing", RFC 7230, DOI 10.17487/RFC7230, , <https://www.rfc-editor.org/info/rfc7230>.
[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/info/rfc8174>.

10.2. Informative References

[I-D.ietf-httpbis-bcp56bis]
Nottingham, M., "Building Protocols with HTTP", Work in Progress, Internet-Draft, draft-ietf-httpbis-bcp56bis-15, , <https://www.ietf.org/archive/id/draft-ietf-httpbis-bcp56bis-15.txt>.

Authors' Addresses

Tirumaleswar Reddy
Akamai
Embassy Golf Link Business Park
Bangalore 560071
Karnataka
India
Dan Wing
Citrix Systems, Inc.
4988 Great America Pkwy
Santa Clara, CA 95054
United States of America
Mohamed Boucadair
Orange
35000 Rennes
France