<?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.30 (Ruby 3.4.6) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-bormann-core-responses-06" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.30.1 -->
  <front>
    <title>CoAP: Non-traditional response forms</title>
    <seriesInfo name="Internet-Draft" value="draft-bormann-core-responses-06"/>
    <author initials="C." surname="Bormann" fullname="Carsten Bormann">
      <organization>Universität Bremen TZI</organization>
      <address>
        <postal>
          <street>Postfach 330440</street>
          <city>Bremen</city>
          <code>D-28359</code>
          <country>Germany</country>
        </postal>
        <phone>+49-421-218-63921</phone>
        <email>cabo@tzi.org</email>
      </address>
    </author>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <date year="2025" month="October" day="20"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 44?>

<t>In CoAP as defined by RFC 7252, responses are always unicast back to a
client that posed a request.  The present memo describes two forms of
responses that go beyond that model.</t>
      <t>The design spaces for the new CoAP Options proposed to represent these
responses are now sufficiently understood that they can be developed
to standards-track specifications, either in this document or by
transferring the specification for an Option to a document that that
Option closely works with.</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-bormann-core-responses/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Constrained RESTful Environments (CoRE) Working Group mailing list (<eref target="mailto:core@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/core/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/core-wg/core-responses"/>.</t>
    </note>
  </front>
  <middle>
    <?line 56?>

<section anchor="intro">
      <name>Introduction</name>
      <t>In CoAP as defined by RFC 7252, responses are always unicast back to a
client that posed a request.  A server may want to send a response to
a request that it did not receive, may want to multicast a response,
or both.</t>
      <t>The descriptions in this specification are not intended as advocacy
for adopting these approaches immediately, they are provided to point
out potential avenues for development that would have to be carefully
evaluated.</t>
      <section anchor="terms">
        <name>Terminology</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 <xref target="BCP14"/> (<xref target="RFC2119"/>) (<xref target="RFC8174"/>) when, and only when, they
appear in all capitals, as shown here.</t>
        <?line -18?>

<t>The term "byte" is used in its now customary sense as a synonym for
"octet".</t>
        <t>Terms used in this draft:</t>
        <dl>
          <dt>Non-traditional response:</dt>
          <dd>
            <t>A response that is not the single response generated for a request received
on the same transport.</t>
          </dd>
          <dt>Non-matching response:</dt>
          <dd>
            <t>A response that has properties
(typically options) that make it incompatible with the original request,
and thus in particular unsuitable as a cached response to that request (but
possibly suitable to populate the cache for a similar request).
Options that make a response non-matching need to be proxy unsafe.
</t>
            <t>For example,
a Block2 response with a different value of block number <contact fullname="×"/> block size than indicated in the request is non-matching.</t>
          </dd>
          <dt>Configured request:</dt>
          <dd>
            <t>A request that reaches the server in another way than by
transmitting a usual CoAP request on the same communication channel
a response is expected on.</t>
          </dd>
          <dt>Embedded request:</dt>
          <dd>
            <t>A request that is provided by the server to the recipient of its
response by embedding it into the response.</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="sending-non-traditional-responses">
      <name>Sending non-traditional responses</name>
      <t>Non-traditional responses are sets of responses produced for a single request,
or responses sent without a transmitted request.</t>
      <t>Where tokens are involved,
all non-traditional responses use the request's token;
in any case, they are bound to the original request
(e.g. by using the same request_kid/request_piv pair in OSCORE <xref target="RFC8613"/>).
Where message IDs are involved,
one of the non-traditional responses (the first sent, not necessarily the first received as generally the network might reorder messages)
can be sent as a piggybacked response in an ACK (thus sharing the request's message ID);
the others are CON or NON responses.</t>
      <t>Some established responses
(observations defined in <xref target="RFC7641"/>,
and responses to multicast requests in <xref target="I-D.ietf-core-groupcomm-bis"/>)
match this definition and already follow the guidance set out here for non-traditional responses;
<xref target="extensions-explained"/> gives details for them.</t>
      <t>A second response differing from the first that can be sent by a non-deduplicating server
responding to a retransmission of a request
is not non-traditional because there is a second request --
that is probably the last corner case at the line separating traditional from non-traditional responses.</t>
      <section anchor="preconditions-to-sending-non-traditional-responses">
        <name>Preconditions to sending non-traditional responses</name>
        <t>A server may send multiple responses to a request if there is any
property in the request that indicates the client's intention to receive
them. This is typically indicated by a request option,
and rarely in external properties of the message
(in the multicast case, the destination address).</t>
        <t>A mechanism for eliciting multiple responses must specify the conditions
under which a token gets freed, as the traditional arrival of the
response is insufficient. It may also specify for which requests the
token can be reused immediately in follow-up requests. On unordered
transports, or when it's a client's follow-up request and not a response
that terminates the token, the client needs to wait with reuse until no reordered
non-traditional responses can be expected anymore.</t>
        <t>If a non-traditional response answers the original request, no further
action is required (this is the case of observation: ordering is added
on top of that to ensure that only the latest response is used). If
the response does not answer the original request,
it must be non-matching,
either by an option introduced with the eliciting option
or by a generic option like Response-For.</t>
      </section>
      <section anchor="responses-without-request">
        <name>Responses without request</name>
        <t>Endpoints may agree out of band on a token (or other request-matching
details). One way to do that is to agree on a "phantom request", which
is a request that the client might have sent and the server assumes to have received,
without it actually being sent between those
endpoints.</t>
        <t>As tokens are managed by the client, that request needs to be
generated by the client, or in close collaboration with the client (for
example by the client allowing a third party to use a subset of its
token values in order to set up non-traditional responses).</t>
      </section>
    </section>
    <section anchor="oscore-processing-for-non-traditional-responses">
      <name>OSCORE processing for non-traditional responses</name>
      <t>OSCORE <xref target="RFC8613"/> is built with the general assumption that requests
are processed into exactly one response.
The specification contains explicit provisions for Observe requests (<xref section="4.1.3.5" sectionFormat="of" target="RFC8613"/>),
and a whole protocol extension for multicast requests (<xref target="I-D.ietf-core-oscore-groupcomm"/>).</t>
      <t>OSCORE's binding between requests and responses remains unmodified:
Each response is cryptographically bound to an OSCORE request.
Therefore, any phantom request needs to be an OSCORE request as well,
and the parties need to agree on the sender and sequence number of the phantom request.
An easy way to do that securely is to deliver the phantom request in a
way that the server can do the full OSCORE request processing on it.
The server may process the OSCORE request into internal data structures at reception time,
or may process it whenever a response is to be sent.
In the latter case, it may need to relax the requirements of Section <xref target="RFC8613" section="8.2" sectionFormat="bare">Verifying the Request</xref> of <xref target="RFC8613"/> item 3.</t>
      <t>To avoid reinventing the same rules as for Observe requests for any other non-traditional response,
this document defines a set of processing instructions which can be referenced when specifying their options.
These rules generalize Sections <xref target="RFC8613" section="8.3" sectionFormat="bare">Protecting the Response</xref> and <xref target="RFC8613" section="8.4" sectionFormat="bare">Verifying the Response</xref> of <xref target="RFC8613"/>:</t>
      <ul spacing="normal">
        <li>
          <t>In 8.3 step 3, "use the AEAD nonce from the request" is only an option once,
i.e., after the sequence number expressed in that request was removed from the replay window.
This option is usually taken in the first response,
necessitating the use of encoded Sender Sequence Numbers in later responses.
(Non-traditional responses such as Observe that indicate the order
of responses by a sequence number
may require that the request's nonce is used either in the first response or not at all.)
<cref anchor="maybealwaysfirst">CA: We could also just mandate the "either the first or never" behavior. It is unclear why one would delay sending the one response that has the least overhead, but that may be lack of imagination. An approach where instances can not generally be duplicated and are used at most once (as in an affine type system) can make this doable in a safe way. In the end it's a tradeoff between implementer flexibility and specification simplicity.</cref>  </t>
          <t><!-- Conveniently, this is obsoleting some text that's rotting away in lwig-oscore. -->
          </t>
          <t>
As a convenient effect, this generalized rule also implies
that when a server performs Appendix <xref target="RFC8613" section="B.1.2" sectionFormat="bare">Replay Window</xref> of <xref target="RFC8613"/>,
it needs to use its own Partial IV for the nonce
(which without this generalized rule necessitated a "<bcp14>MUST</bcp14>" statement in the appendix).</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>
          <t>In 8.4 between steps 5 and 6,
the Sender Sequence Number of the response establishes an order in the received messages,
which users of non-traditional responses may rely on.
If an option specified that only the first response may use the request's nonce,
then the one response that uses it is ordered before all other responses to the same request.</t>
        </li>
      </ul>
      <!-- Unlike the other items which all correspond to the "Supporting Observe" sub-items of 8.3/8.4, this corresponds to 7.4.1. -->
<ul spacing="normal">
        <li>
          <t>If the handling of multiple responses is not idempotent,
then at 8.4 step 5:  </t>
          <ul spacing="normal">
            <li>
              <t>For responses that use a Sender Sequence Number from the server,
the client consults the replay window before decryption,
and removes its number from the replay window after successful decryption.</t>
            </li>
            <li>
              <t>For responses that use the request's Sender Sequence Number,
duplication is tracked for each request.</t>
            </li>
          </ul>
          <t>
As a simplification,
applications that only process the latest response
may track the latest sequence number for deduplication.</t>
        </li>
        <li>
          <t>In 8.4 step 8, the Option establishing the non-traditional responses may specify
that error conditions processing a response are not fatal for the whole request.
This should be done when an Option allows immediate follow-up requests.
This is the case for the Observe option:
When an observation is refreshed, a response encrypted with the earlier request's request_kid may still be in flight.
That in-flight response will fail decryption,
but responses generated after the server has received the refresh will be decryptable again.</t>
        </li>
      </ul>
    </section>
    <section anchor="response-with-embedded-request">
      <name>Response with embedded request</name>
      <t>A server can send a response to a request that it did not actually
receive by embedding the request which the response answers in the
response.</t>
      <t>The option "Response-For" contains a request packaged as in <xref section="5.3" sectionFormat="of" target="RFC8613"/>.  The response is then intended to serve as a
response to this request.</t>
      <table anchor="response-for-option">
        <name>The Response-For Option</name>
        <thead>
          <tr>
            <th align="right">No.</th>
            <th align="left">C</th>
            <th align="left">U</th>
            <th align="left">N</th>
            <th align="left">R</th>
            <th align="left">Name</th>
            <th align="left">Format</th>
            <th align="right">Length</th>
            <th align="left">Default</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="right">TBD</td>
            <td align="left">C</td>
            <td align="left">-</td>
            <td align="left">-</td>
            <td align="left">-</td>
            <td align="left">Response-For</td>
            <td align="left">opaque</td>
            <td align="right">0-1023</td>
            <td align="left">(none)</td>
          </tr>
        </tbody>
      </table>
      <t>The CoAP Token becomes meaningless for this form of response;
responses with embedded requests are therefore sent with a
zero-length Token.  (In essence, the "Response-For" option takes the
place of the request the Token usually stands for.)</t>
      <t>Note that block-wise transfer is not available for CoAP Options,
possibly limiting the size of the request that can be stored in a
"Response-For" Option.</t>
      <t>The congestion control considerations for confirmable and
non-confirmable messages apply unchanged.</t>
    </section>
    <section anchor="response-for-configured-request">
      <name>Response for configured request</name>
      <t>A request may reach the server using a different means than that used
for the response.  For instance, the request may be configured in the server.
Without limiting generality, we speak about <em>configured requests</em>.</t>
      <t>The client <bcp14>MUST</bcp14> be cognizant of that configuration as the request uses
a token from the token name space it controls.</t>
      <section anchor="examples-for-configured-requests">
        <name>Examples for configured requests</name>
        <section anchor="example-periodic-request">
          <name>Example: Periodic request</name>
          <t>A server may be configured to act on a configured request every day at 12:00.</t>
        </section>
        <section anchor="example-event-driven-request">
          <name>Example: Event driven request</name>
          <t>A server may be configured to act on a configured request each time it reboots.</t>
        </section>
        <section anchor="example-configured-observe">
          <name>Example: Configured observe</name>
          <t>A server may be configured with a GET request from a client that
includes an Observe option with value 0.  This means that the server
will send updates to the state of the resource addressed by the GET
request to the configured address of the client.</t>
          <t>The considerations of <xref section="4.5" sectionFormat="of" target="RFC7641"/> apply.  How losing
interest reflects back into the configuration and whether there is some
form of error notification to the source of the configuration is out
of scope of the present specification.</t>
        </section>
      </section>
      <section anchor="multicast-responses">
        <name>Multicast responses</name>
        <t>A server <bcp14>MAY</bcp14> send a response to a multicast address.
(This needs to be a response to a configured request as a normal
request cannot be sent <em>from</em> a multicast address.)</t>
        <t>Note that, as the originator of a multicast response is a unicast
address, the relaxation of matching rules described in <xref section="8.2" sectionFormat="of" target="RFC7252"/> does not apply.</t>
        <t>The token space in CoAP is owned by the client, which is identified by
a transport endpoint (address/port).  Here, the address is a multicast
address, so the token name space is shared by all nodes joined to that multicast
address.  The assumption for multicast responses is that, for each
multicast group, there is some form of management for the token space
(and the port number) that everyone can participate in that needs to
join that multicast group; the specific form of management is out of
the scope of this specification.  Note that this means that multicast
responses <bcp14>MUST NOT</bcp14> be sent to unmanaged multicast addresses such as
All CoAP Nodes (<xref section="12.8" sectionFormat="of" target="RFC7252"/>).</t>
        <t>Multicast responses are always non-confirmable.  The congestion
control considerations for non-confirmable multicast messages apply
unchanged.</t>
        <t>The draft <xref target="I-D.ietf-core-observe-multicast-notifications"/> provides a concrete way of communicating such a setup.</t>
      </section>
      <section anchor="respond-to-option">
        <name>Respond-To option</name>
        <t>What has been called "configured request" here may also be triggered
by a usual CoAP request that carries the Respond-To option.
(The term "configured request" is still appropriate as the server
ought to be configured to accept this option; see <xref target="seccons"/>.)</t>
        <t>If a single client wants to request a server to send the response to a
specific multicast address, it can include the "Respond-To" option.
This contains an opaque string with the port number as a 16-bit number
(in network byte order), followed by the IP address (4-byte IPv4 or
16-byte IPv6).</t>
        <table anchor="tbl-respond-to-option">
          <name>The Respond-To Option</name>
          <thead>
            <tr>
              <th align="right">No.</th>
              <th align="left">C</th>
              <th align="left">U</th>
              <th align="left">N</th>
              <th align="left">R</th>
              <th align="left">Name</th>
              <th align="left">Format</th>
              <th align="right">Length</th>
              <th align="left">Default</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">TBD</td>
              <td align="left">C</td>
              <td align="left">U</td>
              <td align="left">-</td>
              <td align="left">-</td>
              <td align="left">Respond-To</td>
              <td align="left">opaque</td>
              <td align="right">6-18</td>
              <td align="left">(none)</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="leisure-for-responses-option">
        <name>Leisure-For-Responses Option</name>
        <t>This new option indicates a number expressed as a uint.
It allows the server to send that number of non-traditional response messages in
addition to the requested response. They are to be sent without undue delay
after the original response.</t>
        <table anchor="tbl-leisure-for-responses-option">
          <name>The Leisure-For-Responses Option</name>
          <thead>
            <tr>
              <th align="right">No.</th>
              <th align="left">C</th>
              <th align="left">U</th>
              <th align="left">N</th>
              <th align="left">R</th>
              <th align="left">Name</th>
              <th align="left">Format</th>
              <th align="right">Length</th>
              <th align="left">Default</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">TBD</td>
              <td align="left"> </td>
              <td align="left">U</td>
              <td align="left">-</td>
              <td align="left"> </td>
              <td align="left">Leisure-For-Responses</td>
              <td align="left">uint</td>
              <td align="right">1-4</td>
              <td align="left">0</td>
            </tr>
          </tbody>
        </table>
        <t>The option is elective, but unsafe for proxies
(as the option would otherwise cause multiple responses to a proxy that expects only one and that needs to be a matching response).
A proxy that chooses not to implement it may forward the request
with the Leisure-For-Responses option removed.</t>
        <t>On its own, the option does not indicate which kind of additional responses the client
would expect (though further elective proxy-safe no-cache-key options
can be added on top of that to give better guidance), and the server may
choose not to send any at all.</t>
        <t>Intermediaries may add or remove the option, and use incoming responses to
populate their cache. They may serve additional responses from their
cache, but in most cases the sensible course of action is to forward the
additional responses the origin server sends.</t>
        <t>Use cases for Leisure-For-Responses include sending further blocks in a
Block2 transfer (which are obviously non-matching and thus don't need a
Response-For), or serving follow-up documents (a response containing a
single link can be followed by a representation of the linked resource,
which needs a Request-For header that indicates the URI).
<!-- or just provide
the ETag of a freshly created resource (which would have a Request-For
option for a GET with the given path and an ETag, and be a 2.03 Valid
response). / but that probably already works as there is the concept of a "tagged representation" -->
        </t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This draft adds the following option numbers to the CoAP Option
Numbers registry of
<xref target="RFC7252"/>:</t>
      <table anchor="tab-option-registry">
        <name>CoAP Option Numbers</name>
        <thead>
          <tr>
            <th align="left">Number</th>
            <th align="left">Name</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD</td>
            <td align="left">Response-For</td>
            <td align="left">RFCthis</td>
          </tr>
          <tr>
            <td align="left">TBD</td>
            <td align="left">Respond-To</td>
            <td align="left">RFCthis</td>
          </tr>
          <tr>
            <td align="left">TBD</td>
            <td align="left">Leisure-For-Responses</td>
            <td align="left">RFCthis</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="seccons">
      <name>Security Considerations</name>
      <t>TBD</t>
      <t>(Clearly, multicast responses pose a potential for amplification, in
particular if unverified sources can cause them via Respond-To.
Discuss how to mitigate.)</t>
      <t>A Respond-To option can be used to incite a server to send data to a
third party.  This ought not be done blindly, i.e., only with
considered application assent.</t>
      <t>The CoAP request/response mechanism allows the client to ascertain a
level of authentication (not resistant though to on-path attackers
unless the communication is protected) and freshness of the response:
The Token echoed in the response shows that the responder had
knowledge of the (fresh) request (<xref section="5.3.1" sectionFormat="of" target="RFC7252"/>).
Responses with embedded requests can not be authenticated or checked
for freshness this way.  Their content therefore is less trustworthy
than normal responses unless authenticated in another way (e.g., via
<xref target="RFC8613"/>).</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2014"/>
            <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="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <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>
        <referencegroup anchor="BCP14" target="https://www.rfc-editor.org/info/bcp14">
          <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 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" target="https://www.rfc-editor.org/info/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>
        </referencegroup>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <date month="September" year="2015"/>
            <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 "observe" 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="I-D.ietf-core-oscore-groupcomm">
          <front>
            <title>Group Object Security for Constrained RESTful Environments (Group OSCORE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <date day="12" month="September" year="2025"/>
            <abstract>
              <t>   This document defines the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE), providing end-to-end
   security of messages exchanged with the Constrained Application
   Protocol (CoAP) between members of a group, e.g., sent over IP
   multicast.  In particular, the described protocol 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.
   Group OSCORE also defines a pairwise mode where each member of the
   group can efficiently derive a symmetric pairwise key with each other
   member of the group for pairwise OSCORE communication.  Group OSCORE
   can be used between endpoints communicating with CoAP or CoAP-
   mappable HTTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-27"/>
        </reference>
        <reference anchor="I-D.ietf-core-groupcomm-bis">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="25" month="September" year="2025"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP) is a web transfer
   protocol for constrained devices and constrained networks.  In a
   number of use cases, constrained devices 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 document
   specifies the use of CoAP for group communication, including the use
   of UDP/IP multicast as the default underlying data transport.  Both
   unsecured and secured CoAP group communication are specified.
   Security is achieved by use of the Group Object Security for
   Constrained RESTful Environments (Group OSCORE) protocol.  The target
   application area of this specification is any group communication use
   cases that involve resource-constrained devices or networks that
   support CoAP.  This document replaces and obsoletes RFC 7390, while
   it updates RFC 7252 and RFC 7641.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-bis-15"/>
        </reference>
        <reference anchor="I-D.ietf-core-observe-multicast-notifications">
          <front>
            <title>Observe Notifications as CoAP Multicast Responses</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP) allows clients to
   "observe" resources at a server and to receive notifications as
   unicast responses upon changes of the resource state.  In some use
   cases, such as based on publish-subscribe, it would be convenient for
   the server to send a single notification addressed to all the clients
   observing the same target resource.  This document updates RFC7252
   and RFC7641, and defines how a server sends observe notifications as
   response messages over multicast, synchronizing all the observers of
   the same resource on the same shared Token value.  Besides, this
   document defines how the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE) can be used to
   protect multicast notifications end-to-end between the server and the
   observer clients.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-observe-multicast-notifications-13"/>
        </reference>
        <reference anchor="I-D.ietf-core-groupcomm-proxy">
          <front>
            <title>Proxy Operations for CoAP Group Communication</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <date day="3" month="September" year="2025"/>
            <abstract>
              <t>   This document defines a specific realization of proxy intended for
   scenarios that use group communication for the Constrained
   Application Protocol (CoAP).  Such a proxy processes a single request
   sent by a client typically over unicast and distributes the request
   to a group of servers, e.g., over UDP/IP multicast as the defined
   default transport protocol.  Then, the proxy collects the individual
   responses from those servers and relays those responses back to the
   client, in a way that allows the client to distinguish the responses
   and their origin servers through embedded addressing information.
   This document updates RFC7252 with respect to caching of response
   messages at proxies.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-proxy-05"/>
        </reference>
      </references>
    </references>
    <?line 436?>

