<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.30 (Ruby 2.6.10) -->
<?rfc docmapping="yes"?>
<?rfc comments="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-nfsv4-uncacheable-files-11" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Uncacheable File">Adding an Uncacheable File Data Attribute to NFSv4.2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-nfsv4-uncacheable-files-11"/>
    <author initials="T." surname="Haynes" fullname="Thomas Haynes">
      <organization>Hammerspace</organization>
      <address>
        <email>loghyr@gmail.com</email>
      </address>
    </author>
    <date/>
    <area>General</area>
    <workgroup>Network File System Version 4</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 54?>

<t>Network File System version 4.2 (NFSv4.2) clients commonly perform
client-side caching of file data in order to improve performance.
On some systems, applications may influence client data caching
behavior, but there is no standardized mechanism for a server or
administrator to indicate that particular file data should not be
cached by clients for reasons of performance or correctness. This
document introduces a new file data caching attribute for NFSv4.2.
Files marked with this attribute are intended to be accessed with
client-side caching of file data suppressed, in order to support
workloads that require predictable data visibility. This document
extends NFSv4.2.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <?line 68?>

<t>Discussion of this draft takes place
on the NFSv4 working group mailing list (nfsv4@ietf.org),
which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=nfsv4"/>. Source
code and issues list for this draft can be found at
<eref target="https://github.com/ietf-wg-nfsv4/uncacheable-files"/>.</t>
      <t>Working Group information can be found at <eref target="https://github.com/ietf-wg-nfsv4"/>.</t>
    </note>
  </front>
  <middle>
    <?line 79?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Clients of remote filesystems commonly perform client-side caching
of file data in order to improve performance.  Such caching may
include retaining data read from the server to satisfy subsequent
READ requests, as well as retaining data written by applications
in order to delay or combine WRITE requests before transmitting
them to the server.  While these techniques are effective for many
workloads, they may be unsuitable for workloads that require
predictable data visibility or involve concurrent modification of
shared files by multiple clients.</t>
      <t>In some cases, Network File System version 4.2 (NFSv4.2) (see
<xref target="RFC7862"/>) mechanisms such as file delegations can reduce the
impact of concurrent access.  However, delegations are not always
available or effective, particularly for workloads with frequent
concurrent writers or rapidly changing access patterns.</t>
      <t>There have been prior efforts to bypass file data caching in order to
address these issues.  In High-Performance Computing (HPC) workloads,
file data caching is often bypassed to improve predictability and to
avoid read-modify-write hazards when multiple clients write disjoint
byte ranges of the same file.</t>
      <t>Applications on some systems can request bypass of the client data
cache by opening files with the O_DIRECT flag (see <xref target="OPEN-O_DIRECT"/>).
However, this approach has limitations, including the requirement
that each application be explicitly modified and the lack of a
standardized mechanism for communicating this intent between servers
and clients.</t>
      <t>This document introduces the uncacheable file data attribute to
NFSv4.2.  This <bcp14>OPTIONAL</bcp14> attribute allows a server to indicate that
client-side caching of file data for a particular file is unsuitable.
When both the client and the server support this attribute, the
client is advised to suppress client-side caching of file data for
that file, in accordance with the semantics defined in this document.</t>
      <t>The uncacheable file data attribute is read-write, applies on a
per-file basis, and has a data type of boolean.</t>
      <t>Support for the uncacheable file data attribute is specific to the
exported filesystem and may differ between filesystems served by the
same server.  A client can determine whether the attribute is
supported for a given file by examining the supported_attrs attribute
for that file's filesystem or by probing support using the procedures
described in <xref target="RFC8178"/>.</t>
      <t>The uncacheable file data attribute applies only to regular files
(NF4REG).  Attempts to query or set this attribute on objects of
other types <bcp14>MUST</bcp14> result in an error of NFS4ERR_INVAL. Since the
uncacheable file data attribute applies only to regular files,
attempts to apply it to other object types represent an invalid use
of the attribute.</t>
      <t>Using the process described in <xref target="RFC8178"/>, the revisions in this
