<?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.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-resumable-upload-12" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="Resumable Uploads">Resumable Uploads for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-resumable-upload-12"/>
    <author initials="M." surname="Kleidl" fullname="Marius Kleidl" role="editor">
      <organization>Transloadit</organization>
      <address>
        <email>marius@transloadit.com</email>
      </address>
    </author>
    <author initials="G." surname="Zhang" fullname="Guoye Zhang" role="editor">
      <organization>Apple Inc.</organization>
      <address>
        <email>guoye_zhang@apple.com</email>
      </address>
    </author>
    <author initials="L." surname="Pardue" fullname="Lucas Pardue" role="editor">
      <organization>Cloudflare</organization>
      <address>
        <email>lucas@lucaspardue.com</email>
      </address>
    </author>
    <date year="2026" month="July" day="06"/>
    <area>Web and Internet Transport</area>
    <workgroup>HTTP</workgroup>
    <keyword>HTTP, upload, resumable</keyword>
    <abstract>
      <?line 74?>

<t>HTTP data transfers can encounter interruption due to reasons such as canceled requests or dropped connections. If the intended recipient can indicate how much of the data was processed prior to interruption, a sender can resume data transfer at that point instead of attempting to transfer all of the data again. HTTP range requests support this concept of resumable downloads from server to client. This document describes a mechanism that supports resumable uploads from client to server using HTTP.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-resumable-upload/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/resumable-upload"/>.</t>
    </note>
  </front>
  <middle>
    <?line 78?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP data transfers can encounter interruption due to reasons such as canceled requests or dropped connections. If the intended recipient can indicate how much of the data was processed prior to interruption, a sender can resume data transfer at that point instead of attempting to transfer all of the data again. HTTP range requests (see <xref section="14" sectionFormat="of" target="HTTP"/>) support this concept of resumable data transfers for downloads from server to client. While partial PUT is one method for uploading a partial representation (via Content-Range in the request), there are caveats that affect its deployability; see <xref section="14.5" sectionFormat="of" target="HTTP"/>.</t>
      <t>Canceled upload request can be triggered for various reasons, including but not limited to:</t>
      <dl>
        <dt>explicit client cancellation:</dt>
        <dd>
          <t>e.g., terminating a user-agent process</t>
        </dd>
        <dt>implicit client cancellation:</dt>
        <dd>
          <t>e.g., terminating a tab, garbage collecting a process or internal error</t>
        </dd>
        <dt>explicit server cancellation:</dt>
        <dd>
          <t>e.g., scheduled maintenance</t>
        </dd>
        <dt>implicit server cancellation:</dt>
        <dd>
          <t>e.g., DoS mitigation or internal error</t>
        </dd>
      </dl>
      <t>Connections can be dropped due to a variety of network or transport layer reasons triggered by endpoints or on-path elements.</t>
      <t>This specification defines a new mechanism for resumable uploads from client to server that can seamlessly fall back to conventional uploads. When an upload is interrupted, clients can send subsequent requests to query the server state and use this information to send the remaining representation data. Alternatively, they can cancel the upload entirely. Unlike ranged downloads, this protocol does not support transferring an upload as multiple requests in parallel.</t>
      <t>Utilizing resumable uploads, applications can recover from unintended interruptions, but also interrupt an upload on purpose to later resume it, for example, when a user wants to pause an upload, the device's network connectivity changes, or bandwidth should be saved for higher priority tasks.</t>
      <t>The document introduces the concept of an upload resource to facilitate resumable uploads (<xref target="upload-resource"/>) and defines new header fields to communicate the state of the upload (<xref target="state"/>), the status code <tt>104 (Upload Resumption Supported)</tt> to indicate the resource's support for resumable uploads (<xref target="status-code-104"/>), and the <tt>application/partial-upload</tt> media type to label partial representation data when resuming an upload (<xref target="media-type-partial-upload"/>).</t>
    </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>Some examples in this document contain long lines that may be folded, as described in <xref target="RFC8792"/>.</t>
      <t>The terms Structured Header, Item, Dictionary, String, Integer, and Boolean are imported from <xref target="STRUCTURED-FIELDS"/>.</t>
      <t>The terms "representation", "representation data", "representation metadata", "content", "client" and "server" are from <xref section="3" sectionFormat="of" target="HTTP"/>.</t>
      <t>The term "URI" is used as defined in <xref section="4" sectionFormat="of" target="HTTP"/>.</t>
      <t>The term "patch document" is taken from <xref target="PATCH"/>.</t>
      <t>An <em>upload resource</em> is a temporary resource on the server that facilitates the resumable upload of one representation (<xref target="upload-resource"/>).</t>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>Resumable uploads are supported in HTTP through use of a temporary resource, an <em>upload resource</em> (<xref target="upload-resource"/>), that is separate from the resource being uploaded to and specific to that upload. By interacting with the upload resource, a client can retrieve the current offset of the upload (<xref target="offset-retrieving"/>), append to the upload (<xref target="upload-appending"/>), and cancel the upload (<xref target="upload-cancellation"/>).</t>
      <t>The remainder of this section uses examples to illustrate different interactions with the upload resource. HTTP message exchanges, and thereby resumable uploads, use representation data (see <xref section="8.1" sectionFormat="of" target="HTTP"/>). This means that resumable uploads can be used with many forms of content, such as static files, in-memory buffers, data from streaming sources, or on-demand generated data. Examples are purely illustrative and non-normative. Implementations of this protocol are expected to follow normative requirements defined in other sections, together with applying security considerations presented in <xref target="security-considerations"/>.</t>
      <section anchor="example-1">
        <name>Example 1: Complete upload of representation data with known size</name>
        <t>In this example, the client first attempts to upload representation data with a known size in a single HTTP request to the resource at <tt>/project/123/files</tt>. An interruption occurs and the client then attempts to resume the upload using subsequent HTTP requests to the upload resource at <tt>/uploads/abc</tt>.</t>
        <t>1) The client notifies the server that it wants to begin an upload (<xref target="upload-creation"/>). The server reserves the required resources to accept the upload from the client and then sends an interim response to the client, signaling support for resumable uploads and the upload resource's URI via the Location header field (<xref section="10.2.2" sectionFormat="of" target="HTTP"/>). The client can start sending the representation data in the request content immediately after the request header section. Alternatively, it could also await the acknowledgment in the form of the interim response.</t>
        <figure anchor="fig-upload-creation">
          <name>Upload Creation</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="336" width="520" viewBox="0 0 520 336" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,304" fill="none" stroke="black"/>
                <path d="M 368,48 L 368,304" fill="none" stroke="black"/>
                <path d="M 512,192 L 512,224" fill="none" stroke="black"/>
                <path d="M 16,128 L 360,128" fill="none" stroke="black"/>
                <path d="M 376,192 L 512,192" fill="none" stroke="black"/>
                <path d="M 376,224 L 512,224" fill="none" stroke="black"/>
                <path d="M 16,288 L 360,288" fill="none" stroke="black"/>
                <path d="M 16,320 L 120,320" fill="none" stroke="black"/>
                <path d="M 256,320 L 360,320" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="384,224 372,218.4 372,229.6" fill="black" transform="rotate(180,376,224)"/>
                <polygon class="arrowhead" points="368,128 356,122.4 356,133.6" fill="black" transform="rotate(0,360,128)"/>
                <polygon class="arrowhead" points="24,288 12,282.4 12,293.6" fill="black" transform="rotate(180,16,288)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="348" y="36">Server</text>
                  <text x="36" y="68">POST</text>
                  <text x="132" y="68">/project/123/files</text>
                  <text x="84" y="84">Upload-Complete:</text>
                  <text x="164" y="84">?1</text>
                  <text x="84" y="116">[representation]</text>
                  <text x="408" y="164">Reserve</text>
                  <text x="480" y="164">resources</text>
                  <text x="392" y="180">for</text>
                  <text x="436" y="180">upload</text>
                  <text x="120" y="260">104</text>
                  <text x="164" y="260">Upload</text>
                  <text x="236" y="260">Resumption</text>
                  <text x="320" y="260">Supported</text>
                  <text x="144" y="276">Location:</text>
                  <text x="236" y="276">/uploads/abc</text>
                  <text x="8" y="324">X</text>
                  <text x="140" y="324">Flow</text>
                  <text x="208" y="324">Interrupted</text>
                  <text x="368" y="324">X</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                  Server
|                                            |
| POST /project/123/files                    |
| Upload-Complete: ?1                        |
|                                            |
| [representation]                           |
|------------------------------------------->|
|                                            |
|                                            | Reserve resources
|                                            | for upload
|                                            |-----------------.
|                                            |                 |
|                                            |<----------------'
|                                            |
|            104 Upload Resumption Supported |
|            Location: /uploads/abc          |
|<-------------------------------------------|
|                                            |
X--------------Flow Interrupted--------------X
]]></artwork>
          </artset>
        </figure>
        <t>2) If the connection to the server is interrupted, the client might want to resume the upload. However, before this is possible the client needs to know the amount of representation data that the server processed before the interruption. It does so by retrieving the offset (<xref target="offset-retrieving"/>) from the upload resource.</t>
        <figure anchor="fig-offset-retrieving">
          <name>Offset Retrieval</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="416" viewBox="0 0 416 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,160" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,160" fill="none" stroke="black"/>
                <path d="M 16,80 L 400,80" fill="none" stroke="black"/>
                <path d="M 16,144 L 400,144" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,80 396,74.4 396,85.6" fill="black" transform="rotate(0,400,80)"/>
                <polygon class="arrowhead" points="24,144 12,138.4 12,149.6" fill="black" transform="rotate(180,16,144)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="36" y="68">HEAD</text>
                  <text x="108" y="68">/uploads/abc</text>
                  <text x="280" y="116">204</text>
                  <text x="308" y="116">No</text>
                  <text x="352" y="116">Content</text>
                  <text x="324" y="132">Upload-Offset:</text>
                  <text x="392" y="132">X</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| HEAD /uploads/abc                               |
|------------------------------------------------>|
|                                                 |
|                                204 No Content   |
|                                Upload-Offset: X |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
        <t>3) The client can resume the upload by sending the remaining representation data to the upload resource (<xref target="upload-appending"/>), appending to the already stored representation data in the upload using the <tt>application/partial-upload</tt> media type. The <tt>Upload-Offset</tt> value is included to ensure that the client and server agree on the offset that the upload resumes from. Once the remaining representation data is transferred, the server processes the entire representation and responds with whatever the initial request to <tt>/project/123/files</tt> would have produced if it had not been interrupted, e.g., a <tt>200 (OK)</tt> response.</t>
        <figure anchor="fig-upload-appending">
          <name>Upload Append</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="416" viewBox="0 0 416 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,224" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,224" fill="none" stroke="black"/>
                <path d="M 16,160 L 400,160" fill="none" stroke="black"/>
                <path d="M 16,208 L 400,208" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,160 396,154.4 396,165.6" fill="black" transform="rotate(0,400,160)"/>
                <polygon class="arrowhead" points="24,208 12,202.4 12,213.6" fill="black" transform="rotate(180,16,208)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="40" y="68">PATCH</text>
                  <text x="116" y="68">/uploads/abc</text>
                  <text x="84" y="84">Upload-Complete:</text>
                  <text x="164" y="84">?1</text>
                  <text x="76" y="100">Upload-Offset:</text>
                  <text x="144" y="100">X</text>
                  <text x="72" y="116">Content-Type:</text>
                  <text x="236" y="116">application/partial-upload</text>
                  <text x="80" y="148">[representation</text>
                  <text x="164" y="148">from</text>
                  <text x="212" y="148">offset</text>
                  <text x="252" y="148">X]</text>
                  <text x="360" y="196">200</text>
                  <text x="388" y="196">OK</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| PATCH /uploads/abc                              |
