<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version  -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-core-echo-request-tag-11" category="std" updates="7252">

  <front>
    <title abbrev="CoAP: ERT">CoAP: Echo, Request-Tag, and Token Processing</title>

    <author initials="C." surname="Amsuess" fullname="Christian Amsüss">
      <organization></organization>
      <address>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <author initials="J." surname="Mattsson" fullname="John Preuß Mattsson">
      <organization>Ericsson AB</organization>
      <address>
        <email>john.mattsson@ericsson.com</email>
      </address>
    </author>
    <author initials="G." surname="Selander" fullname="Göran Selander">
      <organization>Ericsson AB</organization>
      <address>
        <email>goran.selander@ericsson.com</email>
      </address>
    </author>

    <date year="2020" month="November" day="02"/>

    <area>General</area>
    <workgroup>CoRE Working Group</workgroup>
    

    <abstract>


<t>This document specifies enhancements to the Constrained Application Protocol (CoAP) that mitigate security issues in particular use cases. The Echo option enables a CoAP server to verify the freshness of a request or to force a client to demonstrate reachability at its claimed network address. The Request-Tag option allows the CoAP server to match block-wise message fragments belonging to the same request. This document updates RFC7252 with respect to the client Token processing requirements, forbidding non-secure reuse of Tokens to ensure binding of response to request when CoAP is used with a security protocol, and with respect to amplification mitigation, where the use of Echo is now recommended.</t>



    </abstract>


  </front>

  <middle>


<section anchor="intro" title="Introduction">

<t>The initial Constrained Application Protocol (CoAP) suite of specifications (<xref target="RFC7252"/>, <xref target="RFC7641"/>, and <xref target="RFC7959"/>) was designed with the assumption that security could be provided on a separate layer, in particular by using DTLS (<xref target="RFC6347"/>). However, for some use cases, additional functionality or extra processing is needed to support secure CoAP operations. This document specifies security enhancements to the Constrained Application Protocol (CoAP).</t>

<t>This document specifies two CoAP options, the Echo option and the Request-Tag option: The Echo option enables a CoAP server to verify the freshness of a request, synchronize state, or force a client to demonstrate reachability at its claimed network address. The Request-Tag option allows the CoAP server to match message fragments belonging to the same request, fragmented using the CoAP block-wise Transfer mechanism, which mitigates attacks and enables concurrent block-wise operations. These options in themselves do not replace the need for a security protocol; they specify the format and processing of data which, when integrity protected using e.g. DTLS (<xref target="RFC6347"/>), TLS (<xref target="RFC8446"/>), or OSCORE (<xref target="RFC8613"/>), provide the additional security features.</t>

<t>This document updates <xref target="RFC7252"/> with a recommendation that servers use the Echo option to mitigate amplification attacks.</t>

<t>The document also updates the Token processing requirements for clients specified in <xref target="RFC7252"/>. The updated processing forbids non-secure reuse of Tokens to ensure binding of responses to requests when CoAP is used with security, thus mitigating error cases and attacks where the client may erroneously associate the wrong response to a request.</t>

<t>Each of the following sections provides a more detailed introduction to the topic at hand in its first subsection.</t>

<section anchor="terminology" title="Terminology">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>

<t>Like <xref target="RFC7252"/>, this document is relying on the Representational State Transfer <xref target="REST"/> architecture of the Web.</t>

<t>Unless otherwise specified, the terms “client” and “server” refer to “CoAP client” and “CoAP server”, respectively, as defined in <xref target="RFC7252"/>. The term “origin server” is used as in <xref target="RFC7252"/>. The term “origin client” is used in this document to denote the client from which a request originates; to distinguish from clients in proxies.</t>

<t>The terms “payload” and “body” of a message are used as in <xref target="RFC7959"/>.  The complete interchange of a request and a response body is called a (REST) “operation”. An operation fragmented using <xref target="RFC7959"/> is called a “block-wise operation”. A block-wise operation which is fragmenting the request body is called a “block-wise request operation”.  A block-wise operation which is fragmenting the response body is called a “block-wise response operation”.</t>

<t>Two request messages are said to be “matchable” if they occur between the same endpoint pair, have the same code, and have the same set of options, with the exception that elective NoCacheKey options and options involved in block-wise transfer (Block1, Block2 and Request-Tag) need not be the same.
<!-- We could also keep the Request-Tag inside the matchable criterion, but then we'd be saying "matchable except for the Request-Tag" all over the document. -->
Two operations are said to be matchable if any of their messages are.</t>

<t>Two matchable block-wise operations are said to be “concurrent” if a block of the second request is exchanged even though the client still intends to exchange further blocks in the first operation. (Concurrent block-wise request operations from a single endpoint are impossible with the options of <xref target="RFC7959"/> (see the last paragraphs of Sections 2.4 and 2.5) because the second operation’s block overwrites any state of the first exchange.).</t>

<t>The Echo and Request-Tag options are defined in this document.</t>

</section>
</section>
<section anchor="echo" title="Request Freshness and the Echo Option">

<section anchor="req-fresh" title="Request Freshness">

<t>A CoAP server receiving a request is in general not able to verify when the request was sent by the CoAP client. This remains true even if the request was protected with a security protocol, such as DTLS. This makes CoAP requests vulnerable to certain delay attacks which are particularly perilous in the case of actuators (<xref target="I-D.mattsson-core-coap-actuators"/>). Some attacks can be mitigated by establishing fresh session keys, e.g. performing a DTLS handshake for each request, but in general this is not a solution suitable for constrained environments, for example, due to increased message overhead and latency. Additionally, if there are proxies, fresh DTLS session keys between server and proxy does not say anything about when the client made the request. In a general hop-by-hop setting, freshness may need to be verified in each hop.</t>

<t>A straightforward mitigation of potential delayed requests is that the CoAP server rejects a request the first time it appears and asks the CoAP client to prove that it intended to make the request at this point in time.</t>

</section>
<section anchor="the-echo-option" title="The Echo Option">

<t>This document defines the Echo option, a lightweight challenge-response mechanism for CoAP that enables a CoAP server to verify the freshness of a request. A fresh request is one whose age has not yet exceeded the freshness requirements set by the server. The freshness requirements are application specific and may vary based on resource, method, and parameters outside of CoAP such as policies. The Echo option value is a challenge from the server to the client included in a CoAP response and echoed back to the server in one or more CoAP requests. The Echo option provides a convention to transfer freshness indicators that works for all CoAP methods and response codes.</t>

<t>This mechanism is not only important in the case of actuators, or other use cases where the CoAP operations require freshness of requests, but also in general for synchronizing state between CoAP client and server, cryptographically verifying the aliveness of the client, or forcing a client to demonstrate reachability at its claimed network address. The same functionality can be provided by echoing freshness indicators in CoAP payloads, but this only works for methods and response codes defined to have a payload. The Echo option provides a convention to transfer freshness indicators that works for all methods and response codes.</t>

<section anchor="echo-format" title="Echo Option Format">

<t>The Echo Option is elective, safe-to-forward, not part of the cache-key, and not repeatable, see <xref target="echo-table"/>, which extends Table 4 of <xref target="RFC7252"/>).</t>

<figure title="Echo Option Summary" anchor="echo-table"><artwork align="center"><![CDATA[
+--------+---+---+---+---+-------------+--------+------+---------+---+---+
| No.    | C | U | N | R | Name        | Format | Len. | Default | E | U |
+--------+---+---+---+---+-------------+--------+------+---------+---+---+
| TBD252 |   |   | x |   | Echo        | opaque | 1-40 | (none)  | x | x |
+--------+---+---+---+---+-------------+--------+------+---------+---+---+

      C = Critical, U = Unsafe, N = NoCacheKey, R = Repeatable,
      E = Encrypt and Integrity Protect (when using OSCORE)
]]></artwork></figure>

<t>The Echo option value is generated by a server, and its content and structure are implementation specific. Different methods for generating Echo option values are outlined in <xref target="echo-state"/>. Clients and intermediaries MUST treat an Echo option value as opaque and make no assumptions about its content or structure.</t>

<t>When receiving an Echo option in a request, the server MUST be able to verify that the Echo option value (a) was generated by the server or some other party that the server trusts, and (b) fulfills the freshness requirements of the application. Depending on the freshness requirements the server may verify exactly when the Echo option value was generated (time-based freshness) or verify that the Echo option was generated after a specific event (event-based freshness). As the request is bound to the Echo option value, the server can determine that the request is not older that the Echo option value.</t>

