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

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

<?rfc rfcedstyle="yes"?>
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>

<rfc ipr="pre5378Trust200902" docName="draft-ietf-tls-dtls13-24" category="std" obsoletes="6347">

  <front>
    <title abbrev="DTLS 1.3">The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>

    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>RTFM, Inc.</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization>Arm Limited</organization>
      <address>
        <email>hannes.tschofenig@arm.com</email>
      </address>
    </author>
    <author initials="N." surname="Modadugu" fullname="Nagendra Modadugu">
      <organization>Google, Inc.</organization>
      <address>
        <email>nagendra@cs.stanford.edu</email>
      </address>
    </author>

    <date year="2018" month="March" day="05"/>

    <area>Security</area>
    <workgroup>TLS</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document specifies Version 1.3 of the Datagram Transport Layer Security
(DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the
Internet in a way that is designed to prevent eavesdropping, tampering, and message
forgery.</t>

<t>The DTLS 1.3 protocol is intentionally based on the Transport Layer Security (TLS)
1.3 protocol and provides equivalent security guarantees.  Datagram semantics of
the underlying transport are preserved by the DTLS protocol.</t>



    </abstract>


  </front>

  <middle>


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

<t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH</t>

<t>The source for this draft is maintained in GitHub. Suggested changes
should be submitted as pull requests at https://github.com/tlswg/dtls13-spec.
Instructions are on that page as well. Editorial changes can be managed in GitHub,
but any substantive change should be discussed on the TLS mailing list.</t>

<t>The primary goal of the TLS protocol is to provide privacy and data integrity
between two communicating peers. The TLS protocol is composed of two layers:
the TLS Record Protocol and the TLS Handshake Protocol. However, TLS must
run over a reliable transport channel – typically TCP <xref target="RFC0793"/>.</t>

<t>There are applications that utilize UDP <xref target="RFC0768"/> as a transport and to offer communication
security protection for those applications the Datagram Transport Layer
Security (DTLS) protocol has been designed. DTLS is deliberately designed to be
as similar to TLS as possible, both to minimize new security invention and to
maximize the amount of code and infrastructure reuse.</t>

<t>DTLS 1.0 <xref target="RFC4347"/> was originally defined as a delta from TLS 1.1 <xref target="RFC4346"/> and
DTLS 1.2 <xref target="RFC6347"/> was defined as a series of deltas to TLS 1.2 <xref target="RFC5246"/>.  There
is no DTLS 1.1; that version number was skipped in order to harmonize version numbers
with TLS.  This specification describes the most current version of the DTLS protocol
aligning with the efforts around TLS 1.3 <xref target="I-D.ietf-tls-tls13"/>.</t>

<t>Implementations that speak both DTLS 1.2 and DTLS 1.3 can interoperate with those
that speak only DTLS 1.2 (using DTLS 1.2 of course), just as TLS 1.3 implementations
can interoperate with TLS 1.2 (see Appendix D of <xref target="I-D.ietf-tls-tls13"/> for details).
While backwards compatibility with DTLS 1.0 is possible the use of DTLS 1.0 is not
recommended as explained in Section 3.1.2 of RFC 7525 <xref target="RFC7525"/>.</t>

</section>
<section anchor="conventions-and-terminology" title="Conventions and 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>The following terms are used:</t>

<t><list style="symbols">
  <t>client: The endpoint initiating the DTLS connection.</t>
  <t>connection: A transport-layer connection between two endpoints.</t>
  <t>endpoint: Either the client or server of the connection.</t>
  <t>handshake: An initial negotiation between client and server that establishes
the parameters of their transactions.</t>
  <t>peer: An endpoint. When discussing a particular endpoint, “peer” refers to
the endpoint that is remote to the primary subject of discussion.</t>
  <t>receiver: An endpoint that is receiving records.</t>
  <t>sender: An endpoint that is transmitting records.</t>
  <t>session: An association between a client and a server resulting from a handshake.</t>
  <t>server: The endpoint which did not initiate the DTLS connection.</t>
</list></t>

<t>The reader is assumed to be familiar with the TLS 1.3 specification since this
document is defined as a delta from TLS 1.3. As in TLS 1.3 the HelloRetryRequest has 
the same format as a ServerHello message but for convenience we use the term 
HelloRetryRequest throughout this document as if it were a distinct message.</t>

<t>Figures in this document illustrate various combinations of the DTLS protocol exchanges and the symbols have the following meaning:</t>

<t><list style="symbols">
  <t>’+’  indicates noteworthy extensions sent in the previously noted message.</t>
  <t>‘*’  indicates optional or situation-dependent messages/extensions that are not always sent.</t>
  <t>’{}’ indicates messages protected using keys derived from a [sender]_handshake_traffic_secret.</t>
  <t>’[]’ indicates messages protected using keys derived from traffic_secret_N.</t>
</list></t>

</section>
<section anchor="dtls-rational" title="DTLS Design Rationale and Overview">

<t>The basic design philosophy of DTLS is to construct “TLS over datagram transport”.
Datagram transport does not require nor provide reliable or in-order delivery of data.
The DTLS protocol preserves this property for application data.
Applications such as media streaming, Internet telephony, and online gaming use
datagram transport for communication due to the delay-sensitive nature
of transported data.  The behavior of such applications is unchanged when the
DTLS protocol is used to secure communication, since the DTLS protocol
does not compensate for lost or re-ordered data traffic.</t>

<t>TLS cannot be used directly in datagram environments for the following five reasons:</t>

<t><list style="numbers">
  <t>TLS does not allow independent decryption of individual records.
Because the integrity check indirectly depends on a sequence number,
if record N is not received, then the integrity check
on record N+1 will be based on the wrong sequence number and
thus will fail. DTLS solves this problem by adding explicit
sequence numbers.</t>
  <t>The TLS handshake is a lock-step cryptographic handshake.
Messages must be transmitted and received in a defined order;
any other order is an error.
This is incompatible with reordering and message loss.</t>
  <t>Not all TLS 1.3 handshake messages (such as the NewSessionTicket message)
are acknowledged. Hence, a new acknowledgement message has to be added
to detect message loss.</t>
  <t>Handshake messages are potentially larger than any given datagram,
thus creating the problem of IP fragmentation.</t>
  <t>Datagram transport protocols, like UDP, are susceptible to abusive behavior
effecting denial of
service attacks against nonparticipants,
and require a return-routability check with the help of
cookies to be integrated into the handshake. A detailed discussion of
countermeasures can be found in <xref target="dos"/>.</t>
</list></t>

<section anchor="packet-loss" title="Packet Loss">

<t>DTLS uses a simple retransmission timer to handle packet loss.
<xref target="dtls-retransmission"/> demonstrates the basic concept, using the first
phase of the DTLS handshake:</t>

<figure title="DTLS retransmission example" anchor="dtls-retransmission"><artwork><![CDATA[
         Client                                   Server
         ------                                   ------
         ClientHello           ------>

                                 X<-- HelloRetryRequest
                                                  (lost)

         [Timer Expires]

         ClientHello           ------>
         (retransmit)
]]></artwork></figure>

<t>Once the client has transmitted the ClientHello message, it expects
to see a HelloRetryRequest or a ServerHello from the server. However, if the
server’s message is lost, the client knows that either the
ClientHello or the response from the server has been lost and retransmits.
When the server receives the retransmission, it knows to retransmit.</t>

<t>The server also maintains a retransmission timer and retransmits when
that timer expires.</t>

<t>Note that timeout and retransmission do not apply to the
HelloRetryRequest since this would require creating state on the
server.  The HelloRetryRequest is designed to be small enough that
it will not itself be fragmented, thus avoiding concerns about
interleaving multiple HelloRetryRequests.</t>

<section anchor="reordering" title="Reordering">

<t>In DTLS, each handshake message is assigned a specific sequence
number within that handshake.  When a peer receives a handshake
message, it can quickly determine whether that message is the next
message it expects.  If it is, then it processes it.  If not, it
queues it for future handling once all previous messages have been
received.</t>

</section>
<section anchor="message-size" title="Message Size">

<t>TLS and DTLS handshake messages can be quite large (in theory up to
2^24-1 bytes, in practice many kilobytes).  By contrast, UDP
datagrams are often limited to less than 1500 bytes if IP fragmentation is not
desired.  In order to compensate for this limitation, each DTLS
handshake message may be fragmented over several DTLS records, each
of which is intended to fit in a single IP datagram.  Each DTLS
handshake message contains both a fragment offset and a fragment
length.  Thus, a recipient in possession of all bytes of a handshake
message can reassemble the original unfragmented message.</t>

</section>
</section>
<section anchor="replay-detection" title="Replay Detection">

<t>DTLS optionally supports record replay detection.  The technique used
is the same as in IPsec AH/ESP, by maintaining a bitmap window of
received records.  Records that are too old to fit in the window and
records that have previously been received are silently discarded.
The replay detection feature is optional, since packet duplication is
not always malicious, but can also occur due to routing errors.
Applications may conceivably detect duplicate packets and accordingly
modify their data transmission strategy.</t>

</section>
</section>
<section anchor="the-dtls-record-layer" title="The DTLS Record Layer">

<t>The DTLS record layer is similar to that of TLS 1.3.
There are three major changes:</t>

<t><list style="numbers">
  <t>The DTLSCiphertext structure omits the superfluous version number field.</t>
  <t>DTLS adds an explicit epoch and sequence number
in the record header.  This sequence number allows the recipient to correctly
verify the DTLS MAC.</t>
  <t>DTLS adds a short header format (DTLSShortCiphertext) that can be
used to reduce overhead once the handshake is complete.</t>
</list></t>

<t>The DTLS record formats are shown below.
DTLSPlaintext records are used to send unprotected records and DTLSCiphertext
or DTLSShortCiphertext are used to send protected records.</t>

<figure><artwork><![CDATA[
  struct {
      ContentType type;
      ProtocolVersion legacy_record_version;
      uint16 epoch = 0                                 // DTLS field
      uint48 sequence_number;                          // DTLS field
      uint16 length;
      opaque fragment[DTLSPlaintext.length];
  } DTLSPlaintext;

  struct {
       opaque content[DTLSPlaintext.length];
       ContentType type;
       uint8 zeros[length_of_padding];
  } DTLSInnerPlaintext;

  struct {
      ContentType opaque_type = 23; /* application_data */
      uint32 epoch_and_sequence;
      uint16 length;
      opaque encrypted_record[length];
  } DTLSCiphertext;
]]></artwork></figure>

<t><list style="hanging">
  <t hangText='opaque_type:'>
  Identical to the opaque_type field in a TLS 1.3 record.</t>
  <t hangText='epoch_and_sequence:'>
  The low order two bits of the epoch and the low order 30 bits of
the sequence number, laid out as a 32 bit integer.
The first 2 bits hold the low order bits from the epoch and the
remaining 30 bits hold the low order bits from the sequence number
(see <xref target="reconstructing"/> for how to use this value).</t>
  <t hangText='length:'>
  Identical to the length field in a TLS 1.3 record.</t>
  <t hangText='encrypted_record:'>
  Identical to the encrypted_record field in a TLS 1.3 record.</t>
</list></t>

<t>As with previous versions of DTLS, multiple DTLSPlaintext
and DTLSCiphertext records can be included
in the same underlying transport datagram.</t>

<t>The short DTLS header format is:</t>

<figure><artwork><![CDATA[
    struct {
      uint16 short_epoch_and_sequence;  // 001ESSSS SSSSSSSS
      opaque encrypted_record[remainder_of_datagram];
    } DTLSShortCiphertext;
]]></artwork></figure>

<t>The short_epoch_and_sequence document contains the epoch and sequence
packed into a 16 bit integer as follows:</t>

<t><list style="symbols">
  <t>The first three bits are set to 001 in order to allow multiplexing
between DTLS and VoIP protocols (STUN, RTP/RTCP, etc.) <xref target="RFC7983"/>
and distinguish the short from long header formats.</t>
  <t>The fourth bit is the low order bit of the epoch value.</t>
  <t>The remaining bits contain the low order 12 bits of the sequence
number.</t>
</list></t>

<t>In this format, the length field is omitted and therefore the
record consumes the entire rest of the datagram in the lower
level transport. It is not possible to have multiple
DTLSShortCiphertext format records in the same datagram.</t>

<t>DTLSShortCiphertext MUST only be used for data which is protected with
one of the application_traffic_secret values, and not for messages
protected with either [sender]_handshake_traffic_sercret or
[sender]_early_traffic_secret values. When using an
[sender]_application_traffic_secret for message protection,
Implementations MAY use either DTLSCiphertext or DTLSShortCiphertext
at their discretion.</t>

<section anchor="sequence-number-handling" title="Sequence Number Handling">

<t>DTLS uses an explicit sequence number, rather than an implicit one,
carried in the sequence_number field of the record.  Sequence numbers
are maintained separately for each epoch, with each sequence_number
initially being 0 for each epoch.  For instance, if a handshake
message from epoch 0 is retransmitted, it might have a sequence
number after a message from epoch 1, even if the message from epoch 1
was transmitted first.  Note that some care needs to be taken during
the handshake to ensure that retransmitted messages use the right
epoch and keying material.</t>

<t>The epoch number is initially zero and is
incremented each time keying material changes and a sender aims to rekey.
More details are provided in <xref target="dtls-epoch"/>.</t>

<t>Note that because DTLS records may be reordered, a record from epoch
1 may be received after epoch 2 has begun.  In general,
implementations SHOULD discard packets from earlier epochs, but if
packet loss causes noticeable problems implementations MAY choose to
retain keying material from previous epochs for up to the default MSL
specified for TCP <xref target="RFC0793"/> to allow for packet reordering.  (Note that
the intention here is that implementers use the current guidance from
the IETF for MSL, as specified in <xref target="RFC0793"/> or successors
not that they attempt to interrogate the MSL that
the system TCP stack is using.)  Until the handshake has completed,
implementations MUST accept packets from the old epoch.</t>

<t>Conversely, it is possible for records that are protected with the
new epoch to be received prior to the completion of a
handshake.  For instance, the server may send its Finished message
and then start transmitting data.  Implementations MAY either buffer
or discard such packets, though when DTLS is used over reliable
transports (e.g., SCTP <xref target="RFC4960"/>), they SHOULD be buffered and processed once
the handshake completes.  Note that TLS’s restrictions on when
packets may be sent still apply, and the receiver treats the packets
as if they were sent in the right order.  In particular, it is still
impermissible to send data prior to completion of the first handshake.</t>

<t>Implementations MUST either abandon an association or re-key prior to
allowing the sequence number to wrap.</t>

<t>Implementations MUST NOT allow the epoch to wrap, but instead MUST establish
a new association, terminating the old association.</t>

<section anchor="determining-the-header-format" title="Determining the Header Format">

<t>Implementations can distinguish the three header formats by examining
the first byte, which in the DTLSPlaintext and DTLSCiphertext header represents the
content type. If the first byte is alert(21), handshake(22), or ack(proposed, 25),
the record MUST be interpreted as a DTLSPlaintext record. If the
first byte is application_data(23) then the record MUST be
interpreted handled as DTLSCiphertext; the true content type
will be inside the protected portion.</t>

<t>If the first byte is any other other value, then receivers
MUST check to see if the leading bits of the first byte are
001. If so, they MUST process the record as DTLSShortCiphertext.
Otherwise, the record MUST be rejected as if it had failed
deprotection, as described in <xref target="handling-invalid-records"/>.</t>

</section>
<section anchor="reconstructing" title="Reconstructing the Sequence Number and Epoch">

<t>When receiving protected DTLS records message, the recipient does not
have a full epoch or sequence number value and so there is some
opportunity for ambiguity.  Because the full epoch and sequence number
are used to compute the per-record nonce, failure to reconstruct these
values leads to failure to deprotect the record, and so implementations
MAY use a mechanism of their choice to determine the full values.
This section provides an algorithm which is comparatively simple
and which implementations are RECOMMENDED to follow.</t>

<t>If the epoch bits match those of the current epoch, then
implementations SHOULD reconstruct the sequence number by computing
the full sequence number which is numerically closest to one plus the
sequence number of the highest successfully deprotected record.</t>

<t>During the handshake phase, the epoch bits unambiguously indicate the
correct key to use. After the
handshake is complete, if the epoch bits do not match those from the
current epoch implementations SHOULD use the most recent past epoch
which has matching bits, and then reconstruct the sequence number as
described above.</t>

<t>Note: the DTLSShortCiphertext format does not allow for easy
reconstruction of sequence numbers if ~2000 datagrams in sequence
are lost. Implementations which may encounter this situation
SHOULD use the DTLSCiphertext format.</t>

</section>
</section>
<section anchor="transport-layer-mapping" title="Transport Layer Mapping">

<t>DTLS messages MAY be fragmentmented into multiple DTLS records. 
Each DTLS record MUST fit within a single datagram.  In order to
avoid IP fragmentation, clients of the DTLS record layer SHOULD
attempt to size records so that they fit within any PMTU estimates
obtained from the record layer.</t>

<t>Multiple DTLS records MAY be placed in a single datagram.  They are
simply encoded consecutively.  The DTLS record framing is sufficient
to determine the boundaries.  Note, however, that the first byte of
the datagram payload MUST be the beginning of a record.  Records MUST
NOT span datagrams.</t>

<t>DTLS records, as defined in this document, do not contain any association 
identifiers and applications must arrange to multiplex between associations. 
With UDP, the host/port number is used to look up the appropriate security 
association for incoming records. However, the Connection ID extension 
defined in <xref target="I-D.ietf-tls-dtls-connection-id"/> adds an association identifier
to DTLS records.</t>

<t>Some transports, such as DCCP <xref target="RFC4340"/>, provide their own sequence
numbers.  When carried over those transports, both the DTLS and the
transport sequence numbers will be present.  Although this introduces
a small amount of inefficiency, the transport layer and DTLS sequence
numbers serve different purposes; therefore, for conceptual simplicity,
it is superior to use both sequence numbers.</t>

<t>Some transports provide congestion control for traffic
carried over them.  If the congestion window is sufficiently narrow,
DTLS handshake retransmissions may be held rather than transmitted
immediately, potentially leading to timeouts and spurious
retransmission.  When DTLS is used over such transports, care should
be taken not to overrun the likely congestion window. <xref target="RFC5238"/>
defines a mapping of DTLS to DCCP that takes these issues into account.</t>

</section>
<section anchor="pmtu-issues" title="PMTU Issues">

<t>In general, DTLS’s philosophy is to leave PMTU discovery to the application.
However, DTLS cannot completely ignore PMTU for three reasons:</t>

<t><list style="symbols">
  <t>The DTLS record framing expands the datagram size, thus lowering
the effective PMTU from the application’s perspective.</t>
  <t>In some implementations, the application may not directly talk to
the network, in which case the DTLS stack may absorb ICMP
<xref target="RFC1191"/> “Datagram Too Big” indications or ICMPv6 <xref target="RFC4443"/>
“Packet Too Big” indications.</t>
  <t>The DTLS handshake messages can exceed the PMTU.</t>
</list></t>

<t>In order to deal with the first two issues, the DTLS record layer
SHOULD behave as described below.</t>

<t>If PMTU estimates are available from the underlying transport
protocol, they should be made available to upper layer
protocols. In particular:</t>

<t><list style="symbols">
  <t>For DTLS over UDP, the upper layer protocol SHOULD be allowed to
obtain the PMTU estimate maintained in the IP layer.</t>
  <t>For DTLS over DCCP, the upper layer protocol SHOULD be allowed to
obtain the current estimate of the PMTU.</t>
  <t>For DTLS over TCP or SCTP, which automatically fragment and
reassemble datagrams, there is no PMTU limitation.  However, the
upper layer protocol MUST NOT write any record that exceeds the
maximum record size of 2^14 bytes.</t>
</list></t>

<t>The DTLS record layer SHOULD allow the upper layer protocol to
discover the amount of record expansion expected by the DTLS
processing.</t>

<t>If there is a transport protocol indication (either via ICMP or via a
refusal to send the datagram as in Section 14 of <xref target="RFC4340"/>), then the
DTLS record layer MUST inform the upper layer protocol of the error.</t>

<t>The DTLS record layer SHOULD NOT interfere with upper layer protocols
performing PMTU discovery, whether via <xref target="RFC1191"/> or <xref target="RFC4821"/>
mechanisms.  In particular:</t>

<t><list style="symbols">
  <t>Where allowed by the underlying transport protocol, the upper
layer protocol SHOULD be allowed to set the state of the DF bit
(in IPv4) or prohibit local fragmentation (in IPv6).</t>
  <t>If the underlying transport protocol allows the application to
request PMTU probing (e.g., DCCP), the DTLS record layer SHOULD
honor this request.</t>
</list></t>

<t>The final issue is the DTLS handshake protocol.  From the perspective
of the DTLS record layer, this is merely another upper layer
protocol.  However, DTLS handshakes occur infrequently and involve
only a few round trips; therefore, the handshake protocol PMTU
handling places a premium on rapid completion over accurate PMTU
discovery.  In order to allow connections under these circumstances,
DTLS implementations SHOULD follow the following rules:</t>

<t><list style="symbols">
  <t>If the DTLS record layer informs the DTLS handshake layer that a
message is too big, it SHOULD immediately attempt to fragment it,
using any existing information about the PMTU.</t>
  <t>If repeated retransmissions do not result in a response, and the
PMTU is unknown, subsequent retransmissions SHOULD back off to a
smaller record size, fragmenting the handshake message as
appropriate.  This standard does not specify an exact number of
retransmits to attempt before backing off, but 2-3 seems
appropriate.</t>
</list></t>

</section>
<section anchor="record-payload-protection" title="Record Payload Protection">

<t>Like TLS, DTLS transmits data as a series of protected records.  The
rest of this section describes the details of that format.</t>

<section anchor="anti-replay" title="Anti-Replay">

<t>Each DTLS record contains a sequence number to provide replay protection.
Sequence number verification SHOULD be performed using the following
sliding window procedure, borrowed from Section 3.4.3 of <xref target="RFC4303"/>.</t>

<t>The received packet counter for a session MUST be initialized to
zero when that session is established. For each received record, the
receiver MUST verify that the record contains a sequence number that
does not duplicate the sequence number of any other record received
during the lifetime of the session. This SHOULD be the first check
applied to a packet after it has been matched to a session, to speed
up the rejection of duplicate records.</t>

<t>Duplicates are rejected through the use of a sliding receive window.
(How the window is implemented is a local matter, but the following
text describes the functionality that the implementation must
exhibit.)  A minimum window size of 32 MUST be supported, but a
window size of 64 is preferred and SHOULD be employed as the default.
Another window size (larger than the minimum) MAY be chosen by the
receiver.  (The receiver does not notify the sender of the window
size.)</t>

<t>The “right” edge of the window represents the highest validated
sequence number value received on the session.  Records that contain
sequence numbers lower than the “left” edge of the window are
rejected.  Packets falling within the window are checked against a
list of received packets within the window.  An efficient means for
performing this check, based on the use of a bit mask, is described
in Section 3.4.3 of <xref target="RFC4303"/>.</t>

<t>If the received record falls within the window and is new, or if the
packet is to the right of the window, then the receiver proceeds to
MAC verification.  If the MAC validation fails, the receiver MUST
discard the received record as invalid.  The receive window is
updated only if the MAC verification succeeds.</t>

</section>
<section anchor="handling-invalid-records" title="Handling Invalid Records">

<t>Unlike TLS, DTLS is resilient in the face of invalid records (e.g.,
invalid formatting, length, MAC, etc.).  In general, invalid records
SHOULD be silently discarded, thus preserving the association;
however, an error MAY be logged for diagnostic purposes.
Implementations which choose to generate an alert instead, MUST
generate error alerts to avoid attacks where the attacker
repeatedly probes the implementation to see how it responds to
various types of error.  Note that if DTLS is run over UDP, then any
implementation which does this will be extremely susceptible to
denial-of-service (DoS) attacks because UDP forgery is so easy.
Thus, this practice is NOT RECOMMENDED for such transports, both
to increase the reliability of DTLS service and to avoid the risk
of spoofing attacks sending traffic to unrelated third parties.</t>

<t>If DTLS is being carried over a transport that is resistant to
forgery (e.g., SCTP with SCTP-AUTH), then it is safer to send alerts
because an attacker will have difficulty forging a datagram that will
not be rejected by the transport layer.</t>

</section>
</section>
</section>
<section anchor="dtls" title="The DTLS Handshake Protocol">

<t>DTLS 1.3 re-uses the TLS 1.3 handshake messages and flows, with
the following changes:</t>

<t><list style="numbers">
  <t>To handle message loss, reordering, and fragmentation modifications to
the handshake header are necessary.</t>
  <t>Retransmission timers are introduced to handle message loss.</t>
  <t>A new ACK content type has been added for reliable message delivery of handshake messages.</t>
</list></t>

<t>Note that TLS 1.3 already supports a cookie extension, which is used to
prevent denial-of-service attacks. This DoS prevention mechanism is
described in more detail below since UDP-based protocols are more vulnerable
to amplification attacks than a connection-oriented transport like TCP
that performs return-routability checks as part of the connection establishment.</t>

<t>With these exceptions, the DTLS message formats, flows, and logic are
the same as those of TLS 1.3. DTLS implementations SHOULD not use
the TLS 1.3 “compatibility mode” described in <xref target="I-D.ietf-tls-tls13"/>, Section D.4
and DTLS servers SHOULD ignore the “session_id” value generated by the
client rather than sending ChangeCipherSpec messages. Implementations MUST still
ignore ChangeCipherSpec messages received during the handshake
and at all other times SHOULD treat them as if they had failed to
deprotect.</t>

<section anchor="dos" title="Denial-of-Service Countermeasures">

<t>Datagram security protocols are extremely susceptible to a variety of
DoS attacks.  Two attacks are of particular concern:</t>

<t><list style="numbers">
  <t>An attacker can consume excessive resources on the server by
transmitting a series of handshake initiation requests, causing
the server to allocate state and potentially to perform
expensive cryptographic operations.</t>
  <t>An attacker can use the server as an amplifier by sending
connection initiation messages with a forged source of the
victim.  The server then sends its response to the victim
machine, thus flooding it. Depending on the selected
ciphersuite this response message can be quite large, as it
is the case for a Certificate message.</t>
</list></t>

<t>In order to counter both of these attacks, DTLS borrows the stateless
cookie technique used by Photuris <xref target="RFC2522"/> and IKE <xref target="RFC7296"/>.  When
the client sends its ClientHello message to the server, the server
MAY respond with a HelloRetryRequest message. The HelloRetryRequest message,
as well as the cookie extension, is defined in TLS 1.3.
The HelloRetryRequest message contains a stateless cookie generated using
the technique of <xref target="RFC2522"/>. The client MUST retransmit the ClientHello
with the cookie added as an extension.  The server then verifies the cookie
and proceeds with the handshake only if it is valid.  This mechanism forces
the attacker/client to be able to receive the cookie, which makes DoS attacks
with spoofed IP addresses difficult.  This mechanism does not provide any defence
against DoS attacks mounted from valid IP addresses.</t>

<t>The DTLS 1.3 specification changes the way how cookies are exchanged
compared to DTLS 1.2. DTLS 1.3 re-uses the HelloRetryRequest message
and conveys the cookie to the client via an extension. The client
receiving the cookie uses the same extension to place
the cookie subsequently into a ClientHello message.
DTLS 1.2 on the other hand used a separate message, namely the HelloVerifyRequest,
to pass a cookie to the client and did not utilize the extension mechanism.
For backwards compatibility reason the cookie field in the ClientHello
is present in DTLS 1.3 but is ignored by a DTLS 1.3 compliant server
implementation.</t>

<t>The exchange is shown in <xref target="dtls-cookie-exchange"/>. Note that
the figure focuses on the cookie exchange; all other extensions
are omitted.</t>

<figure title="DTLS exchange with HelloRetryRequest containing the &quot;cookie&quot; extension" anchor="dtls-cookie-exchange"><artwork><![CDATA[
      Client                                   Server
      ------                                   ------
      ClientHello           ------>

                            <----- HelloRetryRequest
                                    + cookie

      ClientHello           ------>
       + cookie

      [Rest of handshake]
]]></artwork></figure>

<t>The cookie extension is defined in Section 4.2.2 of <xref target="I-D.ietf-tls-tls13"/>. When sending the
initial ClientHello, the client does not have a cookie yet. In this case,
the cookie extension is omitted and the legacy_cookie field in the ClientHello
message SHOULD be set to a zero length vector (i.e., a single zero byte length field)
and MUST be ignored by a server negotiating DTLS 1.3.</t>

<t>When responding to a HelloRetryRequest, the client MUST create a new
ClientHello message following the description in Section 4.1.2 of <xref target="I-D.ietf-tls-tls13"/>.</t>

<t>If the HelloRetryRequest message is used, the initial ClientHello and
the HelloRetryRequest are included in the calculation of the
Transcript-Hash. The computation of the
message hash for the HelloRetryRequest is done according to the description
in Section 4.4.1 of <xref target="I-D.ietf-tls-tls13"/>.</t>

<t>The handshake transcript is not reset with the second ClientHello
and a stateless server-cookie implementation requires the transcript
of the HelloRetryRequest to be stored in the cookie or the internal state
of the hash algorithm, since only the hash of the transcript is required
for the handshake to complete.</t>

<t>When the second ClientHello is received, the server can verify that
the cookie is valid and that the client can receive packets at the
given IP address. If the client’s apparent IP address is embedded
in the cookie, this prevents an attacker from generating an acceptable
ClientHello apparently from another user.</t>

<t>One potential attack on this scheme is for the attacker to collect a
number of cookies from different addresses where it controls endpoints
and then reuse them to attack the server.
The server can defend against this attack by
changing the secret value frequently, thus invalidating those
cookies. If the server wishes that legitimate clients be able to
handshake through the transition (e.g., they received a cookie with
Secret 1 and then sent the second ClientHello after the server has
changed to Secret 2), the server can have a limited window during
which it accepts both secrets.  <xref target="RFC7296"/> suggests adding a key
identifier to cookies to detect this case. An alternative approach is
simply to try verifying with both secrets. It is RECOMMENDED that
servers implement a key rotation scheme that allows the server
to manage keys with overlapping lifetime.</t>

<t>Alternatively, the server can store timestamps in the cookie and
reject those cookies that were not generated within a certain
amount of time.</t>

<t>DTLS servers SHOULD perform a cookie exchange whenever a new
handshake is being performed.  If the server is being operated in an
environment where amplification is not a problem, the server MAY be
configured not to perform a cookie exchange.  The default SHOULD be
that the exchange is performed, however.  In addition, the server MAY
choose not to do a cookie exchange when a session is resumed.
Clients MUST be prepared to do a cookie exchange with every
handshake.</t>

<t>If a server receives a ClientHello with an invalid cookie, it
MUST NOT respond with a HelloRetryRequest. Restarting the handshake from
scratch, without a cookie, allows the client to recover from a situation
where it obtained a cookie that cannot be verified by the server.
As described in Section 4.1.4 of <xref target="I-D.ietf-tls-tls13"/>, clients SHOULD
also abort the handshake with an “unexpected_message” alert in response
to any second HelloRetryRequest which was sent in the same connection
(i.e., where the ClientHello was itself in response to a HelloRetryRequest).</t>

</section>
<section anchor="dtls-handshake-message-format" title="DTLS Handshake Message Format">

<t>In order to support message loss, reordering, and message
fragmentation, DTLS modifies the TLS 1.3 handshake header:</t>

<figure><artwork><![CDATA[
  enum {
      hello_request_RESERVED(0),
      client_hello(1),
      server_hello(2),
      hello_verify_request_RESERVED(3),
      new_session_ticket(4),
      end_of_early_data(5),
      hello_retry_request_RESERVED(6),
      encrypted_extensions(8),
      certificate(11),
      server_key_exchange_RESERVED(12),
      certificate_request(13),
      server_hello_done_RESERVED(14),
      certificate_verify(15),
      client_key_exchange_RESERVED(16),
      finished(20),
      key_update(24),
      message_hash(254),
      (255)
  } HandshakeType;

  struct {
      HandshakeType msg_type;    /* handshake type */
      uint24 length;             /* bytes in message */
      uint16 message_seq;        /* DTLS-required field */
      uint24 fragment_offset;    /* DTLS-required field */
      uint24 fragment_length;    /* DTLS-required field */
      select (HandshakeType) {
          case client_hello:          ClientHello;
          case server_hello:          ServerHello;
          case end_of_early_data:     EndOfEarlyData;
          case encrypted_extensions:  EncryptedExtensions;
          case certificate_request:   CertificateRequest;
          case certificate:           Certificate;
          case certificate_verify:    CertificateVerify;
          case finished:              Finished;
          case new_session_ticket:    NewSessionTicket;
          case key_update:            KeyUpdate;
      } body;
  } Handshake;
]]></artwork></figure>

<t>The first message each side transmits in each association always has
message_seq = 0.  Whenever a new message is generated, the
message_seq value is incremented by one. When a message is
retransmitted, the old message_seq value is re-used, i.e., not
incremented. From the perspective of the DTLS record layer, the retransmission is
a new record.  This record will have a new
DTLSPlaintext.sequence_number value.</t>

<t>DTLS implementations maintain (at least notionally) a
next_receive_seq counter.  This counter is initially set to zero.
When a handshake message is received, if its message_seq value matches
next_receive_seq, next_receive_seq is incremented and the message is
processed.  If the sequence number is less than next_receive_seq, the
message MUST be discarded.  If the sequence number is greater than
next_receive_seq, the implementation SHOULD queue the message but MAY
discard it.  (This is a simple space/bandwidth tradeoff).</t>

<t>In addition to the handshake messages that are deprecated by the TLS 1.3
specification DTLS 1.3 furthermore deprecates the HelloVerifyRequest message
originally defined in DTLS 1.0. DTLS 1.3-compliant implements MUST NOT
use the HelloVerifyRequest to execute a return-routability check. A
dual-stack DTLS 1.2/DTLS 1.3 client MUST, however, be prepared to
interact with a DTLS 1.2 server.</t>

</section>
<section anchor="clienthello-message" title="ClientHello Message">

<t>The format of the ClientHello used by a DTLS 1.3 client differs from the
TLS 1.3 ClientHello format as shown below.</t>

<figure><artwork><![CDATA[
   uint16 ProtocolVersion;
   opaque Random[32];

   uint8 CipherSuite[2];    /* Cryptographic suite selector */

   struct {
       ProtocolVersion legacy_version = { 254,253 }; // DTLSv1.2
       Random random;
       opaque legacy_session_id<0..32>;
       opaque legacy_cookie<0..2^8-1>;                  // DTLS
       CipherSuite cipher_suites<2..2^16-2>;
       opaque legacy_compression_methods<1..2^8-1>;
       Extension extensions<8..2^16-1>;
   } ClientHello;
]]></artwork></figure>

<t><list style="hanging">
  <t hangText='legacy_version:'>
  In previous versions of DTLS, this field was used for version
negotiation and represented the highest version number supported by
the client. Experience has shown that many servers do not properly
implement version negotiation, leading to “version intolerance” in
which the server rejects an otherwise acceptable ClientHello with a
version number higher than it supports. In DTLS 1.3, the client
indicates its version preferences in the “supported_versions”
extension (see Section 4.2.1 of <xref target="I-D.ietf-tls-tls13"/>) and the
legacy_version field MUST be set to {254, 253}, which was the version
number for DTLS 1.2.</t>
  <t hangText='random:'>
  Same as for TLS 1.3.</t>
  <t hangText='legacy_session_id:'>
  Same as for TLS 1.3.</t>
  <t hangText='legacy_cookie:'>
  A DTLS 1.3-only client MUST set the legacy_cookie field to zero length.</t>
  <t hangText='cipher_suites:'>
  Same as for TLS 1.3.</t>
  <t hangText='legacy_compression_methods:'>
  Same as for TLS 1.3.</t>
  <t hangText='extensions:'>
  Same as for TLS 1.3.</t>
</list></t>

</section>
<section anchor="handshake-message-fragmentation-and-reassembly" title="Handshake Message Fragmentation and Reassembly">

<t>Each DTLS message MUST fit within a single
transport layer datagram.  However, handshake messages are
potentially bigger than the maximum record size.  Therefore, DTLS
provides a mechanism for fragmenting a handshake message over a
number of records, each of which can be transmitted separately, thus
avoiding IP fragmentation.</t>

<t>When transmitting the handshake message, the sender divides the
message into a series of N contiguous data ranges.  These ranges MUST
NOT be larger than the maximum handshake fragment size and MUST
jointly contain the entire handshake message.  The ranges MUST NOT
overlap.  The sender then creates N handshake messages, all with the
same message_seq value as the original handshake message.  Each new
message is labeled with the fragment_offset (the number of bytes
contained in previous fragments) and the fragment_length (the length
of this fragment).  The length field in all messages is the same as
the length field of the original message.  An unfragmented message is
a degenerate case with fragment_offset=0 and fragment_length=length.</t>

<t>When a DTLS implementation receives a handshake message fragment, it
MUST buffer it until it has the entire handshake message.  DTLS
implementations MUST be able to handle overlapping fragment ranges.
This allows senders to retransmit handshake messages with smaller
fragment sizes if the PMTU estimate changes.</t>

<t>Note that as with TLS, multiple handshake messages may be placed in
the same DTLS record, provided that there is room and that they are
part of the same flight.  Thus, there are two acceptable ways to pack
two DTLS messages into the same datagram: in the same record or in
separate records.</t>

</section>
<section anchor="dtls-handshake-flights" title="DTLS Handshake Flights">

<t>DTLS messages are grouped into a series of message flights, according
to the diagrams below.</t>

<figure title="Message flights for a full DTLS Handshake (with cookie exchange)" anchor="dtls-full"><artwork><![CDATA[
Client                                             Server

ClientHello                                                 +----------+
 + key_share*                                               | Flight 1 |
 + pre_shared_key*      -------->                           +----------+

                                                            +----------+
                        <--------        HelloRetryRequest  | Flight 2 |
                                          + cookie          +----------+


ClientHello                                                 +----------+
 + key_share*                                               | Flight 3 |
 + pre_shared_key*      -------->                           +----------+
 + cookie

                                               ServerHello
                                              + key_share*
                                         + pre_shared_key*  +----------+
                                     {EncryptedExtensions}  | Flight 4 |
                                     {CertificateRequest*}  +----------+
                                            {Certificate*}
                                      {CertificateVerify*}
                        <--------               {Finished}
                                       [Application Data*]


 {Certificate*}                                             +----------+
 {CertificateVerify*}                                       | Flight 5 |
 {Finished}             -------->                           +----------+
 [Application Data]

                                                            +----------+
                        <--------                    [ACK]  | Flight 6 |
                                       [Application Data*]  +----------+

 [Application Data]     <------->      [Application Data]
]]></artwork></figure>

<figure title="Message flights for resumption and PSK handshake (without cookie exchange)" anchor="dtls-psk"><artwork><![CDATA[
 ClientHello                                              +----------+
  + pre_shared_key                                        | Flight 1 |
  + key_share*         -------->                          +----------+


                                             ServerHello
                                        + pre_shared_key  +----------+
                                            + key_share*  | Flight 2 |
                                   {EncryptedExtensions}  +----------+
                       <--------              {Finished}
                                     [Application Data*]
                                                          +----------+
 {Finished}            -------->                          | Flight 3 |
 [Application Data*]                                      +----------+

                                                          +----------+
                       <--------                   [ACK]  | Flight 4 |
                                     [Application Data*]  +----------+

 [Application Data]    <------->      [Application Data]
]]></artwork></figure>

<figure title="Message flights for the Zero-RTT handshake" anchor="dtls-zero-rtt"><artwork><![CDATA[
Client                                            Server

 ClientHello
  + early_data
  + psk_key_exchange_modes                                +----------+
  + key_share*                                            | Flight 1 |
  + pre_shared_key                                        +----------+
 (Application Data*)     -------->

                                             ServerHello
                                        + pre_shared_key
                                            + key_share*  +----------+
                                   {EncryptedExtensions}  | Flight 2 |
                                              {Finished}  +----------+
                       <--------     [Application Data*]


                                                          +----------+
 (EndOfEarlyData)                                         | Flight 3 |
 {Finished}            -------->                          +----------+
 [Application Data*]
                                                          +----------+
                       <--------                   [ACK]  | Flight 4 |
                                     [Application Data*]  +----------+

 [Application Data]    <------->      [Application Data]
]]></artwork></figure>

<figure title="Message flights for the new session ticket message" anchor="dtls-post-handshake-ticket"><artwork><![CDATA[
Client                                            Server

                                                          +----------+
                       <--------       [NewSessionTicket] | Flight 1 |
                                                          +----------+

                                                          +----------+
[ACK]                  -------->                          | Flight 2 |
                                                          +----------+
]]></artwork></figure>

<t>Note: The application data sent by the client is not included in the
timeout and retransmission calculation.</t>

</section>
<section anchor="timeout-and-retransmission" title="Timeout and Retransmission">

<section anchor="state-machine" title="State Machine">

<t>DTLS uses a simple timeout and retransmission scheme with the
state machine shown in <xref target="dtls-timeout-state-machine"/>.
Because DTLS clients send the first message
(ClientHello), they start in the PREPARING state.  DTLS servers start
in the WAITING state, but with empty buffers and no retransmit timer.</t>

<figure title="DTLS timeout and retransmission state machine" anchor="dtls-timeout-state-machine"><artwork><![CDATA[
                             +-----------+
                             | PREPARING |
                +----------> |           |
                |            |           |
                |            +-----------+
                |                  |
                |                  | Buffer next flight
                |                  |
                |                 \|/
                |            +-----------+
                |            |           |
                |            |  SENDING  |<------------------+
                |            |           |                   |
                |            +-----------+                   |
        Receive |                  |                         |
           next |                  | Send flight or partial  |
         flight |                  | flight                  |
                |  +---------------+                         |
                |  |               | Set retransmit timer    |
                |  |              \|/                        |
                |  |         +-----------+                   |
                |  |         |           |                   |
                +--)---------|  WAITING  |-------------------+
                |  |  +----->|           |   Timer expires   |
                |  |  |      +-----------+                   |
                |  |  |          |  |   |                    |
                |  |  |          |  |   |                    |
                |  |  +----------+  |   +--------------------+
                |  | Receive record |   Read retransmit or ACK
        Receive |  |  Send ACK      |
           last |  |                |
         flight |  |                | Receive ACK
                |  |                | for last flight
               \|/\|/               |
                                    |
            +-----------+           |
            |           | <---------+
            | FINISHED  |
            |           |
            +-----------+
                |  /|\
                |   |
                |   |
                +---+

          Server read retransmit
              Retransmit ACK
]]></artwork></figure>

