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


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-dnsop-avoid-fragmentation-10" category="bcp" consensus="true" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="avoid-fragmentation">Fragmentation Avoidance in DNS</title>

    <author initials="K." surname="Fujiwara" fullname="Kazunori Fujiwara">
      <organization abbrev="JPRS">Japan Registry Services Co., Ltd.</organization>
      <address>
        <postal>
          <street>Chiyoda First Bldg. East 13F, 3-8-1 Nishi-Kanda</street>
          <region>Chiyoda-ku, Tokyo</region>
          <code>101-0065</code>
          <country>Japan</country>
        </postal>
        <phone>+81 3 5215 8451</phone>
        <email>fujiwara@wide.ad.jp</email>
      </address>
    </author>
    <author initials="P." surname="Vixie" fullname="Paul Vixie">
      <organization>AWS Security</organization>
      <address>
        <postal>
          <street>11400 La Honda Road</street>
          <city>Woodside, CA</city>
          <code>94062</code>
          <country>United States of America</country>
        </postal>
        <phone>+1 650 393 3994</phone>
        <email>paul@redbarn.org</email>
      </address>
    </author>

    <date year="2022" month="December" day="21"/>

    <area>operations</area>
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>EDNS0 enables a DNS server to send large responses using UDP
and is widely deployed.
Large DNS/UDP responses are fragmented,
and IP fragmentation has exposed weaknesses in application protocols.
It is possible to avoid IP fragmentation in DNS by limiting response
size where possible, and signaling the need to upgrade from UDP to TCP
transport where necessary. This document proposes to avoid IP
fragmentation in DNS.</t>



    </abstract>



  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>DNS has an EDNS0 <xref target="RFC6891"></xref> mechanism.
It enables a DNS server to send large responses using UDP.
EDNS0 is now widely deployed,
and DNS (over UDP) is said to be the biggest user of IP fragmentation.</t>

<t>Fragmented DNS UDP responses have systemic weaknesses, which expose
the requestor to DNS cache poisoning from off-path attackers.
(See <xref target="ProblemOfFragmentation"/> for references and details.)</t>

<t><xref target="RFC8900"></xref> summarized that IP fragmentation
introduces fragility to Internet communication. The transport of DNS messages
over UDP should take account of the observations stated in that document.</t>

<t>TCP avoids fragmentation using its Maximum Segment Size (MSS) parameter, but
each transmitted segment is header-size aware such that the size of the IP and
TCP headers is known, as well as the far end's MSS parameter and the interface
or path MTU, so that the segment size can be chosen so as to keep the each IP
datagram below a target size. This takes advantage of the elasticity of TCP's
packetizing process as to how much queued data will fit into the next
segment. In contrast, DNS over UDP has little datagram size elasticity and
lacks insight into IP header and option size, and so must make more
conservative estimates about available UDP payload space.</t>

<t>This document proposes to set the "Don't Fragment flag (DF) bit" <xref target="RFC0791"></xref> on IPv4
 and not to use "Fragment header" <xref target="RFC8200"></xref> on IPv6 
in DNS/UDP
messages in order to avoid IP fragmentation, and describes how to
avoid packet losses due to DF bit and small MTU links.</t>

</section>
<section anchor="terminology"><name>Terminology</name>

<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 
<xref target="RFC2119">BCP14</xref> <xref target="RFC8174"></xref> when, and only when, they appear in all
capitals, as shown here.</t>

<t>"Requestor" refers to the side that sends a request.  "Responder"
refers to an authoritative, recursive resolver or other DNS component
that responds to questions. (Quoted from EDNS0 <xref target="RFC6891"></xref>)</t>

<t>"Path MTU" is the minimum link MTU of all the links in a path
between a source node and a destination node. (Quoted from <xref target="RFC8201"></xref>)</t>

<t>In this document, the term "Path MTU discovery" includes
both Classical Path MTU discovery <xref target="RFC1191"></xref>, <xref target="RFC8201"></xref>, and
Packetization Layer Path MTU discovery <xref target="RFC8899"></xref>.</t>

<t>Many of the specialized terms used in this document are defined in
DNS Terminology <xref target="RFC8499"></xref>.</t>

</section>
<section anchor="proposal-to-avoid-ip-fragmentation-in-dns"><name>Proposal to avoid IP fragmentation in DNS</name>

<t>These recommendations are intended
for nodes with global IP addresses on the Internet.
Private networks or local networks are out of the scope of this document.</t>

<t>The methods to avoid IP fragmentation in DNS are described below:</t>