<t>When the Echo option is used with OSCORE <xref target="RFC8613"/> it MAY be an Inner or Outer option, and the Inner and Outer values are independent. OSCORE servers MUST only produce Inner Echo options unless they are merely testing for reachability of the client (the same as proxies may do). The Inner option is encrypted and integrity protected between the endpoints, whereas the Outer option is not protected by OSCORE and visible between the endpoints to the extent it is not protected by some other security protocol.  E.g. in the case of DTLS hop-by-hop between the endpoints, the Outer option is visible to proxies along the path.</t>

</section>
</section>
<section anchor="echo-proc" title="Echo Processing">

<t>The Echo option MAY be included in any request or response (see <xref target="echo-app"/> for different applications).</t>

<t>The application decides under what conditions a CoAP request to a resource is required to be fresh. These conditions can for example include what resource is requested, the request method and other data in the request, and conditions in the environment such as the state of the server or the time of the day.</t>

<t>If a certain request is required to be fresh, the request does not contain a fresh Echo option value, and the server cannot verify the freshness of the request in some other way, the server MUST NOT process the request further and SHOULD send a 4.01 Unauthorized response with an Echo option. The server MAY include the same Echo option value in several different response messages and to different clients. Examples of this could be time-based freshness when several responses are sent closely after each other or event-based freshness with no event taking place between the responses.</t>

<t>The server may use request freshness provided by the Echo option to verify the aliveness of a client or to synchronize state. The server may also include the Echo option in a response to force a client to demonstrate reachability at its claimed network address. Note that the Echo option does not bind a request to any particular previous response, but provides an indication that the client had access to the previous response at the time when it created the request.</t>

<t>Upon receiving a 4.01 Unauthorized response with the Echo option, the client SHOULD resend the original request with the addition of an Echo option with the received Echo option value. The client MAY send a different request compared to the original request. Upon receiving any other response with the Echo option, the client SHOULD echo the Echo option value in the next request to the server. The client MAY include the same Echo option value in several different requests to the server.</t>

<t>A client MUST only send Echo values to endpoints it received them from (where as defined in <xref target="RFC7252"/> Section 1.2, the security association is part of the endpoint). In OSCORE processing, that means sending Echo values from Outer options (or from non-OSCORE responses) back in Outer options, and those from Inner options in Inner options in the same security context.</t>

<t>Upon receiving a request with the Echo option, the server determines if the request is required to be fresh. If not, the Echo option MAY be ignored. If the request is required to be fresh and the server cannot verify the freshness of the request in some other way, the server MUST use the Echo option to verify that the request is fresh. If the server cannot verify that the request is fresh, the request is not processed further, and an error message MAY be sent. The error message SHOULD include a new Echo option.</t>

<t>One way for the server to verify freshness is to bind the Echo value to a specific point in time and verify that the request is not older than a certain threshold T. The server can verify this by checking that (t1 - t0) &lt; T, where t1 is the request receive time and t0 is the time when the Echo option value was generated. An example message flow is shown in <xref target="echo-figure-time"/>.</t>

<figure title="Example Message Flow for Time-Based Freshness" anchor="echo-figure-time"><artwork align="center"><![CDATA[
Client   Server
   |       |
   +------>|        Code: 0.03 (PUT)
   |  PUT  |       Token: 0x41
   |       |    Uri-Path: lock
   |       |     Payload: 0 (Unlock)
   |       |
   |<------+        Code: 4.01 (Unauthorized)
   |  4.01 |       Token: 0x41
   |       |        Echo: 0x437468756c687521 (t0)
   |       |
   +------>| t1     Code: 0.03 (PUT)
   |  PUT  |       Token: 0x42
   |       |    Uri-Path: lock
   |       |        Echo: 0x437468756c687521 (t0)
   |       |     Payload: 0 (Unlock)
   |       |
   |<------+        Code: 2.04 (Changed)
   |  2.04 |       Token: 0x42
   |       |
]]></artwork></figure>

<t>Another way for the server to verify freshness is to maintain a cache of values associated to events. The size of the cache is defined by the application. In the following we assume the cache size is 1, in which case freshness is defined as no new event has taken place. At each event a new value is written into the cache. The cache values MUST be different for all practical purposes. The server verifies freshness by checking that e0 equals e1, where e0 is the cached value when the Echo option value was generated, and e1 is the cached value at the reception of the request. An example message flow is shown in <xref target="echo-figure-event"/>.</t>

<figure title="Example Message Flow for Event-Based Freshness" anchor="echo-figure-event"><artwork align="center"><![CDATA[
Client   Server
   |       |
   +------>|        Code: 0.03 (PUT)
   |  PUT  |       Token: 0x41
   |       |    Uri-Path: lock
   |       |     Payload: 0 (Unlock)
   |       |
   |<------+        Code: 4.01 (Unauthorized)
   |  4.01 |       Token: 0x41
   |       |        Echo: 0x436F6D69632053616E73 (e0)
   |       |
   +------>| e1     Code: 0.03 (PUT)
   |  PUT  |       Token: 0x42
   |       |    Uri-Path: lock
   |       |        Echo: 0x436F6D69632053616E73 (e0)
   |       |     Payload: 0 (Unlock)
   |       |
   |<------+        Code: 2.04 (Changed)
   |  2.04 |       Token: 0x42
   |       |
]]></artwork></figure>

<t>When used to serve freshness requirements (including client aliveness and state synchronizing), the Echo option value MUST be integrity protected between the intended endpoints, e.g. using DTLS, TLS, or an OSCORE Inner option (<xref target="RFC8613"/>). When used to demonstrate reachability at a claimed network address, the Echo option SHOULD contain the client’s network address, but MAY be unprotected.</t>

<t>A CoAP-to-CoAP proxy MAY set an Echo option on responses, both on forwarded ones that had no Echo option or ones generated by the proxy (from cache or as an error). If it does so, it MUST remove the Echo option it recognizes as one generated by itself on follow-up requests. When it receives an Echo option in a response, it may forward it to the client (and, not recognizing it as an own in future requests, relay it in the other direction as well) or process it on its own.
If it does so, it MUST ensure that the client’s request was generated (or is re-generated) after the Echo value used to send to the server was first seen.
(In most cases, this means that the proxy needs to ask the client to repeat the request with a new Echo value.)</t>

<t>The CoAP server side of CoAP-to-HTTP proxies MAY request freshness, especially if they have reason to assume that access may require it (e.g. because it is a PUT or POST); how this is determined is out of scope for this document. The CoAP client side of HTTP-to-CoAP proxies SHOULD respond to Echo challenges themselves if they know from the recent establishing of the connection that the HTTP request is fresh. Otherwise, they SHOULD respond with 503 Service Unavailable, Retry-After: 0 and terminate any underlying Keep-Alive connection. If the HTTP request arrived in Early Data, the proxy SHOULD use a 425 Too Early response instead (see <xref target="RFC8470"/>). They MAY also use other mechanisms to establish freshness of the HTTP request that are not specified here.</t>

</section>
<section anchor="echo-app" title="Applications of the Echo Option">

<t><list style="numbers">
  <t>Actuation requests often require freshness guarantees to avoid accidental or malicious delayed actuator actions. In general, all non-safe methods (e.g. POST, PUT, DELETE) may require freshness guarantees for secure operation.  <list style="symbols">
      <t>The same Echo value may be used for multiple actuation requests to the same server, as long as the total round-trip time since the Echo option value was generated is below the freshness threshold.</t>
      <t>For actuator applications with low delay tolerance, to avoid additional round-trips for multiple requests in rapid sequence, the server may include the Echo option with a new value even in a successful response to a request, irrespectively of whether the request contained an Echo option or not. The client then uses the Echo option with the new value in the next actuation request, and the server compares the receive time accordingly.</t>
    </list></t>
  <t>A server may use the Echo option to synchronize properties (such as state or time) with a requesting client. A server MUST NOT synchronize a property with a client which is not the authority of the property being synchronized. E.g. if access to a server resource is dependent on time, then server MUST NOT synchronize time with a client requesting access unless it is time authority for the server.  <list style="symbols">
      <t>If a server reboots during operation it may need to synchronize state or time before continuing the interaction. For example, with OSCORE it is possible to reuse a partly persistently stored security context by synchronizing the Partial IV (sequence number) using the Echo option, see Section 7.5 of <xref target="RFC8613"/>.</t>
      <t>A device joining a CoAP group communication <xref target="RFC7390"/> protected with OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> may be required to initially verify freshness and synchronize state or time with a client by using the Echo option in a unicast response to a multicast request. The client receiving the response with the Echo option includes the Echo value in a subsequent unicast request to the responding server.</t>
    </list></t>
  <t>A server that sends large responses to unauthenticated peers SHOULD mitigate amplification attacks such as described in Section 11.3 of <xref target="RFC7252"/> (where an attacker would put a victim’s address in the source address of a CoAP request). The RECOMMENDED way to do this is to ask a client to Echo its request to verify its source address. This needs to be done only once per peer and limits the range of potential victims from the general Internet to endpoints that have been previously in contact with the server. For this application, the Echo option can be used in messages that are not integrity protected, for example during discovery.  <list style="symbols">
      <t>In the presence of a proxy, a server will not be able to distinguish
