<?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.7.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-ppm-dap-taskprov-01" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title abbrev="DAP-Taskprov">Task Binding and In-Band Provisioning for DAP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-ppm-dap-taskprov-01"/>
    <author fullname="Shan Wang">
      <organization>Apple Inc.</organization>
      <address>
        <email>shan_wang@apple.com</email>
      </address>
    </author>
    <author fullname="Christopher Patton">
      <organization>Cloudflare</organization>
      <address>
        <email>chrispatton+ietf@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="November" day="03"/>
    <area>Security</area>
    <workgroup>Privacy Preserving Measurement</workgroup>
    <keyword>next generation</keyword>
    <keyword>unicorn</keyword>
    <keyword>sparkling distributed ledger</keyword>
    <abstract>
      <?line 47?>

<t>An extension for the Distributed Aggregation Protocol (DAP) is specified that
cryptographically binds the parameters of a task to the task's execution. In
particular, when a client includes this extension with its report, the servers
will only aggregate the report if all parties agree on the task parameters.
This document also specifies an optional mechanism for in-band task
provisioning that builds on the report extension.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-ppm.github.io/draft-ietf-ppm-dap-taskprov/draft-ietf-ppm-dap-taskprov.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-ppm-dap-taskprov/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Privacy Preserving Measurement Working Group mailing list (<eref target="mailto:ppm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ppm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ppm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-ppm/draft-ietf-ppm-dap-taskprov"/>.</t>
    </note>
  </front>
  <middle>
    <?line 57?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>(RFC EDITOR: Remove this paragraph.) This draft is maintained in
https://github.com/ietf-wg-ppm/draft-ietf-ppm-dap-taskprov.</t>
      <t>The DAP protocol <xref target="DAP"/> enables secure aggregation
of a set of reports submitted by Clients. This process is centered around a
"task" that determines, among other things, the cryptographic scheme to use for
the secure computation (a Verifiable Distributed Aggregation Function
<xref target="VDAF"/>), how reports are partitioned into
batches, and privacy parameters such as the minimum size of each batch. See
<xref section="4.3" sectionFormat="of" target="DAP"/> for a complete listing.</t>
      <t>In order to execute a task securely, it is required that all parties agree on
all parameters associated with the task. However, the core DAP specification
does not specify a mechanism for accomplishing this. In particular, it is
possible that the parties successfully aggregate and collect a batch, but some
party does not know the parameters that were enforced.</t>
      <t>A desirable property for DAP to guarantee is that successful execution implies
agreement on the task parameters. On the other hand, disagreement between a
Client and the Aggregators should prevent reports uploaded by that Client from
being processed.</t>
      <t><xref target="definition"/> specifies a report extension (<xref section="4.4.3" sectionFormat="of" target="DAP"/>) that
endows DAP with this property. First, it specifies an encoding of all task
parameters that are relevant to all parties. This excludes cryptographic
assets, such as the secret VDAF verification key (<xref section="5" sectionFormat="of" target="VDAF"/>) or
the public HPKE configurations <xref target="RFC9180"/> of the aggregators or collector.
Second, the task ID is computed by hashing the encoded parameters. If a report
includes the extension, then each aggregator checks if the task ID was computed
properly: if not, it rejects the report. This cryptographic binding of the task
to its parameters ensures that the report is only processed if the Client and
Aggregator agree on the task parameters.</t>
      <t>One reason this task-binding property is desirable is that it makes the process
by which parties are provisioned with task parameters more robust. This is
because misconfiguration of a party would manifest in a server's telemetry as
report rejection. This is preferable to failing silently, as misconfiguration
could result in privacy loss.</t>
      <t><xref target="taskprov"/> specifies one possible mechanism for provisioning DAP tasks that
is built on top of the extension in <xref target="definition"/>. Its chief design goal is to
make task configuration completely in-band, via HTTP request headers. Note that
this mechanism is an optional feature of this specification; it is not required
to implement the DAP report extension in <xref target="definition"/>.</t>
      <section anchor="change-log">
        <name>Change Log</name>
        <t>(RFC EDITOR: Remove this section.)</t>
        <t>(*) Indicates a change that breaks wire compatibility with the previous draft.</t>
        <t>01:</t>
        <ul spacing="normal">
          <li>
            <t>Add an extension point to the <tt>TaskConfig</tt> structure and define rules for
processing extensions. (*)</t>
          </li>
          <li>
            <t>Remove DP mechanisms. (*)</t>
          </li>
          <li>
            <t>Add guidelines for extending this document to account for new VDAFs or DAP
batch modes. Improve the extension points for these in <tt>TaskConfig</tt> in order
to make this easier. (*)</t>
          </li>
          <li>
            <t>Add a salt to the task ID computation. (*)</t>
          </li>
          <li>
            <t>Harmonize task lifetime parameters with <xref target="DAP"/> by adding a task start time
and replacing the task end time with a task duration. (*)</t>
          </li>
          <li>
            <t>Harmonize batch mode parameters with <xref target="DAP"/> by removing the deprecated
<tt>max_batch_query_count</tt> and <tt>max_batch_size</tt> parameters. (*)</t>
          </li>
          <li>
            <t>Task provisioning: Remove guidance for per-task HPKE configurations, as this
feature was deprecated by DAP.</t>
          </li>
          <li>
            <t>Bump draft-ietf-ppm-dap-12 to 13 <xref target="DAP"/>. (*)</t>
          </li>
          <li>
            <t>Bump draft-irtf-cfrg-vdaf-12 to 13 <xref target="VDAF"/>.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>This document uses the same conventions for error handling as <xref target="DAP"/>. In
addition, this document extends the core specification by adding the following
error types:</t>
      <table anchor="urn-space-errors">
        <thead>
          <tr>
            <th align="left">Type</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">invalidTask</td>
            <td align="left">An Aggregator has opted out of the indicated task as described in <xref target="provisioning-a-task"/></td>
          </tr>
        </tbody>
      </table>
      <t>The terms used follow those described in <xref target="DAP"/>. The following new terms are
used:</t>
      <dl>
        <dt>Task configuration:</dt>
        <dd>
          <t>The non-secret parameters of a task.</t>
        </dd>
        <dt>Task author:</dt>
        <dd>
          <t>The entity that defines a task's configuration in the provisioning mechanism of <xref target="taskprov"/>.</t>
        </dd>
      </dl>
    </section>
    <section anchor="definition">
      <name>The Taskbind Extension</name>
      <t>To use the Taskbind extension, the Client includes the following extension in
the report extensions for each Aggregator as described in <xref section="4.4.3" sectionFormat="of" target="DAP"/>:</t>
      <artwork><![CDATA[
enum {
    taskbind(0xff00),
    (2^16-1)
} ExtensionType;
]]></artwork>
      <t>The payload of the extension <bcp14>MUST</bcp14> be empty. If the payload is non-empty, then
the Aggregator <bcp14>MUST</bcp14> reject the report.</t>
      <t>When the client uses the Taskbind extension, it computes the task ID (<xref section="4.2" sectionFormat="of" target="DAP"/>) as follows:</t>
      <artwork><![CDATA[
task_id = SHA-256(SHA-256("dap-taskprov task id") || task_config)
]]></artwork>
      <t>where <tt>task_config</tt> is a <tt>TaskConfig</tt> structure defined in <xref target="task-encoding"/>.
Function SHA-256() is as defined in <xref target="SHS"/>.</t>
      <t>The task ID is bound to each report share (via HPKE authenticated and
associated data, see <xref section="4.4.2" sectionFormat="of" target="DAP"/>). Binding the parameters to the
ID this way ensures, in turn, that the report is only aggregated if the Client
and Aggregator agree on the parameters. This is accomplished by the Aggregator
behavior below.</t>
      <t>During aggregation (<xref section="4.6" sectionFormat="of" target="DAP"/>), each Aggregator processes a
report with the Taskbind extension as follows.</t>
      <t>First, it looks up the ID and parameters associated with the task. Note the
task has already been configured; otherwise the Aggregator would have already
aborted the request due to not recognizing the task.</t>
      <t>Next, the Aggregator encodes the parameters as a <tt>TaskConfig</tt> defined in
<xref target="task-encoding"/> and computes the task ID as above. If the derived task ID
does not match the task ID of the request, then it <bcp14>MUST</bcp14> reject the report with
error "invalid_message".</t>
      <t>During the upload flow (<xref section="4.4" sectionFormat="of" target="DAP"/>), the Leader <bcp14>SHOULD</bcp14> abort the
request with "unrecognizedTask" if the derived task ID does not match the task
ID of the request.</t>
      <section anchor="task-encoding">
        <name>Task Encoding</name>
        <t>The task configuration is encoded as follows:</t>
        <artwork><![CDATA[
uint32 VdafType; /* As defined in Section 10 of [VDAF] */

struct {
    /* Info specific for a task. */
    opaque task_info<1..2^8-1>;

    /* Leader API endpoint. */
    Url leader_aggregator_endpoint;

    /* Helper API endpoint. */
    Url helper_aggregator_endpoint;

    /* Time precision. */
    Duration time_precision;

    /* Minimum batch size. */
    uint32 min_batch_size;

    /* The batch mode and its parameters. */
    BatchMode batch_mode;
    opaque batch_config<1..2^16-1>;

    /* The earliest timestamp that will be accepted for this task. */
       task. */
    Time task_start;

    /* The duration of the task. */
    Duration task_duration;

    /* Determines the VDAF type and its config parameters. */
    VdafType vdaf_type;
    opaque vdaf_config<1..2^16-1>;

    /* Taskbind Extensions. */
    TaskbindExtension extensions<0..2^16-1>;
} TaskConfig;
]]></artwork>
        <t>The purpose of <tt>TaskConfig</tt> is to define all parameters that are necessary for
configuring each party. It includes all parameters listed in <xref section="4.3" sectionFormat="of" target="DAP"/> as well as two additional fields:</t>
        <ul spacing="normal">
          <li>
            <t><tt>task_info</tt> is an opaque field whose contents are specific to the deployment.
For example, this might be a human-readable string describing the purpose of
this task.</t>
          </li>
          <li>
            <t><tt>extensions</tt> is a list of extensions to this document. The format and
semantics of extensions are describe in <xref target="taskbind-extensions"/>.</t>
          </li>
        </ul>
        <t>This structure does not include cryptographic assets shared by only a subset of
the parties, including the secret VDAF verification key <xref target="VDAF"/> or public
HPKE configurations <xref target="RFC9180"/>.</t>
        <t>The <tt>batch_mode</tt> field indicates the DAP batch mode and corresponds to a
codepoint in the Batch Modes Registry.</t>
        <ul empty="true">
          <li>
            <t>TODO Add a reference to the IANA registry for batch modes created by
<xref target="DAP"/>.</t>
          </li>
        </ul>
        <t>The <tt>batch_config</tt> field contains any parameters that are required for
configuring the batch mode. For the time-interval and leader-selected batch
modes specified in <xref target="DAP"/>, the payload is empty. Batch modes defined by
future documents may specify a non-empty payload; see <xref target="extending-this-doc"/>
for details. The length prefix of the <tt>batch_config</tt> ensures that the batch
config can be decoded even if the batch mode is unrecognized.</t>
        <t>The <tt>vdaf_type</tt> field indicates the VDAF for the task and corresponds to a
codepoint in the VDAF Identifiers registry.</t>
        <ul empty="true">
          <li>
            <t>TODO: Add a reference to the IANA registry created by <xref target="VDAF"/>.</t>
          </li>
        </ul>
        <t>The <tt>vadf_config</tt> field contains parameters necessary to configure an instance
of the VDAF. <xref target="vdaf-config"/> defines a suitable encoding of the configuration
for each VDAF specified in <xref target="VDAF"/>. VDAFs defined by future documents may
also use this field as well; see <xref target="extending-this-doc"/> for details.</t>
        <t>The length prefix of the <tt>vdaf_config</tt> ensures that VDAF config can be decoded
even if the VDAF type is not recognized.</t>
        <t>The definition of <tt>Time</tt>, <tt>Duration</tt>, <tt>Url</tt>, and <tt>BatchMode</tt> follow those in
<xref target="DAP"/>.</t>
      </section>
      <section anchor="vdaf-config">
        <name>VDAF config</name>
        <t>This section defines the payload of <tt>TaskConfig.vdaf_config</tt> for each VDAF
specified in <xref target="VDAF"/>. In some cases, the VDAF supports more than two
Aggregators; but since DAP only supports two Aggregators, we do not include the
number of Aggregators in the encoding (cf. <xref section="C" sectionFormat="of" target="VDAF"/>).</t>
        <section anchor="prio3count">
          <name>Prio3Count</name>
          <t>The payload is empty.</t>
        </section>
        <section anchor="prio3sum">
          <name>Prio3Sum</name>
          <artwork><![CDATA[
struct {
    uint32 max_measurement; /* largest summand */
} Prio3SumConfig;
]]></artwork>
        </section>
        <section anchor="prio3sumvec">
          <name>Prio3SumVec</name>
          <artwork><![CDATA[
struct {
    uint32 length;       /* length of the vector */
    uint8 bits;          /* bit length of each summand */
    uint32 chunk_length; /* size of each proof chunk */
} Prio3SumVecConfig;
]]></artwork>
        </section>
        <section anchor="prio3histogram">
          <name>Prio3Histogram</name>
          <artwork><![CDATA[
struct {
    uint32 length;       /* number of buckets */
    uint32 chunk_length; /* size of each proof chunk */
} Prio3HistogramConfig;
]]></artwork>
        </section>
        <section anchor="prio3multihotcountvec">
          <name>Prio3MultihotCountVec</name>
          <artwork><![CDATA[
struct {
    uint32 length;       /* length of the vector */
    uint32 chunk_length; /* size of each proof chunk */
    uint32 max_weight;   /* largest vector weight /
} Prio3MultihotCountVecConfig;
]]></artwork>
        </section>
        <section anchor="poplar1">
          <name>Poplar1</name>
          <artwork><![CDATA[
struct {
    uint16 bits; /* bit length of the input string */
} Poplar1Config;
]]></artwork>
        </section>
      </section>
      <section anchor="taskbind-extensions">
        <name>Extensions</name>
        <t>The <tt>TaskConfig</tt> structure includes a list of extensions. In general,
extensions can be used to bind additional, application-specific information to
the task. For example, an extension might be used to encode the identity of the
Collector. (Only the Aggregators are identified in <tt>TaskConfig</tt>.)</t>
        <t>Each extension is structured as follows:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  TaskbindExtensionType extension_type;
  opaque extension_data<0..2^16-1>;
} TaskbindExtension;