document extend NFSv4.2 <xref target="RFC7862"/>.  They are built on top of the
external data representation (XDR) <xref target="RFC4506"/> generated from
<xref target="RFC7863"/>.</t>
    </section>
    <section anchor="definitions">
      <name>Definitions</name>
      <dl>
        <dt>client-side caching of file data</dt>
        <dd>
          <t>The retention of file data by a client in a local data cache, commonly
referred to as the page cache, for the purpose of satisfying subsequent
READ requests or delaying transmission of WRITE data to the server.</t>
        </dd>
        <dt>write-behind caching</dt>
        <dd>
          <t>A form of file data caching in which WRITE data is retained by the
client and transmission of the data to the server is delayed in order
to combine multiple WRITE operations or improve efficiency.</t>
        </dd>
        <dt>direct I/O</dt>
        <dd>
          <t>An access mode in which file data is transferred between application
buffers and the underlying storage without populating or consulting
the client's file data cache.  Direct I/O suppresses both read caching
and write-behind caching of file data.</t>
        </dd>
        <dt>write hole</dt>
        <dd>
          <t>A write hole is an instance of data corruption that arises when
multiple clients modify disjoint byte ranges within the same encoded
data block without having a consistent view of the existing contents.
This can result in stale data overwriting newer updates, particularly
in environments that use erasure encoding or striped storage.</t>
        </dd>
      </dl>
      <t>This document assumes familiarity with the NFSv4 protocol operations,
error codes, object types, and attributes as defined in <xref target="RFC8881"/>.</t>
    </section>
    <section anchor="requirements-language">
      <name>Requirements Language</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="client-side-caching-of-file-data">
      <name>Client-Side Caching of File Data</name>
      <t>The uncacheable file data attribute advises the client to limit the
use of client-side caching of file data for a file. This includes
both write-behind caching and read caching, which are addressed
separately below.</t>
      <t>The intent of this attribute is to allow a server or administrator
to indicate that client-side caching of file data for a particular
file is unsuitable. The server is often in a better position than
individual clients to determine sharing patterns, access behavior,
or correctness requirements associated with a file. By exposing
this information via an attribute, the server can advise clients
to limit file data caching in a consistent manner.</t>
      <section anchor="write-behind-caching">
        <name>Write-Behind Caching</name>
        <t>The uncacheable file data attribute inhibits write-behind caching,
in which multiple pending WRITEs are combined and transmitted to
the server at a later time for efficiency.</t>
        <t>When honoring the uncacheable file data attribute, clients <bcp14>SHOULD
NOT</bcp14> delay transmission of WRITE data for the purpose of combining
multiple WRITE operations or improving efficiency.</t>
        <t>One important use case for this attribute arises in connection with
High-Performance Computing (HPC) workloads. These workloads often
involve concurrent writers modifying disjoint byte ranges of shared
files.</t>
        <t>When application data spans a data block in a client cache, delayed
transmission of WRITE data can result in clients modifying stale
data and overwriting updates written by others. Prompt transmission
of WRITE data enables the prompt detection of write holes and reduces
the risk of data corruption.</t>
      </section>
      <section anchor="write-durability">
        <name>WRITE Durability</name>
        <t>The uncacheable file data attribute does not, by itself, dictate
the <tt>stable_how</tt> value a client uses on WRITE operations.  The
protocol-level requirement is the following durability invariant:
when the application's write call returns successfully, the WRITE
data <bcp14>MUST</bcp14> be durable on the server.</t>
        <t>A client honoring the uncacheable file data attribute <bcp14>MAY</bcp14> satisfy
this invariant by either:</t>
        <ul spacing="normal">
          <li>
            <t>issuing WRITEs with <tt>stable_how</tt> of FILE_SYNC4 or DATA_SYNC4, in
which case the data is durable on the WRITE response, or</t>
          </li>
          <li>
            <t>issuing WRITEs with <tt>stable_how</tt> of UNSTABLE4 and a COMMIT that
completes before the application's write call returns.  If the
COMMIT response indicates a changed write verifier, the client
<bcp14>MUST</bcp14> re-issue the affected WRITEs from the application's buffer,
which remains available for the duration of the write call.</t>
          </li>
        </ul>
        <t>Clients <bcp14>MUST NOT</bcp14> defer COMMIT past the point at which the