different origin client endpoints. Following from the recommendation above, a proxy that sends large responses to unauthenticated peers SHOULD mitigate amplification attacks. The proxy SHOULD use Echo to verify origin reachability as described in <xref target="echo-proc"/>. The proxy MAY forward idempotent requests immediately to have a cached result available when the client’s Echoed request arrives.</t>
      <t>Amplification mitigation should be used when the response would be more than three times the size of the request,
considering the complete frame on the wire as it is typically sent across the Internet.
In practice, this allows UDP data of at least 152 Bytes without further checks.</t>
      <t>When an Echo response is sent to mitigate amplification,
it MUST be sent as a piggybacked or Non-confirmable response,
never as a separate one (which would cause amplification due to retransmission).</t>
    </list></t>
  <t>A server may want to use the request freshness provided by the Echo to verify the aliveness of a client. Note that in a deployment with hop-by-hop security and proxies, the server can only verify aliveness of the closest proxy.</t>
</list></t>

</section>
</section>
<section anchor="request-tag" title="Protecting Message Bodies using Request Tags">

<section anchor="body-int" title="Fragmented Message Body Integrity">

<t>CoAP was designed to work over unreliable transports, such as UDP, and include a lightweight reliability feature to handle messages which are lost or arrive out of order. In order for a security protocol to support CoAP operations over unreliable transports, it must allow out-of-order delivery of messages using e.g. a sliding replay window such as described in Section 4.1.2.6 of DTLS (<xref target="RFC6347"/>).</t>

<t>The block-wise transfer mechanism <xref target="RFC7959"/> extends CoAP by defining the transfer of a large resource representation (CoAP message body) as a sequence of blocks (CoAP message payloads). The mechanism uses a pair of CoAP options, Block1 and Block2, pertaining to the request and response payload, respectively. The block-wise functionality does not support the detection of interchanged blocks between different message bodies to the same resource having the same block number. This remains true even when CoAP is used together with a security protocol such as DTLS or OSCORE, within the replay window (<xref target="I-D.mattsson-core-coap-actuators"/>), which is a vulnerability of CoAP when using RFC7959.</t>

<t>A straightforward mitigation of mixing up blocks from different messages is to use unique identifiers for different message bodies, which would provide equivalent protection to the case where the complete body fits into a single payload. The ETag option <xref target="RFC7252"/>, set by the CoAP server, identifies a response body fragmented using the Block2 option.</t>

</section>
<section anchor="the-request-tag-option" title="The Request-Tag Option">

<t>This document defines the Request-Tag option for identifying request bodies, similar to ETag, but ephemeral and set by the CoAP client. The Request-Tag is intended for use as a short-lived identifier for keeping apart distinct block-wise request operations on one resource from one client, addressing the issue described in <xref target="body-int"/>. It enables the receiving server to reliably assemble request payloads (blocks) to their message bodies, and, if it chooses to support it, to reliably process simultaneous block-wise request operations on a single resource. The requests must be integrity protected if they should protect against interchange of blocks between different message bodies. The Request-Tag option is only used in requests that carry the Block1 option, and in Block2 requests following these.</t>

<t>In essence, it is an implementation of the “proxy-safe elective option” used just to “vary the cache key” as suggested in <xref target="RFC7959"/> Section 2.4.</t>

<section anchor="req-tag-format" title="Request-Tag Option Format">

<t>The Request-Tag option is not critical, is safe to forward, repeatable, and part of the cache key, see <xref target="req-tag-table"/>, which extends Table 4 of <xref target="RFC7252"/>).</t>

<figure title="Request-Tag Option Summary" anchor="req-tag-table"><artwork align="center"><![CDATA[
+--------+---+---+---+---+-------------+--------+------+---------+---+---+
| No.    | C | U | N | R | Name        | Format | Len. | Default | E | U |
+--------+---+---+---+---+-------------+--------+------+---------+---+---+
| TBD292 |   |   |   | x | Request-Tag | opaque |  0-8 | (none)  | x | x |
+--------+---+---+---+---+-------------+--------+------+---------+---+---+

      C = Critical, U = Unsafe, N = NoCacheKey, R = Repeatable,
      E = Encrypt and Integrity Protect (when using OSCORE)
]]></artwork></figure>

<t>Request-Tag, like the block options, is both a class E and a class U option in terms of OSCORE processing (see Section 4.1 of <xref target="RFC8613"/>): The Request-Tag MAY be an Inner or Outer option. It influences the Inner or Outer block operation, respectively. The Inner and Outer values are therefore independent of each other. The Inner option is encrypted and integrity protected between client and server, and provides message body identification in case of end-to-end fragmentation of requests. The Outer option is visible to proxies and labels message bodies in case of hop-by-hop fragmentation of requests.</t>

<t>The Request-Tag option is only used in the request messages of block-wise operations.</t>

<t>The Request-Tag mechanism can be applied independently on the server and client sides of CoAP-to-CoAP proxies as are the block options,
though given it is safe to forward, a proxy is free to just forward it when processing an operation.
CoAP-to-HTTP proxies and HTTP-to-CoAP proxies can use Request-Tag on their CoAP sides;
it is not applicable to HTTP requests.</t>

</section>
</section>
<section anchor="request-tag-processing" title="Request-Tag Processing by Servers">

<t>The Request-Tag option does not require any particular processing on the server side
outside of the processing already necessary for any unknown elective proxy-safe cache-key option:
The option varies the properties that distinguish block-wise operations
(which includes all options except elective NoCacheKey and except Block1/2),
and thus the server can not treat messages with a different list of Request-Tag options as belonging to the same operation.
<!-- not speaking of "matchable" here as that working definition explicitly excludes Request-Tag to make the rest of the document easier to read --></t>

<t>To keep utilizing the cache,
a server (including proxies) MAY discard the Request-Tag option
from an assembled block-wise request when consulting its cache,
as the option relates to the operation-on-the-wire and not its semantics.
For example, a FETCH request with the same body as an older one can be served from the cache if the older’s Max-Age has not expired yet,
even if the second operation uses a Request-Tag and the first did not.
(This is similar to the situation about ETag in that it is formally part of the cache key,
but implementations that are aware of its meaning can cache more efficiently,
see <xref target="RFC7252"/> Section 5.4.2).</t>

<t>A server receiving a Request-Tag MUST treat it as opaque and make no assumptions about its content or structure.</t>

<t>Two messages carrying the same Request-Tag is a necessary but not sufficient condition for being part of the same operation.
For one, a server may still treat them as independent messages when it sends 2.01/2.04 responses for every block.
Also, a client that lost interest in an old operation but wants to start over can overwrite the server’s old state with a new initial (num=0) Block1 request and the same Request-Tag under some circumstances. Likewise, that results in the new message not being part of the old operation.</t>

<t>As it has always been,
a server that can only serve a limited number of block-wise operations at the same time
can delay the start of the operation by replying with 5.03 (Service unavailable) and a Max-Age indicating how long it expects the existing operation to go on,
or it can forget about the state established with the older operation and respond with 4.08 (Request Entity Incomplete) to later blocks on the first operation.</t>

</section>
<section anchor="setting-the-request-tag" title="Setting the Request-Tag">

<t>For each separate block-wise request operation, the client can choose a Request-Tag value, or choose not to set a Request-Tag.
It needs to be set to the same value (or unset) in all messages belonging to the same operation,
as otherwise they are treated as separate operations by the server.</t>