enum {
  reserved(0),
  (2^16-1)
} TaskbindExtensionType;
]]></sourcecode>
        <t>The <tt>extension_type</tt> identifies the extension and <tt>extension_data</tt> is
structured as specified by the extension.</t>
        <t>Extensions are treated as mandatory-to-implement in the protocol described in
<xref target="taskprov"/>. In particular, protocols participants <bcp14>MUST</bcp14> opt-out of tasks
containing unrecognized extensions. See <xref target="provisioning-a-task"/>.</t>
        <t>Note that Taskbind extensions are semantically distinct from DAP report
extensions and do not share the same codepoint registry
(<xref target="taskbind-extension-registry"/>). Future documents may want to define both a
Taskbind extension and a report extension, but there may also be situations
where a document defines one but not the other.</t>
      </section>
    </section>
    <section anchor="taskprov">
      <name>In-band Task Provisioning with the Taskbind Extension</name>
      <t>Before a task can be executed, it is necessary to first provision the Clients,
Aggregators, and Collector with the task's configuration. The core DAP
specification does not define a mechanism for provisioning tasks. This section
describes a mechanism whose key feature is that task configuration is
performed completely in-band, via HTTP request headers.</t>
      <t>This method presumes the existence of a logical "task author" (written as
"Author" hereafter) who is capable of pushing configurations to Clients. All
parameters required by downstream entities (the Aggregators) are carried by HTTP
headers piggy-backed on the protocol flow.</t>
      <t>This mechanism is designed with the same security and privacy considerations of