<section anchor="recommendations-for-udp-responders"><name>Recommendations for UDP responders</name>

<t><list style="symbols">
  <t>UDP responders SHOULD send DNS responses
without "Fragment header" <xref target="RFC8200"></xref> on IPv6.</t>
  <t>UDP responders RECOMMENDED
to set IP "Don't Fragment flag (DF) bit" <xref target="RFC0791"></xref> on IPv4.</t>
  <t>UDP responders SHOULD compose response packets fit in
path MTU discovery results (if available)
to measure path MTU discovery attacks,
interface MTU and the requestor's maximum UDP payload size <xref target="RFC6891"></xref>.</t>
  <t>If the UDP responder detects an immediate error
that the UDP packet cannot be sent beyond the path MTU size (EMSGSIZE),
the UDP responder MAY recreate response packets fit in path MTU size,
or TC bit set.</t>
  <t>UDP responders SHOULD limit response size
when UDP responders are located on small MTU (&lt;1500) networks.  <vspace blankLines='1'/>
The cause and effect of the TC bit are unchanged from EDNS0 <xref target="RFC6891"></xref>.</t>
</list></t>

</section>
<section anchor="recommendations-for-udp-requestors"><name>Recommendations for UDP requestors</name>

<t><list style="symbols">
  <t>UDP requestors SHOULD limit the requestor's maximum UDP payload size to 1400 or smaller size.
[ UDP requestors MAY set the requestor's maximum UDP payload size as 1232. ]</t>
  <t>UDP requestors MAY perform "Path MTU discovery"
per destination to use the requestor's maximum UDP payload size 
larger than 1400.
Then, calculate their requestors' maximum UDP payload size as
the reported path MTU minus IPv4/IPv6 header size (20/40) minus UDP header size (8).</t>
  <t>UDP requestors MAY drop fragmented DNS/UDP responses without IP reassembly
to avoid cache poisoning attacks.</t>
  <t>DNS responses may be dropped by IP fragmentation.
Upon a timeout, 
to avoid name resolution fails,
UDP requestors MAY retry using TCP
or UDP with a smaller requestor's maximum UDP payload size
per local policy.</t>
</list></t>

</section>
</section>
<section anchor="request-to-zone-operators-and-dns-server-operators"><name>Request to zone operators and DNS server operators</name>

<t>Large DNS responses are the result of zone configuration.
Zone operators SHOULD seek configurations resulting in small responses.
For example,</t>

<t><list style="symbols">
  <t>Use a smaller number of name servers (13 may be too large)</t>
  <t>Use a smaller number of A/AAAA RRs for a domain name</t>
  <t>Use 'minimal-responses' configuration:
Some implementations have a 'minimal responses' configuration that causes
DNS servers to make response packets smaller, containing only mandatory
and required data (<xref target="minimal-responses"/>).</t>
  <t>Use a smaller signature / public key size algorithm for DNSSEC.
Notably, the signature size of ECDSA or EdDSA is smaller than RSA.</t>
</list></t>

</section>
<section anchor="considerations"><name>Considerations</name>

<section anchor="protocol-compliance"><name>Protocol compliance</name>

<t>In prior research (<xref target="Fujiwara2018"></xref> and dns-operations mailing list discussions),
there are some authoritative servers
that ignore the EDNS0 requestor's maximum UDP payload size, and return large UDP responses.</t>

<t>It is also well known that some authoritative servers do not
support TCP transport.</t>

<t>Such non-compliant behavior cannot become implementation or configuration
constraints for the rest of the DNS. If failure is the result, then that
failure must be localized to the non-compliant servers.</t>

</section>
</section>
<section anchor="iana"><name>IANA Considerations</name>
<t>This document has no IANA actions.</t>

</section>
<section anchor="securitycons"><name>Security Considerations</name>

<t>When avoiding fragmentation,
a DNS/UDP requestor behind a small-MTU network may experience
UDP timeouts which would reduce performance
and which may lead to TCP fallback.
This would indicate prior reliance upon IP fragmentation,
which is universally considered to be harmful
to both the performance and stability of applications, endpoints, and gateways.
Avoiding IP fragmentation will improve operating conditions overall,
and the performance of DNS/TCP has increased and will continue to increase.</t>

</section>
<section anchor="acknowledgments"><name>Acknowledgments</name>

<t>The author would like to specifically thank 
Paul Wouters, 
Mukund Sivaraman,
Tony Finch,
Hugo Salgado,
Peter van Dijk,
Brian Dickson,
Puneet Sood,
Jim Reid,
Petr Spacek,
Peter van Dijk,
Andrew McConachie,
Joe Abley,
Daisuke Higashi
and
Joe Touch
for extensive review and comments.</t>

</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC0791' target='https://www.rfc-editor.org/info/rfc791'>
<front>
<title>Internet Protocol</title>
<author fullname='J. Postel' initials='J.' surname='Postel'><organization/></author>
<date month='September' year='1981'/>
</front>
<seriesInfo name='STD' value='5'/>
<seriesInfo name='RFC' value='791'/>
<seriesInfo name='DOI' value='10.17487/RFC0791'/>
</reference>



<reference anchor='RFC1191' target='https://www.rfc-editor.org/info/rfc1191'>
<front>
<title>Path MTU discovery</title>
<author fullname='J. Mogul' initials='J.' surname='Mogul'><organization/></author>
<author fullname='S. Deering' initials='S.' surname='Deering'><organization/></author>
<date month='November' year='1990'/>
<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='RFC2119' target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC4035' target='https://www.rfc-editor.org/info/rfc4035'>
<front>
<title>Protocol Modifications for the DNS Security Extensions</title>
<author fullname='R. Arends' initials='R.' surname='Arends'><organization/></author>
<author fullname='R. Austein' initials='R.' surname='Austein'><organization/></author>
<author fullname='M. Larson' initials='M.' surname='Larson'><organization/></author>
<author fullname='D. Massey' initials='D.' surname='Massey'><organization/></author>
<author fullname='S. Rose' initials='S.' surname='Rose'><organization/></author>
<date month='March' year='2005'/>
<abstract><t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC).  The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS.  This document describes the DNSSEC protocol modifications.  This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC.  These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications. </t><t> This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4035'/>
<seriesInfo name='DOI' value='10.17487/RFC4035'/>
</reference>