<t>Starting a request operation matchable to a
previous operation and even using the same Request-Tag value is called request tag recycling.
The absence of a Request-Tag option is viewed as a value distinct from all values with a single Request-Tag option set;
starting a request operation matchable to a previous operation where neither has a Request-Tag option
therefore constitutes request tag recycling just as well
(also called “recycling the absent option”).</t>

<t>Clients that use Request-Tag for a particular purpose (like in <xref target="req-tag-applications"/>) MUST NOT recycle a request tag unless the first operation has concluded.
What constitutes a concluded operation depends on the purpose, and is defined accordingly; see examples in <xref target="req-tag-applications"/>.</t>

<t>When Block1 and Block2 are combined in an operation,
the Request-Tag of the Block1 phase is set in the Block2 phase as well
for otherwise the request would have a different set of options
and would not be recognized any more.</t>

<t>Clients are encouraged to generate compact messages. This means sending messages without Request-Tag options whenever possible, and using short values when the absent option can not be recycled.</t>

<t>Note that Request-Tag options can be present in request messages that carry no Block option
(for example, because a Request-Tag unaware proxy reassembled them),
and MUST be ignored in those.</t>

<t>The Request-Tag option MUST NOT be present in response messages.</t>

</section>
<section anchor="req-tag-applications" title="Applications of the Request-Tag Option">

<section anchor="body-integrity" title="Body Integrity Based on Payload Integrity">

<t>When a client fragments a request body into multiple message payloads, even if the individual messages are integrity protected, it is still possible for an attacker to maliciously replace a later operation’s blocks with an earlier operation’s blocks (see Section 2.5 of <xref target="I-D.mattsson-core-coap-actuators"/>). Therefore, the integrity protection of each block does not extend to the operation’s request body.</t>

<t>In order to gain that protection, use the Request-Tag mechanism as follows:</t>

<t><list style="symbols">
  <t>The individual exchanges MUST be integrity protected end-to-end between client and server.</t>
  <t>The client MUST NOT recycle a request tag in a new operation unless the <!-- or "all", but by this rule there can only be one --> previous operation matchable to the new one has concluded.  <vspace blankLines='1'/>
If any future security mechanisms allow a block-wise transfer to continue
after an endpoint’s details (like the IP address) have changed, then
the client MUST consider messages sent to <spanx style="emph">any</spanx> endpoint address using the new operation’s security context.</t>
  <t>The client MUST NOT regard a block-wise request operation as concluded unless all of the messages the client previously sent in the operation have been confirmed by the message integrity protection mechanism, or the client can determine that the server would not consider the messages to be valid if they were replayed.  <vspace blankLines='1'/>
Typically, in OSCORE, these confirmations can result either from the client receiving an OSCORE response message matching the request (an empty ACK is insufficient), or because the message’s sequence number is old enough to be outside the server’s receive window.  <vspace blankLines='1'/>
In DTLS, this can only be confirmed if the request message was not retransmitted, and was responded to.</t>
</list></t>

<!-- pending see thread "ERT and OSCORE" -->
<t>Authors of other documents (e.g. applications of <xref target="RFC8613"/>) are invited to mandate this behavior for clients that execute block-wise interactions over secured transports. In this way, the server can rely on a conforming client to set the Request-Tag option when required, and thereby conclude on the integrity of the assembled body.</t>

<t>Note that this mechanism is implicitly implemented when the security layer guarantees ordered delivery (e.g. CoAP over TLS <xref target="RFC8323"/>). This is because with each message, any earlier message can not be replayed any more, so the client never needs to set the Request-Tag option unless it wants to perform concurrent operations.</t>

<t>Body integrity only makes sense in applications that have stateful block-wise transfers.
On applications where all the state is in the application
(e.g. because rather than POSTing a large representation to a collection in a stateful block-wise transfer,
a collection item is created first, then written to once and available when written completely),
clients need not concern themselves with body integrity and thus the Request-Tag.</t>

</section>
<section anchor="multiple-concurrent-block-wise-operations" title="Multiple Concurrent Block-wise Operations">

<t>CoAP clients, especially CoAP proxies, may initiate a block-wise request operation to a resource, to which a previous one is already in progress, which the new request should not cancel.
A CoAP proxy would be in such a situation when it forwards operations with the same cache-key options but possibly different payloads.</t>

<t>For those cases, Request-Tag is the proxy-safe elective option suggested in <xref target="RFC7959"/> Section 2.4 last paragraph.</t>

<t>When initializing a new block-wise operation, a client has to look at other active operations:</t>

<t><list style="symbols">
  <t>If any of them is matchable to the new one, and the client neither wants to cancel the old one nor postpone the new one,
it can pick a Request-Tag value (including the absent option) that is not in use by the other matchable operations for the new operation.</t>
  <t>Otherwise, it can start the new operation without setting the Request-Tag option on it.</t>
</list></t>

</section>
<section anchor="simpleproxy" title="Simplified Block-Wise Handling for Constrained Proxies">

<t>The Block options were defined to be unsafe to forward
because a proxy that would forward blocks as plain messages would risk mixing up clients’ requests.</t>

<t>In some cases,
for example when forwarding block-wise request operations,
appending a Request-Tag value unique to the client
can satisfy the requirements on the proxy that come from the presence of a block option.</t>

<t>This is particularly useful to proxies that strive for stateless operation
as described in <xref target="I-D.ietf-core-stateless"/> Section 4.</t>

<t>The precise classification of cases in which such a Request-Tag option is sufficient
is not trivial, especially when both request and response body are fragmented,
and out of scope for this document.</t>

</section>
</section>
<section anchor="rationale-for-the-option-properties" title="Rationale for the Option Properties">

<t>The Request-Tag option can be elective, because to servers unaware of the Request-Tag option, operations with differing request tags will not be matchable.</t>

<t>The Request-Tag option can be safe to forward but part of the cache key, because proxies unaware of the Request-Tag option will consider operations with differing request tags unmatchable but can still forward them.</t>

<t>The Request-Tag option is repeatable
because this easily allows several cascaded stateless proxies to each put in an origin address.
They can perform the steps of <xref target="simpleproxy"/> without the need to create an option value
that is the concatenation of the received option and their own value,
and can simply add a new Request-Tag option unconditionally.</t>

<t>In draft versions of this document, the Request-Tag option used to be critical and unsafe to forward.
That design was based on an erroneous understanding of which blocks could be composed according to <xref target="RFC7959"/>.</t>

</section>
<section anchor="rationale-for-introducing-the-option" title="Rationale for Introducing the Option">

<t>An alternative that was considered to the Request-Tag option
for coping with the problem of fragmented message body integrity (<xref target="body-integrity"/>)
was to update <xref target="RFC7959"/> to say that blocks could only be assembled
if their fragments’ order corresponded to the sequence numbers.</t>

<t>That approach would have been difficult to roll out reliably on DTLS
where many implementations do not expose sequence numbers,
and would still not prevent attacks like in <xref target="I-D.mattsson-core-coap-actuators"/> Section 2.5.2.</t>

</section>
<section anchor="etag" title="Block2 / ETag Processing">

<t>The same security properties as in <xref target="body-integrity"/> can be obtained for block-wise response operations.
The threat model here does not depend on an attacker:
a client can construct a wrong representation
by assembling it from blocks from different resource states.
That can happen when a resource is modified during a transfer,
or when some blocks are still valid in the client’s cache.</t>

<t>Rules stating that response body reassembly is conditional on matching ETag values are already in place from Section 2.4 of <xref target="RFC7959"/>.</t>

<t>To gain equivalent protection to <xref target="body-integrity"/>,
a server MUST use the Block2 option in conjunction with the ETag option (<xref target="RFC7252"/>, Section 5.10.6),
and MUST NOT use the same ETag value for different representations of a resource.</t>

</section>
</section>
<section anchor="token" title="Token Processing for Secure Request-Response Binding">

<section anchor="req-resp-bind" title="Request-Response Binding">

<t>A fundamental requirement of secure REST operations is that the client can bind a response to a particular request. If this is not ensured, a client may erroneously associate the wrong response to a request. The wrong response may be an old response for the same resource or a response for a completely different resource (see e.g. Section 2.3 of <xref target="I-D.mattsson-core-coap-actuators"/>). For example, a request for the alarm status “GET /status” may be associated to a prior response “on”, instead of the correct response “off”.</t>

