<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.19 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-iab-protocol-maintenance-11" category="info" submissionType="IAB" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title>Maintaining Robust Protocols</title>
    <seriesInfo name="Internet-Draft" value="draft-iab-protocol-maintenance-11"/>
    <author initials="M." surname="Thomson" fullname="Martin Thomson">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View</city>
          <region>CA</region>
          <code>94043</code>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2023" month="January" day="25"/>
    <workgroup>EDM</workgroup>
    <abstract>
      <t>The main goal of the networking standards process is to enable the long term
interoperability of protocols. This document describes active protocol
maintenance, a means to accomplish that goal. By evolving specifications and
implementations, it is possible to reduce ambiguity over time and create a
healthy ecosystem.</t>
      <t>The robustness principle, often phrased as "be conservative in what you send,
and liberal in what you accept", has long guided the design and implementation
of Internet protocols. However, it has been interpreted in a variety of ways.
While some interpretations help ensure the health of the Internet, others can
negatively affect interoperability over time. When a protocol is actively
maintained, protocol designers and implementers can avoid these pitfalls.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://intarchboard.github.io/draft-protocol-maintenance/draft-iab-protocol-maintenance.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-iab-protocol-maintenance/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        EDM IAB Program mailing list (<eref target="mailto:edm@iab.org"/>),
        which is archived at <eref target="https://www.iab.org/mailman/listinfo/edm"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/edm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/intarchboard/draft-protocol-maintenance"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>There is good evidence to suggest that many important protocols are routinely
maintained beyond their inception. In particular, a sizeable proportion of IETF
activity is dedicated to the stewardship of existing protocols. This document
first discusses hazards in applying the robustness principle too broadly (see
<xref target="robustness"/>), and offers an alternative strategy for handling interoperability
problems in deployments (see <xref target="active"/>).</t>
      <t>Ideally, protocol implementations can be actively maintained so that unexpected
conditions are proactively identified and resolved. Some deployments might still
need to apply short-term mitigations for deployments that cannot be easily
updated, but such cases need not be permanent. This is discussed further in
<xref target="active"/>.</t>
    </section>
    <section anchor="robustness">
      <name>Protocol Robustness</name>
      <t>The robustness principle has been hugely influential in shaping the design of
the Internet. As stated in the IAB document on Architectural Principles of the
Internet <xref target="RFC1958"/>, the robustness principle advises to:</t>
      <blockquote>
        <t>Be strict when sending and tolerant when receiving.  Implementations must
  follow specifications precisely when sending to the network, and tolerate
  faulty input from the network.  When in doubt, discard faulty input silently,
  without returning an error message unless this is required by the
  specification.</t>
      </blockquote>
      <t>This simple statement captures a significant concept in the design of
interoperable systems.  Many consider the application of the robustness
principle to be instrumental in the success of the Internet as well as the
design of interoperable protocols in general.</t>
      <t>There are three main aspects to the robustness principle:</t>
      <dl>
        <dt>Robustness to software defects:</dt>
        <dd>
          <t>No software is perfect, and failures can lead to unexpected behavior.
Well-designed software strives to be resilient to such issues, whether they
occur in the local software, or in software that it communicates with. In
particular, it is critical for software to gracefully recover from these issues
without aborting unrelated processing.</t>
        </dd>
        <dt>Robustness to attacks:</dt>
        <dd>
          <t>Since not all actors on the Internet are benevolent, networking software needs
to be resilient to input that is intentionally crafted to cause unexpected
consequences. For example, software must ensure that invalid input doesn't allow
the sender to access data, change data, or perform actions that it would otherwise not be allowed to.</t>
        </dd>
        <dt>Robustness to the unexpected:</dt>
        <dd>
          <t>It can be possible for an implementation to receive inputs that the
specification did not prepare it for. This scenario excludes those cases where a
the specification explicitly defines how a faulty message is handled. Instead,
this refers to cases where handling is not defined or where there is some
ambiguity in the specification. In this case, some interpretations of the
robustness principle advocate that the implementation tolerate the faulty input
and silently discard it. Some interpretations even suggest that a faulty or
ambiguous message be processed according to the inferred intent of the sender.</t>
        </dd>
      </dl>
      <t>The facets of the robustness principle that protect against defects or attack
are understood to be necessary guiding principles for the design and
implementation of networked systems. However, an interpretation that advocates
for tolerating unexpected inputs is no longer considered best practice in all
scenarios.</t>
      <t>Time and experience shows that negative consequences to interoperability
accumulate over time if implementations silently accept faulty input. This
problem originates from an implicit assumption that it is not possible to effect
change in a system the size of the Internet. When one assumes that changes to
existing implementations are not presently feasible, tolerating flaws feels
inevitable.</t>
      <t>Many problems that this third aspect of the robustness principle was intended to
solve can instead be better addressed by active maintenance. Active protocol
maintenance is where a community of protocol designers, implementers, and
deployers work together to continuously improve and evolve protocol
specifications alongside implementations and deployments of those protocols. A
community that takes an active role in the maintenance of protocols will no
longer need to rely on the robustness principle to avoid interoperability issues.</t>
      <section anchor="fallibility-of-specifications">
        <name>Fallibility of Specifications</name>
        <t>The context from which the robustness principle was developed provides valuable