<t>The state machine has four basic states: PREPARING, SENDING, WAITING,
and FINISHED.</t>

<t>In the PREPARING state, the implementation does whatever computations
are necessary to prepare the next flight of messages.  It then
buffers them up for transmission (emptying the buffer first) and
enters the SENDING state.</t>

<t>In the SENDING state, the implementation transmits the buffered
flight of messages. If the implementation has received one or more
ACKs (see <xref target="ack-msg"/>) from the peer, then it SHOULD omit any messages or
message fragments which have already been ACKed. Once the messages
have been sent, the implementation then enters the FINISHED state
if this is the last flight in the handshake.  Or, if the
implementation expects to receive more messages, it sets a
retransmit timer and then enters the WAITING state.</t>

<t>There are four ways to exit the WAITING state:</t>

<t><list style="numbers">
  <t>The retransmit timer expires: the implementation transitions to
the SENDING state, where it retransmits the flight, resets the
retransmit timer, and returns to the WAITING state.</t>
  <t>The implementation reads a ACK from the peer: upon receiving
an ACK for a partial flight (as mentioned in <xref target="sending-acks"/>),
the implementation transitions
to the SENDING state, where it retransmits the unacked portion
of the flight, resets the retransmit timer, and returns to the
WAITING state. Upon receiving an ACK for a complete flight,
the implementation cancels all retransmissions and either
remains in WAITING, or, if the ACK was for the final flight,
transitions to FINISHED.</t>
  <t>The implementation reads a retransmitted flight from the peer: the