<reference anchor='RFC8201' target='https://www.rfc-editor.org/info/rfc8201'>
<front>
<title>Path MTU Discovery for IP version 6</title>
<author fullname='J. McCann' initials='J.' surname='McCann'><organization/></author>
<author fullname='S. Deering' initials='S.' surname='Deering'><organization/></author>
<author fullname='J. Mogul' initials='J.' surname='Mogul'><organization/></author>
<author fullname='R. Hinden' initials='R.' role='editor' surname='Hinden'><organization/></author>
<date month='July' year='2017'/>
<abstract><t>This document describes Path MTU Discovery (PMTUD) for IP version 6. It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4.  It obsoletes RFC 1981.</t></abstract>
</front>
<seriesInfo name='STD' value='87'/>
<seriesInfo name='RFC' value='8201'/>
<seriesInfo name='DOI' value='10.17487/RFC8201'/>
</reference>



<reference anchor='RFC6891' target='https://www.rfc-editor.org/info/rfc6891'>
<front>
<title>Extension Mechanisms for DNS (EDNS(0))</title>
<author fullname='J. Damas' initials='J.' surname='Damas'><organization/></author>
<author fullname='M. Graff' initials='M.' surname='Graff'><organization/></author>
<author fullname='P. Vixie' initials='P.' surname='Vixie'><organization/></author>
<date month='April' year='2013'/>
<abstract><t>The Domain Name System's wire protocol includes a number of fixed fields whose range has been or soon will be exhausted and does not allow requestors to advertise their capabilities to responders.  This document describes backward-compatible mechanisms for allowing the protocol to grow.</t><t>This document updates the Extension Mechanisms for DNS (EDNS(0)) specification (and obsoletes RFC 2671) based on feedback from deployment experience in several implementations.  It also obsoletes RFC 2673 (&quot;Binary Labels in the Domain Name System&quot;) and adds considerations on the use of extended labels in the DNS.</t></abstract>
</front>
<seriesInfo name='STD' value='75'/>
<seriesInfo name='RFC' value='6891'/>
<seriesInfo name='DOI' value='10.17487/RFC6891'/>
</reference>



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



<reference anchor='RFC8200' target='https://www.rfc-editor.org/info/rfc8200'>
<front>
<title>Internet Protocol, Version 6 (IPv6) Specification</title>
<author fullname='S. Deering' initials='S.' surname='Deering'><organization/></author>
<author fullname='R. Hinden' initials='R.' surname='Hinden'><organization/></author>
<date month='July' year='2017'/>
<abstract><t>This document specifies version 6 of the Internet Protocol (IPv6). It obsoletes RFC 2460.</t></abstract>
</front>
<seriesInfo name='STD' value='86'/>
<seriesInfo name='RFC' value='8200'/>
<seriesInfo name='DOI' value='10.17487/RFC8200'/>
</reference>