| Upload-Complete: ?1                             |
| Upload-Offset: X                                |
| Content-Type: application/partial-upload        |
|                                                 |
| [representation from offset X]                  |
|------------------------------------------------>|
|                                                 |
|                                          200 OK |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
        <t>4) If the client is not interested in completing the upload, it can instruct the server to delete the upload resource and all associated representation data (<xref target="upload-cancellation"/>).</t>
        <figure anchor="fig-upload-cancellation">
          <name>Upload Cancellation</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="416" viewBox="0 0 416 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,144" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,144" fill="none" stroke="black"/>
                <path d="M 16,80 L 400,80" fill="none" stroke="black"/>
                <path d="M 16,128 L 400,128" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,80 396,74.4 396,85.6" fill="black" transform="rotate(0,400,80)"/>
                <polygon class="arrowhead" points="24,128 12,122.4 12,133.6" fill="black" transform="rotate(180,16,128)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="44" y="68">DELETE</text>
                  <text x="124" y="68">/uploads/abc</text>
                  <text x="296" y="116">204</text>
                  <text x="324" y="116">No</text>
                  <text x="368" y="116">Content</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| DELETE /uploads/abc                             |
|------------------------------------------------>|
|                                                 |
|                                  204 No Content |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="example-2">
        <name>Example 2: Upload as a series of parts</name>
        <t>In some cases, clients might prefer to upload a representation as a series of parts sent serially across multiple HTTP messages. One use case is to overcome server limits on HTTP message content size. Another use case is where the client does not know the final size of the representation data, such as when the data originates from a streaming source.</t>
        <t>This example shows how the client, communicating with a resource known to support resumable upload, can upload parts of a representation incrementally.</t>
        <t>1) The client is aware that the targeted resource supports resumable uploads and therefore starts the upload with the <tt>Upload-Complete</tt> field value set to false and the first part of the representation.</t>
        <figure anchor="fig-upload-creation-incomplete">
          <name>Upload creation with partial representation data</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="416" viewBox="0 0 416 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,208" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,208" fill="none" stroke="black"/>
                <path d="M 16,128 L 400,128" fill="none" stroke="black"/>
                <path d="M 16,192 L 400,192" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,128 396,122.4 396,133.6" fill="black" transform="rotate(0,400,128)"/>
                <polygon class="arrowhead" points="24,192 12,186.4 12,197.6" fill="black" transform="rotate(180,16,192)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="36" y="68">POST</text>
                  <text x="132" y="68">/project/123/files</text>
                  <text x="84" y="84">Upload-Complete:</text>
                  <text x="164" y="84">?0</text>
                  <text x="52" y="116">[partial</text>
                  <text x="152" y="116">representation]</text>
                  <text x="320" y="164">201</text>
                  <text x="368" y="164">Created</text>
                  <text x="256" y="180">Location:</text>
                  <text x="348" y="180">/uploads/abc</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| POST /project/123/files                         |
| Upload-Complete: ?0                             |
|                                                 |
| [partial representation]                        |
|------------------------------------------------>|
|                                                 |
|                                     201 Created |
|                          Location: /uploads/abc |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
        <t>2) Next, intermediate parts are appended (<xref target="upload-appending"/>) with the <tt>Upload-Complete</tt> field value set to false, indicating that they are not the last part of the representation data. The offset value in the <tt>Upload-Offset</tt> header field is taken from the previous response when creating the upload or appending to it.</t>
        <figure anchor="fig-upload-appending-incomplete">
          <name>Appending partial representation data to upload</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="416" viewBox="0 0 416 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,224" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,224" fill="none" stroke="black"/>
                <path d="M 16,160 L 400,160" fill="none" stroke="black"/>
                <path d="M 16,208 L 400,208" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,160 396,154.4 396,165.6" fill="black" transform="rotate(0,400,160)"/>
                <polygon class="arrowhead" points="24,208 12,202.4 12,213.6" fill="black" transform="rotate(180,16,208)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="40" y="68">PATCH</text>
                  <text x="116" y="68">/uploads/abc</text>
                  <text x="84" y="84">Upload-Complete:</text>
                  <text x="164" y="84">?0</text>
                  <text x="76" y="100">Upload-Offset:</text>
                  <text x="144" y="100">X</text>
                  <text x="72" y="116">Content-Type:</text>
                  <text x="236" y="116">application/partial-upload</text>
                  <text x="52" y="148">[partial</text>
                  <text x="148" y="148">representation</text>
                  <text x="228" y="148">from</text>
                  <text x="276" y="148">offset</text>
                  <text x="316" y="148">X]</text>
                  <text x="296" y="196">204</text>
                  <text x="324" y="196">No</text>
                  <text x="368" y="196">Content</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| PATCH /uploads/abc                              |
| Upload-Complete: ?0                             |
| Upload-Offset: X                                |
| Content-Type: application/partial-upload        |
|                                                 |
| [partial representation from offset X]          |
|------------------------------------------------>|
|                                                 |
|                                  204 No Content |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
        <t>3) If the connection was interrupted, the client might want to resume the upload, similar to the previous example (<xref target="example-1"/>). The client retrieves the offset (<xref target="offset-retrieving"/>) to learn the amount of representation data processed by the server and then continues appending the remaining parts to the upload as in the previous step.</t>
        <figure anchor="fig-upload-resume-incomplete">
          <name>Resuming an interrupted upload</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="352" width="416" viewBox="0 0 416 352" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,336" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,336" fill="none" stroke="black"/>
                <path d="M 16,80 L 400,80" fill="none" stroke="black"/>
                <path d="M 16,144 L 400,144" fill="none" stroke="black"/>
                <path d="M 16,272 L 400,272" fill="none" stroke="black"/>
                <path d="M 16,320 L 400,320" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,272 396,266.4 396,277.6" fill="black" transform="rotate(0,400,272)"/>
                <polygon class="arrowhead" points="408,80 396,74.4 396,85.6" fill="black" transform="rotate(0,400,80)"/>
                <polygon class="arrowhead" points="24,320 12,314.4 12,325.6" fill="black" transform="rotate(180,16,320)"/>
                <polygon class="arrowhead" points="24,144 12,138.4 12,149.6" fill="black" transform="rotate(180,16,144)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="36" y="68">HEAD</text>
                  <text x="108" y="68">/uploads/abc</text>
                  <text x="296" y="116">204</text>
                  <text x="324" y="116">No</text>
                  <text x="368" y="116">Content</text>
                  <text x="324" y="132">Upload-Offset:</text>
                  <text x="392" y="132">Y</text>
                  <text x="40" y="180">PATCH</text>
                  <text x="116" y="180">/uploads/abc</text>
                  <text x="84" y="196">Upload-Complete:</text>
                  <text x="164" y="196">?0</text>
                  <text x="76" y="212">Upload-Offset:</text>
                  <text x="144" y="212">Y</text>
                  <text x="72" y="228">Content-Type:</text>
                  <text x="236" y="228">application/partial-upload</text>
                  <text x="52" y="260">[partial</text>
                  <text x="148" y="260">representation</text>
                  <text x="228" y="260">from</text>
                  <text x="276" y="260">offset</text>
                  <text x="316" y="260">Y]</text>
                  <text x="296" y="308">204</text>
                  <text x="324" y="308">No</text>
                  <text x="368" y="308">Content</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| HEAD /uploads/abc                               |
|------------------------------------------------>|
|                                                 |
|                                  204 No Content |
|                                Upload-Offset: Y |
|<------------------------------------------------|
|                                                 |
| PATCH /uploads/abc                              |
| Upload-Complete: ?0                             |
| Upload-Offset: Y                                |
| Content-Type: application/partial-upload        |
|                                                 |
| [partial representation from offset Y]          |
|------------------------------------------------>|
|                                                 |
|                                  204 No Content |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
        <t>4) The request to append the last part of the representation data has an <tt>Upload-Complete</tt> field value set to true to indicate the complete transfer. Once the remaining representation data is transferred, the server processes the entire representation and responds with whatever the initial request to <tt>/project/123/files</tt> would have produced if its representation had been fully transferred and processed, e.g., a <tt>200 (OK)</tt> response.</t>
        <figure anchor="fig-upload-appending-last-chunk">
          <name>Appending remaining representation data</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="416" viewBox="0 0 416 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,224" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,224" fill="none" stroke="black"/>
                <path d="M 16,160 L 400,160" fill="none" stroke="black"/>
                <path d="M 16,208 L 400,208" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="408,160 396,154.4 396,165.6" fill="black" transform="rotate(0,400,160)"/>
                <polygon class="arrowhead" points="24,208 12,202.4 12,213.6" fill="black" transform="rotate(180,16,208)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="388" y="36">Server</text>
                  <text x="40" y="68">PATCH</text>
                  <text x="116" y="68">/uploads/abc</text>
                  <text x="84" y="84">Upload-Complete:</text>
                  <text x="164" y="84">?1</text>
                  <text x="76" y="100">Upload-Offset:</text>
                  <text x="144" y="100">Z</text>
                  <text x="72" y="116">Content-Type:</text>
                  <text x="236" y="116">application/partial-upload</text>
                  <text x="60" y="148">[remaining</text>
                  <text x="164" y="148">representation</text>
                  <text x="244" y="148">from</text>
                  <text x="292" y="148">offset</text>
                  <text x="332" y="148">Z]</text>
                  <text x="360" y="196">200</text>
                  <text x="388" y="196">OK</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Client                                       Server