the core DAP protocol. The Author is not regarded as a trusted third party: it
is incumbent on all protocol participants to verify the task configuration
disseminated by the Author and opt-out if the parameters are deemed insufficient
for privacy. In particular, adopters of this mechanism should presume the
Author is under the adversary's control. In fact, we expect in a real-world
deployment that the Author may be co-located with the Collector.</t>
      <t>The DAP protocol also requires configuring the entities with a variety of assets
that are not task-specific, but are important for establishing
Client-Aggregator, Collector-Aggregator, and Aggregator-Aggregator
relationships. These include:</t>
      <ul spacing="normal">
        <li>
          <t>The Collector's HPKE <xref target="RFC9180"/> configuration used by the Aggregators to
encrypt aggregate shares.</t>
        </li>
        <li>
          <t>Any assets required for authenticating HTTP requests.</t>
        </li>
      </ul>
      <t>This section does not specify a mechanism for provisioning these assets; as in
the core DAP protocol; these are presumed to be configured out-of-band.</t>
      <t>Note that we consider the VDAF verification key <xref target="VDAF"/>, used by the
Aggregators to aggregate reports, to be a task-specific asset. This document
specifies how to derive this key for a given task from a pre-shared secret,
which in turn is presumed to be configured out-of-band.</t>
      <section anchor="overview">
        <name>Overview</name>
        <t>The process of provisioning a task begins when the Author disseminates the task