implementation transitions to the SENDING state, where it
retransmits the flight, resets the retransmit timer, and returns
to the WAITING state.  The rationale here is that the receipt of a
duplicate message is the likely result of timer expiry on the peer
and therefore suggests that part of one’s previous flight was
lost.</t>
  <t>The implementation receives some or all next flight of messages: if
this is the final flight of messages, the implementation
transitions to FINISHED.  If the implementation needs to send a new
flight, it transitions to the PREPARING state. Partial reads
(whether partial messages or only some of the messages in the
flight) may also trigger the implementation to send an ACK, as
described in <xref target="sending-acks"/>.</t>
</list></t>

<t>Because DTLS clients send the first message (ClientHello), they start
in the PREPARING state.  DTLS servers start in the WAITING state, but
with empty buffers and no retransmit timer.</t>

<t>In addition, for at least twice the default Maximum Segment Lifetime
(MSL) defined for <xref target="RFC0793"/>, when in the FINISHED state, the server
MUST respond to retransmission of the client’s second flight with
a retransmit of its ACK.</t>

<t>Note that because of packet loss, it is possible for one side to be
sending application data even though the other side has not received
the first side’s Finished message.  Implementations MUST either
discard or buffer all application data packets for the new epoch
until they have received the Finished message for that epoch.
Implementations MAY treat receipt of application data with a new
epoch prior to receipt of the corresponding Finished message as
evidence of reordering or packet loss and retransmit their final
flight immediately, shortcutting the retransmission timer.</t>