|                                                 |
| PATCH /uploads/abc                              |
| Upload-Complete: ?1                             |
| Upload-Offset: Z                                |
| Content-Type: application/partial-upload        |
|                                                 |
| [remaining representation from offset Z]        |
|------------------------------------------------>|
|                                                 |
|                                          200 OK |
|<------------------------------------------------|
|                                                 |
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="upload-resource">
      <name>Upload Resource</name>
      <t>A resumable upload is enabled through interaction with an upload resource. When a resumable upload begins, the server is asked to create an upload resource through a request to another resource (<xref target="upload-creation"/>). Using this upload resource, the client can query the upload progress (<xref target="offset-retrieving"/>), append representation data (<xref target="upload-appending"/>), or cancel the upload (<xref target="upload-cancellation"/>). The server is responsible for persisting the state of the upload resource (<xref target="state"/>) and updating it as the upload progresses.</t>
      <t>An upload resource is specific to the upload of one representation. For uploading multiple representations, multiple upload resources have to be used.</t>
      <t>The server can clean up an upload resource and make it inaccessible immediately after the upload is complete. However, keeping the upload resource available for a period of time after completion allows the client to verify the state of the upload if it did not receive the last response acknowledging the completion. Implementations are responsible for deciding if they retain the resource and for what duration; they will need to consider the resource costs required to do so.</t>
      <t>An upload resource <bcp14>SHOULD</bcp14> be unique. Reuse of a URI for a different upload resource <bcp14>SHOULD</bcp14> be avoided in order to reduce the chance of misdirected or corrupted upload resources, as well as the potential security issues described in <xref target="security-considerations"/>.</t>
      <section anchor="state">
        <name>State</name>
        <t>The state of an upload consists of the following properties that are tracked by the server.</t>
        <section anchor="upload-offset">
          <name>Offset</name>
          <t>The offset is the number of bytes from the representation data that have been processed, either during the creation of the upload resource (<xref target="upload-creation"/>) or by appending to it (<xref target="upload-appending"/>). The offset can be retrieved from the upload resource (<xref target="offset-retrieving"/>) and is required when appending representation data (<xref target="upload-appending"/>) to synchronize the client and resource regarding the amount of transferred representation data.</t>
          <t>The offset reflects application-level processing for the upload. Data may have been delivered and acknowledged at the transport layer without yet being reflected in the offset.</t>
          <t>Representation data processed by the upload resource cannot be removed again and, therefore, the offset <bcp14>MUST NOT</bcp14> decrease. If the server loses any part of the state, it <bcp14>MUST</bcp14> deactivate the upload resource and reject further interaction with it.</t>
          <t>The <tt>Upload-Offset</tt> request and response header field conveys the offset. <tt>Upload-Offset</tt> is an Item Structured Header Field (<xref target="STRUCTURED-FIELDS"/>). Its value is a non-negative Integer (<xref section="3.3.1" sectionFormat="of" target="STRUCTURED-FIELDS"/>) and indicates the current offset as viewed by the message sender. Other values <bcp14>MUST</bcp14> cause the entire header field to be ignored.</t>
          <t>The <tt>Upload-Offset</tt> header field in responses serves as an acknowledgment of the processed representation data and as a guarantee that no retransmission of it will be necessary. Clients can use this guarantee to free resources associated to transferred representation data.</t>
        </section>
        <section anchor="upload-complete">
          <name>Completeness</name>
          <t>An upload is incomplete until it is explicitly marked as completed by the client or the server. After this point, no more representation data can be appended.</t>
          <t>The <tt>Upload-Complete</tt> request and response header field conveys the completeness state. <tt>Upload-Complete</tt> is an Item Structured Header Field (<xref target="STRUCTURED-FIELDS"/>). Its value is a Boolean (<xref section="3.3.6" sectionFormat="of" target="STRUCTURED-FIELDS"/>) and indicates whether the upload is complete or not. Other values <bcp14>MUST</bcp14> cause the entire header field to be ignored.</t>
          <t>An upload is marked as completed either when a request for creating the upload resource (<xref target="upload-creation"/>) or appending to it (<xref target="upload-appending"/>) includes the <tt>Upload-Complete</tt> header field with a true value and the request content was fully processed, or when a response includes the <tt>Upload-Complete</tt> header field with a true value.</t>
          <t>When used in an upload creation response (<xref target="upload-creation"/>) or an upload append response (<xref target="upload-appending"/>), <tt>Upload-Complete</tt> signals whether the response comes from the initial targeted resource. The value of true means that the semantics of the targeted resource apply, and the value of false means that the semantics of the resumable upload protocol apply. The client <bcp14>SHOULD NOT</bcp14> perform upload resumption to the upload resource after receiving a response with the <tt>Upload-Complete</tt> field value set to true. Note that <tt>Upload-Complete</tt> can be true even when the full representation data was not transmitted in the case that the server decides to generate an early response when processing the targeted resource. Also note that <tt>Upload-Complete</tt> can be false in response to an invalid operation performed on a completed upload.</t>
        </section>
        <section anchor="upload-length">
          <name>Length</name>
          <t>The length of the representation data might not be known when starting the transfer, for example, because the representation is taken from a streaming source. The representation's length will, however, be known at the latest when the client completes the upload (<xref target="upload-complete"/>).</t>
          <t>Despite this, a client <bcp14>SHOULD</bcp14> communicate the representation's length to the server as soon as it becomes known to aid with resource management and facilitate early validation. There are two different ways for the client to indicate and for the server to discover the representation's length from requests for creating the upload resource (<xref target="upload-creation"/>) or appending to it (<xref target="upload-appending"/>):</t>
          <ol spacing="normal" type="1"><li>
              <t>If the request includes the <tt>Upload-Complete</tt> field value set to true, the request content is the remaining representation data. The representation's length is then the sum of the current offset (<xref target="upload-offset"/>) and the request content's length, which might be announced in the <tt>Content-Length</tt> header field.</t>
            </li>
            <li>
              <t>The request can include the <tt>Upload-Length</tt> header field defined below.</t>
            </li>
          </ol>
          <t>The <tt>Upload-Length</tt> request and response header field is an Item Structured Header Field (<xref target="STRUCTURED-FIELDS"/>). Its value is a non-negative Integer (<xref section="3.3.1" sectionFormat="of" target="STRUCTURED-FIELDS"/>) and indicates the representation's length as a number of bytes. Other values <bcp14>MUST</bcp14> cause the entire header field to be ignored.</t>
          <t>If indicators (1) and (2) are both present in the same request, their indicated lengths <bcp14>MUST</bcp14> match. The representation's length, if known, <bcp14>MUST</bcp14> stay consistent across subsequent requests. A server can use the problem type <xref target="PROBLEM"/> of "https://iana.org/assignments/http-problem-types#inconsistent-upload-length" (<xref target="inconsistent-length"/>) in responses to indicate inconsistent length indicators.</t>
          <t>The <tt>Upload-Length</tt> field can be used in response to an offset retrieval; see <xref target="offset-retrieving-server"/>.</t>
          <t>Note that the length and offset values do not determine whether an upload is complete. Instead, the client uses the <tt>Upload-Complete</tt> (<xref target="upload-complete"/>) header field to indicate that a request completes the upload. The offset could match the length, but the upload can still be incomplete.</t>
        </section>
        <section anchor="upload-limit">
          <name>Limits</name>
          <t>A server <bcp14>MAY</bcp14> enforce one or multiple limits, which are communicated to the client via the <tt>Upload-Limit</tt> response header field. <tt>Upload-Limit</tt> is a Dictionary Structured Header Field (<xref target="STRUCTURED-FIELDS"/>). Its value is a Dictionary (<xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>). Other values <bcp14>MUST</bcp14> cause the entire header field to be ignored.</t>
          <t>The following key-value pairs are defined:</t>
          <dl>
            <dt><tt>max-size</tt>:</dt>
            <dd>
              <t>Specifies a maximum size for the representation data, counted in bytes. The server might not create an upload resource if the representation's length (<xref target="upload-length"/>) deduced from the upload creation request is larger than the maximum size. The server might also deactivate the upload resource if the offset (<xref target="upload-offset"/>) exceeds the maximum size. The value is an Integer.</t>
            </dd>
            <dt><tt>min-size</tt>:</dt>
            <dd>
              <t>Specifies a minimum size for the representation data, counted in bytes, for the server to offer resumable uploads. The server might not create an upload resource if the representation's length (<xref target="upload-length"/>) deduced from the upload creation request is smaller than the minimum size or no length can be deduced at all. Resumable uploads impose additional overhead on the server, which might not be acceptable for small representations. Requests with representation data below this value might still be accepted by the server, although without the ability to resume them. The value is an Integer.</t>
            </dd>
            <dt><tt>max-append-size</tt>:</dt>
            <dd>
              <t>Specifies a maximum size counted in bytes for the request content in a single upload append (<xref target="upload-appending"/>) or upload creation (<xref target="upload-creation"/>) request. The server might reject requests exceeding this limit. A client that is aware of this limit <bcp14>MUST NOT</bcp14> send larger upload append or upload creation requests. The value is an Integer.</t>
            </dd>
            <dt><tt>min-append-size</tt>:</dt>
            <dd>
              <t>Specifies a minimum size counted in bytes for the request content in a single upload append (<xref target="upload-appending"/>) or upload creation (<xref target="upload-creation"/>) request. The server might reject requests below this limit. A client that is aware of this limit <bcp14>MUST NOT</bcp14> send smaller upload append or upload creation requests. The value is an Integer. This limit does not apply to upload creation requests with no content, or to requests completing the upload by including the <tt>Upload-Complete: ?1</tt> header field.</t>
            </dd>
            <dt><tt>max-age</tt>:</dt>
            <dd>
              <t>Specifies the remaining lifetime of the upload resource in seconds counted from the generation of the response. After the resource's lifetime is reached, the server might make the upload resource inaccessible and a client <bcp14>SHOULD NOT</bcp14> attempt to access the upload resource as these requests will likely fail. The value is an Integer.</t>
            </dd>
          </dl>
          <t>Clients usually discover limits through the <tt>Upload-Limit</tt> header field when the upload resource is created (<xref target="upload-creation"/>). Throughout the lifetime of the upload resource, these limits <bcp14>SHOULD NOT</bcp14> change in a way that causes failures for clients adhering to the initially discovered limits. If the client discovers that it cannot continue the upload while adhering to the limits, it <bcp14>SHOULD</bcp14> stop the current request immediately (<xref target="request-cancellation"/>) and cancel the upload (<xref target="upload-cancellation"/>).</t>
          <t>The following recommendations for limit changes can minimize the risk of causing upload failures:</t>
          <ul spacing="normal">
            <li>
              <t><tt>max-size</tt> and <tt>max-append-size</tt> <bcp14>SHOULD NOT</bcp14> decrease.</t>
            </li>
            <li>
              <t><tt>min-size</tt> and <tt>min-append-size</tt> <bcp14>SHOULD NOT</bcp14> increase.</t>
            </li>
            <li>
              <t>Between subsequent responses, the end of the upload resource's lifetime as implied by <tt>max-age</tt> <bcp14>SHOULD NOT</bcp14> decrease.</t>
            </li>
          </ul>
          <t>Receivers of <tt>Upload-Limit</tt> parse the Dictionary as described in <xref section="4.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>. Where the Dictionary is successfully parsed, this document places two additional requirements on Dictionary members. First, a member with an unknown key <bcp14>MUST</bcp14> be ignored. Second, a member with a known key but a value of unexpected type <bcp14>MUST</bcp14> cause the entire <tt>Upload-Limit</tt> header field to be ignored, or alternatively the complete HTTP message <bcp14>MUST</bcp14> be treated as malformed.</t>
          <t>When responding to an <tt>OPTIONS</tt> request without the <tt>Upload-Complete</tt> header field, if the resource that is the target of the request supports the creation of a resumable upload resource (<xref target="upload-creation"/>), the server <bcp14>MUST</bcp14> include the <tt>Upload-Limit</tt> header field with the corresponding limits in the response. If a server is configured such that all of its resources support the creation of upload resources with identical limits, it <bcp14>SHOULD</bcp14> include the <tt>Upload-Limit</tt> header field in response to an <tt>OPTIONS</tt> request for the target <tt>*</tt> (if this target is supported). If the server does not apply any limits, it <bcp14>MUST</bcp14> use <tt>min-size=0</tt> instead of an empty header value.</t>
          <t>A client can use an <tt>OPTIONS</tt> request without the <tt>Upload-Complete</tt> header field to discover whether the resource supports resumable uploads and to learn potential limits before creating an upload resource. To reduce the likelihood of failing requests, the limits announced in an <tt>OPTIONS</tt> response <bcp14>SHOULD NOT</bcp14> be less restrictive than the limits applied to an upload once the upload resource has been created, unless the request to create an upload resource included additional information that warrants different limits. For example, a server might announce a general maximum size limit of 1 GB, but reduce it to 100 MB when the media type indicates an image.</t>
          <t>When a request is rejected because limits were violated, the response <bcp14>SHOULD</bcp14> include the <tt>Upload-Limit</tt> header field carrying all limits of the corresponding upload if possible. This might not be possible if intermediaries enforce limits.</t>
          <t>Servers, including intermediaries, can (and often do) apply restrictions on the size of individual request message content. There is no standard mechanism to communicate such existing size restriction. A server that implements one can respond with a <tt>413 (Content Too Large)</tt> status code; see <xref section="15.5.14" sectionFormat="of" target="HTTP"/>. Appending to an upload resource, as a series of appends, can be used to upload data up to the <tt>max-size</tt> limit without encountering per-message limits. Servers might apply restrictions that are smaller than the append limits, which would also result in a failed request.</t>
          <t>When a client receives a response with a <tt>413 (Content Too Large)</tt> status code during upload creation (<xref target="upload-creation"/>) or append (<xref target="upload-appending"/>), it <bcp14>SHOULD</bcp14> retry the request with a smaller size residing between <tt>min-append-size</tt> and <tt>max-append-size</tt>. If these limits are unknown at the time of receiving such a response, the client can attempt to discover them through an <tt>OPTIONS</tt> request. Retrying with the same request content size will likely yield the same error response. Cases where the request content size matches the <tt>min-append-size</tt> limit yet fails with a <tt>413 (Content Too Large)</tt> response might indicate a deployment mismatch that cannot be recovered from.</t>
        </section>
      </section>
      <section anchor="upload-creation">
        <name>Upload Creation</name>
        <section anchor="client-behavior">
          <name>Client Behavior</name>
          <t>A client can start a resumable upload from any request that can carry content by including the <tt>Upload-Complete</tt> header field (<xref target="upload-complete"/>). As a consequence, all request methods that allow content are possible, such as <tt>POST</tt>, <tt>PUT</tt>, and <tt>PATCH</tt>. The request can benefit from incremental delivery; see <xref target="incremental"/>.</t>
          <t>The <tt>Upload-Complete</tt> header field is set to true if the request content includes the entire representation data that the client intends to upload. This is also a requirement for transparently upgrading to resumable uploads from conventional uploads (<xref target="upgrading-uploads"/>).</t>
          <t>If the client knows the representation's length, it <bcp14>SHOULD</bcp14> indicate the length in the request to help the server allocate necessary resources for the upload and provide early feedback if the representation violates a limit (<xref target="upload-limit"/>), as described in <xref target="upload-length"/>.</t>
          <t>Clients are not required to discover limits (<xref target="upload-limit"/>) before starting the upload and might therefore be initially unaware of limits enforced by the server. However, the client <bcp14>SHOULD</bcp14> respect any limits (<xref target="upload-limit"/>) announced during the upload process in the <tt>Upload-Limit</tt> header field in interim or final responses. In particular, if the allowed maximum size is less than the amount of representation data the client intends to upload, the client <bcp14>SHOULD</bcp14> stop the current request immediately (<xref target="request-cancellation"/>) and cancel the upload (<xref target="upload-cancellation"/>). If the client knows that the representation data is smaller than <tt>min-size</tt>, it cannot expect resumability to be offered. The client might still attempt to transfer the representation in a single request, either in a request with the <tt>Upload-Complete</tt> header field set to true (see <xref target="upgrading-uploads"/>) or via a conventional upload.</t>
          <t>The request content can be empty. If the <tt>Upload-Complete</tt> header field is then set to true, the client intends to upload an empty representation. An <tt>Upload-Complete</tt> header field set to false is also valid. This can be used to retrieve the upload resource's URI before transferring any representation data. Since interim responses are optional, this technique provides another mechanism to learn the URI, at the cost of an additional round-trip before data upload can commence.</t>
          <t>Representation metadata included in the initial request (see <xref section="8.2" sectionFormat="of" target="HTTP"/>) can affect how servers act on the uploaded representation data. The <tt>Content-Type</tt> header field (<xref section="8.3" sectionFormat="of" target="HTTP"/>) indicates the media type of the representation. The <tt>Content-Encoding</tt> header field (<xref section="8.4" sectionFormat="of" target="HTTP"/>) names the content codings applied to the representation. The <tt>Content-Disposition</tt> header field (<xref target="CONTENT-DISPOSITION"/>) can be used to transmit a filename. For this purpose, the <tt>inline</tt> disposition type is <bcp14>RECOMMENDED</bcp14>.</t>
          <t>If the client received a final response with the <tt>Upload-Complete: ?1</tt> header field, the upload is complete and the corresponding response comes from the resource processing the representation according to the initial request (<xref target="upload-complete"/>). Note that this does not necessarily indicate success. <tt>4xx (Client Error)</tt> or <tt>5xx (Server Error)</tt> status codes indicate in this case an error occurred while processing the representation, and therefore, resuming the upload would not resolve this error.</t>
          <t>If the client receives a 2xx successful final response with the <tt>Upload-Complete</tt> header field set to false or missing, the <tt>Location</tt> response header field points the client to the created upload resource. The client can continue appending representation data to it (<xref target="upload-appending"/>).</t>
          <t>If the client receives a 4xx client error or 5xx server error final response with the <tt>Upload-Complete</tt> header field set to false or missing, or if it did not receive a final response, it can apply the heuristics described in <xref target="retry"/> to retry or resume the upload.</t>
        </section>
        <section anchor="server-behavior">
          <name>Server Behavior</name>
          <t>Upon receiving a request with the <tt>Upload-Complete</tt> header field, the server can choose to offer resumption support for this request by creating an upload resource. If so, the server <bcp14>SHOULD</bcp14> announce the upload resource by sending an interim response with the <tt>104 (Upload Resumption Supported)</tt> status code unless the server is not capable of sending interim responses. The interim response allows the client to resume the upload even if the message exchange gets later interrupted. When sent, it <bcp14>MUST</bcp14> include <tt>Location</tt> header field pointing to the upload resource and <bcp14>MUST</bcp14> include the <tt>Upload-Limit</tt> header field with the corresponding limits (<xref target="upload-limit"/>) if existing.</t>
          <t>The resource targeted by this initial request is responsible for processing the representation data transferred in the resumable upload according to the method and header fields in the initial request. The upload resource, on the other hand, enables resuming the transfer.</t>
          <t>If the <tt>Upload-Complete</tt> request header field is set to true, the client intends to transfer the entire representation data in one request. If the request content was fully processed, no resumable upload is needed and the server proceeds to process the request and generate a response.</t>
          <t>If the <tt>Upload-Complete</tt> request header field is set to false, the client intends to transfer the representation over multiple requests. If the request content was fully processed, the server <bcp14>MUST</bcp14> include the <tt>Location</tt> response header field pointing to the upload resource and <bcp14>MUST</bcp14> include the <tt>Upload-Limit</tt> header field with the corresponding limits if existing. Servers are <bcp14>RECOMMENDED</bcp14> to use the <tt>201 (Created)</tt> status code.</t>
          <t>The server <bcp14>MUST</bcp14> record the representation's length according to <xref target="upload-length"/> if the <tt>Upload-Length</tt> or <tt>Upload-Complete: ?1</tt> header fields are included in the request.</t>
          <t>While the request content is being processed, the server <bcp14>MAY</bcp14> send multiple interim responses with a <tt>104 (Upload Resumption Supported)</tt> status code and the <tt>Upload-Offset</tt> header field set to the current offset to inform the client about the upload progress.</t>
          <t>Where a response requires a <tt>Location</tt> header field to be included, all interim and final response messages for the same request <bcp14>MUST</bcp14> contain an identical <tt>Location</tt> value. However, final responses including the <tt>Upload-Complete: ?1</tt> header field are exempt from this requirement because they are the result of processing the transferred representation and the <tt>Location</tt> value does not necessarily represent the upload location. Where the <tt>Location</tt> value is expected to be identical across multiple messages, clients <bcp14>SHOULD</bcp14> verify this. If verification fails, clients <bcp14>SHOULD</bcp14> abort the current request and cancel the upload (<xref target="upload-cancellation"/>).</t>
          <t>The server <bcp14>SHOULD</bcp14> include the <tt>Upload-Complete</tt> (<xref target="upload-complete"/>) header field in the response to indicate whether it is the result of processing the uploaded representation.</t>
          <t>The server <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt>, <tt>302 (Found)</tt>, or <tt>303 (See Other)</tt> status codes and the <tt>Upload-Complete: ?0</tt> header field because clients might follow the redirect without preserving the original method.</t>
          <t>The server might not process the entire request content when the upload is interrupted, for example because of dropped connection or canceled request. In this case, the server <bcp14>SHOULD</bcp14> append as much of the request content as possible to the upload resource, allowing the client to resume the upload from where it was interrupted. In addition, the upload resource <bcp14>MUST NOT</bcp14> be considered complete then.</t>
        </section>
        <section anchor="upload-creation-example">
          <name>Examples</name>
          <t>A) The following example shows an upload creation, where the entire 123456789 bytes are transferred in the initial request. The server sends multiple interim responses and one final response from processing the uploaded representation.</t>
          <sourcecode type="http-message"><![CDATA[
POST /project/123/files HTTP/1.1
Host: example.com
Content-Disposition: inline; filename="file name.jpg"; filename*=UTF-8''file%20name.jpg
Content-Length: 123456789
Upload-Length: 123456789
Upload-Complete: ?1

[content (123456789 bytes)]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 104 Upload Resumption Supported
Location: https://example.com/upload/b530ce8ff
Upload-Limit: max-size=1234567890

HTTP/1.1 104 Upload Resumption Supported
Upload-Offset: 23456789

HTTP/1.1 200 OK
Location: https://example.com/upload/b530ce8ff
Upload-Complete: ?1
Upload-Limit: max-size=1234567890
Content-Type: application/json

{"attachmentId": "b530ce8ff"}
]]></sourcecode>
          <t>B) The following example shows an upload creation, where only the first 23456789 bytes of a 123456789 bytes upload are transferred. The server acknowledges the processed representation data and that the upload is not complete yet. The client can continue appending data.</t>
          <sourcecode type="http-message"><![CDATA[
POST /upload HTTP/1.1
Host: example.com
Upload-Complete: ?0
Content-Length: 23456789
Upload-Length: 123456789

[partial content (23456789 bytes)]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 104 Upload Resumption Supported
Location: https://example.com/upload/3fd4994ad

HTTP/1.1 201 Created
Location: https://example.com/upload/3fd4994ad
Upload-Complete: ?0
Upload-Limit: max-size=1234567890
]]></sourcecode>
          <t>C) The following example shows an upload creation, where the server responds with a 5xx status code. Thanks to the interim response containing the upload resource URI, the client can resume the upload.</t>
          <sourcecode type="http-message"><![CDATA[
POST /upload HTTP/1.1
Host: example.com
Upload-Complete: ?1
Content-Length: 123456789
Upload-Length: 123456789

[content (123456789 bytes)]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 104 Upload Resumption Supported
Location: https://example.com/upload/0587fa44b

HTTP/1.1 500 Internal Server Error
]]></sourcecode>
          <t>D) The following example shows an upload creation being rejected by the server because the request content cannot be decoded. The <tt>Upload-Complete</tt> header in the response is set to true since the server is uninterested in receiving the full representation after the decoding failure, and the upload is complete in its perspective. The client cannot continue the upload.</t>
          <sourcecode type="http-message"><![CDATA[
POST /upload-gzip HTTP/1.1
Host: example.com
Upload-Complete: ?0
Content-Length: 23456789
Upload-Length: 123456789
Content-Encoding: gzip

[corrupted gzip content]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 104 Upload Resumption Supported
Location: https://example.com/upload/6723cdf37

HTTP/1.1 400 Bad Request
Upload-Complete: ?1
]]></sourcecode>
        </section>
      </section>
      <section anchor="offset-retrieving">
        <name>Offset Retrieval</name>
        <section anchor="client-behavior-1">
          <name>Client Behavior</name>
          <t>If the client wants to resume the upload after an interruption, it has to know the amount of representation data processed by the upload resource so far. It can fetch the offset by sending a <tt>HEAD</tt> or <tt>GET</tt> request to the upload resource. Using <tt>HEAD</tt> is <bcp14>RECOMMENDED</bcp14>, since response content is not required for resumption. Upon a successful response, the client can continue the upload by appending representation data (<xref target="upload-appending"/>) starting at the offset indicated by the <tt>Upload-Offset</tt> response header field.</t>
          <t>The offset can be less than or equal to the number of bytes of representation data that the client has already sent. The client is expected to handle backtracking of a reasonable length. On the other hand, the offset can be greater than the amount of sent representation data if the upload resource obtained additional representation data on behalf of the client. If the client is not able to provide the representation data at the given offset, the upload <bcp14>MUST</bcp14> be considered a failure. The client then <bcp14>MUST NOT</bcp14> continue the upload and <bcp14>SHOULD</bcp14> cancel the upload (<xref target="upload-cancellation"/>).</t>
          <t>The client <bcp14>MUST NOT</bcp14> perform offset retrieval while creation (<xref target="upload-creation"/>) or appending (<xref target="upload-appending"/>) is in progress as this can cause the previous request to be terminated by the server as described in <xref target="concurrency"/>.</t>
          <t>If the client receives a 2xx successful response, the client can continue appending representation data to it and/or mark the upload as complete (<xref target="upload-appending"/>).</t>
          <t>If the client receives a 4xx client error or 5xx server error response, or if it did not receive a response, the client <bcp14>MAY</bcp14> retry retrieving the offset.</t>
        </section>
        <section anchor="offset-retrieving-server">
          <name>Server Behavior</name>
          <t>A successful response to a <tt>HEAD</tt> or <tt>GET</tt> request against an upload resource</t>
          <ul spacing="normal">
            <li>
              <t><bcp14>MUST</bcp14> include the offset in the <tt>Upload-Offset</tt> header field (<xref target="upload-offset"/>),</t>
            </li>
            <li>
              <t><bcp14>MUST</bcp14> include the <tt>Upload-Complete</tt> header field (<xref target="upload-complete"/>) indicating whether a final response was produced from processing the uploaded representation,</t>
            </li>
            <li>
              <t><bcp14>MUST</bcp14> include the representation's length in the <tt>Upload-Length</tt> header field, unless the client has not supplied the representation's length as described in (<xref target="upload-length"/>),</t>
            </li>
            <li>
              <t><bcp14>MUST</bcp14> indicate the limits in the <tt>Upload-Limit</tt> header field (<xref target="upload-limit"/>), and</t>
            </li>
            <li>
              <t><bcp14>SHOULD</bcp14> include the <tt>Cache-Control</tt> header field with the value <tt>no-store</tt> to prevent HTTP caching (<xref target="CACHING"/>).</t>
            </li>
          </ul>
          <t>The server <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt>, <tt>302 (Found)</tt>, or <tt>303 (See Other)</tt> status codes because clients might follow the redirect without preserving the <tt>HEAD</tt> method.</t>
          <t>A client does not require response content for an offset retrieval request in order to successfully resume an upload. Therefore, serving response content for a <tt>GET</tt> request is unexpected. Its meaning is not defined by this protocol.</t>
        </section>
        <section anchor="offset-retrieving-example">
          <name>Examples</name>
          <t>The following example shows an offset retrieval request. The server indicates the current offset and that the upload is not complete yet. The client can continue to append representation data.</t>
          <sourcecode type="http-message"><![CDATA[
HEAD /upload/c35e2cd29 HTTP/1.1
Host: example.com
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 204 No Content
Upload-Complete: ?0
Upload-Offset: 25000000
Upload-Length: 100000000
Upload-Limit: max-age=3600
Cache-Control: no-store
]]></sourcecode>
        </section>
      </section>
      <section anchor="upload-appending">
        <name>Upload Append</name>
        <section anchor="client-behavior-2">
          <name>Client Behavior</name>
          <t>A client can continue the upload and append representation data by sending a <tt>PATCH</tt> request with the <tt>application/partial-upload</tt> media type (<xref target="media-type-partial-upload"/>) to the upload resource. The request content is the representation data to append. The request can benefit from incremental delivery; see <xref target="incremental"/>.</t>
          <t>The client <bcp14>MUST</bcp14> indicate the offset of the request content inside the representation data by including the <tt>Upload-Offset</tt> header field. To ensure that the upload resource will accept the request, the offset <bcp14>SHOULD</bcp14> be taken from an immediate previous response for retrieving the offset (<xref target="offset-retrieving"/>) or appending representation data (<xref target="upload-appending"/>).</t>
          <t>The request <bcp14>MUST</bcp14> include the <tt>Upload-Complete</tt> header field. Its value is true in two cases:</t>
          <ul spacing="normal">
            <li>
              <t>the request has content that is the end of the representation data. Once the content is fully processed by the server, the upload is complete.</t>
            </li>
            <li>
              <t>the request has no content. Once the request is processed by the server, the upload is complete. This usage requires the full representation data to have been processed during prior requests.</t>
            </li>
          </ul>
          <t>If the client received a final response with the <tt>Upload-Complete: ?1</tt> header field, the upload is complete and the corresponding response comes from the resource processing the representation according to the initial request (<xref target="upload-complete"/>). Note that this does not necessarily indicate success. <tt>4xx (Client Error)</tt> or <tt>5xx (Server Error)</tt> status codes indicate in this case an error occurred while processing the representation, and therefore, resuming the upload would not resolve this error.</t>
          <t>If the client received a 4xx client error or 5xx server error final response with the <tt>Upload-Complete</tt> header field set to false or missing, or if it did not receive a final response, it can apply the heuristics described in <xref target="retry"/> to retry or resume the upload.</t>
        </section>
        <section anchor="server-behavior-1">
          <name>Server Behavior</name>
          <t>A server applies a <tt>PATCH</tt> request with the <tt>application/partial-upload</tt> media type (<xref target="media-type-partial-upload"/>) to an upload resource by appending the patch document in the request content.</t>
          <t>The server might not process the entire patch document when the upload is interrupted, for example because of a dropped connection or canceled request. In this case, the server <bcp14>SHOULD</bcp14> append as much of the patch document as possible to the upload resource, starting at its beginning and without discontinuities. Appending a continuous section starting at the patch document's beginning constitutes a successful PATCH as defined in <xref section="2" sectionFormat="of" target="PATCH"/>. Saving the processed data allows the client to resume the upload from where it was interrupted. In addition, the upload resource <bcp14>MUST NOT</bcp14> be considered complete then.</t>
          <t>If the <tt>Upload-Offset</tt> request header field value does not match the current offset (<xref target="upload-offset"/>), the server <bcp14>MUST</bcp14> reject the request with a <tt>409 (Conflict)</tt> status code and the <tt>Upload-Complete</tt> header field set to false. The response <bcp14>MUST</bcp14> include the correct offset in the <tt>Upload-Offset</tt> header field. The response can use the problem type <xref target="PROBLEM"/> of "https://iana.org/assignments/http-problem-types#mismatching-upload-offset" (<xref target="mismatching-offset"/>).</t>
          <t>If the <tt>Upload-Complete</tt> request header field is set to true, the client intends to transfer the remaining representation data in one request. If the request content was fully processed, the upload is marked as complete and the server <bcp14>SHOULD</bcp14> generate the response that matches what the resource, that was targeted by the initial upload creation (<xref target="upload-creation"/>), would have generated if it had processed the entire representation in the initial request. However, the response <bcp14>MUST</bcp14> include the <tt>Upload-Complete</tt> header field with a true value, allowing clients to identify whether a response, in particular error responses, is related to the resumable upload itself or the processing of the uploaded representation.</t>
          <t>If the <tt>Upload-Complete</tt> request header field is set to false, the client intends to transfer the remaining representation data over multiple requests. If the request content was fully processed, the server acknowledges the appended data by sending a <tt>2xx (Successful)</tt> response with the <tt>Upload-Complete</tt> header field set to false.</t>
          <t>Even if the upload is complete (<xref target="upload-complete"/>) in the server's perspective and the final response from the targeted resource has already been sent, the client might still perform an upload append (<xref target="upload-appending"/>) after an offset retrieval (<xref target="offset-retrieving"/>) due to the response being lost during transmission. The server can choose to replay the final response to the client if the request to append to the completed upload is valid.</t>
          <t>The server <bcp14>MUST</bcp14> record the representation's length according to <xref target="upload-length"/> if the <tt>Upload-Length</tt> or <tt>Upload-Complete</tt> header fields are included in the request. If the representation's length is known, the server <bcp14>MUST</bcp14> prevent the offset from exceeding the representation's length by rejecting the request once the offset exceeds the length, marking the upload resource invalid and rejecting any further interaction with it. It is not sufficient to rely on the <tt>Content-Length</tt> header field for enforcement because this header field might not be present.</t>
          <t>While the request content is being processed, the server <bcp14>SHOULD</bcp14> send interim responses with a <tt>104 (Upload Resumption Supported)</tt> status code and the <tt>Upload-Offset</tt> header field set to the current offset to inform the client about the upload progress. These interim responses <bcp14>MUST NOT</bcp14> include the <tt>Location</tt> header field.</t>
          <t>The server <bcp14>SHOULD</bcp14> include the <tt>Upload-Complete</tt> (<xref target="upload-complete"/>) header field in the response to indicate whether it is the result of processing the uploaded representation.</t>
          <t>The server <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt>, <tt>302 (Found)</tt>, or <tt>303 (See Other)</tt> status codes and the <tt>Upload-Complete: ?0</tt> header field because clients might follow the redirect without preserving the <tt>PATCH</tt> method.</t>
        </section>
        <section anchor="upload-appending-example">
          <name>Examples</name>
          <t>A) The following example shows an upload append request. The client transfers the next 3456789 bytes at an offset of 20000000 and does not indicate that the upload is then completed. The server generates one interim response, when the offset reached 21728394 bytes, and finally acknowledges the new offset:</t>
          <sourcecode type="http-message"><![CDATA[
PATCH /upload/37a504d87 HTTP/1.1
Host: example.com
Upload-Complete: ?0
Upload-Offset: 20000000
Content-Length: 3456789
Content-Type: application/partial-upload

[content (3456789 bytes)]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 104 Upload Resumption Supported
Upload-Offset: 21728394

HTTP/1.1 204 No Content
Upload-Complete: ?0
]]></sourcecode>
          <t>B) The next example shows an upload append, where the client transfers the remaining 4567890 bytes and completes the upload with a length of 1234567890 bytes. The server processes the uploaded representation and generates the corresponding response, in this example containing extracted meta data:</t>
          <sourcecode type="http-message"><![CDATA[
PATCH /upload/d38d6ffe8 HTTP/1.1
Host: example.com
Upload-Complete: ?1
Upload-Offset: 1230000000
Content-Length: 4567890
Content-Type: application/partial-upload

[content (4567890 bytes)]
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Upload-Complete: ?1
Content-Type: application/json

{
  "metadata": {
    [...]
  }
}
]]></sourcecode>
        </section>
      </section>
      <section anchor="upload-cancellation">
        <name>Upload Cancellation</name>
        <section anchor="client-behavior-3">
          <name>Client Behavior</name>
          <t>If the client wants to terminate the transfer without the ability to resume, it can send a <tt>DELETE</tt> request to the upload resource. Doing so is an indication that the client is no longer interested in continuing the upload, and that the server can release any resources associated with it.</t>
        </section>
        <section anchor="server-behavior-2">
          <name>Server Behavior</name>
          <t>Upon receiving a <tt>DELETE</tt> request, the server <bcp14>SHOULD</bcp14> deactivate the upload resource.</t>
          <t>The server <bcp14>SHOULD</bcp14> terminate any in-flight requests to the upload resource before sending the response by abruptly terminating their HTTP connection(s) or stream(s) as described in <xref target="concurrency"/>.</t>
          <t>The server <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt>, <tt>302 (Found)</tt>, or <tt>303 (See Other)</tt> status codes because clients might follow the redirect without preserving the <tt>DELETE</tt> method.</t>
        </section>
        <section anchor="upload-cancellation-example">
          <name>Example</name>
          <t>The following example shows an upload cancellation:</t>
          <sourcecode type="http-message"><![CDATA[
DELETE /upload/5688a431c HTTP/1.1
Host: example.com
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 204 No Content
]]></sourcecode>
        </section>
      </section>
      <section anchor="concurrency">
        <name>Concurrency</name>
        <t>Resumable uploads, as defined in this document, do not permit uploading representation data in parallel to the same upload resource. The client <bcp14>MUST NOT</bcp14> perform multiple representation data transfers for the same upload resource in parallel.</t>
        <t>Even if the client is well-behaved and doesn't send concurrent requests, network interruptions can occur in such a way that the client considers a request as failed while the server is unaware of the problem and considers the request still ongoing. The client might then try to resume the upload with the best intentions, resulting in concurrent requests from the server's perspective. Therefore, the server <bcp14>MUST</bcp14> take measures to prevent race conditions, data loss and corruption from concurrent requests to append representation data (<xref target="upload-appending"/>) and/or cancellation (<xref target="upload-cancellation"/>) to the same upload resource. In addition, the server <bcp14>MUST NOT</bcp14> send outdated information in responses when retrieving the offset (<xref target="offset-retrieving"/>). This means that the offset sent by the server <bcp14>MUST</bcp14> be accepted in a subsequent request to append representation data if no other request to append representation data or cancel was received in the meantime. In other words, clients have to be able to use received offsets.</t>
        <t>The <bcp14>RECOMMENDED</bcp14> approach is as follows: If a server receives a new request to retrieve the offset (<xref target="offset-retrieving"/>), append representation data (<xref target="upload-appending"/>), or cancel the upload (<xref target="upload-cancellation"/>) while a previous request for creating the upload (<xref target="upload-creation"/>) or appending representation data (<xref target="upload-appending"/>) to the same upload resource is still ongoing, the server <bcp14>SHOULD</bcp14> prevent race conditions, data loss, and corruption by terminating the previous request before processing the new request. Due to network delay and reordering, the server might still be receiving representation data from an ongoing transfer for the same upload resource, which in the client's perspective has failed. Since the client is not allowed to perform multiple transfers for the same upload resource in parallel, the server can assume that the previous attempt has already failed. Therefore, the server <bcp14>MAY</bcp14> abruptly terminate the previous HTTP connection or stream.</t>
        <t>Since implementing this approach is not always technically possible or feasible, other measures can be considered as well. A simpler approach is that the server only processes a new request to retrieve the offset (<xref target="offset-retrieving"/>), append representation data (<xref target="upload-appending"/>), or cancellation (<xref target="upload-cancellation"/>) once all previous requests have been processed. This effectively implements exclusive access to the upload resource through an access lock. However, since network interruptions can occur in ways that cause the request to hang from the server's perspective, it might take the server significant time to realize the interruption and time out the request. During this period, the client will be unable to access the resource and resume the upload, causing friction for the end users. Therefore, the recommended approach is to terminate previous requests to enable quick resumption of uploads.</t>
      </section>
      <section anchor="retry">
        <name>Retry</name>
        <t>If the client received a 4xx client error or 5xx server error response with the <tt>Upload-Complete</tt> header field set to false or missing when creating the upload resource (<xref target="upload-creation"/>) or appending to it (<xref target="upload-appending"/>), it can apply the heuristics described below to retry or resume the upload.</t>
        <ul spacing="normal">
          <li>
            <t><tt>409 (Conflict)</tt> with the <tt>Upload-Complete</tt> header field set to false can be resumed with the correct offset (<xref target="upload-offset"/>). If no <tt>Upload-Offset</tt> header field is provided, the client <bcp14>SHOULD</bcp14> retrieve the offset (<xref target="offset-retrieving"/>) before resuming.</t>
          </li>
          <li>
            <t><tt>413 (Content Too Large)</tt> can be resumed after applying appropriate limits (<xref target="upload-limit"/>).</t>
          </li>
          <li>
            <t><tt>429 (Too Many Requests)</tt> can be retried after appropriate delays.</t>
          </li>
          <li>
            <t><tt>5xx (Server Error)</tt> status codes can be retried.</t>
          </li>
        </ul>
        <t>If no final response was received at all due to connectivity issues, the client <bcp14>MAY</bcp14> automatically attempt upload resumption by retrieving the current offset (<xref target="offset-retrieving"/>).</t>
        <t>The client <bcp14>SHOULD</bcp14> limit the number of retries it performs before considering the upload a failure.</t>
      </section>
    </section>
    <section anchor="status-code-104">
      <name>Status Code <tt>104 (Upload Resumption Supported)</tt></name>
      <t>The <tt>104 (Upload Resumption Supported)</tt> status code can be used for two purposes:</t>
      <ul spacing="normal">
        <li>
          <t>When responding to requests to create uploads, an interim response with the <tt>104 (Upload Resumption Supported)</tt> status code can be sent to indicate the resource's support for resumable uploads, as well as the URI and limits of the corresponding upload resource in the <tt>Location</tt> and <tt>Upload-Limit</tt> header fields, respectively (see <xref target="upload-creation"/>). This notifies the client early about the ability to resume the upload in case of network interruptions.</t>
        </li>
        <li>
          <t>While processing the content of a request to append representation data or create an upload, the server can regularly send interim responses with the <tt>104 (Upload Resumption Supported)</tt> status code to indicate the current upload progress in the <tt>Upload-Offset</tt> header field (see <xref target="upload-creation"/> and <xref target="upload-appending"/>). This allows the client to show more accurate progress information about the amount of data processed by the server. In addition, clients can use this information to release representation data that was buffered, knowing that it doesn't have to be retransmitted.</t>
        </li>
      </ul>
      <t>When creating or appending resumable uploads, the client can generate a 100-continue expectation because it wants an indication that the resource is willing to accept the upload. The client <bcp14>MAY</bcp14> treat an interim response with the <tt>104 (Upload Resumption Supported)</tt> status code as fulfilling the 100-continue expectation and start sending the request content. However, the server <bcp14>MUST NOT</bcp14> omit the <tt>100 (Continue)</tt> response because it has sent an interim response with the <tt>104 (Upload Resumption Supported)</tt> status code.</t>
    </section>
    <section anchor="media-type-partial-upload">
      <name>Media Type <tt>application/partial-upload</tt></name>
      <t>The <tt>application/partial-upload</tt> media type describes a contiguous block from the representation data that should be uploaded to a resource. There is no minimum block size and the block might be empty. The block can be a subset of the representation data, where the start and/or end of the block don't line up with the start and/or end of the representation data respectively.</t>
    </section>
    <section anchor="problem-types">
      <name>Problem Types</name>
      <section anchor="mismatching-offset">
        <name>Mismatching Offset</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#mismatching-upload-offset" problem type <xref target="PROBLEM"/>. A server can use this problem type when responding to an upload append request (<xref target="upload-appending"/>) to indicate that the <tt>Upload-Offset</tt> header field in the request does not match the upload resource's offset.</t>
        <t>Two problem type extension members are defined: the <tt>expected-offset</tt> and <tt>provided-offset</tt> members. A response using this problem type <bcp14>SHOULD</bcp14> populate both members, with the value of <tt>expected-offset</tt> taken from the upload resource and the value of <tt>provided-offset</tt> taken from the upload append request.</t>
        <t>The following example shows an example response, where the resource's offset was 12500000, but the client attempted to append at offset 25000000:</t>
        <sourcecode type="http-message"><![CDATA[
# NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 409 Conflict
Content-Type: application/problem+json
Upload-Offset: 12500000
Upload-Complete: ?0

{
  "type":"https://iana.org/assignments/http-problem-types#\
    mismatching-upload-offset",
  "title": "offset from request does not match offset of resource",
  "expected-offset": 12500000,
  "provided-offset": 25000000
}
]]></sourcecode>
      </section>
      <section anchor="inconsistent-length">
        <name>Inconsistent Length</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#inconsistent-upload-length" problem type <xref target="PROBLEM"/>. A server can use this problem type when responding to an upload creation (<xref target="upload-creation"/>) or upload append request (<xref target="upload-appending"/>) to indicate that the request includes inconsistent length values, as described in <xref target="upload-length"/>.</t>
        <t>The following example shows an example response:</t>
        <sourcecode type="http-message"><![CDATA[
# NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 400 Bad Request
Content-Type: application/problem+json
Upload-Complete: ?0

{
  "type":"https://iana.org/assignments/http-problem-types#\
    inconsistent-upload-length",
  "title": "inconsistent length values for upload"
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="content-codings">
      <name>Content Codings</name>
      <t>Since the codings listed in <tt>Content-Encoding</tt> are a characteristic of the representation (see <xref section="8.4" sectionFormat="of" target="HTTP"/>), both the client and the server always compute the values for <tt>Upload-Offset</tt> and optionally <tt>Upload-Length</tt> on the content coded data (that is, the representation data). Moreover, the content codings are retained throughout the entire upload, meaning that the server is not required to decode the representation data to support resumable uploads. See <xref section="A" sectionFormat="of" target="DIGEST-FIELDS"/> for more information.</t>
    </section>
    <section anchor="transfer-codings">
      <name>Transfer Codings</name>
      <t>Unlike <tt>Content-Encoding</tt> (see <xref section="8.4.1" sectionFormat="of" target="HTTP"/>), <tt>Transfer-Encoding</tt> (see <xref section="6.1" sectionFormat="of" target="RFC9112"/>) is a property of the message, not of the representation. Moreover, transfer codings can be applied in transit (e.g., by proxies). This means that a client does not have to consider the transfer codings to compute the upload offset, while a server is responsible for transfer decoding the message before computing the upload offset. The same applies to the value of <tt>Upload-Length</tt>. Please note that the <tt>Content-Length</tt> header field cannot be used in conjunction with the <tt>Transfer-Encoding</tt> header field.</t>
    </section>
    <section anchor="upload-strategies">
      <name>Upload Strategies</name>
      <t>The definition of the upload creation request (<xref target="upload-creation"/>) provides the client with flexibility to choose whether the representation data is fully or partially transferred in the first request, or if no representation data is included at all. Which behavior is best largely depends on the client's capabilities, its desire to avoid data retransmission, and its knowledge about the resource's support for resumable uploads.</t>
      <t>The following subsections describe two typical upload strategies that are suited for common environments. Note that these modes are never explicitly communicated to the server and clients are not required to stick to one strategy, but can mix and adapt them to their needs.</t>
      <section anchor="optimistic-upload-creation">
        <name>Optimistic Upload Creation</name>
        <t>An "optimistic upload creation" can be used independent of the client's knowledge about the resource's support for resumable uploads. However, the client must be capable of handling and processing interim responses. An upload creation request then includes the full representation data because the client anticipates that it will be transferred without interruptions or resumed if an interruption occurs.</t>
        <t>The benefit of this method is that if the upload creation request succeeded, the representation data was transferred in a single request without additional round trips.</t>
        <t>A possible drawback is that the client might be unable to resume an upload. If an upload is interrupted before the client receives a <tt>104 (Upload Resumption Supported)</tt> interim response with the upload resource's URI, the client cannot resume that upload due to the missing URI. The interim response might not be received if the interruption happens too early in the message exchange, the resource targeted in the initial request does not support resumable uploads, the server is not capable of sending the <tt>104 (Upload Resumption Supported)</tt> interim response, or an intermediary dropped the interim response. Without a 104 response, the client needs to either treat the upload as failed or retry the entire upload creation request if this is allowed by the application.</t>
        <t>A client might wait for a limited duration to receive a 104 (Upload Resumption Supported) interim response before starting to transmit the request content. This way, the client can learn about the resource's support for resumable uploads and/or the upload resource's URI. This is conceptually similar to how a client might wait for a 100 (Continue) interim response (see <xref section="10.1.1" sectionFormat="of" target="HTTP"/>) before committing to work.</t>
        <section anchor="upgrading-uploads">
          <name>Upgrading To Resumable Uploads</name>
          <t>Optimistic upload creation allows clients and servers to automatically upgrade non-resumable uploads to resumable ones. In a non-resumable upload, the representation is transferred in a single request, usually <tt>POST</tt> or <tt>PUT</tt>, without any ability to resume from interruptions. The client can invite the server to upgrade such a request to a resumable upload by adding the <tt>Upload-Complete: ?1</tt> header field to the original request. The <tt>Upload-Length</tt> header field <bcp14>SHOULD</bcp14> be added if the representation's length is known upfront. The request is not changed otherwise.</t>
          <t>If the resource targeted in the initial request supports resumable uploads, the server can create an upload resource and send its URI in a <tt>104 (Upload Resumption Supported)</tt> interim response for the client to resume the upload after interruptions. A resource that does not support resumable uploads or does not want to upgrade to a resumable upload for this request ignores the <tt>Upload-Complete: ?1</tt> header. The transfer then falls back to a non-resumable upload without additional cost.</t>
          <t>This upgrade can also be performed transparently by a library or program that acts as an HTTP client by sending requests on behalf of a user. When the user instructs the client to send a non-resumable request, the client can perform the upgrade transparently and handle potential interruptions and resumptions under the hood without involving the user. The last response received by the client is considered the response for the entire upload and should be provided to the user.</t>
        </section>
      </section>
      <section anchor="careful-upload-creation">
        <name>Careful Upload Creation</name>
        <t>For a "careful upload creation" the client knows that the resource targeted in the initial request supports resumable uploads and sends an empty upload creation request without including any representation data. Upon successful response reception, the client can use the included upload resource URI to transmit the representation data (<xref target="upload-appending"/>) and resume the upload at any stage if an interruption occurs. The client should inspect the response for the <tt>Upload-Limit</tt> header field, which would indicate limits applying to the remaining upload procedure.</t>
        <t>The retransmission of representation data or the ultimate upload failure that can happen with an "optimistic upload creation" is therefore avoided at the expense of an additional request that does not carry representation data.</t>
        <t>This approach is best suited if the client cannot receive interim responses, e.g., due to a limitation in the provided HTTP interface, or if large representations are transferred where the cost of the additional request is minuscule compared to the effort of transferring the representation itself.</t>
      </section>
    </section>
    <section anchor="incremental">
      <name>Incremental Transfer, Processing and Forwarding</name>
      <t>The resumable upload design is most effective when a server processes request message portions as they arrive, which ensures the greatest chance that data is processed before a possible transfer interruption.</t>
      <t>To support incremental processing, it is <bcp14>RECOMMENDED</bcp14> that clients send request content incrementally and minimize buffering.</t>
      <t>As described in <xref target="INCREMENTAL"/>, intermediaries might interfere with the incremental delivery of data to a server. Clients can use the <tt>Incremental</tt> header field defined in <xref section="3" sectionFormat="of" target="INCREMENTAL"/> to signal their preference for incremental forwarding by intermediaries.</t>
    </section>
    <section anchor="request-cancellation">
      <name>Request Cancellation</name>
      <t>A client or server might want to interrupt an in-flight message transfer intentionally for various reasons (see <xref target="introduction"/>). The mechanism to do so depends on the HTTP version in use:</t>
      <dl>
        <dt>HTTP/1.1:</dt>
        <dd>
          <t>close the underlying transport connection (<xref section="9.5" sectionFormat="of" target="RFC9112"/>)</t>
        </dd>
        <dt>HTTP/2:</dt>
        <dd>
          <t>send a <tt>RST_STREAM</tt> frame (<xref section="6.4" sectionFormat="of" target="RFC9113"/>)</t>
        </dd>
        <dt>HTTP/3:</dt>
        <dd>
          <t>send a <tt>RESET_STREAM</tt> (<xref section="19.4" sectionFormat="of" target="QUIC"/>) or <tt>STOP_SENDING</tt> frame (<xref section="19.5" sectionFormat="of" target="QUIC"/>)</t>
        </dd>
      </dl>
      <t>Version-specific mechanisms place requirements on clients or servers for actioning the cancellation. However, for all versions of HTTP, resumable uploads allow the server to process received representation data and expose the upload offset via the upload resource, enabling continuation of the upload after interruption.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The upload resource URI is the identifier used for modifying the upload. Without further protection of this URI, an attacker may obtain information about an upload, append data to it, or cancel it. To prevent this, the server <bcp14>SHOULD</bcp14> ensure that only authorized clients can access the upload resource. To reduce the risk of unauthorized access, it is <bcp14>RECOMMENDED</bcp14> to generate upload resource URIs in such a way that makes it hard to be guessed by unauthorized clients. In addition, servers may embed information about the storage or processing location of the uploaded representation in the upload resource URI to make routing requests more efficient. If so, they <bcp14>MUST</bcp14> ensure that no internal information is leaked in the URI that is not intended to be exposed.</t>
      <t>Uploaded representation data and its metadata are untrusted input. Server operators have to be careful of where uploaded data is written and subsequently accessed, especially if the operations cause the representation to be processed or executed by the server. In addition, metadata <bcp14>MUST</bcp14> be validated and/or sanitized if the server takes its values into consideration for processing or storing the representation.</t>
      <t>Some servers or intermediaries provide scanning of content uploaded by clients. Any scanning mechanism that relies on receiving a complete representation in a single request message can be defeated by resumable uploads because content can be split across multiple messages. Servers or intermediaries wishing to perform content scanning <bcp14>SHOULD</bcp14> consider how resumable uploads can circumvent scanning and take appropriate measures. Possible strategies include waiting for the upload to complete before scanning the entire representation, or disabling resumable uploads.</t>
      <t>There can be a significant delay between the creation of an upload resource and its completion. Policy decisions or authorization checks performed on the initial request might become outdated or invalid by the time the upload completes. To mitigate vulnerabilities arising from time-of-check to time-of-use (TOCTOU) conditions, the server <bcp14>SHOULD</bcp14> validate that the user is still allowed to perform the requested action before finalizing the upload. This includes, for example, validating access privileges and quota policies associated with the upload resource.</t>
      <t>Resumable uploads are vulnerable to Slowloris-style attacks <xref target="SLOWLORIS"/>. A malicious client may create upload resources and keep them alive by regularly sending <tt>PATCH</tt> requests with no or small content to the upload resources. This could be abused to exhaust server resources by creating and holding open uploads indefinitely with minimal work. Servers <bcp14>SHOULD</bcp14> provide mitigations for Slowloris attacks, such as increasing the maximum number of clients the server will allow, limiting the number of uploads a single client is allowed to make, imposing restrictions on the minimum transfer speed an upload is allowed to have, and restricting the length of time an upload resource can exist.</t>
      <t>Uploads performed as a series of appends can be used to upload data up to the <tt>max-size</tt> limit, which could be a larger size than a server or intermediary might normally permit in conventional single upload request message content. Servers or intermediaries need to consider that relying solely on message content limits to constrain resources allocated to uploads might not be an effective strategy when using resumable uploads.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="http-fields">
        <name>HTTP Fields</name>
        <t>IANA is asked to register the following entries in the "Hypertext Transfer Protocol (HTTP) Field Name Registry":</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Status</th>
              <th align="left">Structured Type</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Upload-Offset</td>
              <td align="left">permanent</td>
              <td align="left">Item</td>
              <td align="left">
                <xref target="upload-offset"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Upload-Complete</td>
              <td align="left">permanent</td>
              <td align="left">Item</td>
              <td align="left">
                <xref target="upload-complete"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Upload-Length</td>
              <td align="left">permanent</td>
              <td align="left">Item</td>
              <td align="left">
                <xref target="upload-length"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Upload-Limit</td>
              <td align="left">permanent</td>
              <td align="left">Dictionary</td>
              <td align="left">
                <xref target="upload-limit"/> of this document</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="http-status-code">
        <name>HTTP Status Code</name>
        <t>IANA is asked to register the following entry in the "HTTP Status Codes" registry:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>104 (suggested value)</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>Upload Resumption Supported</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t><xref target="status-code-104"/> of this document</t>
          </dd>
        </dl>
      </section>
      <section anchor="media-type">
        <name>Media Type</name>
        <t>IANA is asked to register the following entry in the "Media Types" registry:</t>
        <dl>
          <dt>Type name:</dt>
          <dd>
            <t>application</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>partial-upload</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>binary</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>see <xref target="security-considerations"/> of this document</t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t><xref target="media-type-partial-upload"/> of this document</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>Applications that transfer files over unreliable networks or want pause- and resumable uploads.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
        </dl>
        <t>Additional information:</t>
        <ul spacing="normal">
          <li>
            <t>Deprecated alias names for this type: N/A</t>
          </li>
          <li>
            <t>Magic number(s): N/A</t>
          </li>
          <li>
            <t>File extension(s): N/A</t>
          </li>
          <li>
            <t>Macintosh file type code(s): N/A</t>
          </li>
          <li>
            <t>Windows Clipboard Name: N/A</t>
          </li>
        </ul>
        <dl>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>See the Authors' Addresses section of this document.</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>See the Authors' Addresses section of this document.</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
        </dl>
      </section>
      <section anchor="http-problem-types">
        <name>HTTP Problem Types</name>
        <t>IANA is asked to register the following entry in the "HTTP Problem Types" registry:</t>
        <dl>
          <dt>Type URI:</dt>
          <dd>
            <t>https://iana.org/assignments/http-problem-types#mismatching-upload-offset</t>
          </dd>
          <dt>Title:</dt>
          <dd>
            <t>Mismatching Upload Offset</t>
          </dd>
          <dt>Recommended HTTP status code:</dt>
          <dd>
            <t>409</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="mismatching-offset"/> of this document</t>
          </dd>
        </dl>
        <t>IANA is asked to register the following entry in the "HTTP Problem Types" registry:</t>
        <dl>
          <dt>Type URI:</dt>
          <dd>
            <t>https://iana.org/assignments/http-problem-types#inconsistent-upload-length</t>
          </dd>
          <dt>Title:</dt>
          <dd>
            <t>Inconsistent Upload Length Values</t>
          </dd>
          <dt>Recommended HTTP status code:</dt>
          <dd>
            <t>400</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="inconsistent-length"/> of this document</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC9112" to="HTTP/1.1"/>
    <displayreference target="RFC9113" to="HTTP/2"/>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="CACHING">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </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"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <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="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="September" year="2024"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields.</t>
              <t>This document obsoletes RFC 8941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9651"/>
          <seriesInfo name="DOI" value="10.17487/RFC9651"/>
        </reference>
        <reference anchor="PATCH">
          <front>
            <title>PATCH Method for HTTP</title>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault"/>
            <author fullname="J. Snell" initials="J." surname="Snell"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>Several applications extending the Hypertext Transfer Protocol (HTTP) require a feature to do partial resource modification. The existing HTTP PUT method only allows a complete replacement of a document. This proposal adds a new HTTP method, PATCH, to modify an existing HTTP resource. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5789"/>
          <seriesInfo name="DOI" value="10.17487/RFC5789"/>
        </reference>
        <reference anchor="PROBLEM">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="E. Wilde" initials="E." surname="Wilde"/>
            <author fullname="S. Dalal" initials="S." surname="Dalal"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>This document defines a "problem detail" to carry machine-readable details of errors in HTTP response content to avoid the need to define new error response formats for HTTP APIs.</t>
              <t>This document obsoletes RFC 7807.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9457"/>
          <seriesInfo name="DOI" value="10.17487/RFC9457"/>
        </reference>
        <reference anchor="DIGEST-FIELDS">
          <front>
            <title>Digest Fields</title>
            <author fullname="R. Polli" initials="R." surname="Polli"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="February" year="2024"/>
            <abstract>
              <t>This document defines HTTP fields that support integrity digests. The Content-Digest field can be used for the integrity of HTTP message content. The Repr-Digest field can be used for the integrity of HTTP representations. Want-Content-Digest and Want-Repr-Digest can be used to indicate a sender's interest and preferences for receiving the respective Integrity fields.</t>
              <t>This document obsoletes RFC 3230 and the Digest and Want-Digest HTTP fields.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9530"/>
          <seriesInfo name="DOI" value="10.17487/RFC9530"/>
        </reference>
        <reference anchor="CONTENT-DISPOSITION">
          <front>
            <title>Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP)</title>
            <author fullname="J. Reschke" initials="J." surname="Reschke"/>
            <date month="June" year="2011"/>
            <abstract>
              <t>RFC 2616 defines the Content-Disposition response header field, but points out that it is not part of the HTTP/1.1 Standard. This specification takes over the definition and registration of Content-Disposition, as used in HTTP, and clarifies internationalization aspects. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6266"/>
          <seriesInfo name="DOI" value="10.17487/RFC6266"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="SLOWLORIS" target="https://web.archive.org/web/20150315054838/http://ha.ckers.org/slowloris/">
          <front>
            <title>Welcome to Slowloris - the low bandwidth, yet greedy and poisonous HTTP client!</title>
            <author initials="R." surname="&quot;RSnake&quot; Hansen">
              <organization/>
            </author>
            <date year="2009" month="June"/>
          </front>
        </reference>
        <reference anchor="RFC8792">
          <front>
            <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <author fullname="Q. Wu" initials="Q." surname="Wu"/>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8792"/>
          <seriesInfo name="DOI" value="10.17487/RFC8792"/>
        </reference>
        <reference anchor="INCREMENTAL">
          <front>
            <title>Incremental Forwarding of HTTP Messages</title>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <date day="2" month="March" year="2026"/>
            <abstract>
              <t>   This document specifies the "Incremental" HTTP header field, which
   instructs HTTP intermediaries to forward the HTTP message
   incrementally.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-incremental-04"/>
        </reference>
      </references>
    </references>
    <?line 983?>

<section removeInRFC="true" anchor="changes">
      <name>Changes</name>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-11">
        <name>Since draft-ietf-httpbis-resumable-upload-11</name>
        <ul spacing="normal">
          <li>
            <t>Clear up different responsibilities of server and upload resource.</t>
          </li>
          <li>
            <t>Relax recommendations on client handling greater offsets.</t>
          </li>
          <li>
            <t>Clarify client behavior for 413 responses.</t>
          </li>
          <li>
            <t>Remove Accept-Patch from OPTIONS responses.</t>
          </li>
          <li>
            <t>Allow upload creation requests with no content regardless of the <tt>min-append-size</tt> limit.</t>
          </li>
          <li>
            <t>Remove nominative languages addressing the lost final response.</t>
          </li>
          <li>
            <t>Allow <tt>max-age</tt> limit to decrease as expected.</t>
          </li>
          <li>
            <t>Redefine Upload-Complete on the server side.</t>
          </li>
          <li>
            <t>Recommend incremental delivery.</t>
          </li>
          <li>
            <t>Clarify <tt>min-size</tt> limit and its client behavior.</t>
          </li>
          <li>
            <t>Describe <tt>GET</tt> requests against upload resource.</t>
          </li>
          <li>
            <t>Replace uses of term "upload length" with "representation's length".</t>
          </li>
          <li>
            <t>Include <tt>Upload-Limit</tt> in response to limit violation.</t>
          </li>
          <li>
            <t>Clarify that clients might not know limits when starting upload.</t>
          </li>
          <li>
            <t>Remove section covering integrity digests.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
          <li>
            <t>Add version-specific details on cancelling in-flight transfers.</t>
          </li>
          <li>
            <t>Clarify client retry strategies.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-10">
        <name>Since draft-ietf-httpbis-resumable-upload-10</name>
        <ul spacing="normal">
          <li>
            <t>Add recommended disposition type for file name indication.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-09">
        <name>Since draft-ietf-httpbis-resumable-upload-09</name>
        <ul spacing="normal">
          <li>
            <t>Requires Accept-Patch in OPTIONS.</t>
          </li>
          <li>
            <t>Add security consideration regarding time-of-check to time-of-use.</t>
          </li>
          <li>
            <t>Lift requirement on Upload-Complete for all final responses.</t>
          </li>
          <li>
            <t>Relax requirements on limit changes.</t>
          </li>
          <li>
            <t>Describe the interaction between 100 and 104 responses.</t>
          </li>
          <li>
            <t>Numerous editorial improvements.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-08">
        <name>Since draft-ietf-httpbis-resumable-upload-08</name>
        <ul spacing="normal">
          <li>
            <t>Clarify definitions of new header fields.</t>
          </li>
          <li>
            <t>Make handling of OPTIONS * optional.</t>
          </li>
          <li>
            <t>Require server to announce limits using Upload-Limit.</t>
          </li>
          <li>
            <t>Require clients to adhere to known limits.</t>
          </li>
          <li>
            <t>Rephrase requirements for concurrency handling, focusing on the outcome.</t>
          </li>
          <li>
            <t>Remove requirement for 204 status code for DELETE responses.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
          <li>
            <t>Add section about 104 status code.</t>
          </li>
          <li>
            <t>Rephrase recommendation for sending information back to client.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-07">
        <name>Since draft-ietf-httpbis-resumable-upload-07</name>
        <ul spacing="normal">
          <li>
            <t>Clarify server handling when upload length is exceeded.</t>
          </li>
          <li>
            <t>Extend security considerations about upload resource URIs, representation metadata, and untrusted inputs.</t>
          </li>
          <li>
            <t>Allow clients to retry for appropriate 4xx responses.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-06">
        <name>Since draft-ietf-httpbis-resumable-upload-06</name>
        <ul spacing="normal">
          <li>
            <t>Minor editorial improvements to introduction and examples.</t>
          </li>
          <li>
            <t>Define structured types for new header fields.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-05">
        <name>Since draft-ietf-httpbis-resumable-upload-05</name>
        <ul spacing="normal">
          <li>
            <t>Increase the draft interop version.</t>
          </li>
          <li>
            <t>Numerous editorial changes.</t>
          </li>
          <li>
            <t>Rename <tt>expires</tt> limit to <tt>max-age</tt>.</t>
          </li>
          <li>
            <t>Require <tt>Upload-Complete</tt>, but not <tt>Upload-Offset</tt> or <tt>Upload-Limit</tt>, for append responses.</t>
          </li>
          <li>
            <t>Add problem type for inconsistent length values.</t>
          </li>
          <li>
            <t>Reduce use of "file" in favor of "representation".</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-04">
        <name>Since draft-ietf-httpbis-resumable-upload-04</name>
        <ul spacing="normal">
          <li>
            <t>Clarify implications of <tt>Upload-Limit</tt> header.</t>
          </li>
          <li>
            <t>Allow client to fetch upload limits upfront via <tt>OPTIONS</tt>.</t>
          </li>
          <li>
            <t>Add guidance on upload creation strategy.</t>
          </li>
          <li>
            <t>Add <tt>Upload-Length</tt> header to indicate length during creation.</t>
          </li>
          <li>
            <t>Describe possible usage of <tt>Want-Repr-Digest</tt>.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-03">
        <name>Since draft-ietf-httpbis-resumable-upload-03</name>
        <ul spacing="normal">
          <li>
            <t>Add note about <tt>Content-Location</tt> for referring to subsequent resources.</t>
          </li>
          <li>
            <t>Require <tt>application/partial-upload</tt> for appending to uploads.</t>
          </li>
          <li>
            <t>Explain handling of content and transfer codings.</t>
          </li>
          <li>
            <t>Add problem types for mismatching offsets and completed uploads.</t>
          </li>
          <li>
            <t>Clarify that completed uploads must not be appended to.</t>
          </li>
          <li>
            <t>Describe interaction with Digest Fields from RFC9530.</t>
          </li>
          <li>
            <t>Require that upload offset does not decrease over time.</t>
          </li>
          <li>
            <t>Add Upload-Limit header field.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-02">
        <name>Since draft-ietf-httpbis-resumable-upload-02</name>
        <ul spacing="normal">
          <li>
            <t>Add upload progress notifications via informational responses.</t>
          </li>
          <li>
            <t>Add security consideration regarding request filtering.</t>
          </li>
          <li>
            <t>Explain the use of empty requests for creation uploads and appending.</t>
          </li>
          <li>
            <t>Extend security consideration to include resource exhaustion attacks.</t>
          </li>
          <li>
            <t>Allow 200 status codes for offset retrieval.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-01">
        <name>Since draft-ietf-httpbis-resumable-upload-01</name>
        <ul spacing="normal">
          <li>
            <t>Replace Upload-Incomplete header with Upload-Complete.</t>
          </li>
          <li>
            <t>Replace terminology about procedures with HTTP resources.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-resumable-upload-00">
        <name>Since draft-ietf-httpbis-resumable-upload-00</name>
        <ul spacing="normal">
          <li>
            <t>Remove Upload-Token and instead use Server-generated upload URL for upload identification.</t>
          </li>
          <li>
            <t>Require the Upload-Incomplete header field in Upload Creation Procedure.</t>
          </li>
          <li>
            <t>Increase the draft interop version.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-tus-httpbis-resumable-uploads-protocol-02">
        <name>Since draft-tus-httpbis-resumable-uploads-protocol-02</name>
        <t>None</t>
      </section>
      <section numbered="false" anchor="since-draft-tus-httpbis-resumable-uploads-protocol-01">
        <name>Since draft-tus-httpbis-resumable-uploads-protocol-01</name>
        <ul spacing="normal">
          <li>
            <t>Clarifying backtracking and preventing skipping ahead during the Offset Receiving Procedure.</t>
          </li>
          <li>
            <t>Clients auto-retry 404 is no longer allowed.</t>
          </li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-tus-httpbis-resumable-uploads-protocol-00">
        <name>Since draft-tus-httpbis-resumable-uploads-protocol-00</name>
        <ul spacing="normal">
          <li>
            <t>Split the Upload Transfer Procedure into the Upload Creation Procedure and the Upload Appending Procedure.</t>
          </li>
        </ul>
      </section>
    </section>
    <section removeInRFC="true" anchor="draft-version-identification">
      <name>Draft Version Identification</name>
      <t>To assist the development of implementations and interoperability testing while this document is still a draft, an interop version is defined. Implementations of this draft use the interop version to identify the iteration of the draft that they implement. The interop version is bumped for breaking changes.</t>
      <t>The current interop version is 9.</t>
      <t>Client implementations of draft versions of the protocol <bcp14>MUST</bcp14> send a header field <tt>Upload-Draft-Interop-Version</tt> with the interop version as its value to its requests. The <tt>Upload-Draft-Interop-Version</tt> field value is an Integer.</t>
      <t>Server implementations of draft versions of the protocol <bcp14>MUST NOT</bcp14> send a <tt>104 (Upload Resumption Supported)</tt> interim response when the interop version indicated by the <tt>Upload-Draft-Interop-Version</tt> header field in the request is missing or mismatching.</t>
      <t>Server implementations of draft versions of the protocol <bcp14>MUST</bcp14> also send a header field <tt>Upload-Draft-Interop-Version</tt> with the interop version as its value to the <tt>104 (Upload Resumption Supported)</tt> interim response.</t>
      <t>Client implementations of draft versions of the protocol <bcp14>MUST</bcp14> ignore a <tt>104 (Upload Resumption Supported)</tt> interim response with missing or mismatching interop version indicated by the <tt>Upload-Draft-Interop-Version</tt> header field.</t>
      <t>The reason both the client and the server are sending and checking the draft version is to ensure that implementations of the final RFC will not accidentally interop with draft implementations, as they will not check the existence of the <tt>Upload-Draft-Interop-Version</tt> header field.</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is based on an Internet-Draft specification written by Jiten Mehta, Stefan Matsson, and the authors of this document.</t>
      <t>The <eref target="https://tus.io/">tus v1 protocol</eref> is a specification for a resumable file upload protocol over HTTP. It inspired the early design of this protocol. Members of the tus community helped significantly in the process of bringing this work to the IETF.</t>
      <t>The authors would like to thank Mark Nottingham for substantive contributions to the text, along with the following in alphabetical order for their thorough reviews of the document:</t>
      <ul spacing="normal">
        <li>
          <t>Daniel Resnick</t>
        </li>
        <li>
          <t>Glenn Strauss</t>
        </li>
        <li>
          <t>Grant Gryczan</t>
        </li>
        <li>
          <t>Julian Reschke</t>
        </li>
        <li>
          <t>Mert Alev</t>
        </li>
        <li>
          <t>Mike Bishop</t>
        </li>
        <li>
          <t>Roy T. Fielding</t>
        </li>
        <li>
          <t>Willy Tarreau</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
AQA=

-->

</rfc>