<section anchor="extensions-explained">
      <name>CoAP extensions explained by non-traditional responses</name>
      <section anchor="observation">
        <name>Observation</name>
        <t>This section describes the Observe option <xref target="RFC7641"/> in the terms of this
document.
It does not intend to update the original specification,
merely to provide an alternative phrasing of its rules
which may be useful for implementors,
and which the authors believe to have the same effect.</t>
        <t>When Observe:0 is present in a request, this sets up non-traditional
responses until either of the following conditions is met:</t>
        <ul spacing="normal">
          <li>
            <t>A follow-up request on the same token carries an Observe:1 option.  </t>
            <t>
(This is primarily in here because; Observe:1 and No-Response:any
could be combined; otherwise, the other conditions suffice).</t>
          </li>
          <li>
            <t>Any response does not carry an Observe option.</t>
          </li>
          <li>
            <t>Any response has a non-successful status.</t>
          </li>
        </ul>
        <t>Follow-up requests are limited to extending the request ETag set.
Responses are obviously non-matching by their Observe option; each hop
discards the Observe option for the purpose of caching and refreshes its
cache with the most recent one as per the Observe value.</t>
      </section>
      <section anchor="responses-to-multicast-requests">
        <name>Responses to multicast requests</name>
        <t>As with observe, this just phrases the existing mechanism in the context