insights into its intent and purpose. The earliest form of the principle in the
RFC series (the Internet Protocol specification <xref target="RFC0760"/>) is preceded by a
sentence that reveals a motivation for the principle:</t>
        <blockquote>
          <t>While the goal of this specification is to be explicit about the protocol
  there is the possibility of differing interpretations.  In general, an
  implementation should be conservative in its sending behavior, and liberal in
  its receiving behavior.</t>
        </blockquote>
        <t>This formulation of the principle expressly recognizes the possibility that the
specification could be imperfect. This contextualizes the principle in an
important way.</t>
        <t>Imperfect specifications are unavoidable, largely because it is more important
to proceed to implementation and deployment than it is to perfect a
specification. A protocol benefits greatly from experience with its use. A
deployed protocol is immeasurably more useful than a perfect protocol
specification. This is particularly true in early phases of system design, to
which the robustness principle is best suited.</t>
        <t>As demonstrated by the IAB document on Successful Protocols <xref target="RFC5218"/>,
success or failure of a protocol depends far more on factors like usefulness
than on technical excellence. Timely publication of protocol specifications,
even with the potential for flaws, likely contributed significantly to the
eventual success of the Internet.</t>
        <t>This premise that specifications will be imperfect is correct. However, ignoring
faulty or ambiguous input is almost always the incorrect solution to the problem.</t>
      </section>
      <section anchor="extensibility">
        <name>Extensibility</name>
        <t>Good extensibility <xref target="EXT"/> can make it easier to respond to new use
cases or changes in the environment in which the protocol is deployed.</t>
        <t>The ability to extend a protocol is sometimes mistaken for an application of the
robustness principle. After all, if one party wants to start using a new feature
before another party is prepared to receive it, it might be assumed that the
receiving party is being tolerant of new types of input.</t>
        <t>A well-designed extensibility mechanism establishes clear rules for the handling
of elements like new messages or parameters. This depends on specifying the
handling of malformed or illegal inputs so that implementations behave
consistently in all cases that might affect interoperation. New messages or
parameters thereby become entirely expected. If extension mechanisms and error
handling are designed and implemented correctly, new protocol features can be
deployed with confidence in the understanding of the effect they have on
existing implementations.</t>
        <t>In contrast, relying on implementations to consistently handle unexpected input
is not a good strategy for extensibility. Using undocumented or
accidental features of a protocol as the basis of an extensibility mechanism can
be extremely difficult, as is demonstrated by the case study in <xref section="A.3" sectionFormat="of" target="EXT"/>.  It is better and easier to design a protocol for extensibility
initially than to retrofit the capability (see also <xref target="EDNS0"/>).</t>
      </section>
      <section anchor="flexibility">
        <name>Flexible Protocols</name>
        <t>A protocol could be designed to permit a narrow set of valid inputs, or it could
be designed to treat a wide range of inputs as valid.</t>
        <t>A more flexible protocol is more complex to specify and implement: variations -
especially those that are not commonly used - can create potential
interoperability hazards. In the absence of strong reasons to be flexible, a
simpler protocol is more likely to successfully interoperate.</t>
        <t>Where input is provided by users, allowing flexibility might serve to make the
protocol more accessible, especially for non-expert users. HTML authoring
<xref target="HTML"/> is an example of this sort of design.</t>
        <t>In protocols where there are many participants that might generate messages
based on data from other participants some flexibility might contribute to
resilience of the system. A routing protocol is a good example of where this
might be necessary.</t>
        <t>In BGP <xref target="BGP"/>, a peer generates UPDATE messages based on messages it
receives from other peers. Peers can copy attributes without validation,
potentially propagating invalid values. RFC 4271 <xref target="BGP"/> mandated a session
reset for invalid UPDATE messages, a requirement that was not widely
implemented. In many deployments, peers would treat a malformed UPDATE in less
stringent ways, such as by treating the affected route as having been withdrawn.
Ultimately, RFC 7606 <xref target="BGP-REH"/> documented this practice and provided
precise rules, including mandatory actions for different error conditions.</t>
        <t>A protocol can explicitly allow for a range of valid expressions of the same
semantics, with precise definitions for error handling. This is distinct from a
protocol that relies on the application of the robustness principle. With the
former, interoperation depends on specifications that capture all relevant
details; whereas - as noted in <xref target="ecosystem"/> - interoperation in the latter
depends more extensively on implementations making compatible decisions.</t>
      </section>
    </section>
    <section anchor="applicability">
      <name>Applicability</name>
      <t>The guidance in this document is intended for protocols that are deployed to the
Internet. There are some situations in which this guidance might not apply to a
protocol due to conditions on its implementation or deployment.</t>
      <t>In particular, this guidance depends on an ability to update and deploy
implementations. Being able to rapidly update implementations that are deployed
to the Internet helps managing security risk but in reality some software
deployments have lifecycles that make software updates either rare or altogether
impossible.</t>
      <t>Where implementations are not updated, there is no opportunity to apply the