<reference anchor='RFC8499' target='https://www.rfc-editor.org/info/rfc8499'>
<front>
<title>DNS Terminology</title>
<author fullname='P. Hoffman' initials='P.' surname='Hoffman'><organization/></author>
<author fullname='A. Sullivan' initials='A.' surname='Sullivan'><organization/></author>
<author fullname='K. Fujiwara' initials='K.' surname='Fujiwara'><organization/></author>
<date month='January' year='2019'/>
<abstract><t>The Domain Name System (DNS) is defined in literally dozens of different RFCs.  The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has sometimes changed in the decades since the DNS was first defined.  This document gives current definitions for many of the terms used in the DNS in a single document.</t><t>This document obsoletes RFC 7719 and updates RFC 2308.</t></abstract>
</front>
<seriesInfo name='BCP' value='219'/>
<seriesInfo name='RFC' value='8499'/>
<seriesInfo name='DOI' value='10.17487/RFC8499'/>
</reference>



<reference anchor='RFC8899' target='https://www.rfc-editor.org/info/rfc8899'>
<front>
<title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
<author fullname='G. Fairhurst' initials='G.' surname='Fairhurst'><organization/></author>
<author fullname='T. Jones' initials='T.' surname='Jones'><organization/></author>
<author fullname='M. Tüxen' initials='M.' surname='Tüxen'><organization/></author>
<author fullname='I. Rüngeler' initials='I.' surname='Rüngeler'><organization/></author>
<author fullname='T. Völker' initials='T.' surname='Völker'><organization/></author>
<date month='September' year='2020'/>
<abstract><t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram.  This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased.  This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t><t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t><t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t></abstract>
</front>
<seriesInfo name='RFC' value='8899'/>
<seriesInfo name='DOI' value='10.17487/RFC8899'/>
</reference>




    </references>

    <references title='Informative References'>





<reference anchor='RFC5155' target='https://www.rfc-editor.org/info/rfc5155'>
<front>
<title>DNS Security (DNSSEC) Hashed Authenticated Denial of Existence</title>
<author fullname='B. Laurie' initials='B.' surname='Laurie'><organization/></author>
<author fullname='G. Sisson' initials='G.' surname='Sisson'><organization/></author>
<author fullname='R. Arends' initials='R.' surname='Arends'><organization/></author>
<author fullname='D. Blacka' initials='D.' surname='Blacka'><organization/></author>
<date month='March' year='2008'/>
<abstract><t>The Domain Name System Security (DNSSEC) Extensions introduced the NSEC resource record (RR) for authenticated denial of existence. This document introduces an alternative resource record, NSEC3, which similarly provides authenticated denial of existence.  However, it also provides measures against zone enumeration and permits gradual expansion of delegation-centric zones.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5155'/>
<seriesInfo name='DOI' value='10.17487/RFC5155'/>
</reference>



<reference anchor='RFC7739' target='https://www.rfc-editor.org/info/rfc7739'>
<front>
<title>Security Implications of Predictable Fragment Identification Values</title>
<author fullname='F. Gont' initials='F.' surname='Gont'><organization/></author>
<date month='February' year='2016'/>
<abstract><t>IPv6 specifies the Fragment Header, which is employed for the fragmentation and reassembly mechanisms.  The Fragment Header contains an &quot;Identification&quot; field that, together with the IPv6 Source Address and the IPv6 Destination Address of a packet, identifies fragments that correspond to the same original datagram, such that they can be reassembled together by the receiving host. The only requirement for setting the Identification field is that the corresponding value must be different than that employed for any other fragmented datagram sent recently with the same Source Address and Destination Address.  Some implementations use a simple global counter for setting the Identification field, thus leading to predictable Identification values.  This document analyzes the security implications of predictable Identification values, and provides implementation guidance for setting the Identification field of the Fragment Header, such that the aforementioned security implications are mitigated.</t></abstract>
</front>
<seriesInfo name='RFC' value='7739'/>
<seriesInfo name='DOI' value='10.17487/RFC7739'/>
</reference>