configuration to the Collector and each of the Clients. When a Client issues an
upload request to the Leader (as described in <xref section="4.5" sectionFormat="of" target="DAP"/>), it
includes in an HTTP header the task configuration it used to generate the
report. We refer to this process as "task advertisement". Before consuming the
report, the Leader parses the configuration and decides whether to opt-in; if
not, the task's execution halts.</t>
        <t>Otherwise, if the Leader does opt-in, it advertises the task to the Helper
during the aggregation protocol (<xref section="4.6" sectionFormat="of" target="DAP"/>). In particular, it
includes the task configuration in an HTTP header of each aggregation job
request for that task. Before proceeding, the Helper must first parse the
configuration and decide whether to opt-in; if not, the task's execution halts.</t>
      </section>
      <section anchor="task-advertisement">
        <name>Task Advertisement</name>
        <t>To advertise a task to its peer, a protocol participant includes a header
"dap-taskprov" with an HTTP request incident to the task execution. The value
is the <tt>TaskConfig</tt> structure defined <xref target="task-encoding"/>, expanded into its
URL-safe, unpadded Base 64 representation as specified in Sections <xref target="RFC4648" section="5" sectionFormat="bare"/> and <xref target="RFC4648" section="3.2" sectionFormat="bare"/> of <xref target="RFC4648"/>.</t>
      </section>
      <section anchor="vdaf-verify-key">
        <name>Deriving the VDAF Verification Key</name>
        <t>When a Leader and Helper implement this mechanism, they <bcp14>SHOULD</bcp14> compute the
shared VDAF verification key <xref target="VDAF"/> as described in this section.</t>
        <t>The Aggregators are presumed to have securely exchanged a pre-shared secret
out-of-band. The length of this secret <bcp14>MUST</bcp14> be 32 bytes. Let us denote this
secret by <tt>verify_key_init</tt>.</t>
        <t>Let <tt>VERIFY_KEY_SIZE</tt> denote the length of the verification key for the VDAF
indicated by the task configuration. (See <xref section="5" sectionFormat="comma" target="VDAF"/>.)</t>
        <t>The VDAF verification key used for the task is computed as follows:</t>
        <artwork><![CDATA[
verify_key = HKDF-Expand(
    HKDF-Extract(
        SHA-256("dap-taskprov"), # salt
        verify_key_init,         # IKM
    ),
    task_id,                     # info
    VERIFY_KEY_SIZE,             # L
)
]]></artwork>
        <t>where <tt>task_id</tt> is as defined in <xref target="definition"/>. Functions HKDF-Extract() and
HKDF-Expand() are as defined in <xref target="RFC5869"/>. Both functions are instantiated
with <tt>SHA-256()</tt> as defined in <xref target="SHS"/>.</t>
      </section>
      <section anchor="provisioning-a-task">
        <name>Opting into a Task</name>
        <t>Prior to participating in a task, each protocol participant must determine if
the <tt>TaskConfig</tt> disseminated by the Author can be configured. The participant
is said to "opt in" to the task if the derived task ID (see
<xref target="definition"/>) corresponds to an already configured task or the task ID
is unrecognized and therefore corresponds to a new task.</t>
        <t>A protocol participant <bcp14>MAY</bcp14> "opt out" of a task if:</t>
        <ol spacing="normal" type="1"><li>
            <t>The derived task ID corresponds to an already configured task, but the task