practices that this document recommends. In particular, some practices - such as
those described in <xref target="intolerance"/> - only exist to support the development of
protocol maintenance and evolution. Employing this guidance is therefore only
applicable where there is the possibility of improving deployments through
timely updates of their implementations.</t>
    </section>
    <section anchor="harmful-consequences-of-tolerating-the-unexpected">
      <name>Harmful Consequences of Tolerating the Unexpected</name>
      <t>Problems in other implementations can create an unavoidable need to temporarily
tolerate unexpected inputs. However, this course of action carries risks.</t>
      <section anchor="decay">
        <name>Protocol Decay</name>
        <t>Tolerating unexpected input might be an expedient tool for systems in early
phases of deployment, such as was the case for the early Internet. Being lenient
in this way defers the effort of dealing with interoperability problems and
prioritizes progress. However, this deferral can amplify the ultimate cost of
handling interoperability problems.</t>
        <t>Divergent implementations of a specification emerge over time. When variations
occur in the interpretation or expression of semantic components,
implementations cease to be perfectly interoperable.</t>
        <t>Implementation bugs are often identified as the cause of variation, though it is
often a combination of factors. Using a protocol in ways that were not
anticipated in the original design, or ambiguities and errors in the
specification are often contributing factors. Disagreements on the
interpretation of specifications should be expected over the lifetime of a
protocol.</t>
        <t>Even with the best intentions to maintain protocol correctness, the pressure to
interoperate can be significant. No implementation can hope to avoid having to
trade correctness for interoperability indefinitely.</t>
        <t>An implementation that reacts to variations in the manner recommended in the
robustness principle enters a pathological feedback cycle. Over time:</t>
        <ul spacing="normal">
          <li>Implementations progressively add logic to constrain how data is transmitted,
or to permit variations in what is received.</li>
          <li>Errors in implementations or confusion about semantics are permitted or
ignored.</li>
          <li>These errors can become entrenched, forcing other implementations to be
tolerant of those errors.</li>
        </ul>
        <t>A flaw can become entrenched as a de facto standard. Any implementation of the
protocol is required to replicate the aberrant behavior, or it is not
interoperable. This is both a consequence of tolerating the unexpected, and a
product of a natural reluctance to avoid fatal error conditions. Ensuring
interoperability in this environment is often referred to as aiming to be "bug
for bug compatible".</t>
        <t>For example, in TLS <xref target="TLS"/>, extensions use a tag-length-value format
and can be added to messages in any order. However, some server implementations
terminated connections if they encountered a TLS ClientHello message that ends
with an empty extension. To maintain interoperability with these servers, which
were widely deployed, client implementations were required to be aware of this
bug and ensure that a ClientHello message ends in a non-empty extension.</t>
        <t>Overapplication of the robustness principle therefore encourages a chain
reaction that can create interoperability problems over time. In particular,
tolerating unexpected behavior is particularly deleterious for early
implementations of new protocols as quirks in early implementations can affect
all subsequent deployments.</t>
      </section>
      <section anchor="ecosystem">
        <name>Ecosystem Effects</name>
        <t>From observing widely deployed protocols, it appears there are two stable points
on the spectrum between being strict versus permissive in the presence of
protocol errors:</t>
        <ul spacing="normal">
          <li>If implementations predominantly enforce strict compliance with
specifications, newer implementations will experience failures if they do not
comply with protocol requirements. Newer implementations need to fix
compliance issues in order to be successfully deployed. This ensures that most
deployments are compliant over time.</li>
          <li>Conversely, if non-compliance is tolerated by existing implementations,
non-compliant implementations can be deployed successfully. Newer
implementations then have strong incentive to tolerate any existing
non-compliance in order to be successfully deployed. This ensures that most
deployments are tolerant of the same non-compliant behavior.</li>
        </ul>
        <t>This happens because interoperability requirements for protocol implementations
are set by other deployments. Specifications and test suites - where they exist -
can guide the initial development of implementations.  Ultimately, the
need to interoperate with deployed implementations is a de facto conformance
test suite that can supersede any formal protocol definition.</t>
        <t>For widely used protocols, the massive scale of the Internet makes large-scale
interoperability testing infeasible for all but a privileged few. The cost of
building a new implementation using reverse engineering increases as the number
of implementations and bugs increases. Worse, the set of tweaks necessary for
wide interoperability can be difficult to discover. In the worst case, a new
implementer might have to choose between deployments that have diverged so far
as to no longer be interoperable.</t>
        <t>Consequently, new implementations might be forced into niche uses, where the
problems arising from interoperability issues can be more closely managed.
However, restricting new implementations into limited deployments risks causing
forks in the protocol. If implementations do not interoperate, little prevents
those implementations from diverging more over time.</t>
        <t>This has a negative impact on the ecosystem of a protocol. New implementations
are key to the continued viability of a protocol. New protocol implementations
are also more likely to be developed for new and diverse use cases and are often
the origin of features and capabilities that can be of benefit to existing users.</t>
        <t>The need to work around interoperability problems also reduces the ability of
established implementations to change. An accumulation of mitigations for
interoperability issues makes implementations more difficult to maintain and can
constrain extensibility (see also the IAB document on the Long-Term Viability of
Protocol Extension Mechanisms <xref target="RFC9170"/>).</t>
        <t>Sometimes what appear to be interoperability problems are symptomatic of issues