</section>
<section anchor="timer-values" title="Timer Values">

<t>Though timer values are the choice of the implementation, mishandling
of the timer can lead to serious congestion problems; for example, if
many instances of a DTLS time out early and retransmit too quickly on
a congested link.  Implementations SHOULD use an initial timer value
of 100 msec (the minimum defined in RFC 6298 <xref target="RFC6298"/>) and double
the value at each retransmission, up to no less than the RFC 6298
maximum of 60 seconds. Application specific profiles, such as those
used for the Internet of Things environment, may recommend longer
timer values. Note that a 100 msec timer is recommend
rather than the 3-second RFC 6298 default in order to improve latency
for time-sensitive applications.  Because DTLS only uses
retransmission for handshake and not dataflow, the effect on
congestion should be minimal.</t>

<t>Implementations SHOULD retain the current timer value until a
transmission without loss occurs, at which time the value may be
reset to the initial value.  After a long period of idleness, no less
than 10 times the current timer value, implementations may reset the
timer to the initial value.  One situation where this might occur is
when a rehandshake is used after substantial data transfer.</t>

</section>
</section>
<section anchor="certificateverify-and-finished-messages" title="CertificateVerify and Finished Messages">

<t>CertificateVerify and Finished messages have the same format as in
TLS 1.3.  Hash calculations include entire handshake messages, including
DTLS-specific fields: message_seq, fragment_offset, and
fragment_length.  However, in order to remove sensitivity to
handshake message fragmentation, the CertificateVerify and the Finished messages MUST be computed as
if each handshake message had been sent as a single fragment following
the algorithm described in Section 4.4.3 and Section 4.4.4 of <xref target="I-D.ietf-tls-tls13"/>, respectively.</t>

