<?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-09" 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-09"/>
    <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 56?>

<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 70?>

<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 81?>

<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="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="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="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>
        <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>
      </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 450?>

<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, Brian Pawlowski, and Gorry Fairhurst helped guide
this process.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIADMFQGoAA61c/3LbRpL+f55iVt4qWSmSsh1d4uiSeGVJtrVnSz5J3mwq
ldMOgSGJCAS4GEAS43Oe5Z7lnuz6654BBiRty3fnqsQkCMz09M+vf8DD4VDV
WZ3bfX2Qplkx1abQ74rEJDNrxrnVLzL635GpjT6o6yobN7XVdalPX1zc7I2e
KDMeV/Zmf+0RlZZJYea0bFqZST3MbD0ZFhN3szdsuluHE7rVDR99pxJT22lZ
Lfe1q1OV0rd9/f7o4PL4g0rKwtnCNW5f11VjVbao+JOrnzx69N0joqGyZl+/
tIWtTK5uy+p6WpXNYl+f2hrf5AwXS1fbuf6brVxWFnpPXdsl/Zru65OitlVh
6+ERSFXK1aZIr0xeFkTE0jq1yPb1L3WZDLQrq7qyE0eflnP5QAedm8WCWDfQ
STmf26J2vyplmnpWVvtKD5WmP1lB5F+O9CuzLGhFXBL2XM7KuXHx9bKamiL7
3dRE5j79QEtWbmESy7/aucnyfZ2X09my+ssU30a0rVJFWc3pmRtLe+rzF4dP
Hj/+zn/c+5dH3/iP3z795kn38Wv/8enjb/e6j0/Dx6dPH+8rlRWTeOk3Z+9O
L/eZFq8487Ip6odPdvRQPmqWKrNbbjPV1Nb7elbXC7e/uzs3xbcjOuVunhXN
Hb4OF2ZqHT492eUlRk9Gs3qe8+MtJ+nPENzZ16/xoG4f1Iuq/M0mNd8iuvPk
0ZM9/upslVmHM8gKWh7e11tvq3JaMXe3nX5jisbkW3TL2dvj0+HZ1dHJ+fFh
/5zlwhZyTNlfjqgTk+eaWMS/w4L4+PphWGPnf8EELPX/xYOLs9cH5ycXwxdn
54fHQtLJ2boA9bDEKRKbZhWtk5W00UWZmypzK9fl9nIBBd14NjIJR2czSW6h
m7u2wIEqUqFiOhSuuV0na+/KfcPw9fHj0R54QGeCvxB1GMpmbkiE4Cr7jbDS
J7l0xqu3BzkqkwYWalraW1Z9/RF18Y+Swhyk86zIXF3x0/plk6V2S6nhcKjN
GJeJ+2qTz7kJPmf0RD/0nnNHJ3kGX8FOoyzypSYWwdKU/DB0tLyGq4ROlRNW
K5BryJnQ4VJbwRFncxL8jQ0PmyKxI3VWkKeaW6+h5KTIQeVZwnQ70pklLTHJ
G0s3ezJkYb+bGtuZucnKaqDJ3+t6ZiuriXtFqdk3mirNfrepnttkRq7KzVn9
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
gsyX+DdCRup/ANaU/G2LRgAA

-->

</rfc>