in protocol design. A community that is willing to make changes to the protocol,
by revising or extending specifications and then deploying those changes,
makes the protocol better.
Tolerating unexpected input instead conceals problems, making it harder, if not
impossible, to fix them later.</t>
      </section>
    </section>
    <section anchor="active">
      <name>Active Protocol Maintenance</name>
      <t>The robustness principle can be highly effective in safeguarding against flaws
in the implementation of a protocol by peers. Especially when a specification
remains unchanged for an extended period of time, incentive to be tolerant of
errors accumulates over time. Indeed, when faced with divergent interpretations
of an immutable specification, the only way for an implementation to remain
interoperable is to be tolerant of differences in interpretation and
implementation errors. However, when official specifications fail to be
updated then deployed implementations - including their quirks - often become
a substitute standard.</t>
      <t>Tolerating unexpected inputs from another implementation might seem logical,
even necessary. But that conclusion relies on an assumption that existing
specifications and implementations cannot change. Applying the robustness
principle in this way disproportionately values short-term gains over the
negative effects on future implementations and the protocol as a whole.</t>
      <t>For a protocol to have sustained viability, it is necessary for both
specifications and implementations to be responsive to changes, in addition to
handling new and old problems that might arise over time. For example, when an
implementer discovers a scenario where a specification defines some input as
faulty but does not define how to handle that input, the implementer can provide
significant value to the ecosystem by reporting the issue and helping evolve the
specification.</t>
      <t>When a discrepancy is found between a specification and its implementation, a
maintenance discussion inside the standards process allows reaching consensus on
how best to evolve the specification. Subsequently updating implementations to
match evolved specifications ensures that implementations are consistently
interoperable and removes needless barriers for new implementations. Maintenance
also enables continued improvement of the protocol. New use cases are an
indicator that the protocol could be successful <xref target="RFC5218"/>.</t>
      <t>Protocol designers are strongly encouraged to continue to maintain and evolve
protocol specifications beyond their initial inception and definition. This
might require the development of revised specifications, extensions, or other
supporting material that evolves in concert with implementations. Involvement of
those who implement and deploy the protocol is a critical part of this process,
as they provide input on their experience with how the protocol is used.</t>
      <t>Most interoperability problems do not require revision of protocols or protocol
specifications, as software defects can happen even when the specification is
unambiguous. For instance, the most effective means of dealing with a
defective implementation in a peer could be to contact the developer
responsible. It is far more efficient in the long term to fix one isolated bug
than it is to deal with the consequences of workarounds.</t>
      <t>Early implementations of protocols have a stronger obligation to closely follow
specifications as their behavior will affect all subsequent implementations. In
addition to specifications, later implementations will be guided by what
existing deployments accept. Tolerance of errors in early deployments is most
likely to result in problems. Protocol specifications might need more frequent
revision during early deployments to capture feedback from early rounds of
deployment.</t>
      <t>Neglect can quickly produce the negative consequences this document describes.
Restoring the protocol to a state where it can be maintained involves first
discovering the properties of the protocol as it is deployed, rather than the
protocol as it was originally documented. This can be difficult and
time-consuming, particularly if the protocol has a diverse set of
implementations. Such a process was undertaken for HTTP <xref target="HTTP"/> after
a period of minimal maintenance. Restoring HTTP specifications to relevance took
significant effort.</t>
      <t>Maintenance is most effective if it is responsive, which is greatly affected by
how rapidly protocol changes can be deployed. For protocol deployments that
operate on longer time scales, temporary workarounds following the spirit of the
robustness principle might be necessary. For this, improvements in software
update mechanisms ensure that the cost of reacting to changes is much lower than
it was in the past. Alternatively, if specifications can be updated more readily
than deployments, details of the workaround can be documented, including the
desired form of the protocols once the need for workarounds no longer exists and
plans for removing the workaround.</t>
      <section anchor="intolerance">
        <name>Virtuous Intolerance</name>
        <t>A well-specified protocol includes rules for consistent handling of aberrant
conditions. This increases the chances that implementations will have consistent
and interoperable handling of unusual conditions.</t>
        <t>Choosing to generate fatal errors for unspecified conditions instead of
attempting error recovery can ensure that faults receive attention. This
intolerance can be harnessed to reduce occurrences of aberrant implementations.</t>
        <t>Intolerance toward violations of specification improves feedback for new
implementations in particular. When a new implementation encounters a peer that
is intolerant of an error, it receives strong feedback that allows the problem
to be discovered quickly.</t>
        <t>To be effective, intolerant implementations need to be sufficiently widely
deployed that they are encountered by new implementations with high probability.
This could depend on multiple implementations deploying strict checks.</t>
        <t>Interoperability problems also need to be made known to those in a position to
address them. In particular, systems with human operators, such as user-facing
clients, are ideally suited to surfacing errors.  Other systems might need to
use less direct means of making errors known.</t>
        <t>This does not mean that intolerance of errors in early deployments of protocols
has the effect of preventing interoperability. On the contrary, when existing
implementations follow clearly-specified error handling, new implementations or
features can be introduced more readily as the effect on existing
implementations can be easily predicted; see also <xref target="extensibility"/>.</t>
        <t>Any intolerance also needs to be strongly supported by specifications, otherwise