</section>
<section anchor="alert-messages" title="Alert Messages">

<t>Note that Alert messages are not retransmitted at all, even when they
occur in the context of a handshake.  However, a DTLS implementation
which would ordinarily issue an alert SHOULD generate a new alert
message if the offending record is received again (e.g., as a
retransmitted handshake message).  Implementations SHOULD detect when
a peer is persistently sending bad messages and terminate the local
connection state after such misbehavior is detected.</t>

</section>
<section anchor="establishing-new-associations-with-existing-parameters" title="Establishing New Associations with Existing Parameters">

<t>If a DTLS client-server pair is configured in such a way that
repeated connections happen on the same host/port quartet, then it is
possible that a client will silently abandon one connection and then
initiate another with the same parameters (e.g., after a reboot).
This will appear to the server as a new handshake with epoch=0.  In
cases where a server believes it has an existing association on a
given host/port quartet and it receives an epoch=0 ClientHello, it
SHOULD proceed with a new handshake but MUST NOT destroy the existing
association until the client has demonstrated reachability either by
completing a cookie exchange or by completing a complete handshake
including delivering a verifiable Finished message.  After a correct
Finished message is received, the server MUST abandon the previous
association to avoid confusion between two valid associations with
overlapping epochs.  The reachability requirement prevents
off-path/blind attackers from destroying associations merely by
sending forged ClientHellos.</t>

<t>Note: it is not always possible to distinguish which association
a given packet is from. For instance, if the client performs
a handshake, abandons the connection, and then immediately starts
a new handshake, it may not be possible to tell which connection
a given protected record is for. In these cases, trial decryption
MAY be necessary, though implementations could also use some sort
of connection identifier, such as the one specified in
<xref target="I-D.rescorla-tls-dtls-connection-id"/>.</t>

</section>
</section>
<section anchor="example-of-handshake-with-timeout-and-retransmission" title="Example of Handshake with Timeout and Retransmission">

<t>The following is an example of a handshake with lost packets and
retransmissions.</t>

<figure title="Example DTLS exchange illustrating message loss" anchor="dtls-msg-loss"><artwork><![CDATA[
Client                                                Server
------                                                ------

 Record 0                  -------->
 ClientHello
 (message_seq=0)
  +cookie

                             X<-----                 Record 0
                             (lost)               ServerHello
                                              (message_seq=1)
                                          EncryptedExtensions
                                              (message_seq=2)
                                                  Certificate
                                              (message_seq=3)


                           <--------                 Record 1
                                            CertificateVerify
                                              (message_seq=4)
                                                     Finished
                                              (message_seq=5)

 Record 1                  -------->
 ACK [1]


                           <--------                 Record 2
                                                  ServerHello
                                              (message_seq=1)
                                          EncryptedExtensions
                                              (message_seq=2)
                                                  Certificate
                                              (message_seq=3)

 Record 2                  -------->
 Certificate
 (message_seq=2)
 CertificateVerify
 (message_seq=3)
 Finished
 (message_seq=4)

                           <--------               Record 3
                                                    ACK [2]

]]></artwork></figure>