configuration disseminated by the Author does not match the existing
configuration.</t>
          </li>
          <li>
            <t>The VDAF config or other parameters are deemed insufficient for privacy.</t>
          </li>
          <li>
            <t>A secure connection to one or both of the Aggregator endpoints could not be
established.</t>
          </li>
          <li>
            <t>The task lifetime is too long.</t>
          </li>
        </ol>
        <t>A protocol participant <bcp14>MUST</bcp14> opt out if:</t>
        <ol spacing="normal" type="1"><li>
            <t>The task has ended.</t>
          </li>
          <li>
            <t>The DAP batch mode or VDAF is not implemented.</t>
          </li>
          <li>
            <t>One of the extensions is not recognized.</t>
          </li>
        </ol>
        <t>The behavior of each protocol participant is determined by whether or not they
opt in to a task.</t>
      </section>
      <section anchor="client-behavior">
        <name>Client Behavior</name>
        <t>Upon receiving a <tt>TaskConfig</tt> from the Author, the Client decides whether to
opt into the task as described in <xref target="provisioning-a-task"/>. If the Client opts
out, it <bcp14>MUST NOT</bcp14> attempt to upload reports for the task.</t>
        <t>Once the client opts into a task, it may begin uploading reports for the task
to the Leader. The extension codepoint <tt>taskbind</tt> <bcp14>MUST</bcp14> be offered in the
<tt>extensions</tt> field of both Leader and Helper's <tt>PlaintextInputShare</tt>. In
addition, each report's task ID <bcp14>MUST</bcp14> be computed as described in <xref target="definition"/>.</t>
        <t>The Client <bcp14>SHOULD</bcp14> advertise the task configuration by specifying the encoded
<tt>TaskConfig</tt> described in <xref target="definition"/> in the "dap-taskprov" HTTP header, but
<bcp14>MAY</bcp14> choose to omit this header in order to save network bandwidth. However, the
Leader may respond with "unrecognizedTask" if it has not been configured with
this task. In this case, the Client <bcp14>MUST</bcp14> retry the upload request with the
"dap-taskprov" HTTP header.</t>
      </section>
      <section anchor="leader-behavior">
        <name>Leader Behavior</name>
        <section anchor="upload-protocol">
          <name>Upload Protocol</name>
          <t>Upon receiving a Client report, if the Leader does not support the <xref target="taskprov"/>
mechanism, it will ignore the "dap-taskprov" HTTP header. In particular, if the
task ID is not recognized, then it <bcp14>MUST</bcp14> abort the upload request with
"unrecognizedTask".</t>
          <t>Otherwise, if the Leader does support this mechanism, it first checks if the
"dap-taskprov" HTTP header is specified. If not present, that means the Client
has skipped task advertisement. If the Leader recognizes the task ID, it will
include the client report in the aggregation of that task ID. Otherwise, it
<bcp14>MUST</bcp14> abort with "unrecognizedTask". The Client will then retry with the task
advertisement.</t>
          <t>If the Client advertises the task, the Leader checks that the task ID indicated
by the upload request matches the task ID derived from the "dap-taskprov" HTTP
header as specified in <xref target="definition"/>. If the task ID does not match, then the
Leader <bcp14>MUST</bcp14> abort with "unrecognizedTask".</t>
          <t>The Leader then decides whether to opt in to the task as described in
<xref target="provisioning-a-task"/>. If it opts out, it <bcp14>MUST</bcp14> abort the upload request with
"invalidTask".</t>
          <t>Finally, once the Leader has opted in to the task, it completes the upload
request as usual.</t>
          <t>During the upload flow, if the Leader's report share does not present a
<tt>taskbind</tt> extension type, the Leader <bcp14>MUST</bcp14> abort the upload request with
"invalidMessage".</t>
        </section>
        <section anchor="aggregation-protocol">
          <name>Aggregation Protocol</name>
          <t>When the Leader opts in to a task, it <bcp14>SHOULD</bcp14> derive the VDAF verification key
for that task as described in <xref target="vdaf-verify-key"/>. The Leader <bcp14>MUST</bcp14> advertise
the task to the Helper in every request incident to the task as described in
<xref target="definition"/>.</t>
        </section>
        <section anchor="collection-protocol">
          <name>Collection Protocol</name>
          <t>The Collector might create a collection job for a task provisioned by this
mechanism prior to opting into the task. In this case, the Leader would need to
abort the collect request with "unrecognizedTask". When it does so, it is up to
the Collector to retry its request.</t>
          <ul empty="true">
            <li>
              <t>OPEN ISSUE: This semantics is awkward, as there's no way for the Leader to
distinguish between Collectors who support this mechanism and those that don't.</t>
            </li>
          </ul>
          <t>The Leader <bcp14>MUST</bcp14> advertise the task in every aggregate share request issued to
the Helper as described in <xref target="task-advertisement"/>.</t>
        </section>
      </section>
      <section anchor="helper-behavior">
        <name>Helper Behavior</name>
        <t>The Leader advertises a task to the Helper during each step of an aggregation