they encourage fracturing of the protocol community or proliferation of
workarounds; see <xref target="exclusion"/>.</t>
        <t>Intolerance can be used to motivate compliance with any protocol requirement.
For instance, the INADEQUATE_SECURITY error code and associated requirements in
HTTP/2 <xref target="H2"/> resulted in improvements in the security of the
deployed base.</t>
        <t>A notification for a fatal error is best sent as explicit error messages to the
entity that made the error. Error messages benefit from being able to carry
arbitrary information that might help the implementer of the sender of the
faulty input understand and fix the issue in their software. QUIC error frames
<xref target="QUIC"/> are an example of a fatal error mechanism that helped
implementers improve software quality throughout the protocol lifecycle.
Similarly, Extended DNS Errors <xref target="EDE"/> has recently been
effective in providing better descriptions of DNS resolution errors to clients.</t>
        <t>Stateless protocol endpoints might generate denial-of-service attacks if they
send an error messages in response to every message that is received from an
unauthenticated sender. These implementations might need to silently discard
these messages.</t>
      </section>
      <section anchor="exclusion">
        <name>Exclusion</name>
        <t>Any protocol participant that is affected by changes arising from maintenance
might be excluded if they are unwilling or unable to implement or deploy changes
that are made to the protocol.</t>
        <t>Deliberate exclusion of problematic implementations is an important tool that
can ensure that the interoperability of a protocol remains viable. While
backward compatible changes are always preferable to incompatible ones, it is
not always possible to produce a design that protects the ability of all current
and future protocol participants to interoperate.</t>
        <t>Accidentally excluding unexpected participants is not usually a good outcome.
When developing and deploying changes, it is best to first understand the extent
to which the change affects existing deployments.  This ensures that any
exclusion that occurs is intentional.</t>
        <t>In some cases, existing deployments might need to change in order to avoid being
excluded.  Though it might be preferable to avoid forcing deployments to change,
this might be considered necessary.  To avoid unnecessarily excluding
deployments that might take time to change, developing a migration plan can be
prudent.</t>
        <t>Exclusion is a direct goal when choosing to be intolerant of errors (see
<xref target="intolerance"/>). Exclusionary actions are employed with the deliberate intent
of protecting future interoperability.</t>
        <t>Excluding implementations or deployments can lead to a fracturing of the
protocol system that could be more harmful than any divergence that might arise
from tolerating the unexpected. The IAB document on Uncoordinated Protocol
Development Considered Harmful <xref target="RFC5704"/> describes how conflict or
competition in the maintenance of protocols can lead to similar problems.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Careless implementations, lax interpretations of specifications, and
uncoordinated extrapolation of requirements to cover gaps in specification can
result in security problems. Hiding the consequences of protocol variations
encourages the hiding of issues, which can conceal bugs and make them difficult
to discover.</t>
      <t>The consequences of the problems described in this document are especially acute