<section anchor="dtls-epoch" title="Epoch Values and Rekeying">

<t>A recipient of a DTLS message needs to select the correct keying material
in order to process an incoming message. With the possibility of message
 loss and re-order an identifier is needed to determine which cipher state
has been used to protect the record payload. The epoch value fulfills this
role in DTLS. In addition to the key derivation steps described in
Section 7 of <xref target="I-D.ietf-tls-tls13"/> triggered by the states during the handshake
a sender may want to rekey at any time during
the lifetime of the connection and has to have a way to indicate that it is
updating its sending cryptographic keys.</t>

<t>This version of DTLS assigns dedicated epoch values to messages in the
protocol exchange to allow identification of the correct cipher state:</t>

<t><list style="symbols">
  <t>epoch value (0) is used with unencrypted messages. There are
three unencrypted messages in DTLS, namely ClientHello, ServerHello,
and HelloRetryRequest.</t>
  <t>epoch value (1) is used for messages protected using keys derived
from client_early_traffic_secret. This includes early data sent by the
client and the EndOfEarlyData message.</t>
  <t>epoch value (2) is used for messages protected using keys derived
from [sender]_handshake_traffic_secret. Messages transmitted during
the initial handshake, such as EncryptedExtensions,
CertificateRequest, Certificate, CertificateVerify, and Finished
belong to this category. Note, however, post-handshake are
protected under the appropriate application traffic key and are not included in this category.</t>
  <t>epoch value (3) is used for payloads protected using keys derived
from the initial traffic_secret_0. This may include handshake
messages, such as post-handshake messages (e.g., a
NewSessionTicket message).</t>
  <t>epoch value (4 to 2^16-1) is used for payloads protected using keys from the traffic_secret_N (N&gt;0).</t>
</list></t>

<t>Using these reserved epoch values a receiver knows what cipher state
has been used to encrypt and integrity protect a
message. Implementations that receive a payload with an epoch value
for which no corresponding cipher state can be determined MUST
generate a “unexpected_message” alert. For example, client incorrectly
uses epoch value 5 when sending early application data in a 0-RTT
exchange. A server will not be able to compute the appropriate keys
and will therefore have to respond with an alert.</t>

<t>Note that epoch values do not wrap. If a DTLS implementation would
need to wrap the epoch value, it MUST terminate the connection.</t>

<t>The traffic key calculation is described in Section 7.3 of <xref target="I-D.ietf-tls-tls13"/>.</t>

<t><xref target="dtls-msg-epoch"/> illustrates the epoch values in an example DTLS handshake.</t>

<figure title="Example DTLS exchange with epoch information" anchor="dtls-msg-epoch"><artwork><![CDATA[
Client                                             Server
------                                             ------

 ClientHello
 (epoch=0)
                            -------->

                            <--------       HelloRetryRequest
                                                    (epoch=0)

 ClientHello                -------->
 (epoch=0)

                            <--------             ServerHello
                                                    (epoch=0)
                                        {EncryptedExtensions}
                                                    (epoch=2)
                                                {Certificate}
                                                    (epoch=2)
                                          {CertificateVerify}
                                                    (epoch=2)
                                                   {Finished}
                                                    (epoch=2)

 {Certificate}              -------->
 (epoch=2)
 {CertificateVerify}
 (epoch=2)
 {Finished}
 (epoch=2)

                            <--------                   [ACK]
                                                    (epoch=3)

 [Application Data]         -------->
 (epoch=3)

                            <--------      [Application Data]
                                                    (epoch=3)

                         Some time later ...
                 (Post-Handshake Message Exchange)

                            <--------      [NewSessionTicket]
                                                    (epoch=3)

 [ACK]                      -------->
 (epoch=3)

                         Some time later ...
                           (Rekeying)

                            <--------      [Application Data]
                                                    (epoch=4)
 [Application Data]         -------->
 (epoch=4)
]]></artwork></figure>

</section>
</section>
<section anchor="ack-msg" title="ACK Message">

<t>The ACK message is used by an endpoint to indicate handshake-containing
the TLS records it has received from the other side. ACK is not
a handshake message but is rather a separate content type,
with code point TBD (proposed, 25). This avoids it consuming space in the
handshake message sequence. Note that ACKs can still be
piggybacked on the same UDP datagram as handshake records.</t>

<figure><artwork><![CDATA[
struct {
       uint64 record_numbers<0..2^16-1>;
} ACK;
]]></artwork></figure>

<t><list style="hanging">
  <t hangText='record_numbers:'>
  a list of the records containing handshake messages in the current
flight which the endpoint has received, in numerically increasing
order. ACKs only cover the current outstanding flight (this is
possible because DTLS is generally a lockstep protocol). Thus, an ACK
from the server would not cover both the ClientHello and the client’s
Certificate. Implementations can accomplish this by clearing their ACK
list upon receiving the start of the next flight.</t>
</list></t>

<t>ACK records MUST be sent with an epoch that is equal to or higher
than the record which is being acknowledged. Implementations SHOULD
simply use the current key.</t>

<section anchor="sending-acks" title="Sending ACKs">

<t>When an implementation receives a partial flight, it SHOULD generate
an ACK that covers the messages from that flight which it has
received so far. Implementations have some discretion about when
to generate ACKs, but it is RECOMMENDED that they do so under
two circumstances:</t>

<t><list style="symbols">
  <t>When they receive a message or fragment which is out of order,
either because it is not the next expected message or because
it is not the next piece of the current message. Implementations
MUST NOT send ACKs for handshake messages which they discard
as out-of-order, because otherwise those messages will not be
retransmitted.</t>
  <t>When they have received part of a flight and do not immediately
receive the rest of the flight (which may be in the same UDP
datagram). A reasonable approach here is to
set a timer for 1/4 the current retransmit timer value when
the first record in the flight is received and then send an
ACK when that timer expires.</t>
</list></t>

<t>In addition, implementations MUST send ACKs upon receiving
all of any flight which they do not respond to with their
own messages. Specifically, this means the client’s final
flight of the main handshake, the server’s transmission
of the NewSessionTicket, and KeyUpdate messages.
ACKs SHOULD NOT be sent for other
complete flights because they are implicitly acknowledged
by the receipt of the next flight, which generally
immediately follows the flight. Each NewSessionTicket
or KeyUpdate is an individual flight; in particular, a KeyUpdate
sent in response to a KeyUpdate with update_requested does not
implicitly acknowledge that message. Implementations MAY
ACK the records corresponding to each transmission of
that flight or simply ACK the most recent one.</t>

<t>ACKs MUST NOT be sent for other records of any content type
other than handshake or for records which cannot be unprotected.</t>

<t>Note that in some cases it may be necessary to send an ACK which
does not contain any record numbers. For instance, a client
might receive an EncryptedExtensions message prior to receiving
a ServerHello. Because it cannot decrypt the EncryptedExtensions,
it cannot safely ACK it (as it might be damaged). If the client
does not send an ACK, the server will eventually retransmit
its first flight, but this might take far longer than the
actual round trip time between client and server. Having
the client send an empty ACK shortcuts this process.</t>

</section>
<section anchor="receiving-acks" title="Receiving ACKs">

<t>When an implementation receives an ACK, it SHOULD record that the
messages or message fragments sent in the records being
ACKed were received and omit them from any future
retransmissions. Upon receipt of an ACK for only some messages
from a flight, an implementation SHOULD retransmit the remaining
messages or fragments. Note that this requires implementations to
track which messages appear in which records. Once all the messages in a flight have been
acknowledged, the implementation MUST cancel all retransmissions
of that flight. As noted above, the receipt of any packet responding
to a given flight MUST be taken as an implicit ACK for the entire
flight.</t>

</section>
</section>
<section anchor="key-updates" title="Key Updates">

<t>As with TLS 1.3, DTLS 1.3 implementations send a KeyUpdate message to
indicate that they are updating their sending keys.  As with other
handshake messages with no built-in response, KeyUpdates MUST be
acknowledged.  In order to facilitate epoch reconstruction
<xref target="reconstructing"/> implementations MUST NOT send with the new keys or
send a new KeyUpdate until the previous KeyUpdate has been
acknowledged (this avoids having too many epochs in active use).</t>

<t>Due to loss and/or re-ordering, DTLS 1.3 implementations
may receive a record with an older epoch than the
current one (the requirements above preclude receiving
a newer record). They SHOULD attempt to process those records
with that epoch (see <xref target="reconstructing"/> for information
on determining the correct epoch), but MAY opt to discard
such out-of-epoch records.</t>

<t>Although KeyUpdate MUST be ACKed, it is possible for the ACK to be
lost, in which case the sender of the KeyUpdate will retransmit it.
Implementations MUST retain the ability to ACK the KeyUpdate for
up to 2MSL. It is RECOMMENDED that they do so by retaining the
pre-update keying material, but they MAY do so by responding
to messages which appear to be out-of-epoch with a canned ACK
message; in this case, implementations SHOULD rate limit how
often they send such ACKs.</t>

</section>
<section anchor="application-data-protocol" title="Application Data Protocol">

<t>Application data messages are carried by the record layer and are fragmented
and encrypted based on the current connection state. The messages
are treated as transparent data to the record layer.</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>Security issues are discussed primarily in <xref target="I-D.ietf-tls-tls13"/>.</t>

<t>The primary additional security consideration raised by DTLS is that
of denial of service.  DTLS includes a cookie exchange designed to
protect against denial of service.  However, implementations that do
not use this cookie exchange are still vulnerable to DoS.  In
particular, DTLS servers that do not use the cookie exchange may be
used as attack amplifiers even if they themselves are not
experiencing DoS.  Therefore, DTLS servers SHOULD use the cookie
exchange unless there is good reason to believe that amplification is
not a threat in their environment.  Clients MUST be prepared to do a
cookie exchange with every handshake.</t>

<t>Unlike TLS implementations, DTLS implementations SHOULD NOT respond
to invalid records by terminating the connection.</t>