<t>In HTTPS, this type of binding is always assured by the ordered and reliable delivery as well as mandating that the server sends responses in the same order that the requests were received. The same is not true for CoAP where the server (or an attacker) can return responses in any order and where there can be any number of responses to a request (see e.g. <xref target="RFC7641"/>). In CoAP, concurrent requests are differentiated by their Token. Note that the CoAP Message ID cannot be used for this purpose since those are typically different for REST request and corresponding response in case of “separate response”, see Section 2.2 of <xref target="RFC7252"/>.</t>

<t>CoAP <xref target="RFC7252"/> does not treat Token as a cryptographically important value and does not give stricter guidelines than that the Tokens currently “in use” SHOULD (not SHALL) be unique. If used with a security protocol not providing bindings between requests and responses (e.g. DTLS and TLS) Token reuse may result in situations where a client matches a response to the wrong request. Note that mismatches can also happen for other reasons than a malicious attacker, e.g. delayed delivery or a server sending notifications to an uninterested client.</t>

<t>A straightforward mitigation is to mandate clients to not reuse Tokens until the traffic keys have been replaced. The following section formalizes that.</t>

</section>
<section anchor="updated-token-processing-requirements-for-clients" title="Updated Token Processing Requirements for Clients">

<t>As described in <xref target="req-resp-bind"/>, the client must be able to verify that a response corresponds to a particular request. This section updates the Token processing requirements for clients in <xref target="RFC7252"/> to always assure a cryptographically secure binding of responses to requests for secure REST operations like “coaps”. The Token processing for servers is not updated. Token processing in Section 5.3.1 of <xref target="RFC7252"/> is updated by adding the following text:</t>

<t>When CoAP is used with a security protocol not providing bindings between requests and responses, the Tokens have cryptographic importance. The client MUST make sure that Tokens are not used in a way so that responses risk being associated with the wrong request.</t>

<t>One easy way to accomplish this is to implement the Token (or part of the Token) as a sequence number starting at zero for each new or rekeyed secure connection. This approach SHOULD be followed.</t>

</section>
</section>
<section anchor="sec-cons" title="Security Considerations">

<t>The freshness assertion of the Echo option comes from the client reproducing the same value of the Echo option in a request as in a previous response. If the Echo value is a large random number then there is a high probability that the request is generated after having seen the response. If the Echo value of the response can be guessed, e.g. if based on a small random number or a counter (see <xref target="echo-state"/>), then it is possible to compose a request with the right Echo value ahead of time. However, this may not be an issue if the communication is integrity protected against third parties and the client is trusted not misusing this capability. Echo values MUST be set by the CoAP server such that the risk associated with unintended reuse can be managed.</t>

<t>If uniqueness of the Echo value is based on randomness, then the availability of a secure pseudorandom number generator and truly random seeds are essential for the security of the Echo option. If no true random number generator is available, a truly random seed must be provided from an external source. As each pseudorandom number must only be used once, an implementation needs to get a new truly random seed after reboot, or continuously store state in nonvolatile memory. See (<xref target="RFC8613"/>, Appendix B.1.1) for issues and solution approaches for writing to nonvolatile memory.</t>

<t>A single active Echo value with 64 (pseudo-)random bits gives the same theoretical security level as a 64-bit MAC (as used in e.g. AES_128_CCM_8). If a random unique Echo value is intended, the Echo option value SHOULD contain 64 (pseudo-)random bits that are not predictable for any other party than the server. A server MAY use different security levels for different uses cases (client aliveness, request freshness, state synchronization, network address reachability, etc.).</t>

<t>The security provided by the Echo and Request-Tag options depends on the security protocol used. CoAP and HTTP proxies require (D)TLS to be terminated at the proxies. The proxies are therefore able to manipulate, inject, delete, or reorder options or packets. The security claims in such architectures only hold under the assumption that all intermediaries are fully trusted and have not been compromised.</t>

<t>Counter Echo values can only be used to show freshness relative to numbered events, and are the legitimate case for Echo values shorter than four bytes, which are not necessarily secret. They MUST NOT be used unless the request Echo values are integrity protected as per <xref target="echo-proc"/>.</t>

<t>Servers SHOULD use a monotonic clock to generate timestamps and compute round-trip times. Use of non-monotonic clocks is not secure as the server will accept expired Echo option values if the clock is moved backward. The server will also reject fresh Echo option values if the clock is moved forward. Non-monotonic clocks MAY be used as long as they have deviations that are acceptable given the freshness requirements. If the deviations from a monotonic clock are known, it may be possible to adjust the threshold accordingly.</t>

<t>An attacker may be able to affect the server’s system time in various ways such as setting up a fake NTP server or broadcasting false time signals to radio-controlled clocks.</t>

<t>For the purpose of generating timestamps for Echo a server MAY set a timer at reboot and use the time since reboot, in a unit such that  different requests arrive at different times. Servers MAY intermittently reset the timer and MAY generate a random offset applied to all timestamps. When resetting the timer, the server MUST reject all Echo values that were created before the reset.</t>

<t>Servers that use the List of Cached Random Values and Timestamps method described in <xref target="echo-state"/> may be vulnerable to resource exhaustion attacks. One way to minimize state is to use the Integrity Protected Timestamp method described in <xref target="echo-state"/>.</t>

<section anchor="token-reuse" title="Token reuse">

<t>Reusing Tokens in a way so that responses are guaranteed to not be associated with the wrong request is not trivial: The server may process requests in any order, and send multiple responses to the same request. An attacker may block, delay, and reorder messages. The use of a sequence number is therefore recommended when CoAP is used with a security protocol that does not provide bindings between requests and responses such as DTLS or TLS.</t>

<t>For a generic response to a Confirmable request over DTLS, binding can only be claimed without out-of-band knowledge if</t>

<t><list style="symbols">
  <t>the original request was never retransmitted,</t>
  <t>the response was piggybacked in an Acknowledgement message (as a Confirmable or Non-confirmable response may have been transmitted multiple times), and</t>
  <t>if observation was used, the same holds for the registration, all re-registrations, and the cancellation.</t>
</list></t>

<t>(In addition, for observations, any responses using that Token and a DTLS sequence number earlier than the cancellation Acknowledgement message need to be discarded. This is typically not supported in DTLS implementations.)</t>

<t>In some setups, Tokens can be reused without the above constraints, as a different component in the setup provides the associations:</t>

<t><list style="symbols">
  <t>In CoAP over TLS, retransmissions are not handled by the CoAP layer and behaves like a replay window size of 1. When a client is sending TLS-protected requests without Observe to a single server, the client can reuse a Token as soon as the previous response with that Token has been received.</t>
  <t>Requests whose responses are cryptographically bound to the requests (like in OSCORE) can reuse Tokens indefinitely.
<!-- could be added but is probably not worth the lines of text * Requests whose responses reflect all the data in the request that is varied over reuses of the same token (for example, if a token is always used on a single path with the single query parameter `?t=X` for various values of X, then the response needs to contain X in a unique position) can share a token, provided the application does not rely on the freshness of the responses, or sends different requests all the time.
--></t>
</list></t>

<t>In all other cases, a sequence number approach is RECOMMENDED as per <xref target="token"/>.</t>

<t>Tokens that cannot be reused need to be handled appropriately. This could be solved by increasing the Token as soon as the currently used Token cannot be reused, or by keeping a list of all blacklisted Tokens.</t>

<t>When the Token (or part of the Token) contains a sequence number, the encoding of the sequence number has to be chosen in a way to avoid any collisions. This is especially true when the Token contains more information than just the sequence number, e.g. serialized state as in <xref target="I-D.ietf-core-stateless"/>.</t>

</section>
</section>
<section anchor="priv-cons" title="Privacy Considerations">

<t>Implementations SHOULD NOT put any privacy-sensitive information in the Echo or Request-Tag option values. Unencrypted timestamps could reveal information about the server such as location or time since reboot, or that the server will accept expired certificates. Timestamps MAY be used if Echo is encrypted between the client and the server, e.g. in the case of DTLS without proxies or when using OSCORE with an Inner Echo option.</t>

<t>Like HTTP cookies, the Echo option could potentially be abused as a tracking mechanism that identifies a client across requests. This is especially true for preemptive Echo values. Servers MUST NOT use the Echo option to correlate requests for other purposes than freshness and reachability. Clients only send Echo values to the same server from which the values were received. Compared to HTTP, CoAP clients are often authenticated and non-mobile, and servers can therefore often correlate requests based on the security context, the client credentials, or the network address. Especially when the Echo option increases a server’s ability to correlate requests, clients MAY discard all preemptive Echo values.</t>

</section>
<section anchor="iana" title="IANA Considerations">