application's write call returns, because no client-side copy of
the WRITE data is retained beyond that point and the data could
not otherwise be re-driven after a server reboot.</t>
        <t>The transient retention of WRITE data needed to complete an
in-flight UNSTABLE4 and COMMIT exchange is not considered "caching"
for the purposes of this attribute.  The attribute concerns the
long-lived retention of file data for the purpose of satisfying
future READs or combining future WRITEs.</t>
      </section>
      <section anchor="read-caching">
        <name>Read Caching</name>
        <t>The uncacheable file data attribute may also influence the use of
read caching. Retaining cached READ data while other clients
concurrently modify disjoint byte ranges of the same file can result
in read-modify-write operations based on stale data.</t>
        <t>Clients <bcp14>SHOULD</bcp14> ensure that cached file data is not reused without
first validating that the file has not changed.</t>
        <t>At a minimum, clients <bcp14>MUST</bcp14> revalidate metadata necessary to ensure
correctness of cached file data, including the change attribute and
file size. These attributes provide the primary mechanism for
detecting modification of file contents. Meeting this <bcp14>MUST</bcp14>
requirement satisfies the general <bcp14>SHOULD</bcp14> obligation above.</t>
        <t>Clients <bcp14>MAY</bcp14> revalidate additional attributes (e.g., modification
time or change time) as required by their local semantics or
application requirements.</t>
        <t>Failure to perform such revalidation can result in the client
presenting stale or inconsistent file state (e.g., incorrect size
or timestamps) to the application.</t>
        <t>Suppressing read caching in addition to suppressing write-behind
caching can further reduce the risk of stale-data overwrite in
multi-writer workloads. However, in some cases read caching may
remain appropriate when another NFSv4.2 mechanism ensures a
consistent view of the file, such as a delegation.</t>
      </section>
      <section anchor="relationship-to-direct-io">
        <name>Relationship to Direct I/O</name>
        <t>While similar in intent to O_DIRECT (<xref target="OPEN-O_DIRECT"/>) and
forcedirectio (<xref target="SOLARIS-FORCEDIRECTIO"/>), the uncacheable file
data attribute operates at the protocol level and is advisory.
Clients retain flexibility in how they satisfy the requirements
described above.</t>
      </section>
    </section>
    <section anchor="sec_setting">
      <name>Setting the Uncacheable File Data Attribute</name>
      <t>The uncacheable file data attribute provides a mechanism by which
a server or administrator can indicate that client-side caching of
file data for a file is unsuitable.</t>
      <t>In some deployments, applications or administrative tools may request
that this attribute be set on a file in order to influence client
behavior. For example, applications that require predictable data
visibility or that would otherwise rely on mechanisms such as
O_DIRECT may use this attribute as a protocol-visible hint to the
server.</t>
      <t>However, the setting of this attribute is subject to server policy.
The server is responsible for determining whether a request to set
or clear the attribute is permitted. This may depend on factors
such as administrative configuration, export policy, or access
control mechanisms.</t>
      <t>Requests that are not permitted <bcp14>MUST</bcp14> be rejected using existing
NFSv4 error codes (e.g., NFS4ERR_INVAL or NFS4ERR_PERM).</t>
      <t>One possible deployment model is for a server or administrator to
configure a mount (see <xref target="MOUNT"/>) option such that newly created
files under a given export are marked as uncacheable file data. In
such a configuration, a client may request setting of the attribute
at file creation time (e.g., via CREATE or OPEN createattrs).</t>
      <t>This approach is conceptually similar in intent to the Solaris
forcedirectio mount option (see <xref target="SOLARIS-FORCEDIRECTIO"/>), but
differs in scope and visibility in that it allows DIRECT-I/O-like
behavior to be applied without requiring changes to individual
applications.</t>
      <t>Unlike local mechanisms such as forcedirectio, the NFSv4.2 attribute
is visible to all clients accessing the file and is intended to
convey server-side knowledge or policy in a distributed environment.</t>
      <t>Changes to the uncacheable file data attribute while a file is