<t>If implementations process out-of-epoch records as recommended in
<xref target="key-updates"/>, then this creates a denial of service risk since an adversary could
inject packets with fake epoch values, forcing the recipient
to compute the next-generation application_traffic_secret using the
HKDF-Expand-Label construct to only find out that the message was
does not pass the AEAD cipher processing. The impact of this
attack is small since the HKDF-Expand-Label only performs symmetric
key hashing operations. Implementations which are concerned about
this form of attack can discard out-of-epoch records.</t>

</section>
<section anchor="changes-to-dtls-12" title="Changes to DTLS 1.2">

<t>Since TLS 1.3 introduces a large number of changes to TLS 1.2, the list
of changes from DTLS 1.2 to DTLS 1.3 is equally large. For this reason
this section focuses on the most important changes only.</t>

<t><list style="symbols">
  <t>New handshake pattern, which leads to a shorter message exchange</t>
  <t>Support for AEAD-only ciphers</t>
  <t>HelloRetryRequest of TLS 1.3 used instead of HelloVerifyRequest</t>
  <t>More flexible ciphersuite negotiation</t>
  <t>New session resumption mechanism</t>
  <t>PSK authentication redefined</t>
  <t>New key derivation hierarchy utilizing a new key derivation construct</t>
  <t>Removed support for weaker and older cryptographic algorithms</t>
  <t>Improved version negotation</t>
</list></t>

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

<t>IANA is requested to allocate a new value in the TLS ContentType Registry for the ACK message defined in <xref target="ack-msg"/>, with content type 25.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC0768" target='https://www.rfc-editor.org/info/rfc768'>
<front>
<title>User Datagram Protocol</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<date year='1980' month='August' />
</front>
<seriesInfo name='STD' value='6'/>
<seriesInfo name='RFC' value='768'/>
<seriesInfo name='DOI' value='10.17487/RFC0768'/>
</reference>



<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="RFC1191" target='https://www.rfc-editor.org/info/rfc1191'>
<front>
<title>Path MTU discovery</title>
<author initials='J.C.' surname='Mogul' fullname='J.C. Mogul'><organization /></author>
<author initials='S.E.' surname='Deering' fullname='S.E. Deering'><organization /></author>
<date year='1990' month='November' />
<abstract><t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path.  It specifies a small change to the way routers generate one type of ICMP message.  For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='1191'/>
<seriesInfo name='DOI' value='10.17487/RFC1191'/>
</reference>



<reference  anchor="RFC4443" target='https://www.rfc-editor.org/info/rfc4443'>
<front>
<title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
<author initials='A.' surname='Conta' fullname='A. Conta'><organization /></author>
<author initials='S.' surname='Deering' fullname='S. Deering'><organization /></author>
<author initials='M.' surname='Gupta' fullname='M. Gupta' role='editor'><organization /></author>
<date year='2006' month='March' />
<abstract><t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol).  ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6).  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='89'/>
<seriesInfo name='RFC' value='4443'/>
<seriesInfo name='DOI' value='10.17487/RFC4443'/>
</reference>



<reference  anchor="RFC4821" target='https://www.rfc-editor.org/info/rfc4821'>
<front>
<title>Packetization Layer Path MTU Discovery</title>
<author initials='M.' surname='Mathis' fullname='M. Mathis'><organization /></author>
<author initials='J.' surname='Heffner' fullname='J. Heffner'><organization /></author>
<date year='2007' month='March' />
<abstract><t>This document describes a robust method for Path MTU Discovery (PMTUD) that relies on TCP or some other Packetization Layer to probe an Internet path with progressively larger packets.  This method is described as an extension to RFC 1191 and RFC 1981, which specify ICMP-based Path MTU Discovery for IP versions 4 and 6, respectively.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4821'/>
<seriesInfo name='DOI' value='10.17487/RFC4821'/>
</reference>



<reference  anchor="RFC0793" target='https://www.rfc-editor.org/info/rfc793'>
<front>
<title>Transmission Control Protocol</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<date year='1981' month='September' />
</front>
<seriesInfo name='STD' value='7'/>
<seriesInfo name='RFC' value='793'/>
<seriesInfo name='DOI' value='10.17487/RFC0793'/>
</reference>



<reference  anchor="RFC6298" target='https://www.rfc-editor.org/info/rfc6298'>
<front>
<title>Computing TCP's Retransmission Timer</title>
<author initials='V.' surname='Paxson' fullname='V. Paxson'><organization /></author>
<author initials='M.' surname='Allman' fullname='M. Allman'><organization /></author>
<author initials='J.' surname='Chu' fullname='J. Chu'><organization /></author>
<author initials='M.' surname='Sargent' fullname='M. Sargent'><organization /></author>
<date year='2011' month='June' />
<abstract><t>This document defines the standard algorithm that Transmission Control Protocol (TCP) senders are required to use to compute and manage their retransmission timer.  It expands on the discussion in Section 4.2.3.1 of RFC 1122 and upgrades the requirement of supporting the algorithm from a SHOULD to a MUST.  This document obsoletes RFC 2988.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6298'/>
<seriesInfo name='DOI' value='10.17487/RFC6298'/>
</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="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='July' day='3' year='2017' />

<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></abstract>

</front>

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




    </references>

    <references title='Informative References'>





<reference  anchor="RFC7296" target='https://www.rfc-editor.org/info/rfc7296'>
<front>
<title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
<author initials='C.' surname='Kaufman' fullname='C. Kaufman'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='Y.' surname='Nir' fullname='Y. Nir'><organization /></author>
<author initials='P.' surname='Eronen' fullname='P. Eronen'><organization /></author>
<author initials='T.' surname='Kivinen' fullname='T. Kivinen'><organization /></author>
<date year='2014' month='October' />
<abstract><t>This document describes version 2 of the Internet Key Exchange (IKE) protocol.  IKE is a component of IPsec used for performing mutual authentication and establishing and maintaining Security Associations (SAs).  This document obsoletes RFC 5996, and includes all of the errata for it.  It advances IKEv2 to be an Internet Standard.</t></abstract>
</front>
<seriesInfo name='STD' value='79'/>
<seriesInfo name='RFC' value='7296'/>
<seriesInfo name='DOI' value='10.17487/RFC7296'/>
</reference>



<reference  anchor="RFC2522" target='https://www.rfc-editor.org/info/rfc2522'>
<front>
<title>Photuris: Session-Key Management Protocol</title>
<author initials='P.' surname='Karn' fullname='P. Karn'><organization /></author>
<author initials='W.' surname='Simpson' fullname='W. Simpson'><organization /></author>
<date year='1999' month='March' />
<abstract><t>This document defines the basic protocol mechanisms. This document defines an Experimental Protocol for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='2522'/>
<seriesInfo name='DOI' value='10.17487/RFC2522'/>
</reference>



<reference  anchor="RFC4303" target='https://www.rfc-editor.org/info/rfc4303'>
<front>
<title>IP Encapsulating Security Payload (ESP)</title>
<author initials='S.' surname='Kent' fullname='S. Kent'><organization /></author>
<date year='2005' month='December' />
<abstract><t>This document describes an updated version of the Encapsulating Security Payload (ESP) protocol, which is designed to provide a mix of security services in IPv4 and IPv6.  ESP is used to provide confidentiality, data origin authentication, connectionless integrity, an anti-replay service (a form of partial sequence integrity), and limited traffic flow confidentiality.  This document obsoletes RFC 2406 (November 1998).  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4303'/>
<seriesInfo name='DOI' value='10.17487/RFC4303'/>
</reference>



<reference  anchor="RFC4340" target='https://www.rfc-editor.org/info/rfc4340'>
<front>
<title>Datagram Congestion Control Protocol (DCCP)</title>
<author initials='E.' surname='Kohler' fullname='E. Kohler'><organization /></author>
<author initials='M.' surname='Handley' fullname='M. Handley'><organization /></author>
<author initials='S.' surname='Floyd' fullname='S. Floyd'><organization /></author>
<date year='2006' month='March' />
<abstract><t>The Datagram Congestion Control Protocol (DCCP) is a transport protocol that provides bidirectional unicast connections of congestion-controlled unreliable datagrams.  DCCP is suitable for applications that transfer fairly large amounts of data and that can benefit from control over the tradeoff between timeliness and reliability.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4340'/>
<seriesInfo name='DOI' value='10.17487/RFC4340'/>
</reference>



<reference  anchor="RFC4346" target='https://www.rfc-editor.org/info/rfc4346'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
<author initials='T.' surname='Dierks' fullname='T. Dierks'><organization /></author>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2006' month='April' />
<abstract><t>This document specifies Version 1.1 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4346'/>
<seriesInfo name='DOI' value='10.17487/RFC4346'/>
</reference>



<reference  anchor="RFC4347" target='https://www.rfc-editor.org/info/rfc4347'>
<front>
<title>Datagram Transport Layer Security</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<author initials='N.' surname='Modadugu' fullname='N. Modadugu'><organization /></author>
<date year='2006' month='April' />
<abstract><t>This document specifies Version 1.0 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.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4347'/>
<seriesInfo name='DOI' value='10.17487/RFC4347'/>
</reference>



<reference  anchor="RFC5238" target='https://www.rfc-editor.org/info/rfc5238'>
<front>
<title>Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP)</title>
<author initials='T.' surname='Phelan' fullname='T. Phelan'><organization /></author>
<date year='2008' month='May' />
<abstract><t>This document specifies the use of Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP).  DTLS provides communications privacy for applications that use datagram transport protocols and allows client/server applications to communicate in a way that is designed to prevent eavesdropping and detect tampering or message forgery.  DCCP is a transport protocol that provides a congestion-controlled unreliable datagram service.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5238'/>
<seriesInfo name='DOI' value='10.17487/RFC5238'/>
</reference>



<reference  anchor="RFC5246" target='https://www.rfc-editor.org/info/rfc5246'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
<author initials='T.' surname='Dierks' fullname='T. Dierks'><organization /></author>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2008' month='August' />
<abstract><t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5246'/>
<seriesInfo name='DOI' value='10.17487/RFC5246'/>
</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>