<reference anchor='RFC8085' target='https://www.rfc-editor.org/info/rfc8085'>
<front>
<title>UDP Usage Guidelines</title>
<author fullname='L. Eggert' initials='L.' surname='Eggert'><organization/></author>
<author fullname='G. Fairhurst' initials='G.' surname='Fairhurst'><organization/></author>
<author fullname='G. Shepherd' initials='G.' surname='Shepherd'><organization/></author>
<date month='March' year='2017'/>
<abstract><t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t><t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t><t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t><t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t></abstract>
</front>
<seriesInfo name='BCP' value='145'/>
<seriesInfo name='RFC' value='8085'/>
<seriesInfo name='DOI' value='10.17487/RFC8085'/>
</reference>



<reference anchor='RFC8900' target='https://www.rfc-editor.org/info/rfc8900'>
<front>
<title>IP Fragmentation Considered Fragile</title>
<author fullname='R. Bonica' initials='R.' surname='Bonica'><organization/></author>
<author fullname='F. Baker' initials='F.' surname='Baker'><organization/></author>
<author fullname='G. Huston' initials='G.' surname='Huston'><organization/></author>
<author fullname='R. Hinden' initials='R.' surname='Hinden'><organization/></author>
<author fullname='O. Troan' initials='O.' surname='Troan'><organization/></author>
<author fullname='F. Gont' initials='F.' surname='Gont'><organization/></author>
<date month='September' year='2020'/>
<abstract><t>This document describes IP fragmentation and explains how it introduces fragility to Internet communication.</t><t>This document also proposes alternatives to IP fragmentation and provides recommendations for developers and network operators.</t></abstract>
</front>
<seriesInfo name='BCP' value='230'/>
<seriesInfo name='RFC' value='8900'/>
<seriesInfo name='DOI' value='10.17487/RFC8900'/>
</reference>


<reference anchor="Brandt2018" >
  <front>
    <title>Domain Validation++ For MitM-Resilient PKI</title>
    <author initials="M." surname="Brandt" fullname="Markus Brandt">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="T." surname="Dai" fullname="Tianxiang Dai">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="A." surname="Klein" fullname="Amit Klein">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="H." surname="Shulman" fullname="Haya Shulman">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="M." surname="Waidner" fullname="Michael Waidner">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications Security" value=""/>
</reference>
<reference anchor="Herzberg2013" >
  <front>
    <title>Fragmentation Considered Poisonous</title>
    <author initials="A." surname="Herzberg" fullname="Amir Herzberg">
      <organization></organization>
    </author>
    <author initials="H." surname="Shulman" fullname="Haya Shulman">
      <organization></organization>
    </author>
    <date year="2013"/>
  </front>
  <seriesInfo name="IEEE Conference on Communications and Network Security" value=""/>
</reference>
<reference anchor="Hlavacek2013" target="https://ripe67.ripe.net/presentations/240-ipfragattack.pdf">
  <front>
    <title>IP fragmentation attack on DNS</title>
    <author initials="T." surname="Hlavacek" fullname="Tomas Hlavacek">
      <organization>cz.nic</organization>
    </author>
    <date year="2013"/>
  </front>
  <seriesInfo name="RIPE 67 Meeting" value=""/>
</reference>
<reference anchor="Fujiwara2018" >
  <front>
    <title>Measures against cache poisoning attacks using IP fragmentation in DNS</title>
    <author initials="K." surname="Fujiwara" fullname="Kazunori Fujiwara">
      <organization>JPRS</organization>
    </author>
    <date year="2019"/>
  </front>
  <seriesInfo name="OARC 30 Workshop" value=""/>
</reference>
<reference anchor="DNSFlagDay2020" target="https://dnsflagday.net/2020/">
  <front>
    <title>DNS flag day 2020</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="Huston2021" >
  <front>
    <title>Measuring DNS Flag Day 2020</title>
    <author initials="G." surname="Huston" fullname="Geoff Huston">
      <organization>APNIC Labs</organization>
    </author>
    <author initials="J." surname="Damas" fullname="Joao Damas">
      <organization>APNIC Labs</organization>
    </author>
    <date year="2021" month="February"/>
  </front>
  <seriesInfo name="OARC 34 Workshop" value=""/>
</reference>


    </references>


<section anchor="ProblemOfFragmentation"><name>Weaknesses of IP fragmentation</name>

<t>"Fragmentation Considered Poisonous" <xref target="Herzberg2013"></xref> proposed effective
off-path DNS cache poisoning attack vectors using IP fragmentation.
"IP fragmentation attack on DNS" <xref target="Hlavacek2013"></xref> and "Domain Validation++
For MitM-Resilient PKI" <xref target="Brandt2018"></xref> proposed that off-path attackers
can intervene in path MTU discovery <xref target="RFC1191"></xref> to perform intentionally
fragmented responses from authoritative servers. <xref target="RFC7739"></xref> stated the
security implications of predictable fragment identification values.</t>