<t>IANA is requested to add the following option numbers to the “CoAP Option Numbers” registry defined by <xref target="RFC7252"/>:</t>

<t>[</t>

<t>The editor is asked to suggest the numbers after TBD, as those satisfy the construction requirements set out in RFC7252:
Echo is NoCacheKey but not Unsafe or Critical, so it needs to end with 11100 in binary representation;
Request-Tag has no properties so it needs to end with 00 and not with 11100).</t>

<t>Request-Tag was picked to not waste the precious space of less-than-one-byte options,
but such that its offset from the Block1 option it regularly occurs with can still be expressed in an 1-byte offset (27 + (13 + 255) &gt; 292).</t>

<t>Echo was picked to be the shortest it can be in an empty message as a NoCacheKey option
(11100 in binary does not fit in a nibble, and two lower ones are already taken),
and as high as possible to keep room for other options that might typically occur in pairs and might still use optimization around low numbers.</t>

<t>]</t>

<figure title="CoAP Option Numbers" anchor="iana-table"><artwork align="center"><![CDATA[
+--------+-------------+-------------------+
| Number | Name        | Reference         |
+--------+-------------+-------------------+
| TBD252 | Echo        | [[this document]] |
|        |             |                   |
| TBD292 | Request-Tag | [[this document]] |
+--------+-------------+-------------------+
]]></artwork></figure>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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="RFC7252" target='https://www.rfc-editor.org/info/rfc7252'>
<front>
<title>The Constrained Application Protocol (CoAP)</title>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby'><organization /></author>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t><t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t></abstract>
</front>
<seriesInfo name='RFC' value='7252'/>
<seriesInfo name='DOI' value='10.17487/RFC7252'/>
</reference>



<reference  anchor="RFC7959" target='https://www.rfc-editor.org/info/rfc7959'>
<front>
<title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby' role='editor'><organization /></author>
<date year='2016' month='August' />
<abstract><t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks.  Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates.  In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS).  These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t><t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of &quot;Block&quot; options for transferring multiple blocks of information from a resource representation in multiple request-response pairs.  In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers.  Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t><t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations.  Therefore, this specification updates RFC 7252.</t></abstract>
</front>
<seriesInfo name='RFC' value='7959'/>
<seriesInfo name='DOI' value='10.17487/RFC7959'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference  anchor="RFC8613" target='https://www.rfc-editor.org/info/rfc8613'>
<front>
<title>Object Security for Constrained RESTful Environments (OSCORE)</title>
<author initials='G.' surname='Selander' fullname='G. Selander'><organization /></author>
<author initials='J.' surname='Mattsson' fullname='J. Mattsson'><organization /></author>
<author initials='F.' surname='Palombini' fullname='F. Palombini'><organization /></author>
<author initials='L.' surname='Seitz' fullname='L. Seitz'><organization /></author>
<date year='2019' month='July' />
<abstract><t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE).  OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t><t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration.  Therefore, this document updates RFC 7252.</t></abstract>
</front>
<seriesInfo name='RFC' value='8613'/>
<seriesInfo name='DOI' value='10.17487/RFC8613'/>
</reference>



<reference  anchor="RFC6347" target='https://www.rfc-editor.org/info/rfc6347'>
<front>
<title>Datagram Transport Layer Security Version 1.2</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<author initials='N.' surname='Modadugu' fullname='N. Modadugu'><organization /></author>
<date year='2012' month='January' />
<abstract><t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol.  The DTLS protocol provides communications privacy for datagram protocols.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.  This document updates DTLS 1.0 to work with TLS version 1.2.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6347'/>
<seriesInfo name='DOI' value='10.17487/RFC6347'/>
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC7390" target='https://www.rfc-editor.org/info/rfc7390'>
<front>
<title>Group Communication for the Constrained Application Protocol (CoAP)</title>
<author initials='A.' surname='Rahman' fullname='A. Rahman' role='editor'><organization /></author>
<author initials='E.' surname='Dijk' fullname='E. Dijk' role='editor'><organization /></author>
<date year='2014' month='October' />
<abstract><t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for constrained devices and constrained networks. It is anticipated that constrained devices will often naturally operate in groups (e.g., in a building automation scenario, all lights in a given room may need to be switched on/off as a group). This specification defines how CoAP should be used in a group communication context.  An approach for using CoAP on top of IP multicast is detailed based on existing CoAP functionality as well as new features introduced in this specification.  Also, various use cases and corresponding protocol flows are provided to illustrate important concepts.  Finally, guidance is provided for deployment in various network topologies.</t></abstract>
</front>
<seriesInfo name='RFC' value='7390'/>
<seriesInfo name='DOI' value='10.17487/RFC7390'/>
</reference>



<reference  anchor="RFC7641" target='https://www.rfc-editor.org/info/rfc7641'>
<front>
<title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<date year='2015' month='September' />
<abstract><t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks.  The state of a resource on a CoAP server can change over time.  This document specifies a simple protocol extension for CoAP that enables CoAP clients to &quot;observe&quot; resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time.  The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t></abstract>
</front>
<seriesInfo name='RFC' value='7641'/>
<seriesInfo name='DOI' value='10.17487/RFC7641'/>
</reference>



<reference  anchor="RFC8323" target='https://www.rfc-editor.org/info/rfc8323'>
<front>
<title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<author initials='S.' surname='Lemay' fullname='S. Lemay'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<author initials='B.' surname='Silverajan' fullname='B. Silverajan'><organization /></author>
<author initials='B.' surname='Raymor' fullname='B. Raymor' role='editor'><organization /></author>
<date year='2018' month='February' />
<abstract><t>The Constrained Application Protocol (CoAP), although inspired by HTTP, was designed to use UDP instead of TCP.  The message layer of CoAP over UDP includes support for reliable delivery, simple congestion control, and flow control.</t><t>Some environments benefit from the availability of CoAP carried over reliable transports such as TCP or Transport Layer Security (TLS). This document outlines the changes required to use CoAP over TCP, TLS, and WebSockets transports.  It also formally updates RFC 7641 for use with these transports and RFC 7959 to enable the use of larger messages over a reliable transport.</t></abstract>
</front>
<seriesInfo name='RFC' value='8323'/>
<seriesInfo name='DOI' value='10.17487/RFC8323'/>
</reference>



<reference  anchor="RFC8446" target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2018' month='August' />
<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t><t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</reference>



<reference anchor="I-D.ietf-core-oscore-groupcomm">
<front>
<title>Group OSCORE - Secure Group Communication for CoAP</title>

<author initials='M' surname='Tiloca' fullname='Marco Tiloca'>
    <organization />
</author>

<author initials='G' surname='Selander' fullname='Goeran Selander'>
    <organization />
</author>

<author initials='F' surname='Palombini' fullname='Francesca Palombini'>
    <organization />
</author>

<author initials='J' surname='Park' fullname='Jiye Park'>
    <organization />
</author>

<date month='June' day='23' year='2020' />

<abstract><t>This document defines Group Object Security for Constrained RESTful Environments (Group OSCORE), providing end-to-end security of CoAP messages exchanged between members of a group, e.g. sent over IP multicast.  In particular, the described approach defines how OSCORE is used in a group communication setting to provide source authentication for CoAP group requests, sent by a client to multiple servers, and for protection of the corresponding CoAP responses.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-core-oscore-groupcomm-09' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-core-oscore-groupcomm-09.txt' />
</reference>



<reference anchor="I-D.mattsson-core-coap-actuators">
<front>
<title>Controlling Actuators with CoAP</title>

<author initials='J' surname='Mattsson' fullname='John Mattsson'>
    <organization />
</author>

<author initials='J' surname='Fornehed' fullname='John Fornehed'>
    <organization />
</author>

<author initials='G' surname='Selander' fullname='Goeran Selander'>
    <organization />
</author>

<author initials='F' surname='Palombini' fullname='Francesca Palombini'>
    <organization />
</author>

<author initials='C' surname='Amsuess' fullname='Christian Amsuess'>
    <organization />
</author>

<date month='September' day='17' year='2018' />

<abstract><t>Being able to trust information from sensors and to securely control actuators are essential in a world of connected and networking things interacting with the physical world.  In this memo we show that just using COAP with a security protocol like DTLS, TLS, or OSCORE is not enough.  We describe several serious attacks any on-path attacker can do, and discusses tougher requirements and mechanisms to mitigate the attacks.  While this document is focused on actuators, some of the attacks apply equally well to sensors.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-mattsson-core-coap-actuators-06' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-mattsson-core-coap-actuators-06.txt' />
</reference>



