<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-kpw-iab-privacy-partitioning-00" category="info" submissionType="IAB" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="Partitioning for Privacy">Partitioning as an Architecture for Privacy</title>
    <seriesInfo name="Internet-Draft" value="draft-kpw-iab-privacy-partitioning-00"/>
    <author fullname="Mirja Kühlewind">
      <organization>Ericsson Research</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author fullname="Tommy Pauly">
      <organization>Apple</organization>
      <address>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="October" day="21"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes the principle of privacy partitioning, which selectively spreads data and communication across
multiple parties as a means to improve the privacy by separating user identity from user data.
This document describes emerging patterns in protocols to partition what data and metadata is
revealed through protocol interactions, provides common terminology, and discusses how
to analyze such models.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Internet Architecture Board Internet Engineering Task Force mailing list (iab@iab.org),
    which is archived at <eref target=""/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/intarchboard/draft-obliviousness"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Protocols such as TLS and IPsec provide a secure (authenticated and encrypted) channel
between two endpoints over which endpoints transfer information. Encryption and authentication
of data in transit is necessary to protect information from being seen or modified by parties
other than the intended protocol participants. As such, this kind of security is necessary for ensuring that
information transferred over these channels remain private.</t>
      <t>However, a secure channel between two endpoints is insufficient for privacy of the endpoints
themselves. In recent years, privacy requirements have expanded beyond the need to protect data in transit
between two endpoints. Some examples of this expansion include:</t>
      <ul spacing="normal">
        <li>A user accessing a service on a website might not consent to reveal their location,
but if that service is able to observe the client's IP address, it can learn inforamtion
about the user's location. This is problematic for privacy since the service can link
user data to the user's location.</li>
        <li>A user might want to be able to access content for which they are authorized,
such as a news article, without needing to have which specific articles they
read on their account being recorded. This is problematic for privacy since the service
can link user activity to the user's account.</li>
        <li>A client device that needs to upload metrics to an aggregation service might want to be
able to contribute data to the system without having their specific contributions being
attribued to them. This is problematic for privacy since the service can link client
contributions to the specific client.</li>
      </ul>
      <t>The commonality in these examples is that clients want to interact with or use a service
without exposing too much user-specific or identifying information to that service. In particular,
separating the user-specific identity information from user-specific data is necessary for
privacy. Thus, order to protect user privacy, it is important to keep identity (who) and data
(what) separate.</t>
      <t>This document defines "privacy partitioning" as the general technique used to separate the data
and metadata visible to various parties in network communication, with the aim of improving
user privacy. Partitioning is a spectrum and not a panacea. It is difficult to guarantee there
is no link between user-specific identity and user-specific data. However, applied properly,
privacy partitioning helps ensure that user privacy violations becomes more technically difficult
to achieve over time.</t>
      <t>Several IETF working groups are working on protocols or systems that adhere to the principle
of privacy partitioning, including OHAI, MASQUE, Privacy Pass, and PPM. This document summarizes
work in those groups and describes a framework for reasoning about the resulting privacy posture of different
endpoints in practice.</t>
    </section>
    <section anchor="privacy-partitioning">
      <name>Privacy Partitioning</name>
      <t>For the purposes of user privacy, this document focuses on user-specific information. This
might include any identifying information that is specific to a user, such as their email
address or IP address, or data about the user, such as their date of birth. Informally,
the goal of privacy partitioning is to ensure that each party in a system beyond the user
themselves only has access to one type of user-specific information.</t>
      <t>This is a simple application of the principle of least privilege, wherein every party in
a system only has access to the minimum amount of information needed to fulfill their
function. Privacy partitioning advocates for this minimization by ensuring that protocols,
applications, and systems only reveal user-specific information to parties that need access
to the  information for their intended purpose.</t>
      <t>Put simply, privacy partitioning aims to separate <em>who</em> someone is from <em>what</em> they do. In the
rest of this section, we describe how privacy partitioning can be used to achieve this goal.</t>
      <section anchor="privacy-contexts">
        <name>Privacy Contexts</name>
        <t>Each piece of user-specific information exists within some context, where a context
is abstractly defined as a set of data and metadata and the entities that share access
to that information. In order to prevent correlation of user-specific information across
contexts, partitions need to ensure that any single entity (other than the client itself)
does not participate in more than one context where the information is visible.</t>
        <t><xref target="RFC6973"/> discusses the importance of identifiers in reducing correlation as a way
of improving privacy:</t>
        <t>"Correlation is the combination of various pieces of information related to an individual
or that obtain that characteristic when combined... Correlation is closely related to
identification.  Internet protocols can facilitate correlation by allowing individuals'
activities to be tracked and combined over time."</t>
        <t>"Pseudonymity is strengthened when less personal data can be linked to the pseudonym; when