job and when it requests the Heolper's aggregate share during a collection job.</t>
        <t>Upon receiving a task advertisement from the Leader, If the Helper does not
support this mechanism, it will ignore the "dap-taskprov" HTTP header and
process the request as usual. In particular, if the Helper does not recognize
the task ID, it <bcp14>MUST</bcp14> abort the request with error "unrecognizedTask".
Otherwise, if the Helper supports this mechanism, it proceeds as follows.</t>
        <t>First, the Helper attempts to parse payload of the "dap-taskprov" HTTP header.
If this step fails, the Helper <bcp14>MUST</bcp14> abort with "invalidMessage".</t>
        <t>Next, the Helper checks that the task ID indicated in the request matches the
task ID derived from the <tt>TaskConfig</tt> as defined in <xref target="definition"/>. If not, the
Helper <bcp14>MUST</bcp14> abort with "unrecognizedTask".</t>
        <t>Next, the Helper decides whether to opt in to the task as described in
<xref target="provisioning-a-task"/>. If it opts out, it <bcp14>MUST</bcp14> abort the request with
"invalidTask".</t>
        <t>Finally, the Helper completes the request as usual, deriving the VDAF
verification key for the task as described in <xref target="vdaf-verify-key"/>. During an
aggregation job, for any report share that does not include the <tt>taskbind</tt>
extension with an empty payload, the Helper <bcp14>MUST</bcp14> mark the report as invalid
with error "invalid_message" and reject it.</t>
      </section>
      <section anchor="collector-behavior">
        <name>Collector Behavior</name>
        <t>Upon receiving a <tt>TaskConfig</tt> from the Author, the Collector first decides
whether to opt into the task as described in <xref target="provisioning-a-task"/>. If the
Collector opts out, it <bcp14>MUST NOT</bcp14> attempt to initialize collection jobs for the
task.</t>
        <t>Otherwise, once opted in, the Collector <bcp14>MAY</bcp14> begin to issue collect requests for
the task. The task ID for each request <bcp14>MUST</bcp14> be derived from the <tt>TaskConfig</tt> as
described in <xref target="provisioning-a-task"/>. The Collector <bcp14>MUST</bcp14> advertise the task as
described in <xref target="task-advertisement"/>.</t>
        <t>If the Leader responds to a collection request with an "unrecognizedTask"
error, the Collector <bcp14>MAY</bcp14> retry its request after waiting an appropriate
amount of time.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The Taskbind extension has the same security and privacy considerations as the
core DAP protocol. In addition, successful execution of a DAP task implies
agreement on the task configuration. This is provided by binding the
parameters to the task ID, which in turn is bound to each report uploaded for a
task. Furthermore, inclusion of the Taskbind extension in the report means
Aggregators that do not implement this extension will reject the report as
required by (<xref section="4.5.3" sectionFormat="of" target="DAP"/>).</t>
      <t>The task provisioning mechanism in <xref target="taskprov"/> extends the threat model of DAP
by including a new logical role, called the Author. The Author is responsible
for configuring Clients prior to task execution. For privacy we consider the
Author to be under control of the adversary. It is therefore incumbent on
protocol participants to verify the privacy parameters of a task before opting
in.</t>
      <t>Another risk is that the Author could configure a unique task to fingerprint a
Client. Although Client anonymization is not guaranteed by DAP, some systems
built on top of DAP may hope to achieve this property by using a proxy server
with Oblivious HTTP <xref target="RFC9458"/> to forward Client reports to the Leader. If the
Author colludes with the Leader, the attacker can learn some metadata
information about the Client, e.g., the Client IP, user agent string, which may
deanonymize the Client. However, even if the Author succeeds in doing so, the
Author should learn nothing other than the fact that the Client has uploaded a
report, assuming the Client has verified the privacy parameters of the task
before opting into it. For example, if a task is uniquely configured for the
Client, the Client can enforce the minimum batch size is strictly more than 1.</t>
      <t>Another risk for the Aggregators is that a malicious coalition of Clients might
attempt to pollute an Aggregator's long-term storage by uploading reports for
many (thousands or perhaps millions) of distinct tasks. While this does not
directly impact tasks used by honest Clients, it does present a
Denial-of-Service risk for the Aggregators themselves. This can be mitigated by
limiting the rate at which new tasks are configured. In addition, deployments
<bcp14>SHOULD</bcp14> arrange for the Author to digitally sign the task configuration so that
Clients cannot forge task creation, e.g., via an extension to Taskbind
(<xref target="taskbind-extensions"/>).</t>
    </section>
    <section anchor="operational-considerations">
      <name>Operational Considerations</name>
      <t>The Taskbind extension does not introduce any new operational considerations
for DAP.</t>
      <t>The task provisioning mechanism in <xref target="taskprov"/> is designed so that the
Aggregators do not need to store individual task configurations long-term.
Because the task configuration is advertised in each request in the upload,
aggregation, and collection protocols, the process of opting-in and deriving the
task ID and VDAF verify key can be re-run on the fly for each request. This is
useful if a large number of concurrent tasks are expected. Once an Aggregator
has opted-in to a task, the expectation is that the task is supported until it
ends. In particular, Aggregators that operate in this manner <bcp14>MUST NOT</bcp14> opt
out once they have opted in.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests a codepoint for the <tt>taskbind</tt> report extension and for
creation of a new registry for Taskbind extensions.</t>
      <t>(RFC EDITOR: Replace "XXXX" with the RFC number assigned to this document.)</t>
      <section anchor="report-extension">
        <name>Report Extension</name>
        <t>The following entry will be (RFC EDITOR: change "will be" to "has been") added