for any protocol where security depends on agreement about semantics of protocol
elements. For instance, use of unsafe security mechanisms, such as weak
primitives <xref target="MD5"/> or obsolete mechanisms <xref target="SSL3"/>, are good
examples of where forcing exclusion (<xref target="exclusion"/>) can be desirable.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <displayreference target="H2" to="HTTP/2"/>
    <references>
      <name>Informative References</name>
      <reference anchor="HTML" target="https://html.spec.whatwg.org/">
        <front>
          <title>HTML</title>
          <author>
            <organization/>
          </author>
          <date year="2019" month="March" day="08"/>
        </front>
        <seriesInfo name="WHATWG" value="Living Standard"/>
      </reference>
      <reference anchor="H2">
        <front>
          <title>HTTP/2</title>
          <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
            <organization/>
          </author>
          <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
            <organization/>
          </author>
          <date month="June" year="2022"/>
          <abstract>
            <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
            <t>This document obsoletes RFCs 7540 and 8740.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9113"/>
        <seriesInfo name="DOI" value="10.17487/RFC9113"/>
      </reference>
      <reference anchor="RFC1958">
        <front>
          <title>Architectural Principles of the Internet</title>
          <author fullname="B. Carpenter" initials="B." role="editor" surname="Carpenter">
            <organization/>
          </author>
          <date month="June" year="1996"/>
          <abstract>
            <t>The Internet and its architecture have grown in evolutionary fashion from modest beginnings, rather than from a Grand Plan. While this process of evolution is one of the main reasons for the technology's success, it nevertheless seems useful to record a snapshot of the current principles of the Internet architecture. This is intended for general guidance and general interest, and is in no way intended to be a formal or invariant reference model.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="1958"/>
        <seriesInfo name="DOI" value="10.17487/RFC1958"/>
      </reference>
      <reference anchor="RFC0760">
        <front>
          <title>DoD standard Internet Protocol</title>
          <author fullname="J. Postel" initials="J." surname="Postel">
            <organization/>
          </author>
          <date month="January" year="1980"/>
        </front>
        <seriesInfo name="RFC" value="760"/>
        <seriesInfo name="DOI" value="10.17487/RFC0760"/>
      </reference>
      <reference anchor="RFC5218">
        <front>
          <title>What Makes for a Successful Protocol?</title>
          <author fullname="D. Thaler" initials="D." surname="Thaler">
            <organization/>
          </author>
          <author fullname="B. Aboba" initials="B." surname="Aboba">
            <organization/>
          </author>
          <date month="July" year="2008"/>
          <abstract>
            <t>The Internet community has specified a large number of protocols to date, and these protocols have achieved varying degrees of success. Based on case studies, this document attempts to ascertain factors that contribute to or hinder a protocol's success.  It is hoped that these observations can serve as guidance for future protocol work.  This memo  provides information for the Internet community.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="5218"/>
        <seriesInfo name="DOI" value="10.17487/RFC5218"/>
      </reference>
      <reference anchor="EXT">
        <front>
          <title>Design Considerations for Protocol Extensions</title>
          <author fullname="B. Carpenter" initials="B." surname="Carpenter">
            <organization/>
          </author>
          <author fullname="B. Aboba" initials="B." role="editor" surname="Aboba">
            <organization/>
          </author>
          <author fullname="S. Cheshire" initials="S." surname="Cheshire">
            <organization/>
          </author>
          <date month="September" year="2012"/>
          <abstract>
            <t>This document discusses architectural issues related to the extensibility of Internet protocols, with a focus on design considerations.  It is intended to assist designers of both base protocols and extensions.  Case studies are included.  A companion document, RFC 4775 (BCP 125), discusses procedures relating to the extensibility of IETF protocols.  This document is not an  Internet Standards Track specification; it is published for informational  purposes.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="6709"/>
        <seriesInfo name="DOI" value="10.17487/RFC6709"/>
      </reference>
      <reference anchor="EDNS0">
        <front>
          <title>Extension Mechanisms for DNS (EDNS0)</title>
          <author fullname="P. Vixie" initials="P." surname="Vixie">
            <organization/>
          </author>
          <date month="August" year="1999"/>
          <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 clients to advertise their capabilities to servers.  This document describes backward compatible mechanisms for allowing the protocol to grow.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="2671"/>
        <seriesInfo name="DOI" value="10.17487/RFC2671"/>
      </reference>
      <reference anchor="BGP">
        <front>
          <title>A Border Gateway Protocol 4 (BGP-4)</title>
          <author fullname="Y. Rekhter" initials="Y." role="editor" surname="Rekhter">
            <organization/>
          </author>
          <author fullname="T. Li" initials="T." role="editor" surname="Li">
            <organization/>
          </author>
          <author fullname="S. Hares" initials="S." role="editor" surname="Hares">
            <organization/>
          </author>
          <date month="January" year="2006"/>
          <abstract>
            <t>This document discusses the Border Gateway Protocol (BGP), which is an inter-Autonomous System routing protocol.</t>
            <t>The primary function of a BGP speaking system is to exchange network reachability information with other BGP systems.  This network reachability information includes information on the list of Autonomous Systems (ASes) that reachability information traverses. This information is sufficient for constructing a graph of AS connectivity for this reachability from which routing loops may be pruned, and, at the AS level, some policy decisions may be enforced.</t>
            <t>BGP-4 provides a set of mechanisms for supporting Classless Inter-Domain Routing (CIDR).  These mechanisms include support for advertising a set of destinations as an IP prefix, and eliminating the concept of network "class" within BGP.  BGP-4 also introduces mechanisms that allow aggregation of routes, including aggregation of AS paths.</t>
            <t>This document obsoletes RFC 1771.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="4271"/>
        <seriesInfo name="DOI" value="10.17487/RFC4271"/>
      </reference>
      <reference anchor="BGP-REH">
        <front>
          <title>Revised Error Handling for BGP UPDATE Messages</title>
          <author fullname="E. Chen" initials="E." role="editor" surname="Chen">
            <organization/>
          </author>
          <author fullname="J. Scudder" initials="J." role="editor" surname="Scudder">
            <organization/>
          </author>
          <author fullname="P. Mohapatra" initials="P." surname="Mohapatra">
            <organization/>
          </author>
          <author fullname="K. Patel" initials="K." surname="Patel">
            <organization/>
          </author>
          <date month="August" year="2015"/>
          <abstract>
            <t>According to the base BGP specification, a BGP speaker that receives an UPDATE message containing a malformed attribute is required to reset the session over which the offending attribute was received. This behavior is undesirable because a session reset would impact not only routes with the offending attribute but also other valid routes exchanged over the session.  This document partially revises the error handling for UPDATE messages and provides guidelines for the authors of documents defining new attributes.  Finally, it revises the error handling procedures for a number of existing attributes.</t>
            <t>This document updates error handling for RFCs 1997, 4271, 4360, 4456, 4760, 5543, 5701, and 6368.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="7606"/>
        <seriesInfo name="DOI" value="10.17487/RFC7606"/>
      </reference>
      <reference anchor="TLS">
        <front>
          <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
          <author fullname="E. Rescorla" initials="E." surname="Rescorla">
            <organization/>
          </author>
          <date month="August" year="2018"/>
          <abstract>
            <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
            <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8446"/>
        <seriesInfo name="DOI" value="10.17487/RFC8446"/>
      </reference>
      <reference anchor="RFC9170">
        <front>
          <title>Long-Term Viability of Protocol Extension Mechanisms</title>
          <author fullname="M. Thomson" initials="M." surname="Thomson">
            <organization/>
          </author>
          <author fullname="T. Pauly" initials="T." surname="Pauly">
            <organization/>
          </author>
          <date month="December" year="2021"/>
          <abstract>
            <t>The ability to change protocols depends on exercising the extension and version-negotiation mechanisms that support change.  This document explores how regular use of new protocol features can ensure that it remains possible to deploy changes to a protocol. Examples are given where lack of use caused changes to be more difficult or costly.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9170"/>
        <seriesInfo name="DOI" value="10.17487/RFC9170"/>
      </reference>
      <reference anchor="HTTP">
        <front>
          <title>HTTP Semantics</title>
          <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
            <organization/>
          </author>
          <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
            <organization/>
          </author>
          <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
            <organization/>
          </author>
          <date month="June" year="2022"/>
          <abstract>
            <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
            <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
          </abstract>
        </front>
        <seriesInfo name="STD" value="97"/>
        <seriesInfo name="RFC" value="9110"/>
        <seriesInfo name="DOI" value="10.17487/RFC9110"/>
      </reference>
      <reference anchor="QUIC">
        <front>
          <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
          <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
            <organization/>
          </author>
          <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
            <organization/>
          </author>
          <date month="May" year="2021"/>
          <abstract>
            <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9000"/>
        <seriesInfo name="DOI" value="10.17487/RFC9000"/>
      </reference>
      <reference anchor="EDE">
        <front>
          <title>Extended DNS Errors</title>
          <author fullname="W. Kumari" initials="W." surname="Kumari">
            <organization/>
          </author>
          <author fullname="E. Hunt" initials="E." surname="Hunt">
            <organization/>
          </author>
          <author fullname="R. Arends" initials="R." surname="Arends">
            <organization/>
          </author>
          <author fullname="W. Hardaker" initials="W." surname="Hardaker">
            <organization/>
          </author>
          <author fullname="D. Lawrence" initials="D." surname="Lawrence">
            <organization/>
          </author>
          <date month="October" year="2020"/>
          <abstract>
            <t>This document defines an extensible method to return additional information about the cause of DNS errors. Though created primarily to extend SERVFAIL to provide additional information about the cause of DNS and DNSSEC failures, the Extended DNS Errors option defined in this document allows all response types to contain extended error information. Extended DNS Error information does not change the processing of RCODEs.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8914"/>
        <seriesInfo name="DOI" value="10.17487/RFC8914"/>
      </reference>
      <reference anchor="RFC5704">
        <front>
          <title>Uncoordinated Protocol Development Considered Harmful</title>
          <author fullname="S. Bryant" initials="S." role="editor" surname="Bryant">
            <organization/>
          </author>
          <author fullname="M. Morrow" initials="M." role="editor" surname="Morrow">
            <organization/>
          </author>
          <author>
            <organization>IAB</organization>
          </author>
          <date month="November" year="2009"/>
          <abstract>
            <t>This document identifies problems that may result from the absence of formal coordination and joint development on protocols of mutual interest between standards development organizations (SDOs).  Some of these problems may cause significant harm to the Internet.  The document suggests that a robust procedure is required prevent this from occurring in the future.  The IAB has selected a number of case studies, such as Transport MPLS (T-MPLS), as recent examples to describe the hazard to the Internet architecture that results from uncoordinated adaptation of a protocol.</t>
            <t>This experience has resulted in a considerable improvement in the relationship between the IETF and the ITU-T.  In particular, this was achieved via the establishment of the "Joint working team on MPLS-TP".  In addition, the leadership of the two organizations agreed to improve inter-organizational working practices so as to avoid conflict in the future between ITU-T Recommendations and IETF RFCs.</t>
            <t>Whilst we use ITU-T - IETF interactions in these case studies, the scope of the document extends to all SDOs that have an overlapping protocol interest with the IETF.  This memo provides information for the Internet community.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="5704"/>
        <seriesInfo name="DOI" value="10.17487/RFC5704"/>
      </reference>
      <reference anchor="MD5">
        <front>
          <title>Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms</title>
          <author fullname="S. Turner" initials="S." surname="Turner">
            <organization/>
          </author>
          <author fullname="L. Chen" initials="L." surname="Chen">
            <organization/>
          </author>
          <date month="March" year="2011"/>
          <abstract>
            <t>This document updates the security considerations for the MD5 message digest algorithm.  It also updates the security considerations for HMAC-MD5.  This document is not an Internet Standards Track  specification; it is published for informational purposes.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="6151"/>
        <seriesInfo name="DOI" value="10.17487/RFC6151"/>
      </reference>
      <reference anchor="SSL3">
        <front>
          <title>Deprecating Secure Sockets Layer Version 3.0</title>
          <author fullname="R. Barnes" initials="R." surname="Barnes">
            <organization/>
          </author>
          <author fullname="M. Thomson" initials="M." surname="Thomson">
            <organization/>
          </author>
          <author fullname="A. Pironti" initials="A." surname="Pironti">
            <organization/>
          </author>
          <author fullname="A. Langley" initials="A." surname="Langley">
            <organization/>
          </author>
          <date month="June" year="2015"/>
          <abstract>
            <t>The Secure Sockets Layer version 3.0 (SSLv3), as specified in RFC 6101, is not sufficiently secure.  This document requires that SSLv3 not be used.  The replacement versions, in particular, Transport Layer Security (TLS) 1.2 (RFC 5246), are considerably more secure and capable protocols.</t>
            <t>This document updates the backward compatibility section of RFC 5246 and its predecessors to prohibit fallback to SSLv3.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="7568"/>
        <seriesInfo name="DOI" value="10.17487/RFC7568"/>
      </reference>
      <reference anchor="RFC3117">
        <front>
          <title>On the Design of Application Protocols</title>
          <author fullname="M. Rose" initials="M." surname="Rose">
            <organization/>
          </author>
          <date month="November" year="2001"/>
          <abstract>
            <t>This memo describes the design principles for the Blocks eXtensible eXchange Protocol (BXXP).  This memo provides information for the Internet community.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="3117"/>
        <seriesInfo name="DOI" value="10.17487/RFC3117"/>
      </reference>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Constructive feedback on this document has been provided by a surprising number