<reference anchor="I-D.ietf-core-stateless">
<front>
<title>Extended Tokens and Stateless Clients in the Constrained Application Protocol (CoAP)</title>

<author initials='K' surname='Hartke' fullname='Klaus Hartke'>
    <organization />
</author>

<date month='April' day='12' year='2020' />

<abstract><t>This document provides considerations for alleviating CoAP clients and intermediaries of keeping per-request state.  To facilitate this, this document additionally introduces a new, optional CoAP protocol extension for extended token lengths.  This document updates RFCs 7252 and 8323.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-core-stateless-06' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-core-stateless-06.txt' />
</reference>


<reference anchor="REST" target="https://www.ics.uci.edu/~fielding/pubs/dissertation/fielding_dissertation.pdf">
  <front>
    <title>Architectural Styles and the Design of Network-based Software Architectures</title>
    <author initials="R." surname="Fielding">
      <organization></organization>
    </author>
    <date year="2000"/>
  </front>
</reference>




<reference  anchor="RFC8470" target='https://www.rfc-editor.org/info/rfc8470'>
<front>
<title>Using Early Data in HTTP</title>
<author initials='M.' surname='Thomson' fullname='M. Thomson'><organization /></author>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='W.' surname='Tarreau' fullname='W. Tarreau'><organization /></author>
<date year='2018' month='September' />
<abstract><t>Using TLS early data creates an exposure to the possibility of a replay attack.  This document defines mechanisms that allow clients to communicate with servers about HTTP requests that are sent in early data.  Techniques are described that use these mechanisms to mitigate the risk of replay.</t></abstract>
</front>
<seriesInfo name='RFC' value='8470'/>
<seriesInfo name='DOI' value='10.17487/RFC8470'/>
</reference>




    </references>


<section anchor="echo-state" title="Methods for Generating Echo Option Values">

<t>The content and structure of the Echo option value are implementation specific and determined by the server. Two simple mechanisms for time-based freshness and one for event-based freshness are outlined in this section, the first is RECOMMENDED in general, and the second is RECOMMENDED in case the Echo option is encrypted between the client and the server.</t>

<t>Different mechanisms have different tradeoffs between the size of the Echo option value, the amount of server state, the amount of computation, and the security properties offered. A server MAY use different methods and security levels for different uses cases (client aliveness, request freshness, state synchronization, network address reachability, etc.).</t>

<t>1. List of Cached Random Values and Timestamps. The Echo option value is a (pseudo-)random byte string called r. The server caches a list containing the random byte strings and their transmission times. Assuming 72-bit random values and 32-bit timestamps, the size of the Echo option value is 9 bytes and the amount of server state is 13n bytes, where n is the number of active Echo Option values. The security against an attacker guessing echo values is given by s = bit length of r - log2(n). The length of r and the maximum allowed n should be set so that the security level is harmonized with other parts of the deployment, e.g., s &gt;= 64. If the server loses time continuity, e.g. due to reboot, the entries in the old list MUST be deleted.</t>

<figure><artwork><![CDATA[
      Echo option value: random value r
      Server State: random value r, timestamp t0
]]></artwork></figure>

<t>2. Integrity Protected Timestamp. The Echo option value is an integrity protected timestamp. The timestamp can have different resolution and range. A 32-bit timestamp can e.g. give a resolution of 1 second with a range of 136 years. The (pseudo-)random secret key is generated by the server and not shared with any other party. The use of truncated HMAC-SHA-256 is RECOMMENDED. With a 32-bit timestamp and a 64-bit MAC, the size of the Echo option value is 12 bytes and the Server state is small and constant. The security against an attacker guessing echo values is given by the MAC length. If the server loses time continuity, e.g. due to reboot, the old key MUST be deleted and replaced by a new random secret key. Note that the privacy considerations in <xref target="priv-cons"/> may apply to the timestamp. Therefore, it might be important to encrypt it. Depending on the choice of encryption algorithms, this may require a nonce to be included in the Echo option value.</t>

<figure><artwork><![CDATA[
      Echo option value: timestamp t0, MAC(k, t0)
      Server State: secret key k
]]></artwork></figure>

<t>3. Persistent Counter. This is an event-based freshness method usable for state synchronization (for example after volatile state has been lost), and cannot be used for client aliveness. It requires that the client can be trusted to not spuriously produce Echo values. The Echo option value is a simple counter without integrity protection of its own, serialized in uint format. The counter is incremented in a persistent way every time the state that needs to be synchronized is changed (in the aforementioned example: when a reboot indicates that volatile state may have been lost). An example of how such a persistent counter can be implemented efficiently is the OSCORE server Sender Sequence Number mechanism described in Appendix B.1.1 of <xref target="RFC8613"/>.</t>

<figure><artwork><![CDATA[
      Echo option value: counter
      Server State: counter
]]></artwork></figure>

<t>Other mechanisms complying with the security and privacy considerations may be used. The use of encrypted timestamps in the Echo option increases security, but typically requires an IV to be included in the Echo option value, which adds overhead and makes the specification of such a mechanism slightly more complicated than the two time-based mechanisms specified here.</t>

</section>
<section anchor="request-tag-message-size-impact" title="Request-Tag Message Size Impact">

<t>In absence of concurrent operations, the Request-Tag mechanism for body integrity (<xref target="body-integrity"/>) incurs no overhead if no messages are lost (more precisely: in OSCORE, if no operations are aborted due to repeated transmission failure; in DTLS, if no packets are lost),
or when block-wise request operations happen rarely (in OSCORE, if there is always only one request block-wise operation in the replay window).</t>

<t>In those situations, no message has any Request-Tag option set, and that can be recycled indefinitely.</t>

<t>When the absence of a Request-Tag option can not be recycled any more within a security context, the messages with a present but empty Request-Tag option can be used (1 Byte overhead), and when that is used-up, 256 values from one byte long options (2 Bytes overhead) are available.</t>

<t>In situations where those overheads are unacceptable (e.g. because the payloads are known to be at a fragmentation threshold), the absent Request-Tag value can be made usable again:</t>

<t><list style="symbols">
  <t>In DTLS, a new session can be established.</t>
  <t>In OSCORE, the sequence number can be artificially increased so that all lost messages are outside of the replay window by the time the first request of the new operation gets processed, and all earlier operations can therefore be regarded as concluded.</t>
</list></t>

</section>
<section anchor="change-log" title="Change Log">

<t>[ The editor is asked to remove this section before publication. ]</t>

<t><list style="symbols">
  <t>Changes since draft-ietf-core-echo-request-tag-10 (Barry’s comments)  <list style="symbols">
      <t>Align terminology on attacker</t>
      <t>A number of clarifications and editorial fixes</t>
      <t>Promote DTLS and OSCORE to normative references</t>
      <t>Add counter-based version to the Methods for Generating Echo Option Values appendix</t>
      <t>Use 64-bit randomness recommendation throughout (but keep it as SHOULD so applications with strict requirements can reduce if if really needed)</t>
      <t>Speling and Capitalization</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-09:  <list style="symbols">
      <t>Allow intermediaries to do Echo processing, provided they ask at least as much freshness as they forward</t>
      <t>Emphasize that clients can forget Echo to further discourage abuse as cookies</t>
      <t>Emphasize that RESTful application design can avoid the need for a Request-Tag</t>
      <t>Align with core-oscore-groupcomm-09</t>
      <t>Add interaction with HTTP Early Data / 425 Too Early</t>
      <t>Abstract: Explicitly mention both updates to 7252</t>
      <t>Change requested option number of Echo to 252 (previous property calculation was erroneous)</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-08:  <list style="symbols">
      <t>Make amplification attack mitigation by Echo an RFC7252 updating recommendation</t>
      <t>Give some more concrete guidance to that use case in terms of sizes and message types</t>
      <t>Allow short (1-3 byte) Echo values for deterministic cases, with according security considerations</t>
      <t>Point out the tricky parts around Request-Tag for stateless proxies, and make that purely an outlook example with out-of-scope details</t>
      <t>Lift ban on Request-Tag options without Block1 (as they can legitimately be generated by an unaware proxy)</t>
      <t>Suggest concrete numbers for the options</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-07 (largely addressing Francesca’s review):  <list style="symbols">
      <t>Request tag: Explicitly limit “MUST NOT recycle” requirement to particular applications</t>
      <t>Token reuse: upper-case RECOMMEND sequence number approach</t>
      <t>Structure: Move per-topic introductions to respective chapters (this avoids long jumps by the reader)</t>
      <t>Structure: Group Block2 / ETag section inside new fragmentation (formerly Request-Tag) section</t>
      <t>More precise references into other documents</t>
      <t>“concurrent operations”: Emphasise that all here only matters between endpoint pairs</t>
      <t>Freshness: Generalize wording away from time-based freshness</t>
      <t>Echo: Emphasise that no binding between any particular pair of responses and requests is established</t>
      <t>Echo: Add event-based example</t>
      <t>Echo: Clarify when protection is needed</t>
      <t>Request tag: Enhance wording around “not sufficient condition”</t>
      <t>Request tag: Explicitly state when a tag needs to be set</t>
      <t>Request tag: Clarification about permissibility of leaving the option absent</t>
      <t>Security considerations: wall clock time -&gt; system time (and remove inaccurate explanations)</t>
      <t>Token reuse: describe blacklisting in a more implementation-independent way</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-06:  <list style="symbols">
      <t>Removed visible comment that should not be visible in Token reuse considerations.</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-05:  <list style="symbols">
      <t>Add privacy considerations on cookie-style use of Echo values</t>
      <t>Add security considerations for token reuse</t>
      <t>Add note in security considerations on use of nonvolatile memory when