the same pseudonym is used less often and across fewer contexts; and when independently
chosen pseudonyms are more frequently used for new actions (making them, from an observer's or
attacker's perspective, unlinkable)."</t>
        <t>Context separation is foundational to privacy partitioning and reducing correlation.
As an example, consider an unencrypted HTTP session over TCP, wherein the context includes both the
content of the transaction as well as any metadata from the transport and IP headers; and the
participants include the client, routers, other network middleboxes, intermediaries, and server.</t>
        <figure anchor="diagram-middlebox">
          <name>Diagram of a basic unencrypted client-to-server connection with middleboxes</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        |------HTTP------|           |--------------|        |  |
|  | Client |                | Middlebox |              | Server |  |
|  |        |------TCP-------|           |--------------|        |  |
|  +--------+      flow      +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>Adding TLS encryption to the HTTP session is a simple partitioning technique that splits the
previous context into two separate contexts: the content of the transaction is now only visible
to the client, TLS-terminating intermediaries, and server; while the metadata in transport and
IP headers remain in the original context. In this scenario, without any further partitioning,
the entities that participate in both contexts can allow the data in both contexts to be correlated.</t>
        <figure anchor="diagram-https">
          <name>Diagram of how adding encryption splits the context into two</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                                           +--------+  |
|  |        |                                           |        |  |
|  | Client |-------------------HTTPS-------------------| Server |  |
|  |        |                                           |        |  |
|  +--------+                                           +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Context B                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        |                |           |              |        |  |
|  | Client |-------TCP------| Middlebox |--------------| Server |  |
|  |        |       flow     |           |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>Another way to create a partition is to simply use separate connections. For example, to
split two separate HTTP requests from one another, a client could issue the requests on
separate TCP connections, each on a different network, and at different times; and avoid
including obvious identifiers like HTTP cookies across the requests.</t>
        <figure anchor="diagram-dualconnect">
          <name>Diagram of making separate connections to generate separate contexts</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        | IP A           |           |              |        |  |
|  | Client |-------TCP------| Middlebox |--------------| Server |  |
|  |        |       flow A   |     A     |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Context B                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        | IP B           |           |              |        |  |
|  | Client |-------TCP------| Middlebox |--------------| Server |  |
|  |        |       flow B   |     B     |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="context-separation">
        <name>Context Separation</name>
        <t>In order to define and analyze how various partitioning techniques work, the boundaries of what is
being partitioned need to be established. This is the role of context separation. In particular,
in order to prevent correlation of user-specific information across contexts, partitions need
to ensure that any single entity (other than the client itself) does not participate in contexts
where both identities are visible.</t>
        <t>Context separation can be achieved in different ways, e.g. over time, across network paths, based
on (en)coding, etc. The privacy-oriented protocols described in this document generally involve
more complex partitioning, but the techniques to partition communication contexts still employ the
same techniques:</t>
        <ol spacing="normal" type="1"><li>Encryption allows partitioning of contexts within a given network path.</li>
          <li>Using separate connections across time or space allow partitioning of contexts for different
application transactions.</li>
        </ol>
        <t>These techniques are frequently used in conjunction for context separation. For example,
encrypting an HTTP exchange might prevent a network middlebox that sees a client IP address
from seeing the user account identity, but it doesn't prevent the TLS-terminating server
from observing both identities and correlating them. As such, preventing correlation
requires separating contexts, such as by using proxying to conceal a client IP address
that would otherwise be used as an identifier.</t>
      </section>
    </section>
    <section anchor="a-survey-of-protocols-using-partitioning">
      <name>A Survey of Protocols using Partitioning</name>
      <t>The following section discusses currently on-going work in the IETF
that is applying privacy partitioning.</t>
      <section anchor="connect-proxying-and-masque">
        <name>CONNECT Proxying and MASQUE</name>
        <t>HTTP forward proxies, when using encryption, provide privacy partitioning by separating
a connection into multiple segments. When connections over the proxy themselves are encrypted,
the proxy cannot see the end-to-end content. HTTP has historically supported forward proxying
for TCP-like streams via the CONNECT method. More recently, the MASQUE working group has developed
protocols to similarly proxy UDP <xref target="CONNECT-UDP"/> and IP packets
<xref target="CONNECT-IP"/> based on tunneling.</t>
        <t>In a single-proxy setup there is a tunnel connection between the client and proxy and an end-to-end connection that is tunnelled between the client and target. This setup, as shown in the figure below, partitions
communication into a Client-to-Proxy context (the transport
metadata between the client and the target, and the request to the proxy to open a connection
to the target),
and a Client-to-Target context (the end-to-end data, which generally would be a TLS-encrypted
connection). There is also a Proxy-to-Target context; in case of MASQUE this context only
contains any (unprotected) packet header information that is added or modified by the proxy,
e.g., the IP and UDP headers.</t>
        <figure anchor="diagram-1hop">
          <name>Diagram of one-hop proxy contexts</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Context                                          |
|  +--------+                +-----------+              +--------+  |
|  |        |                |           |              |        |  |
|  | Client |----Proxied-----|   Proxy   |--------------| Server |  |
|  |        |      flow      |           |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy Context                                           |
|  +--------+                +-----------+                          |
|  |        |                |           |                          |
|  | Client |---Transport----|   Proxy   |                          |
|  |        |     flow       |           |                          |
|  +--------+                +-----------+                          |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy-to-Target Context                                           |
|                            +-----------+              +--------+  |
|                            |           |              |        |  |
|                            |   Proxy   |--Transport---| Server |  |
|                            |           |    flow      |        |  |
|                            +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>Using two (or more) proxies provides better privacy partitioning. In particular, with two proxies,
each proxy sees the Client metadata, but not the Target; the Target, but not the Client
metadata; or neither.</t>
        <figure anchor="diagram-2hop">
          <name>Diagram of two-hop proxy contexts</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Context                                          |
|  +--------+                           +-------+       +--------+  |
|  |        |                           |       |       |        |  |
|  | Client |----------Proxied----------| Proxy |-------| Server |  |
|  |        |           flow            |   B   |       |        |  |
|  +--------+                           +-------+       +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy B Context                                         |
|  +--------+         +-------+         +-------+                   |
|  |        |         |       |         |       |                   |
|  | Client |---------| Proxy |---------| Proxy |                   |
|  |        |         |   A   |         |   B   |                   |
|  +--------+         +-------+         +-------+                   |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy A Context                                         |
|  +--------+         +-------+                                     |
|  |        |         |       |                                     |
|  | Client |---------| Proxy |                                     |
|  |        |         |   A   |                                     |
|  +--------+         +-------+                                     |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy A-to-Proxy B Context                                        |
|                     +-------+         +-------+                   |
|                     |       |         |       |                   |
|                     | Proxy |---------| Proxy |                   |
|                     |   A   |         |   B   |                   |
|                     +-------+         +-------+                   |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy B-to-Target Context                                         |
|                                       +-------+       +--------+  |
|                                       |       |       |        |  |
|                                       | Proxy |-------| Server |  |
|                                       |   B   |       |        |  |
|                                       +-------+       +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>Forward proxying, such as the protocols developed in MASQUE, uses both encryption (via TLS) and
separation of connections (via proxy hops that see only the next hop) to achieve privacy partitioning.</t>
      </section>
      <section anchor="oblivious-http-and-dns">
        <name>Oblivious HTTP and DNS</name>
        <t>Oblivious HTTP <xref target="OHTTP"/>, developed in the OHAI working group, adds per-message
encryption to HTTP exchanges through a relay system. Clients send requests through an Oblivious Relay,
which cannot read message contents, to an Oblivious Gateway, which can decrypt the messages but
cannot communicate directly with the client or observe client metadata like IP address.
Oblivious HTTP relies on Hybrid Public Key Encryption <xref target="HPKE"/> to perform encryption.</t>
        <t>Oblivious HTTP uses both encryption and separation of connections to achieve privacy partitioning.
The end-to-end messages are encrypted between the Client and Gateway (forming a Client-to-Gateway context),
and the connections are separated into a Client-to-Relay context and a Relay-to-Gateway context. It is also important
to note that the Relay-to-Gateway connection can be a single connection, even if the Relay has many
separate Clients. This provides better anonymity by making the pseudonym presented by the Relay to
be shared across many Clients.</t>
        <figure anchor="diagram-ohttp">
          <name>Diagram of Oblivious HTTP contexts</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Context                                          |
|  +--------+                           +---------+     +--------+  |
|  |        |                           |         |     |        |  |
|  | Client |---------------------------| Gateway |-----| Target |  |
|  |        |                           |         |     |        |  |
|  +--------+                           +---------+     +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Gateway Context                                         |
|  +--------+         +-------+         +---------+                 |
|  |        |         |       |         |         |                 |
|  | Client |---------| Relay |---------| Gateway |                 |
|  |        |         |       |         |         |                 |
|  +--------+         +-------+         +---------+                 |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Relay Context                                           |
|  +--------+         +-------+                                     |
|  |        |         |       |                                     |
|  | Client |---------| Relay |                                     |
|  |        |         |       |                                     |
|  +--------+         +-------+                                     |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>Oblivious DNS over HTTPS <xref target="ODOH"/> applies the same principle as Oblivious HTTP, but operates on
DNS messages only. As a precursor to the more generalized Oblivious HTTP, it relies on the same
HPKE cryptographic primatives, and can be analyzed in the same way.</t>
      </section>
      <section anchor="privacy-pass">
        <name>Privacy Pass</name>
        <t>Privacy Pass is an architecture <xref target="PRIVACYPASS"/> and set of protocols
being developed in the Privacy Pass working group that allow clients to present proof of verification in
an anonymous and unlinkable fashion, via tokens. These tokens originally were designed as a way to prove
that a client had solved a CAPTCHA, but can be applied to other types of user or device attestation checks
as well. In Privacy Pass, clients interact with an attester and issuer for the purposes of issuing a token,
and clients then interact with an origin server to redeeem said token.</t>
        <t>In Privacy Pass, privacy partitioning is achieved with cryptographic protection (in the form of blind
signature protocols or similar) and separation of connections across two contexts:
a "redemption context" between clients an origins (servers that request and receive tokens), and an
"issuance context" between clients, attestation servers, and token issuance servers. The cryptographic
protection ensures that information revealed during the issuance context is separated from information
revealed during the redemption context.</t>
        <figure anchor="diagram-privacypass">
          <name>Diagram of contexts in Privacy Pass</name>
          <artwork><![CDATA[
+-------------------------------------------------------------------+
| Redemption Context                                                |
|  +--------+         +--------+                                    |
|  |        |         |        |                                    |
|  | Origin |---------| Client |                                    |
|  |        |         |        |                                    |
|  +--------+         +--------+                                    |
|                                                                   |
+-------------------------------------------------------------------+
| Issuance Context                                                  |
|                     +--------+      +----------+      +--------+  |
|                     |        |      |          |      |        |  |
|                     | Client |------| Attester |------| Issuer |  |
|                     |        |      |          |      |        |  |
|                     +--------+      +----------+      +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="privacy-preserving-measurement">
        <name>Privacy Preserving Measurement</name>
        <t>The Privacy Preserving Measurement (PPM) working group is chartered to develop protocols and systems
that help a data aggregation or collection server (or multiple, non-colluding servers) compute aggregate
values without learning the value of any one client's individual measurement. Distributed Aggregation
Protocol (DAP) is the primary working item of the group.</t>
        <t>At a high level, DAP uses a combination of cryptographic protection (in the form of secret sharing amongst
non-colluding servers) to establish two contexts: an "upload context" between clients and non-colluding
aggregation servers wherein aggregation servers possibly learn client identity but nothing about their individual
measurement reports, and a "collect context" wherein a collector learns aggregate measurement results and nothing
about individual client data.</t>
        <figure anchor="pa-topology">
          <name>Diagram of contexts in DAP</name>
          <artwork><![CDATA[
+-------------------------------------+--------------------+
| Upload Context                      | Collect Context    |
|                     +------------+  |                    |
|              +------>   Helper   |  |                    |
| +--------+   |      +------^-----+  |                    |
| |        +---+             |        |   +-----------+    |
| | Client |                 |        |   | Collector |    |
| |        +---+             |        |   +-----+-----+    |
| +--------+   |      +------V-----+  |         |          |
|              +------>   Leader   <------------+          |
|                     +------------+  |                    |
+-------------------------------------+--------------------+
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="applying-privacy-partioning">
      <name>Applying Privacy Partioning</name>
      <t>Applying privacy partitioning to an existing or new system or protocol requires the following steps:</t>
      <ol spacing="normal" type="1"><li>Identify the types of information used or exposed in a system or protocol, some of which can be used to identify a user or correlate to other contexts.</li>
        <li>Partition data to minimize the amount of user-identifying or correlatable information in any given context to only include what is necessary for that context, and prevent sharing of data across contexts wherever possible.</li>
      </ol>
      <t>The most impactful types of information to partition are (a) user identity or identities (such as an account name or IP address) that can be linked and (b) user data (such as the content a user is accessing), which can be often sensitive when combined with user identity. Note that user data can itself be user-identifying, in which case it should be treated as an identifier.
For example, Oblivious DoH and Oblivious HTTP partition the client IP address and client request data into
separate contexts, thereby ensuring that no entity beyond the client can observe both. Collusing across contexts
may reverses this partition process, but can also promote non-user-identifying information to user-identifying.
For example, in CONNECT proxy systems that use QUIC, the QUIC connection ID is inherently non-user-identifying
since it is generated randomly <xref section="5.1" sectionFormat="comma" target="QUIC"/>. However, if combined with another context that has user-identifying
information such as the client IP address, the QUIC connection ID can become user-identifying information.</t>
      <t>This partitioning process can be applied incorrectly or incompletely. Contexts may contain
more user-identifying information than desired, or some information in a context may be more user-identifying
than intended. Moreover, splitting user-identifying information over multiple contexts has to be done with care, as creating more contexts can increase the number of entities that need to be trusted to not collude.
Nevertheless, partitions can help improve the client's privacy posture when applied carefully.</t>
      <t>Evaluating and qualifying the resulting privacy of a system or protocol that applies privacy partitioning depends
on the contexts that exist and types of user-identifying information in each context. Such evaluation is
helpful for identifying ways in which systems or protocols can improve their privacy posture. For example,
consider DNS-over-HTTPS <xref target="DOH"/>, which produces a single context which contains both the client IP
address and client query. One application of privacy partitioning results in ODoH, which produces two contexts,
one with the client IP address and the other with the client query.</t>
      <t>Recognizing potential appliations of privacy partitoning requires identifying the contexts in use, the information
exposed in a context, and the intent of information exposed in a context. Unfortunately, determing what
information to include in a given context is a nontrivial task. In principle, the information contained
in a context should be fit for purpose. As such, new systems or protocols developed should aim to
ensure that all information exposed in a context serves as few purposes as possible. Designing with this
principle from the start helps mitigate issues that arise if users of the system or protocol inadvertently
ossify on the information available in contexts. Legacy systems that have ossified on information available
in contexts may be difficult to change in practice. As an example, many existing anti-abuse systems
depend on some notion of client identity such as client IP address, coupled with client data, to provide
value. Partitioning contexts in these systems such that they no longer see the client identity requires new
solutions to the anti-abuse problem.</t>
    </section>
    <section anchor="limits">
      <name>Limits of Privacy Partitioning</name>
      <t>Privacy Partitioning aims to increase user privacy, though as stated is not a panacea.
The privacy properties depend on numerous factors, including, though not limited to:</t>
      <ul spacing="normal">
        <li>Non-collusion across contexts; and</li>
        <li>The type of information exposed in each context.</li>
      </ul>
      <t>We elaborate on each below.</t>
      <section anchor="violations-by-collusion">
        <name>Violations by Collusion</name>
        <t>Privacy partitions ensure that only the client, i.e., the entity which is responsible for partitioning,
can link all user-specific information together up to collusion. No other entity individually
knows how to link all the user-specific information as long as they do not collude with each other
across contexts. This is why non-collusion is a fundamental requirement for privacy partitioning
to offer meaningful privacy for end-users.</t>
        <t>As an example, consider OHTTP, wherein the Oblivious Relay knows the Client identity but not
the Client data, and the Oblivious Gateway knows the Client data but not the Client identity.
If the Oblivious Relay and Gateway collude, they can link Client identity and data together
for each request and response transaction by simply observing the requests in transit.</t>
        <t>It is not currently possible to guarantee with technical protocol measure that two
entities are not colluding. However, there are some mitigations that can be applied
to reduce the risk of collusion happening in practice:</t>
        <ul spacing="normal">
          <li>Policy and contractual agreements between entities involved in partitioning, to disallow
logging or sharing of data, or to require auditing.</li>
          <li>Protocol requirements to make collusion or data sharing more difficult.</li>
          <li>Adding more partitions and contexts, to make it increasingly difficult to collude with
enough parties to recover identities.</li>
        </ul>
      </section>
      <section anchor="violations-by-insufficient-partitioning">
        <name>Violations by Insufficient Partitioning</name>
        <t>It is possible to define contexts that contain more than one type of user-specific information,
despite effort to do otherwise. As an example, consider OHTTP used for the purposes of hiding
client-identifying information for a browser telemetry system. It is entirely possible for reports
in such a telemetry system to contain both client-specific telemetry data, such as information
about their specific browser instance, as well as client-identifying inforamtion, such as the client's
location or IP address. Even though OHTTP separates the client IP address from the server via
a relay, the server still learns this directly from the client.</t>
        <t>Other relevant examples of insufficient partitioning include TLS and Encrypted Client Hello (ECH) <xref target="I-D.ietf-tls-esni"/>
and VPNs. TLS and ECH use cryptographic protection (encryption) to hide information from unauthorized parties,
but both clients and servers (two entities) can link user-specific data to user-specific identity (IP address).
Similarly, while VPNs hide identity from end servers, the VPN server has still can see the identity of both the
client and server. Applying privacy partitioning would advocate for at least two additional entities to avoid
revealing both (identity (who) and user actions (what)) from each involved party.</t>
        <t>While straightforward violations of user privacy like this may seem straightforward to mitigate, it
remains an open problem to determine whether a certain set of information reveals "too much" about a
specific user. There is ample evidence of data being assumed "private" or "anonymous" but, in hindsight,
winds up revealing too much information such that it allows one to link back to individual
clients; see <xref target="DataSetReconstruction"/> and <xref target="CensusReconstruction"/>
for more examples of this in the real world, and see <xref target="security-considerations"/> for more discussion.</t>
      </section>
    </section>
    <section anchor="impacts-of-partitioning">
      <name>Impacts of Partitioning</name>
      <t>Applying privacy partitioning to communication protocols lead to a substantial change in communication patterns.
For example, instead of sending traffic directly to a service, essentially all user traffic is routed through
a set of intermediaries, possibly adding more end-to-end round trips in the process (depending on the system
and protocol). This has a number of practical implications, described below.</t>
      <ol spacing="normal" type="1"><li>Service operational or management challenges. Information that is traditionally passively observed in the
network or metadata that has been unintentionally revealed to the service provider cannot be used anymore
for e.g. existing security procedures such as application rate limiting or DDoS mitigation.
However, network management techniques deployed at present often rely on information that is exposed by
most traffic but without any guarantees that the information is accurate. Privacy partitioning provides
an opportunity for improvements in these management techniques by providing opportunities to actively
exchange information with each entity in a privacy-preserving way and requesting exactly the information
needed for a specific task or function rather then relying on assumption that are derived on a limited
set of unintentionally revealed information which cannot be guaranteed to be present and may disappear
any time in future.</li>
        <li>Varying performance effects. Depending on how context separation is done, privacy partitioning may
affect application performance. As an example, Privacy Pass introduces an entire end-to-end round
trip to issue a token before it can be redeemed, thereby decreasing perormance. In contrast, while
systems like CONNECT proxying may seem like they would regress performance, often times the highly
optimized nature of proxy-to-proxy paths leads to improved perforamnce. In general, while performance
and privacy tradeoffs are often cast as a zero sum game, in reality this is often not the case.</li>
      </ol>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t><xref target="limits"/> discusses some of the limitations of privacy partitioning in practice. In general,
privacy is best viewed as a spectrum and not a binary state (private or not). Applied correctly,
partitioning helps improve an end-users privacy posture, thereby making violations harder to
do via technical, social, or policy means. For example, side channels such as traffic analysis
<xref target="I-D.irtf-pearg-website-fingerprinting"/> or timing analysis are still possible and can allow
an unauthorized entity to learn information about a context they are not a participant of.
Proposed mitigations for these types of attacks, e.g., padding application traffic or generating
fake traffic, can be very expensive and are therefore not typically applied in practice.
Nevertheless, privacy partitioning moves the threat vector from one that has direct access to
user-specific information to one which requires more effort, e.g., computational resources,
to violate end-user privacy.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>Informative References</name>
      <reference anchor="CensusReconstruction" target="https://www.census.gov/data/academy/webinars/2021/disclosure-avoidance-series/simulated-reconstruction-abetted-re-identification-attack-on-the-2010-census.html">
        <front>
          <title>The Census Bureau's Simulated Reconstruction-Abetted Re-identification Attack on the 2010 Census</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="RFC6973">
        <front>
          <title>Privacy Considerations for Internet Protocols</title>
          <author fullname="A. Cooper" initials="A." surname="Cooper">
            <organization/>
          </author>
          <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
            <organization/>
          </author>
          <author fullname="B. Aboba" initials="B." surname="Aboba">
            <organization/>
          </author>
          <author fullname="J. Peterson" initials="J." surname="Peterson">
            <organization/>
          </author>
          <author fullname="J. Morris" initials="J." surname="Morris">
            <organization/>
          </author>
          <author fullname="M. Hansen" initials="M." surname="Hansen">
            <organization/>
          </author>
          <author fullname="R. Smith" initials="R." surname="Smith">
            <organization/>
          </author>
          <date month="July" year="2013"/>
          <abstract>
            <t>This document offers guidance for developing privacy considerations for inclusion in protocol specifications.  It aims to make designers, implementers, and users of Internet protocols aware of privacy-related design choices.  It suggests that whether any individual RFC warrants a specific privacy considerations section will depend on the document's content.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="6973"/>
        <seriesInfo name="DOI" value="10.17487/RFC6973"/>
      </reference>
      <reference anchor="CONNECT-UDP">
        <front>
          <title>HTTP Datagrams and the Capsule Protocol</title>
          <author fullname="D. Schinazi" initials="D." surname="Schinazi">
            <organization/>
          </author>
          <author fullname="L. Pardue" initials="L." surname="Pardue">
            <organization/>
          </author>
          <date month="August" year="2022"/>
          <abstract>
            <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
            <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
            <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9297"/>
        <seriesInfo name="DOI" value="10.17487/RFC9297"/>
      </reference>
      <reference anchor="CONNECT-IP">
        <front>
          <title>IP Proxying Support for HTTP</title>
          <author fullname="Tommy Pauly" initials="T." surname="Pauly">
            <organization>Apple Inc.</organization>
          </author>
          <author fullname="David Schinazi" initials="D." surname="Schinazi">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Alex Chernyakhovsky" initials="A." surname="Chernyakhovsky">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Mirja Kühlewind" initials="M." surname="Kühlewind">
            <organization>Ericsson</organization>
          </author>
          <author fullname="Magnus Westerlund" initials="M." surname="Westerlund">
            <organization>Ericsson</organization>
          </author>
          <date day="27" month="September" year="2022"/>
          <abstract>
            <t>   This document describes a method of proxying IP packets over HTTP.
   This protocol is similar to CONNECT-UDP, but allows transmitting
   arbitrary IP packets, without being limited to just TCP like CONNECT
   or UDP like CONNECT-UDP.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-masque-connect-ip-03"/>
      </reference>
      <reference anchor="OHTTP">
        <front>
          <title>Oblivious HTTP</title>
          <author fullname="Martin Thomson" initials="M." surname="Thomson">
            <organization>Mozilla</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="26" month="September" year="2022"/>
          <abstract>
            <t>   This document describes a system for forwarding encrypted HTTP
   messages.  This allows a client to make multiple requests to an
   origin server without that server being able to link those requests
   to the client or to identify the requests as having come from the
   same client, while placing only limited trust in the nodes used to
   forward the messages.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-ohai-ohttp-05"/>
      </reference>
      <reference anchor="HPKE">
        <front>
          <title>Hybrid Public Key Encryption</title>
          <author fullname="R. Barnes" initials="R." surname="Barnes">
            <organization/>
          </author>
          <author fullname="K. Bhargavan" initials="K." surname="Bhargavan">
            <organization/>
          </author>
          <author fullname="B. Lipp" initials="B." surname="Lipp">
            <organization/>
          </author>
          <author fullname="C. Wood" initials="C." surname="Wood">
            <organization/>
          </author>
          <date month="February" year="2022"/>
          <abstract>
            <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
            <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9180"/>
        <seriesInfo name="DOI" value="10.17487/RFC9180"/>
      </reference>
      <reference anchor="ODOH">
        <front>
          <title>Oblivious DNS over HTTPS</title>
          <author fullname="E. Kinnear" initials="E." surname="Kinnear">
            <organization/>
          </author>
          <author fullname="P. McManus" initials="P." surname="McManus">
            <organization/>
          </author>
          <author fullname="T. Pauly" initials="T." surname="Pauly">
            <organization/>
          </author>
          <author fullname="T. Verma" initials="T." surname="Verma">
            <organization/>
          </author>
          <author fullname="C.A. Wood" initials="C.A." surname="Wood">
            <organization/>
          </author>
          <date month="June" year="2022"/>
          <abstract>
            <t>This document describes a protocol that allows clients to hide their IP addresses from DNS resolvers via proxying encrypted DNS over HTTPS (DoH) messages. This improves privacy of DNS operations by not allowing any one server entity to be aware of both the client IP address and the content of DNS queries and answers.</t>
            <t>This experimental protocol has been developed outside the IETF and is published here to guide implementation, ensure interoperability among implementations, and enable wide-scale experimentation.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9230"/>
        <seriesInfo name="DOI" value="10.17487/RFC9230"/>
      </reference>
      <reference anchor="PRIVACYPASS">
        <front>
          <title>The Privacy Pass Architecture</title>
          <author fullname="Alex Davidson" initials="A." surname="Davidson">
            <organization>LIP</organization>
          </author>
          <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
            <organization>Fastly</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="17" month="October" year="2022"/>
          <abstract>
            <t>   This document specifies the Privacy Pass architecture and
   requirements for its constituent protocols used for constructing
   anonymous-credential authentication mechanisms.  It provides
   recommendations on how the architecture should be deployed to ensure
   the privacy of clients and the security of all participating
   entities.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-08"/>
      </reference>
      <reference anchor="QUIC">
        <front>
          <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
          <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
            <organization/>
          </author>
          <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
            <organization/>
          </author>
          <date month="May" year="2021"/>
          <abstract>
            <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9000"/>
        <seriesInfo name="DOI" value="10.17487/RFC9000"/>
      </reference>
      <reference anchor="DOH">
        <front>
          <title>DNS Queries over HTTPS (DoH)</title>
          <author fullname="P. Hoffman" initials="P." surname="Hoffman">
            <organization/>
          </author>
          <author fullname="P. McManus" initials="P." surname="McManus">
            <organization/>
          </author>
          <date month="October" year="2018"/>
          <abstract>
            <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS.  Each DNS query-response pair is mapped into an HTTP exchange.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8484"/>
        <seriesInfo name="DOI" value="10.17487/RFC8484"/>
      </reference>
      <reference anchor="I-D.ietf-tls-esni">
        <front>
          <title>TLS Encrypted Client Hello</title>
          <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
            <organization>RTFM, Inc.</organization>
          </author>
          <author fullname="Kazuho Oku" initials="K." surname="Oku">
            <organization>Fastly</organization>
          </author>
          <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="3" month="October" year="2022"/>
          <abstract>
            <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-15"/>
      </reference>
      <reference anchor="DataSetReconstruction">
        <front>
          <title>Robust De-anonymization of Large Sparse Datasets</title>
          <author fullname="Arvind Narayanan" initials="A." surname="Narayanan">
            <organization/>
          </author>
          <author fullname="Vitaly Shmatikov" initials="V." surname="Shmatikov">
            <organization/>
          </author>
          <date month="May" year="2008"/>
        </front>
        <seriesInfo name="2008 IEEE Symposium on Security and Privacy (sp" value="2008)"/>
        <seriesInfo name="DOI" value="10.1109/sp.2008.33"/>
      </reference>
      <reference anchor="I-D.irtf-pearg-website-fingerprinting">
        <front>
          <title>Network-Based Website Fingerprinting</title>
          <author fullname="Ian Goldberg" initials="I." surname="Goldberg">
            <organization>University of Waterloo</organization>
          </author>
          <author fullname="Tao Wang" initials="T." surname="Wang">
            <organization>HK University of Science and Technology</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="8" month="September" year="2020"/>
          <abstract>
            <t>   The IETF is well on its way to protecting connection metadata with
   protocols such as DNS-over-TLS and DNS-over-HTTPS, and work-in-
   progress towards encrypting the TLS SNI.  However, more work is
   needed to protect traffic metadata, especially in the context of web
   traffic.  In this document, we survey Website Fingerprinting attacks,
   which are a class of attacks that use machine learning techniques to
   attack web privacy, and highlight metadata leaks used by said
   attacks.  We also survey proposed mitigations for such leakage and
   discuss their applicability to IETF protocols such as TLS, QUIC, and
   HTTP.  We endeavor to show that Website Fingerprinting attacks are a
   serious problem that affect all Internet users, and we pose open
   problems and directions for future research in this area.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-irtf-pearg-website-fingerprinting-01"/>
      </reference>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+U923Ibx5Xv/RVd9EPIGIAkey+JvN6EpuQVK7HENWmn9mWr
GoMGMMvBNDI9IASLypft2/7YnltfZjCgRJPasrOoVEwBM92nT58+9z5nPB6r
tmwr+1wfXZgG/ixdXdYLbbw2tT5timXZ2qLdNFbPXaMvmvLGFLsjZabTxt70
3+o8UpjWLlyze67Leu6UbxtrVs/1+ek3Ss1cUZsVzDprzLwdX6+349JMx2t+
d7zOBh0/fapgoi/Vtd1tXTODEerWNrVtxy/wZaXMpl265rnSY6XhM99UFQ/+
Xdn8l9F/+p//XlZ2W9Yz+tk1C1OXPxkc/rl+2ZSF967W31tvDSyXnrErU1bP
9Qrfn1xvrLz/RytPTwq32p/uyq1WO31hNtVuYKbT9bqy+ejtGp/8o8Hvhwc8
Wzalb916aRt9OtF/cW5oCWeV28zmlWk6oxdm+8elNWvA4LRs/QTwpVTtmhW8
dWOfK4WbEv+l9Zmt/cZ/bwtXw05tChqbBhT6uFpaeUh/A+RgNr/x+rJcbSrY
5pnuvjg+ndqWvx6XM1u35bwsCFx92ramuNbwVwsDfvH02VMZlecyzcK2z/Wy
bdf++ZMn2+12UtDPk4W7eTIzrXliCjOzq92TrZ2WtWn8ky+efvHsyaz0ReU8
QDY2N66cmbqwYw8bZv0TH8AcN10wDYMJX/fAHBsCcwx/AZhjBHMscCzbVaWU
Go/H2kxhKFMAYq+WpddA1JsVjKJn1hdNObWe1ghEXRclbLJ2cy0UrnMKH+nt
siyW2tsKjhrsR7XTfg0onsGYsGI4iTMNBLLa1AGLpmic9wqW1dLINBzMh8dW
r6ypYWqny9W6cTc2QEETT2FsC4/DOHBgN4AhzUtvd3reuBV/hdNODq7Krmyz
wNfXgCY4ih5OOEzgWle4imaOy4OlmTatYmVbQ/8ovQL+YU0FRNIuG7dZLOMI
MBqMamiL/Ai/vgEQPaEA6cY2q7J2lVvsRjQobv3Ge3hi6bYKZje1qXY/We03
gNWVm9nKT3jHVuVsBqdQfYZMpHEzpgOlLiLw9A6g8erPlzT4+YW3RYABkAv/
QmZ4jEwH0VYQ+eOTti6a3Rr+daKLpalrWykgr621APLWwc+ztYOVeQ1b0siW
py+BkGo/x90I5xLYjH7JY9KWwxTZpAg20BMjs+bXyxbwqmtbWO9Ns6ONgIUB
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
4/1O+YBXbnl12WMfZICBxQ1zrNvBt/4V/nwFxxUOInPZQy932OxtZ4z//ODM
8YfPx3253hECe5mJ/PJB5aTzckSaa/iH+8/8eXfmO9b84/6ac/F1B7b/zMn/
Wv9Lb98Ovtwd40P7/CDyDAJpbcatW1NfhA8IImBrJH+oJwndoeoUgJV7Xad3
3cWSyBsVeaT7hFzfLZQKbVKXgHijre3eE2vtWm5GnkvpV75KEmzf3BKha2p0
YRCt01mnnGo214jLTNKV3xD+y0pchhKzUj+WRZtUAUrGd0AU3bRMV91iiXKp
Q8r3s1LRU7rYmxexzUYnD0OnQmNNYo6vdwZLioq90kVVLtYm15Z7bRO48mEo
pMnXlPiqYhAxsVpm90Ix81qU3sLjrZQtXzkwScvVGgz5+aYa3oDONVhD/S9O
es1DYgFyuv14HEvi1/GyJTa16dblPZHldKoY4pqOpyepEUkaLC9/JZtY+tTs
4GTU3XgubOgtNlcoqex+ViGSnQqdNUz06xgTTLPjYHyHWoips89YJC/O6i16
6PwyXGBqqYLK0A3LToWUzBHpXtH6e17LhPssJp3QqJNnJvoYpPYVFl/p38If
8W24vRq6tQs3ybMSxaEKSyrPSMHmCTFuvlPZIzS1Mlxlt+FCo2V20xmPakEF
mYP/i+Ky8O0KMY+6y95B6tFh//ceLmE3wpVGSerOK31jyZp//+H8jK9j4V95
nPf8BbcGWVq5sDoEj+KeAVyrPpQ6mOkG9sCt4J137/6A45Lz+OnTpyN9KaP/
4+TZ+/dZFfVy3qNFqX2TGALp5cbvLbnTLaVzNvqUcXCdfEKw6vo+5xooLN1h
/bKHffcloAX5HeVPIDOo+ZJ9a9HfHeoH65WE5k1Z81X8u/d7SRkcHgTIjIp4
E4Pvs9KIMRx8Km70PaTRWKFEM190dbQRVJ0otkM6CAsFCOK138hWcYO4hMQM
zRZ2VQKLpPudVEIJB5KqA1mZOsAP1nJnOVJvVlOUSPNesbusQEXbbLyUxuW0
FVTxgYe/RmqCMSra7qxoBE5CVl3eBipaVf1K8cQbw1Yi/NiGDOMCL9EyM224
af1XULAFOe1g6XmquTigB7BTXOIogyoF15b1ynUqpwomSNNgJ2fuHT+4W1jI
HG92xDSQSzwnVhZDpawUYgdF3rzXPAOLViS2HquHN5n9TDuY8Fo2fYT2KhzE
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
4UlA6/8CSgYgqWuPAAA=

-->

</rfc>