of people including, but not limited to: <contact fullname="Bernard Aboba"/>,
<contact fullname="Brian Carpenter"/>, <contact fullname="Stuart Cheshire"/>, <contact fullname="Wes Hardaker"/>,
<contact fullname="Joel Halpern"/>, <contact fullname="Russ Housley"/>, <contact fullname="Cullen Jennings"/>,
<contact fullname="Mallory Knodel"/>, <contact fullname="Mirja Kühlewind"/>, <contact fullname="Mark Nottingham"/>,
<contact fullname="Eric Rescorla"/>, <contact fullname="Henning Schulzrinne"/>, <contact fullname="Job Snijders"/>,
<contact fullname="Robert Sparks"/>, <contact fullname="Dave Thaler"/>, <contact fullname="Brian Trammell"/>,
and <contact fullname="Anne van Kesteren"/>.
Some of the properties of protocols described in <xref target="decay"/> were observed
by <contact fullname="Marshall Rose"/> in <xref section="4.5" sectionFormat="of" target="RFC3117"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA61925bbyJHte34FlvRw7FksSuqru2Z5xtVStSW7JfeoSu6Z
p1lJIkliCgRoJFAUu1b92Xk7P3ZiR0ReALB0/HAeZuRmgYnMyLjs2BGZvLi4
MH3V1+6yePbeVk1P/1c12+Jjuxp8X/zStX27bmv/zJTturF7eq7s7Ka/qOzq
4qB/vdjjm66xzdpdvHpl1rZ327Y7XRZVs2mNH1b7yvuqbfrTgQZ4d/Wjub8s
vjbH7WVx/ea9uXfN4C5NUWy7djjIZ0URH8Ystp3d02f0ovqycOX+T/T+Zdtt
6TPbrXeXxa7vD/7yxYvj8bjUv73A03vbvKgr32MmL+iL9IXOHdr0hW3V74bV
ct3uX2D5NNiqtV35QpZ5bok0RE0r9H0aJP/mUkes2i+M8eLLUlzu+n1tjB36
XduRZC7onUUh8n9vO1pNcbtr975t+A+0WPq8/a2qa8sfOBHUvv9T3R5d03ft
4bRsXD8e6Y29r8riZr2rGvtblUb6c9tua1f8/PNr/sz3nXO02FffvXxZXO0P
O1qfs/Rh8Yvt7o72xE+tq/6ESQysQ8XfK3fkzzu3pZ2/LF5fyWNtSW/+4ZuX
33yt/01fgKp8aqre0Wx6iLZoN/Qm11Xr0XpKr3NdVq7f/GmLT7FzxmB7u73t
q3tWpLe373++5G8G5cYnz/iTkl5wWXz18tUPFy+/vnj5B1kjvct5jCJfK4pf
317d/vrny+Ln6h4GQfNqStpdGdR2W0jkWdh/bNfSH9x6edzZ/rhl9cPr3n4l
4/3xsvj40+sfXr2SVZeVP9SWVv329vaXF18ZYy4uLgq7IlHbdW/M7c5B15ti
29oawiCJF7R/x7a7w2y8zsYXpD1r531R+aJvC9KeFe0cnq5beq533d5Aq0gB
XGdXVU27hPGC0vklKRJ9l6x72JOiFKXz665a0RbQREia8UmTqeeisMXe2Ybf
ade0AweysR291/Y85WXx46lw923NsoNgqg3tZU+aQAM3panoGw4vlM8WRdVj
CYeW/ASvoCXFKYe1K+x+VW0Hnva962g/9w4jFOuOdJD+pyFdrPsdvW7d+pPv
3X4p8uvYhTUQzqGrmnVFb1zQ2mkNxWHXWU/aZn3xbOVICRtSgHtWH/JZBTax
OLUDqUVTLgxeV5NMOtqL/K+0cnfony2KHY3D8qaJljQs5E+CrLYNT3W8WEPi
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
y28xMsLD169efY/3/1+16jJN/3EAAA==

-->

</rfc>