of this generalization.</t>
        <t>When the destination address of a CoAP request is a multicast address,
that token is valid for any member of that group (which, for the purpose
of the client, is any server at all) on any port.</t>
        <t>(Except for that the implications of having received a multicast request
still need to be followed, it might be seen as a template for creating a
phantom request to any endpoint, if that suits the reader's mental
model.)</t>
        <t>Responses can only be sent for up to the deployment's Leisure time
(see <xref section="8.2" sectionFormat="of" target="RFC7252"/>) plus
the application's timeout (in proxy situations, this needs to be
communicated explicitly in the Multicast-Timeout option of
<xref target="I-D.ietf-core-groupcomm-proxy"/>).</t>
      </section>
      <section anchor="triangular-responses-response-to">
        <name>Triangular responses (Response-To)</name>
        <t>The Response-To option can be viewed as a shorthand notation for
"Consider this a No-Response:any request, but take a copy of it, make it
into a CoAP-over-UDP request with that particular address as a source
and any address of yours as a response, and treat that as a phantom
request".</t>
        <t>[ It may make sense to add an explicit return token, and include a
No-Response option; that might allow it to be used even across proxies. ]</t>
      </section>
      <section anchor="other-current-documents">
        <name>Other current documents</name>
        <t><xref target="I-D.ietf-core-observe-multicast-notifications"/> is a
straightforward application of the phantom requests (the concept was
developed there); Leisure-For-Responses could help it around the topic
of joining a multicast group securely through a proxy.</t>
        <t><xref target="I-D.ietf-core-groupcomm-proxy"/> seems to fit well with the concepts
here as well, and might be simplified by it both in terminology and by
replacing Response-Forwarding with Response-For(Proxy-Scheme, Uri-Host).</t>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>TBD</t>
      <!--  LocalWords:  CBOR extensibility IANA uint sint IEEE endian
 -->
<!--  LocalWords:  signedness endianness
 -->

</section>
  </back>
  <!-- ##markdown-source:
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
+Ctf/b95A6TL71QAAA==

-->

</rfc>