to the "Report Extension Identifiers" registry of the "Distributed Aggregation
Protocol (DAP)" page created by <xref target="VDAF"/>:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t><tt>0xff00</tt></t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t><tt>taskbind</tt></t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>RFC XXXX</t>
          </dd>
        </dl>
      </section>
      <section anchor="taskbind-extension-registry">
        <name>Registry for Taskbind Extensions</name>
        <t>A new registry will be (RFC EDITOR: change "will be" to "has been") created for
the "Distributed Aggregation Protocol (DAP)" page called "Taskbind Extensions".
This registry contains the following columns:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>The two-byte identifier for the extension</t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>The name of the extension</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>Where the mechanism is defined</t>
          </dd>
        </dl>
        <t>The initial contents of this registry are listed in the following table.</t>
        <table anchor="taskbind-extension-id">
          <name>Initial contents of the Taskbind Extensions registry.</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>0x0000</tt></td>
              <td align="left">
                <tt>reserved</tt></td>
              <td align="left">
                <xref target="taskbind-extensions"/> of RFC XXXX</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="dap-sub-namespace-for-dap">
        <name>DAP Sub-namespace for DAP</name>
        <ul empty="true">
          <li>
            <t>TODO Figure out how to ask IANA to register the errors in
<xref target="urn-space-errors"/>. See
https://github.com/ietf-wg-ppm/draft-ietf-ppm-dap-taskprov/issues/34</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="extending-this-doc">
      <name>Extending this Document</name>
      <t>The behavior of the <tt>taskbind</tt> extension may be extended by future documents
that define:</t>
      <ol spacing="normal" type="1"><li>
          <t>A new DAP batch mode</t>
        </li>
        <li>
          <t>A new VDAF</t>
        </li>
        <li>
          <t>A new Taskbind extension</t>
        </li>
      </ol>
      <t>Documents defining either a new DAP batch mode or VDAF <bcp14>SHOULD</bcp14> include a section
titled "Taskbind Considerations" that specifies the payload of
<tt>TaskConfig.batch_config</tt> or <tt>TaskConfig.vdaf_config</tt> respectively.</t>
      <t>Note that the registry for batch modes is defined by <xref target="DAP"/>; the registry for
VDAFs is defined by <xref target="VDAF"/>; and the registry for Taskbind extensions is defined in
<xref target="taskbind-extension-registry"/> of this document.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-normative-references">
      <name>Normative References</name>
      <reference anchor="SHS">
        <front>
          <title>Secure Hash Standard</title>
          <author>
            <organization/>
          </author>
          <date year="2015" month="August" day="04"/>
        </front>
        <seriesInfo name="FIPS PUB 180-4" value=""/>
      </reference>
      <reference anchor="DAP">
        <front>
          <title>Distributed Aggregation Protocol for Privacy Preserving Measurement</title>
          <author fullname="Tim Geoghegan" initials="T." surname="Geoghegan">
            <organization>ISRG</organization>
          </author>
          <author fullname="Christopher Patton" initials="C." surname="Patton">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Brandon Pitman" initials="B." surname="Pitman">
            <organization>ISRG</organization>
          </author>
          <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
            <organization>Independent</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="2" month="November" year="2024"/>
          <abstract>
            <t>   There are many situations in which it is desirable to take
   measurements of data which people consider sensitive.  In these
   cases, the entity taking the measurement is usually not interested in
   people's individual responses but rather in aggregated data.
   Conventional methods require collecting individual responses and then
   aggregating them, thus representing a threat to user privacy and
   rendering many such measurements difficult and impractical.  This
   document describes a multi-party distributed aggregation protocol
   (DAP) for privacy preserving measurement (PPM) which can be used to
   collect aggregate data without revealing any individual user's data.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-ppm-dap-13"/>
      </reference>
      <reference anchor="VDAF">
        <front>
          <title>Verifiable Distributed Aggregation Functions</title>
          <author fullname="Richard Barnes" initials="R." surname="Barnes">
            <organization>Cisco</organization>
          </author>
          <author fullname="David Cook" initials="D." surname="Cook">
            <organization>ISRG</organization>
          </author>
          <author fullname="Christopher Patton" initials="C." surname="Patton">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Phillipp Schoppmann" initials="P." surname="Schoppmann">
            <organization>Google</organization>
          </author>
          <date day="2" month="November" year="2024"/>
          <abstract>
            <t>   This document describes Verifiable Distributed Aggregation Functions
   (VDAFs), a family of multi-party protocols for computing aggregate
   statistics over user measurements.  These protocols are designed to
   ensure that, as long as at least one aggregation server executes the
   protocol honestly, individual measurements are never seen by any
   server in the clear.  At the same time, VDAFs allow the servers to
   detect if a malicious or misconfigured client submitted an invalid
   measurement.  Two concrete VDAFs are specified, one for general-
   purpose aggregation (Prio3) and another for heavy hitters (Poplar1).

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-vdaf-13"/>
      </reference>
      <reference anchor="RFC9180">
        <front>
          <title>Hybrid Public Key Encryption</title>
          <author fullname="R. Barnes" initials="R." surname="Barnes"/>
          <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
          <author fullname="B. Lipp" initials="B." surname="Lipp"/>
          <author fullname="C. Wood" initials="C." surname="Wood"/>
          <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="RFC2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner"/>
          <date month="March" year="1997"/>
          <abstract>
            <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="2119"/>
        <seriesInfo name="DOI" value="10.17487/RFC2119"/>
      </reference>
      <reference anchor="RFC8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba"/>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="RFC4648">
        <front>
          <title>The Base16, Base32, and Base64 Data Encodings</title>
          <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
          <date month="October" year="2006"/>
          <abstract>
            <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="4648"/>
        <seriesInfo name="DOI" value="10.17487/RFC4648"/>
      </reference>
      <reference anchor="RFC5869">
        <front>
          <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
          <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
          <author fullname="P. Eronen" initials="P." surname="Eronen"/>
          <date month="May" year="2010"/>
          <abstract>
            <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="5869"/>
        <seriesInfo name="DOI" value="10.17487/RFC5869"/>
      </reference>
      <reference anchor="RFC9458">
        <front>
          <title>Oblivious HTTP</title>
          <author fullname="M. Thomson" initials="M." surname="Thomson"/>
          <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
          <date month="January" year="2024"/>
          <abstract>
            <t>This document describes Oblivious HTTP, a protocol for forwarding encrypted HTTP messages. Oblivious HTTP 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="RFC" value="9458"/>
        <seriesInfo name="DOI" value="10.17487/RFC9458"/>
      </reference>
    </references>
    <?line 762?>

