<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-resumable-upload-10" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Resumable Uploads">Resumable Uploads for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-resumable-upload-10"/>
    <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="2025" month="October" day="20"/>
    <area>Web and Internet Transport</area>
    <workgroup>HTTP</workgroup>
    <keyword>HTTP, upload, resumable</keyword>
    <abstract>
      <?line 70?>

<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 received 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 74?>

<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 received 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 server'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, which signals the server's support of resumable upload as well as 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. Alternatively, it could also await the acknowledgement in 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 received 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 upload resource to delete the upload and free all related resources (<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 to a server known to support resumable upload, can upload parts of a representation incrementally.</t>
        <t>1) If the client is aware that the server supports resumable upload, it can start an 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 received 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 a <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 it had received the entire representation, 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"/>). This upload resource is responsible for handling the upload of a representation. Using the 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"/>).</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, if a client didn't receive the last response acknowledging the upload's completion and the upload resource is not available anymore, the client cannot verify the upload's state with the server. Therefore, the server <bcp14>SHOULD</bcp14> keep the upload resource available for a reasonable amount of time after the upload is complete, or provide an alternate, application-specific way for the client to verify the completion of the upload.</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 upload resource.</t>
        <section anchor="upload-offset">
          <name>Offset</name>
          <t>The offset is the number of bytes from the representation data that have been received, either during the creation of the upload resource (<xref target="upload-creation"/>) and 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>Representation data received 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 acknowledgement of the received 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. After this point, no representation data can be appended anymore.</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 if a request for creating the upload resource (<xref target="upload-creation"/>) or appending to it (<xref target="upload-appending"/>) included the <tt>Upload-Complete</tt> header field with a true value and the request content was fully received.</t>
        </section>
        <section anchor="upload-length">
          <name>Length</name>
          <t>The length of an upload is the number of bytes of representation data that the client intends to upload.</t>
          <t>Even the client might not know the total length of the representation data when starting the transfer, for example, because the representation is taken from a streaming source. However, a client <bcp14>SHOULD</bcp14> communicate the length to the upload resource as soon as it becomes known. There are two different ways for the client to indicate and the upload resource to discover the 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 and a valid <tt>Content-Length</tt> header field, the request content is the remaining representation data. The length is then the sum of the current offset (<xref target="upload-offset"/>) and the <tt>Content-Length</tt> header field value.</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 number of bytes of the entire representation data. 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. If multiple requests include indicators, their indicated values <bcp14>MUST</bcp14> match. 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 values.</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>The upload resource might not know the length until the upload is complete.</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>An upload resource <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 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. The server might not create an upload resource if the 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. 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 request (<xref target="upload-appending"/>). The server might reject requests exceeding this limit. A client that is aware of this limit <bcp14>MUST NOT</bcp14> send larger upload append 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 request (<xref target="upload-appending"/>). The server might reject requests below this limit. A client that is aware of this limit <bcp14>MUST NOT</bcp14> send smaller upload append requests. The value is an Integer. Requests completing the upload by including the <tt>Upload-Complete: ?1</tt> header field are exempt from this limit.</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. In particular, whereas the values for <tt>max-size</tt>, <tt>max-append-size</tt>, and <tt>max-age</tt> can increase without harm, they <bcp14>SHOULD NOT</bcp14> decrease as they can cause ongoing uploads to fail. Similarly, the value for <tt>min-append-size</tt> <bcp14>SHOULD NOT</bcp14> increase. If the client discovers that it cannot continue the upload while adhering to the limits, it <bcp14>SHOULD</bcp14> stop the current request immediately and cancel the upload (<xref target="upload-cancellation"/>).</t>
          <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>A server that supports the creation of a resumable upload resource (<xref target="upload-creation"/>) for a target URI <bcp14>MUST</bcp14> include the <tt>Accept-Patch</tt> (<xref section="3.1" sectionFormat="of" target="PATCH"/>) header field in response to an <tt>OPTIONS</tt> request for the target URI. If a server supports the creation of upload resources for any target URI, it <bcp14>SHOULD</bcp14> include the <tt>Accept-Patch</tt> header field in response to an <tt>OPTIONS</tt> request for the target <tt>*</tt> (if this target is supported). The value of the <tt>Accept-Patch</tt> header field <bcp14>MUST</bcp14> include the full <tt>application/partial-upload</tt> media type, even if it already contains <tt>*/*</tt> or <tt>application/*</tt>. The <tt>Upload-Limit</tt> header field <bcp14>SHOULD</bcp14> be included in the response to an <tt>OPTIONS</tt> request if limits apply.</t>
          <t>A client can use an <tt>OPTIONS</tt> request to discover support for resumable uploads and potential limits before creating an upload resource. While the values <tt>*/*</tt> and <tt>application/*</tt> in the <tt>Accept-Patch</tt> response header field indicate the acceptance of the <tt>application/partial-upload</tt> in PATCH requests, it does not necessarily indicate support for all aspects of resumable uploads as defined in this document. 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 1GB, but reduce it to 100MB when the media type indicates an image.</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 413 Content Too Large 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. The <tt>min-append-size</tt> and <tt>max-append-size</tt> limits apply to the upload resource. Servers might apply restrictions that are smaller than the append limits, which would also result in a failed request. Clients could deal with such situations by retrying an upload append using a smaller size, as long as the new size resides between <tt>min-append-size</tt> and <tt>max-append-size</tt>. Cases where an append uses <tt>min-append-size</tt> yet fails with a 413 Content Too Large 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>.</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 traditional uploads (<xref target="upgrading-uploads"/>).</t>
          <t>If the client knows the representation data'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"/>). This indication can be done through the <tt>Upload-Length</tt> header field or the combination of the <tt>Content-Length</tt> and <tt>Upload-Complete: ?1</tt> header fields (see <xref target="upload-length"/>).</t>
          <t>The client <bcp14>SHOULD</bcp14> respect any limits (<xref target="upload-limit"/>) announced 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 and cancel the upload (<xref target="upload-cancellation"/>).</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.3" 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-Disposition</tt> header field (<xref target="CONTENT-DISPOSITION"/>) can be used to transmit a filename. The <tt>Content-Encoding</tt> header field (<xref section="8.4" sectionFormat="of" target="HTTP"/>) names the content codings applied to the representation.</t>
          <t>If the client received a final response with a</t>
          <ul spacing="normal">
            <li>
              <t><tt>2xx (Successful)</tt> status code and the entire representation data was transferred in the request content, the upload is complete and the response comes from the targeted resource processing the representation.</t>
            </li>
            <li>
              <t><tt>2xx (Successful)</tt> status code and the entire representation data was not transferred in the request content, 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>
            </li>
            <li>
              <t><tt>4xx (Client Error)</tt> status code, the client <bcp14>SHOULD NOT</bcp14> attempt to retry or resume the upload, unless the semantics of the response allow or recommend the client to retry the request.</t>
            </li>
            <li>
              <t><tt>5xx (Server Error)</tt> status code or no final response at all due to connectivity issues, the client <bcp14>MAY</bcp14> automatically attempt upload resumption by retrieving the current offset (<xref target="offset-retrieving"/>) if it received the URI of the upload resource in a <tt>104 (Upload Resumption Supported)</tt> interim response.</t>
            </li>
          </ul>
        </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 by creating an upload resource. If so, it <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, while the upload resource 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 received, no resumable upload is needed and the resource proceeds to process the request and generate a response.</t>
          <t>If the <tt>Upload-Complete</tt> header field is set to false, the client intends to transfer the representation over multiple requests. If the request content was fully received, 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 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.</t>
          <t>While the request content is being received, 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 might not receive 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
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/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-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 received 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-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 uploads to the target resource are not allowed. The client cannot continue the upload.</t>
          <sourcecode type="http-message"><![CDATA[
POST /upload-not-allowed 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 405 Method Not Allowed
]]></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 received by the upload resource so far. It can fetch the offset by sending a <tt>HEAD</tt> request to the upload resource. 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 <bcp14>MAY</bcp14> reject an offset which is greater than the number of bytes it has already sent during this upload by not continuing the upload and canceling the upload resource (<xref target="upload-cancellation"/>). The client is expected to handle backtracking of a reasonable length. If the offset is invalid for this upload, or if the client cannot backtrack to the offset and reproduce the same representation data it has already sent, 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 received a response with a</t>
          <ul spacing="normal">
            <li>
              <t><tt>2xx (Successful)</tt> status code, the client can continue appending representation data to it (<xref target="upload-appending"/>) if the upload is not complete yet.</t>
            </li>
            <li>
              <t><tt>307 (Temporary Redirect)</tt> or <tt>308 (Permanent Redirect)</tt> status code, the client <bcp14>MAY</bcp14> retry retrieving the offset from the new URI.</t>
            </li>
            <li>
              <t><tt>4xx (Client Error)</tt> status code, the client <bcp14>SHOULD NOT</bcp14> attempt to retry or resume the upload, unless the semantics of the response allow or recommend the client to retry the request.</t>
            </li>
            <li>
              <t><tt>5xx (Server Error)</tt> status code or no final response at all due to connectivity issues, the client <bcp14>MAY</bcp14> retry retrieving the offset.</t>
            </li>
          </ul>
        </section>
        <section anchor="offset-retrieving-server">
          <name>Server Behavior</name>
          <t>A successful response to a <tt>HEAD</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 completeness state in the <tt>Upload-Complete</tt> header field (<xref target="upload-complete"/>),</t>
            </li>
            <li>
              <t><bcp14>MUST</bcp14> include the length in the <tt>Upload-Length</tt> header field, unless the client has not supplied one, by providing the corresponding headers 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 resource <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt> and <tt>302 (Found)</tt> status codes because clients might follow the redirect without preserving the <tt>HEAD</tt> method.</t>
        </section>
        <section anchor="offset-retrieving-example">
          <name>Examples</name>
          <t>A) 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>
          <t>B) The following example shows an offset retrieval request for a completed upload. The client does not need to continue the upload.</t>
          <sourcecode type="http-message"><![CDATA[
HEAD /upload/a9edb781b HTTP/1.1
Host: example.com
]]></sourcecode>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 204 No Content
Upload-Complete: ?1
Upload-Offset: 100000000
Upload-Length: 100000000
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.</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> request 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 received 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 received via 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 (see <xref target="upload-creation"/>). Note that the status code does not necessary indicate success. <tt>4xx (Client Error)</tt> or <tt>5xx (Server Error)</tt> status codes indicate in this case that the representation was fully transmitted, but an error occurred while processing it. Resuming the upload would not resolve this error.</t>
          <t>If the client received a final response with the <tt>Upload-Complete: ?0</tt> header field or the header field missing, the next step depends on the status code:</t>
          <ul spacing="normal">
            <li>
              <t>A <tt>2xx (Successful)</tt> status code indicates that representation data was appended but the upload is not complete. The client can continue appending representation data.</t>
            </li>
            <li>
              <t>For a <tt>307 (Temporary Redirect)</tt> or <tt>308 (Permanent Redirect)</tt> status code, the client <bcp14>MAY</bcp14> retry appending to the new URI.</t>
            </li>
            <li>
              <t>For a <tt>4xx (Client Error)</tt> status code, the client <bcp14>SHOULD NOT</bcp14> attempt to retry or resume the upload, unless the semantics of the response allow or recommend the client to retry the request.</t>
            </li>
            <li>
              <t>For a <tt>5xx (Server Error)</tt> status code, the client <bcp14>MAY</bcp14> automatically attempt upload resumption by retrieving the current offset (<xref target="offset-retrieving"/>).</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>
        </section>
        <section anchor="server-behavior-1">
          <name>Server Behavior</name>
          <t>An upload resource applies a <tt>PATCH</tt> request with the <tt>application/partial-upload</tt> media type (<xref target="media-type-partial-upload"/>) by appending the patch document in the request content to the upload resource.</t>
          <t>The server might not receive 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 received 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 upload resource <bcp14>MUST</bcp14> reject the request with a <tt>409 (Conflict)</tt> status code. 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 upload is already complete (<xref target="upload-complete"/>), the server <bcp14>MUST NOT</bcp14> modify the upload resource and <bcp14>MUST</bcp14> reject the request. The choice of response depends on the nature of the upload request and server state, including but not limited to:</t>
          <ul spacing="normal">
            <li>
              <t>If the client attempted to append a non-zero length document, the server <bcp14>MUST</bcp14> treat this as an inconsistent length failure. The 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 the response.</t>
            </li>
            <li>
              <t>If the client attempted to append a zero-length document:
              </t>
              <ul spacing="normal">
                <li>
                  <t>If the server retains knowledge of the upload resource but it is not available, the <tt>410 (Gone)</tt> status code can be used; the response could also contain a <tt>Location</tt> header field to indicate the location of the completed upload. The server can use the problem type <xref target="PROBLEM"/> of "https://iana.org/assignments/http-problem-types#completed-upload" (<xref target="completed-upload"/>) in the response.</t>
                </li>
                <li>
                  <t>If the server has not retained knowledge of the upload resource, a <tt>404 (Not Found)</tt> status code can be used.</t>
                </li>
              </ul>
            </li>
          </ul>
          <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 received, the upload is marked as complete and the upload resource <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 received 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 upload representation.</t>
          <t>If the <tt>Upload-Complete</tt> request header field is set to false, the client intends to transfer the remaining representation over multiple requests. If the request content was fully received, the upload resource 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>The server <bcp14>MUST</bcp14> record the 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 length is known, the server <bcp14>MUST</bcp14> prevent the offset from exceeding the upload 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 the header field might not be present.</t>
          <t>While the request content is being received, 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>
        </section>
        <section anchor="upload-appending-example">
          <name>Examples</name>
          <t>A) The following example shows an upload append request. The client transfers the next 23456789 bytes at an offset of 23456789 and does not indicate that the upload is then completed. The server generates one interim response 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: 23456789
Content-Length: 23456789
Content-Type: application/partial-upload

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

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 responding 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 resource <bcp14>SHOULD NOT</bcp14> generate a response with the <tt>301 (Moved Permanently)</tt> and <tt>302 (Found)</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 an upload resource 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"/>) is still ongoing, the resource <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 resource 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 in parallel, the upload resource 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>
    <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 is 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 server'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 received 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 re-transmitted.</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 server 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

{
  "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="completed-upload">
        <name>Completed Upload</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#completed-upload" 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 upload has already been completed and cannot be modified.</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

{
  "type":"https://iana.org/assignments/http-problem-types#\
    completed-upload",
  "title": "upload is already completed"
}
]]></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 upload 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

{
  "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="integrity-digests">
      <name>Integrity Digests</name>
      <t>The integrity of an entire upload or individual upload requests can be verifying using digests from <xref target="DIGEST-FIELDS"/>.</t>
      <section anchor="representation-digests">
        <name>Representation Digests</name>
        <t>Representation digests help verify the integrity of the entire representation data that has been uploaded so far, which might stretch across multiple requests.</t>
        <t>If the client knows the integrity digest of the entire representation data before creating an upload resource, it can include the <tt>Repr-Digest</tt> header field when creating an upload (<xref target="upload-creation"/>). Once the upload is completed, the server can compute the integrity digest of the received representation data and compare it to the provided digest. If the digests don't match, the server <bcp14>SHOULD</bcp14> consider the upload failed, not process the representation further, and signal the failure to the client. This way, the integrity of the entire representation data can be protected.</t>
        <t>Alternatively, when creating an upload (<xref target="upload-creation"/>), the client can ask the server to compute and return the integrity digests using a <tt>Want-Repr-Digest</tt> field conveying the preferred algorithms.
The response <bcp14>SHOULD</bcp14> include at least one of the requested digests, but might not include it.
The server <bcp14>SHOULD</bcp14> compute the representation digests using the preferred algorithms once the upload is complete and include the corresponding <tt>Repr-Digest</tt> header field in the response.
Alternatively, the server can compute the digest continuously during the upload and include the <tt>Repr-Digest</tt> header field in responses to upload creation (<xref target="upload-creation"/>) and upload appending requests (<xref target="upload-appending"/>) even when the upload is not completed yet.
This allows the client to simultaneously compute the digest of the transmitted representation data, compare its digest to the server's digest, and spot data integrity issues.
If an upload is spread across multiple requests, data integrity issues can be found even before the upload is fully completed.</t>
      </section>
      <section anchor="content-digests">
        <name>Content Digests</name>
        <t>Content digests help verify the integrity of the content in an individual request.</t>
        <t>If the client knows the integrity digest of the content from an upload creation (<xref target="upload-creation"/>) or upload appending (<xref target="upload-appending"/>) request, it can include the <tt>Content-Digest</tt> header field in the request. Once the content has been received, the server can compute the integrity digest of the received content and compare it to the provided digest. If the digests don't match the server <bcp14>SHOULD</bcp14> consider the transfer failed, not append the content to the upload resource, and signal the failure to the client. This way, the integrity of an individual request can be protected.</t>
      </section>
    </section>
    <section anchor="responses-to-uploads">
      <name>Responses to Uploads</name>
      <t>HTTP uploads often not only transfer a representation to the server but also send back information to the client. For resumable uploads, this works similarly to conventional HTTP uploads. The server can include information in the response to the request that transferred the remaining representation data and included the <tt>Upload-Complete: ?1</tt> header field. Clients can regard this response as the final response for the entire upload, as detailed in <xref target="upload-creation"/> and <xref target="upload-appending"/>.</t>
      <t>However, due to network interruptions, the upload resource might receive the remaining representation data, complete the upload, and send a response to the client, which then does not receive the response. The client can learn that the upload is complete by retrieving its state (<xref target="offset-retrieving"/>), but resumable uploads as defined in this document do not offer functionality to recover the missed response.</t>
      <t>To address this issue, the server can send the desired information in header fields, which are included in both the final response and responses when the client fetches the upload state via a HEAD request (<xref target="offset-retrieving"/>). This way, the client can retrieve the information from the header even if it failed to receive the final response. If the piece of information is too large for header fields, the server could make it available as a separate resource for retrieval and point the client to its URI in an appropriate 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 intention to avoid data re-transmission, and its knowledge about the server'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 server'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 server does not support resumable uploads at all, the server does not support 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 data's length is known upfront. The request is not changed otherwise.</t>
          <t>A server that supports resumable uploads at the target URI 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 server 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 a 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 server 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="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#completed-upload</t>
          </dd>
          <dt>Title:</dt>
          <dd>
            <t>Upload Is Completed</t>
          </dd>
          <dt>Recommended HTTP status code:</dt>
          <dd>
            <t>400</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="completed-upload"/> 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"/>
    <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="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>
      </references>
    </references>
    <?line 1005?>

<section removeInRFC="true" anchor="changes">
      <name>Changes</name>
      <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 8.</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> informational 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> informational response.</t>
      <t>Client implementations of draft versions of the protocol <bcp14>MUST</bcp14> ignore a <tt>104 (Upload Resumption Supported)</tt> informational 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>Mike Bishop</t>
        </li>
        <li>
          <t>Roy T. Fielding</t>
        </li>
        <li>
          <t>Julian Reschke</t>
        </li>
        <li>
          <t>Glenn Strauss</t>
        </li>
        <li>
          <t>Willy Tarreau</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
VV3Dv7/P8Z6cpSCd01Xv/wKd2z92kkABAA==

-->

</rfc>