actively in use may not be immediately reflected in client behavior.
A client that has already opened a file <bcp14>MAY</bcp14> continue to operate
based on its existing caching behavior and is not required to
immediately alter its behavior in response to a change in the
attribute.</t>
      <t>Clients are expected to observe attribute changes through normal
NFSv4 mechanisms (e.g., GETATTR or revalidation) and apply updated
behavior as appropriate for subsequent operations.</t>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>Note to RFC Editor: please remove this section prior to publication.</t>
      <t>There is a prototype Hammerspace server which implements the
uncacheable file data attribute and a prototype Linux client which
treats the attribute as an indication to use O_DIRECT-like behavior
for file access and to revalidate file-associated metadata before
exposing cached state.</t>
      <t>For the prototype, all files created under the mount
point have the fattr4_uncacheable_file_data set to be true.</t>
      <t>Experience with the prototype indicates that the uncacheable file
data attribute can provide many of the practical benefits of O_DIRECT
without requiring application modification. For applications that
issue well-formed I/O requests, this approach has been observed to
improve performance in many cases, while also reducing memory
pressure and CPU utilization in the NFS client.</t>
    </section>
    <section anchor="xdr-for-uncacheable-attribute">
      <name>XDR for Uncacheable Attribute</name>
      <sourcecode type="xdr"><![CDATA[
///
/// typedef bool            fattr4_uncacheable_file_data;
///
/// const FATTR4_UNCACHEABLE_FILE_DATA       = 87;
///
]]></sourcecode>
    </section>
    <section anchor="extraction-of-xdr">
      <name>Extraction of XDR</name>
      <t>This document contains the external data representation (XDR)
<xref target="RFC4506"/> description of the uncacheable file attribute.  The XDR
description is presented in a manner that facilitates easy extraction
into a ready-to-compile format. To extract the machine-readable XDR
description, use the following shell script:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
#!/bin/sh
grep '^ *///' $* | sed 's?^ */// ??' | sed 's?^ *///$??'
<CODE ENDS>
]]></sourcecode>
      <t>For example, if the script is named 'extract.sh' and this document is
named 'spec.txt', execute the following command:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
sh extract.sh < spec.txt > uncacheable_prot.x
<CODE ENDS>
]]></sourcecode>
      <t>This script removes leading blank spaces and the sentinel sequence '///'
from each line. XDR descriptions with the sentinel sequence are embedded
throughout the document.</t>
      <t>Note that the XDR code contained in this document depends on types from
the NFSv4.2 nfs4_prot.x file (generated from <xref target="RFC7863"/>).  This includes
both nfs types that end with a 4, such as offset4, length4, etc., as
well as more generic types such as uint32_t and uint64_t.</t>
      <t>While the XDR can be appended to that from <xref target="RFC7863"/>, the code snippets
should be placed in their appropriate sections within the existing XDR.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The uncacheable file data attribute does not introduce new
authentication or authorization mechanisms and does not alter
existing NFSv4.2 access control semantics. All operations that set
or clear the attribute are subject to existing access control and
server policy.</t>
      <t>In particular, a server <bcp14>MUST</bcp14> enforce appropriate authorization
checks for SETATTR operations that modify the fattr4_uncacheable_file_data
attribute. The ability to set or clear the attribute may be restricted
based on administrative configuration, export policy, or other
server-defined criteria.</t>
      <t>Because the attribute is visible to and may affect the behavior of
multiple clients, servers <bcp14>SHOULD</bcp14> consider the implications of
allowing unprivileged users to modify it. Inappropriate use of the
attribute could impact performance or data access patterns for other
clients accessing the same file.</t>
      <t>The uncacheable file data attribute is advisory and does not provide
a security boundary. Clients <bcp14>MUST NOT</bcp14> rely on the presence or absence
of this attribute to make access control decisions.</t>
      <t>Use of this attribute does not replace or modify existing cache