<reference  anchor="RFC7525" target='https://www.rfc-editor.org/info/rfc7525'>
<front>
<title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
<author initials='Y.' surname='Sheffer' fullname='Y. Sheffer'><organization /></author>
<author initials='R.' surname='Holz' fullname='R. Holz'><organization /></author>
<author initials='P.' surname='Saint-Andre' fullname='P. Saint-Andre'><organization /></author>
<date year='2015' month='May' />
<abstract><t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are widely used to protect data exchanged over application protocols such as HTTP, SMTP, IMAP, POP, SIP, and XMPP.  Over the last few years, several serious attacks on TLS have emerged, including attacks on its most commonly used cipher suites and their modes of operation.  This document provides recommendations for improving the security of deployed services that use TLS and DTLS. The recommendations are applicable to the majority of use cases.</t></abstract>
</front>
<seriesInfo name='BCP' value='195'/>
<seriesInfo name='RFC' value='7525'/>
<seriesInfo name='DOI' value='10.17487/RFC7525'/>
</reference>



<reference anchor="I-D.ietf-tls-dtls-connection-id">
<front>
<title>The Datagram Transport Layer Security (DTLS) Connection Identifier</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<author initials='H' surname='Tschofenig' fullname='Hannes Tschofenig'>
    <organization />
</author>

<author initials='T' surname='Fossati' fullname='Thomas Fossati'>
    <organization />
</author>

<author initials='T' surname='Gondrom' fullname='Tobias Gondrom'>
    <organization />
</author>

<date month='December' day='27' year='2017' />

<abstract><t>This document specifies the "Connection ID" concept for the Datagram Transport Layer Security (DTLS) protocol, version 1.2 and version 1.3.  A Connection ID is an identifier carried in the record layer header that gives the recipient additional information for selecting the appropriate security association.  In "classical" DTLS, selecting a security association of an incoming DTLS record is accomplished with the help of the 5-tuple.  If the source IP address and/or source port changes during the lifetime of an ongoing DTLS session then the receiver will be unable to locate the correct security context.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-dtls-connection-id-00' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-dtls-connection-id-00.txt' />
</reference>



<reference  anchor="RFC7983" target='https://www.rfc-editor.org/info/rfc7983'>
<front>
<title>Multiplexing Scheme Updates for Secure Real-time Transport Protocol (SRTP) Extension for Datagram Transport Layer Security (DTLS)</title>
<author initials='M.' surname='Petit-Huguenin' fullname='M. Petit-Huguenin'><organization /></author>
<author initials='G.' surname='Salgueiro' fullname='G. Salgueiro'><organization /></author>
<date year='2016' month='September' />
<abstract><t>This document defines how Datagram Transport Layer Security (DTLS), Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), Session Traversal Utilities for NAT (STUN), Traversal Using Relays around NAT (TURN), and ZRTP packets are multiplexed on a single receiving socket.  It overrides the guidance from RFC 5764 (&quot;SRTP                Extension for DTLS&quot;), which suffered from four issues described and fixed in this document.</t><t>This document updates RFC 5764.</t></abstract>
</front>
<seriesInfo name='RFC' value='7983'/>
<seriesInfo name='DOI' value='10.17487/RFC7983'/>
</reference>



<reference  anchor="RFC4960" target='https://www.rfc-editor.org/info/rfc4960'>
<front>
<title>Stream Control Transmission Protocol</title>
<author initials='R.' surname='Stewart' fullname='R. Stewart' role='editor'><organization /></author>
<date year='2007' month='September' />
<abstract><t>This document obsoletes RFC 2960 and RFC 3309.  It describes the Stream Control Transmission Protocol (SCTP).  SCTP is designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks, but is capable of broader applications.</t><t>SCTP is a reliable transport protocol operating on top of a connectionless packet network such as IP.  It offers the following services to its users:</t><t>--  acknowledged error-free non-duplicated transfer of user data,</t><t>--  data fragmentation to conform to discovered path MTU size,</t><t>--  sequenced delivery of user messages within multiple streams, with an option for order-of-arrival delivery of individual user messages,</t><t>--  optional bundling of multiple user messages into a single SCTP packet, and</t><t>--  network-level fault tolerance through supporting of multi-homing at either or both ends of an association.</t><t> The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4960'/>
<seriesInfo name='DOI' value='10.17487/RFC4960'/>
</reference>



<reference anchor="I-D.rescorla-tls-dtls-connection-id">
<front>
<title>The Datagram Transport Layer Security (DTLS) Connection Identifier</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<author initials='H' surname='Tschofenig' fullname='Hannes Tschofenig'>
    <organization />
</author>

<author initials='T' surname='Fossati' fullname='Thomas Fossati'>
    <organization />
</author>

<author initials='T' surname='Gondrom' fullname='Tobias Gondrom'>
    <organization />
</author>

<date month='November' day='14' year='2017' />

<abstract><t>This document specifies the "Connection ID" concept for the Datagram Transport Layer Security (DTLS) protocol, version 1.2 and version 1.3.  A Connection ID is an identifier carried in the record layer header that gives the recipient additional information for selecting the appropriate security association.  In "classical" DTLS, selecting a security association of an incoming DTLS record is accomplished with the help of the 5-tuple.  If the source IP address and/or source port changes during the lifetime of an ongoing DTLS session then the receiver will be unable to locate the correct security context.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-rescorla-tls-dtls-connection-id-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-rescorla-tls-dtls-connection-id-02.txt' />
</reference>




    </references>


<section anchor="history" title="History">

<t>RFC EDITOR: PLEASE REMOVE THE THIS SECTION</t>

<t>IETF Drafts
draft-03
- Only update keys after KeyUpdate is ACKed.</t>

<t>draft-02
- Shorten the protected record header and introduce an ultra-short
  version of the record header.
- Reintroduce KeyUpdate, which works properly now that we have ACK.
- Clarify the ACK rules.</t>

<t>draft-01
- Restructured the ACK to contain a list of packets and also
  be a record rather than a handshake message.</t>

<t>draft-00
- First IETF Draft</t>

<t>Personal Drafts
draft-01
- Alignment with version -19 of the TLS 1.3 specification</t>

<t>draft-00</t>

<t><list style="symbols">
  <t>Initial version using TLS 1.3 as a baseline.</t>
  <t>Use of epoch values instead of KeyUpdate message</t>
  <t>Use of cookie extension instead of cookie field in
ClientHello and HelloVerifyRequest messages</t>
  <t>Added ACK message</t>
  <t>Text about sequence number handling</t>
</list></t>

</section>
<section anchor="working-group-information" title="Working Group Information">

<t>The discussion list for the IETF TLS working group is located at the e-mail
address <eref target="mailto:tls@ietf.org">tls@ietf.org</eref>. Information on the group and information on how to
subscribe to the list is at <eref target="https://www1.ietf.org/mailman/listinfo/tls">https://www1.ietf.org/mailman/listinfo/tls</eref></t>

<t>Archives of the list can be found at:
<eref target="https://www.ietf.org/mail-archive/web/tls/current/index.html">https://www.ietf.org/mail-archive/web/tls/current/index.html</eref></t>

</section>
<section anchor="contributors" title="Contributors">

<t>Many people have contributed to previous DTLS versions and they are acknowledged
in prior versions of DTLS specifications.</t>

<t>For this version of the document we would like to thank:</t>

<figure><artwork><![CDATA[
* Ilari Liusvaara
  Independent
  ilariliusvaara@welho.com
]]></artwork></figure>

<figure><artwork><![CDATA[
* Martin Thomson
  Mozilla
  martin.thomson@gmail.com
]]></artwork></figure>

</section>


  </back>

<!-- ##markdown-source:
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
/ohwNZiFhDcKjV4aUCP3wgdqGOKoah+OK4/D+wMvrPLMB77rwW6zWMAQFizU
SLJ80wk49kXOlYhstHcVvJ7SpsbVnF0II5/j0WrLE25CHNRKN/OAS+JoxEkM
1DhHQlO4UsUPDldne5sPHaEx+TD4kngaqpSJNyJV1POY2MPrSu530aaBZLAq
yYxhzaQtnw1VNwwnTiXuGAG3f/9BBPpejiobWggnkyBDSeNSynCpUXxj0MMb
/+XYuSUxm2knBbabXjRYGt8feSfFFPNaENTlpsdBNgrzIFtIQ/Ly2mHBIm/O
P9M2XwU3y0BbZJZqEJBmE0XJIZpJhsGcgfXYk/0vmyjjXBM4ujIvm4atE6Ff
FCd5C3WSxhgNR+/WjLWuk0raGFK3Ui2fwJlPcwpgDAiuE29SJ7UmYAHa6cZY
nwvDnjgWJ0zHnHDjiu7uHKzV7y0XFyA1DlkbGX5MDSqQMqNdisJ07R2nzYLj
br9+THbS0N/a6BLt/FhZgFoXDgKAEXGrfRS7zzEPCAWa0PaJ1lfcbyf7zIV8
oaoT4V861rLiC0SiSJkxm/W9R/onbLMLkofSqKt88oenglUt5UH5PWsOI3bO
dWkW7Mg6ibG1yJM4flSi1y46JRiCnEce2CmYreEKLlIohIiI3Rg8Da91nKFg
DKkccrgYN4mTwfjuh7apieWo5NY/W4LjxDE14MzxjzbpPJNzyjkzHUFAC0Sj
drqENcx2rUyD7MB2HyWDhoIfshAKoFyT9BjU/EBHKRNUvW/I5oPUjZba3KS1
ZAhZko9LpzhaUldrJGp1vmItVeM/A4+cdOJLnqbXqjfJr7pgzgDFbWt6G7u3
1WPPwd1vTGi8o5glkPDClaCEyizOmKx3/QUVKML+4IrIJDQ6qkGR3CBfi/hN
JRl8S2m2jvxg3a7rrBf4F6TmSyKiz833acJW20J6t+sZ9Tft85KCREJJyccV
hzu1HYYqXsutTynktumxP2DdMPD0Si6yD+DnCPG8lB9UyePyHCn7KCJ9y8QR
K9fhQo4wWLaDCBMXIhiqQ8AszQgeiCF0HfBMLkBwHnVZDB6LBOh6Ukp94yX6
VVao+gZegTLhgHWl43ZYrCRiDpAzpcV9gYwhYc4AiHrsO9VwAzrrKNmFsySj
99gwd7oMAx6MtVrMA2ta6oqiOIck0amZUW9rxVNWcO3zoh0HDG7kV2Gql4u1
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
QPfCwZb006Tln/64QCj71/8XPLLh8LMWAQA=

-->

</rfc>