dealing with pseudorandom numbers</t>
      <t>Appendix on echo generation: add a few words on up- and downsides of the
encrypted timestamp alternative</t>
      <t>Clarifications around Outer Echo:      <list style="symbols">
          <t>Could be generated by the origin server to prove network reachability
(but for most applications it MUST be inner)</t>
          <t>Could be generated by intermediaries</t>
          <t>Is answered by the client to the endpoint from which it received it
(ie. Outer if received as Outer)</t>
        </list></t>
      <t>Clarification that a server can send Echo preemtively</t>
      <t>Refer to stateless to explain what “more information than just the
sequence number” could be</t>
      <t>Remove explanations around 0.00 empty messags</t>
      <t>Rewordings:      <list style="symbols">
          <t>the attack: from “forging” to “guessing”</t>
          <t>“freshness tokens” to “freshness indicators” (to avoid confusion with
the Token)</t>
        </list></t>
      <t>Editorial fixes:      <list style="symbols">
          <t>Abstract and introduction mention what is updated in RFC7252</t>
          <t>Reference updates</t>
          <t>Capitalization, spelling, terms from other documents</t>
        </list></t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-04:  <list style="symbols">
      <t>Editorial fixes      <list style="symbols">
          <t>Moved paragraph on collision-free encoding of data in the Token to
Security Considerations and rephrased it</t>
          <t>“easiest” -&gt; “one easy”</t>
        </list></t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-03:  <list style="symbols">
      <t>Mention Token processing changes in title</t>
      <t>Abstract reworded</t>
      <t>Clarify updates to Token processing</t>
      <t>Describe security levels from Echo length</t>
      <t>Allow non-monotonic clocks under certain conditions for freshness</t>
      <t>Simplify freshness expressions</t>
      <t>Describe when a Request-Tag can be set</t>
      <t>Add note on application-level freshness mechanisms</t>
      <t>Minor editorial changes</t>
    </list></t>
  <t>Changes since draft-ietf-core-echo-request-tag-02:  <list style="symbols">
      <t>Define “freshness”</t>
      <t>Note limitations of “aliveness”</t>
      <t>Clarify proxy and OSCORE handling in presence of “echo”</t>
      <t>Clarify when Echo values may be reused</t>
      <t>Update security considerations</t>
      <t>Various minor clarifications</t>
      <t>Minor editorial changes</t>
    </list></t>
  <t>Major changes since draft-ietf-core-echo-request-tag-01:  <list style="symbols">
      <t>Follow-up changes after the “relying on block-wise” change in -01:      <list style="symbols">
          <t>Simplify the description of Request-Tag and matchability</t>
          <t>Do not update RFC7959 any more</t>
        </list></t>
      <t>Make Request-Tag repeatable.</t>
      <t>Add rationale on not relying purely on sequence numbers.</t>
    </list></t>
  <t>Major changes since draft-ietf-core-echo-request-tag-00:
  <list style="symbols">
      <t>Reworded the Echo section.</t>
      <t>Added rules for Token processing.</t>
      <t>Added security considerations.</t>
      <t>Added actual IANA section.</t>
      <t>Made Request-Tag optional and safe-to-forward, relying on block-wise to treat it as part of the cache-key</t>
      <t>Dropped use case about OSCORE Outer-block-wise (the case went away when its Partial IV was moved into the Object-Security option)</t>
    </list></t>
  <t>Major changes since draft-amsuess-core-repeat-request-tag-00:
  <list style="symbols">
      <t>The option used for establishing freshness was renamed from “Repeat” to “Echo” to reduce confusion about repeatable options.</t>
      <t>The response code that goes with Echo was changed from 4.03 to 4.01 because the client needs to provide better credentials.</t>
      <t>The interaction between the new option and (cross) proxies is now covered.</t>
      <t>Two messages being “Request-Tag matchable” was introduced to replace the older concept of having a request tag value with its slightly awkward equivalence definition.</t>
    </list></t>
</list></t>

</section>
<section numbered="no" anchor="acknowledgments" title="Acknowledgments">

<t>The authors want to thank Carsten Bormann, Francesca Palombini, and Jim Schaad for providing valuable input to the draft.</t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAD5KoF8AA+193XIbR5bmPZ6iFrow0A3AJPVjmx73DEVRtnokSytS7Zno
7uhJAgmyLKAKW1UghbE9sa+xV/sWe7V38yb7JHt+M09WFSja7Y7ZiB3H9EgC
UFn5c/L8fuec6XQ6aPJm5Y+z4Wl58uY4O5tfl5Psrf9vW1830wt3Nclcscgu
yve+yN5U5dzXdV5cDQfu8rLyN/G5txfDwaKcF24Ngy0qt2ymuW+W03lZ+amH
UaeVDNq4q+nh4WDuGn9VVrvjrG4Wg+1mAf+uj7PPjh4fDQb5pjrOmmpbN0cH
B18cHA1c5d1x9rUvfOVWg9uyen9VldvNcXZavj3LvoN/w6yyr/GzwaBuYM5/
cauygLnsfD3Y5MfZH5tyPsnqsmoqv6zhb7s1/uXPg4HbNtdldTzIpoMM/ssL
mMbpLDtZ1zDfmj7jZZ1eV3nd5K7A7/79f8t3fu3y1XE21y//wfGDs3m5Tsb8
/Sx75ZqmrsvCDPr78hp31m///X+mX5fVlSvyf3VNXhawwVU+x6+yk6f2rd/D
07O1PPYPXn7UefXXs+zcr2BXfGVe/fW//68KFpN8A2/d+zI4LlfMavl5+rZB
UVYwj/zGw0Zmb5+fHh0efiF/xTPVv37xWD/9/PCzR/rXJ4cP5a9PHj767BgI
oFi2xvvs4RcH+tcnjw71yYdH+uTnjx49wb++mD6bRdIra/qDqAXmudZf6J7x
r+al20zdvNm6pqzq7ihAUY1fwaHSu87OL45pXxpXXfnmOLtumk19/Omnt7e3
M9iT2Xaez/xi++m/LXO/WgBlfrrZXtafLvK69lVDJ/qpfvUX++lss1jyyHIr
T6r5dd54mBnQfXbe7GASdCOba58983V+VWTlMvvWN3gnppeu9ovsvFw2t3Bj
MvO0r4c0cCB2+m8qfwqZvJ1lz2Va9AXeyeMMruDBAP+bTqeZu6ybCnZqMLi4
zusMrvx27Ysmqzd+nsOa6swX166Ye/y0zpqSZnpaFvhYXsDsTjabVT6n5SJH
gWtZrrIRspEx/NY12Tpv8it4c1b7+bbKm10GOwQ3CuaYbVzV5PPtylXZtvbZ
HNZbz7ILeAVyrqzc0LC+cJe0URkOC+NUN77CucAf+XJHU1rCllwXcKS4fy4T
7gT0j78D4pt7+HS+ynFx8MnCr3kNMC/gRfNrd5mvcG4w4RwWOl+5fA2rK/gk
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

-->

</rfc>