<t>DNSSEC is a countermeasure against cache poisoning attacks that use
IP fragmentation.
However, DNS delegation responses are not signed with DNSSEC,
and DNSSEC does not have a mechanism to get the correct response if
an incorrect delegation is injected. This is a denial-of-service
vulnerability that can yield failed name resolutions.
If cache poisoning attacks can be avoided,
DNSSEC validation failures will be avoided.</t>

<t>In Section 3.2 (Message Side Guidelines) of UDP Usage Guidelines <xref target="RFC8085"></xref>
we are told that an application SHOULD NOT send UDP datagrams
that result in IP packets that exceed the Maximum Transmission Unit (MTU)
along the path to the destination.</t>

<t>A DNS message receiver cannot trust fragmented UDP datagrams primarily due to
the small amount of entropy provided by UDP port numbers and DNS message
identifiers, each of which being only 16 bits in size, and both likely
being in the first fragment of a packet, if fragmentation occurs.
By comparison, TCP protocol stack controls packet size and avoid IP fragmentation under ICMP NEEDFRAG attacks.
In TCP, fragmentation should be avoided for performance reasons, whereas for
UDP, fragmentation should be avoided for resiliency and authenticity reasons.</t>

</section>
<section anchor="details"><name>Details of requestor's maximum UDP payload size discussions</name>

<t>There are many discussions for
default path MTU size and requestor's maximum UDP payload size.</t>

<t><list style="symbols">
  <t>The minimum MTU for an IPv6 interface is 1280 octets
(see Section 5 of <xref target="RFC8200"></xref>).
Then, we can use it as the default path MTU value for IPv6.
The corresponding minimum MTU for an IPv4 interface is 68 (60 + 8)
<xref target="RFC0791"></xref>.</t>
  <t>Most of the Internet and especially the inner core has an MTU of at least 
1500 octets.
Maximum DNS/UDP payload size for IPv6 on MTU 1500 ethernet is
1452 (1500 minus 40 (IPv6 header size) minus 8 (UDP header size)).
To allow for possible IP options and distant tunnel overhead,
the authors' recommendation of default maximum DNS/UDP payload size is 1400.</t>
  <t><xref target="RFC4035"></xref> defines that "A security-aware name server MUST support
the EDNS0 message size extension, MUST support a message
size of at least 1220 octets". Then, the smallest number of
the maximum DNS/UDP payload size is 1220.</t>
  <t>In order to avoid IP fragmentation,
<xref target="DNSFlagDay2020"></xref> proposed that the UDP requestors set the requestor's
payload size to 1232, and the UDP responders compose UDP responses fit
in 1232 octets.
The size 1232 is based on an MTU of 1280, which is required
by the IPv6 specification <xref target="RFC8200"></xref>,
minus 48 octets for the IPv6 and UDP headers.</t>
  <t><xref target="Huston2021"></xref> analyzed the result of <xref target="DNSFlagDay2020"></xref> and reported that
their measurements suggest that in the interior of the Internet
between recursive resolvers and authoritative servers
the prevailing MTU is at 1,500
and there is no measurable signal of use of smaller MTUs
in this part of the Internet, and proposed that
their measurements suggest setting the EDNS0 Buffer size to
IPv4 1472 octets and IPv6 1452 octets.</t>
</list></t>

</section>
<section anchor="minimal-responses"><name>Minimal-responses</name>

<t>Some implementations have a 'minimal responses' configuration that causes
a DNS server to make response packets smaller, containing only mandatory and
required data.</t>

<t>Under the minimal-responses configuration,
DNS servers compose response messages using only RRSets corresponding to
queries.
In the case of delegation, DNS servers compose response packets with
delegation NS RRSet in the authority section 
and in-domain (in-zone and below-zone) glue in the additional data section.
In case of a non-existent domain name or non-existent type,
the start of authority (SOA RR) will be placed in the Authority Section.</t>

<t>In addition, if the zone is DNSSEC signed and a query has the DNSSEC OK bit,
signatures are added in the answer section,
or the corresponding DS RRSet and signatures are added in the authority section.
Details are defined in <xref target="RFC4035"></xref> and <xref target="RFC5155"></xref>.</t>

</section>


  </back>

<!-- ##markdown-source:
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
Q6SReInmF/+/uwgF/S8/T59irzkAAA==

-->

</rfc>