consistency mechanisms or data integrity protections provided by
NFSv4.2.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC4506">
          <front>
            <title>XDR: External Data Representation Standard</title>
            <author fullname="M. Eisler" initials="M." role="editor" surname="Eisler"/>
            <date month="May" year="2006"/>
            <abstract>
              <t>This document describes the External Data Representation Standard (XDR) protocol as it is currently deployed and accepted. This document obsoletes RFC 1832. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="67"/>
          <seriesInfo name="RFC" value="4506"/>
          <seriesInfo name="DOI" value="10.17487/RFC4506"/>
        </reference>
        <reference anchor="RFC7862">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 Protocol</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document describes NFS version 4 minor version 2; it describes the protocol extensions made from NFS version 4 minor version 1. Major extensions introduced in NFS version 4 minor version 2 include the following: Server-Side Copy, Application Input/Output (I/O) Advise, Space Reservations, Sparse Files, Application Data Blocks, and Labeled NFS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7862"/>
          <seriesInfo name="DOI" value="10.17487/RFC7862"/>
        </reference>
        <reference anchor="RFC7863">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 External Data Representation Standard (XDR) Description</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides the External Data Representation (XDR) description for NFS version 4 minor version 2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7863"/>
          <seriesInfo name="DOI" value="10.17487/RFC7863"/>
        </reference>
        <reference anchor="RFC8178">
          <front>
            <title>Rules for NFSv4 Extensions and Minor Versions</title>
            <author fullname="D. Noveck" initials="D." surname="Noveck"/>
            <date month="July" year="2017"/>
            <abstract>
              <t>This document describes the rules relating to the extension of the NFSv4 family of protocols. It covers the creation of minor versions, the addition of optional features to existing minor versions, and the correction of flaws in features already published as Proposed Standards. The rules relating to the construction of minor versions and the interaction of minor version implementations that appear in this document supersede the minor versioning rules in RFC 5661 and other RFCs defining minor versions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8178"/>
          <seriesInfo name="DOI" value="10.17487/RFC8178"/>
        </reference>
        <reference anchor="RFC8881">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 1 Protocol</title>
            <author fullname="D. Noveck" initials="D." role="editor" surname="Noveck"/>
            <author fullname="C. Lever" initials="C." surname="Lever"/>
            <date month="August" year="2020"/>
            <abstract>
              <t>This document describes the Network File System (NFS) version 4 minor version 1, including features retained from the base protocol (NFS version 4 minor version 0, which is specified in RFC 7530) and protocol extensions made subsequently. The later minor version has no dependencies on NFS version 4 minor version 0, and is considered a separate protocol.</t>
              <t>This document obsoletes RFC 5661. It substantially revises the treatment of features relating to multi-server namespace, superseding the description of those features appearing in RFC 5661.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8881"/>
          <seriesInfo name="DOI" value="10.17487/RFC8881"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="MOUNT" target="https://man7.org/linux/man-pages/man2/mount.2.html">
          <front>
            <title>mount(2) - mount filesystem</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
          <seriesInfo name="Linux" value="Programmer's Manual"/>
        </reference>
        <reference anchor="OPEN-O_DIRECT" target="https://man7.org/linux/man-pages/man2/open.2.html">
          <front>
            <title>open(2) - Linux system call for opening files (O_DIRECT)</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="SOLARIS-FORCEDIRECTIO" target="https://docs.oracle.com/en/operating-systems/solaris/oracle-solaris/11.4/manage-nfs/mount-options-for-nfs-file-systems.html">
          <front>
            <title>mount -o forcedirectio - Solaris forcedirectio mount option</title>
            <author>
              <organization>Oracle Solaris Documentation</organization>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="Solaris" value="Administration Guide"/>
        </reference>
      </references>
    </references>
    <?line 448?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Trond Myklebust, Mike Snitzer, Jon Flynn, Keith Mannthey, and Thomas
Haynes all worked on the prototype at Hammerspace.</t>
      <t>Rick Macklem, Chuck Lever, and Dave Noveck reviewed the document.</t>
      <t>Chris Inacio, Chuck Lever, Brian Pawlowski, and Gorry Fairhurst
helped guide this process.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
nfx6yEj9D9iDQW6CRgAA

-->

</rfc>