<section numbered="false" anchor="contributors">
      <name>Contributors</name>
      <t>Junye Chen
Apple Inc.
junyec@apple.com</t>
      <t>David Cook
ISRG
divergentdave@gmail.com</t>
      <t>Suman Ganta
Apple Inc.
sganta2@apple.com</t>
      <t>Gianni Parsa
Apple Inc.
gianni_parsa@apple.com</t>
      <t>Michael Scaria
Apple Inc.
mscaria@apple.com</t>
      <t>Kunal Talwar
Apple Inc.
ktalwar@apple.com</t>
      <t>Christopher A. Wood
Cloudflare
caw@heapingbits.net</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7196XYbR5bm/3iKaOiHKQ8AibLscVFld1GiVOJYstQiZben
FzGADABZSmSicyHMklzP0s/STzZ3iy0zQamWMzqnykQiY7txl+8uEZjNZqrN
28Ke6Mmlad7rx3mZ5eVamzLT5+XsMf73dV1d501elfjFqqr12enriTKLRW2v
T/DDDJvu4C21NK1dV/XNic7LVaVUVi1Ls4Xes9qs2llu29Vst9vOMrObtdJo
dv9YNd1imzc4Rnuzg9fPn14+0/qONkVTwdRgUnZn4f/KdjLVk/PTx/AfmMjk
/M3ls4kqu+3C1icqg9FP1LIqG1s2XXOi27qzCub4lTK1NdDRhV12dd7eTNS+
qt+v66rbwdPXdX5tljewUNvY+hqX+dKapqvtFkdU7+0NvJ6dKD3Tpf211Wtb
2tq0MF181JX5sqrpz2Zn6vcFdpDlTVvni661mS5stra1urZlB/PT+nPH1Zqp
MfkZJovf/hEb4vOtyQt4DqT8A9J0XtVrfGzq5QYeb9p215zcu4dv4aP82s7d
a/fwwb1FXe0bew/a38N267zddAskNG7Qfo17dO+WLcM2BRC7aaPRorZz7nCe
V7f1ctt38027LSZKma7dVDVSHobUetUVBTPUxcaU+mdTruk5LMyU+Z9pS070
6W5XWGDf5Zy+tEKtBpq820OTPxh8Yb6stjDCoOcnmxr2rtptbK1fm7bFTR4M
8aSoumwF1LXJEEtsu6NG/wvX9Yc1fiEjlVW9hebXwAPQ6OL5xQm11U4AiTmt
fm6ajb5oQfJMnU34FeJs/eD+8dez+9/O7j/kp8A0uW1Q0k70s/PXF/r128f6
+Nv7s4dK4dMwnJrNZtosgCXNslXqtNTAxiAksBaS6HZj9VnEsafrdW3XtFYU
/7ZaVoU+AlG/q/MGuNwu81UO77Ub06plfbNrq3Vtdpt8aYriRi9AYBvqFOQB
iNrautHVShuN+6vbir7Dv79oYCawbhxpDlumoEGbLzug7FTvN7aENssiB3EA
jbIsusxiv3kTzX8PvKbzttG13VV1O6W+UZ5gULXPi0JXJczJyJIsfc/v6hzm
BC/QoNCzgVcsvO6nF81/ri5xXNBoHUonqSZPCWha6mqHqzCF3tolsFrebIm2
eTlboBrF/tQu1qVIPb3o8gKIJYPKvPzq5rJ32zzLCqvUHaBRW1dZtyTto47e
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
3cm8tK36f/VT0UD3dQAA

-->

</rfc>
