<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd">
<?rfc toc="yes"?>
<?rfc tocompact="yes"?>
<?rfc tocdepth="3"?>
<?rfc tocindent="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc category="std" docName="draft-mzhang-nfsv4-sequence-id-calibration-01"
     ipr="trust200902">
  <front>
    <title abbrev="Sequence ID calibration">Sequence ID calibration for
    mis-ordered requests</title>

    <author fullname="Zhang Mingqian" initials="M" role="editor"
            surname="Zhang">
      <organization>Huawei Technologies Co.</organization>

      <address>
        <postal>
          <street/>

          <city/>

          <code/>

          <region/>

          <country>China</country>
        </postal>

        <phone/>

        <facsimile/>

        <email>zhangmingqian.zhang@huawei.com</email>
      </address>
    </author>

    <author fullname="Yang Jing" initials="J" role="editor" surname="Yang">
      <organization>Huawei Technologies Co.</organization>

      <address>
        <postal>
          <street/>

          <city/>

          <region/>

          <code/>

          <country>China</country>
        </postal>

        <phone/>

        <facsimile/>

        <email>yangjing8@huawei.com</email>

        <uri/>
      </address>
    </author>

    <author fullname="Sai Chakravarthy Tangudu" initials="C" role="editor"
            surname="Tangudu">
      <organization>Huawei Technologies Co.</organization>

      <address>
        <postal>
          <street/>

          <city/>

          <region/>

          <code/>

          <country>India</country>
        </postal>

        <phone/>

        <facsimile/>

        <email>sai.chakravarthy.tangudu@huawei.com</email>

        <uri/>
      </address>
    </author>

    <author fullname="Rijesh Kunhi Parambattu" initials="K" role="editor"
            surname="Parambattu">
      <organization>Huawei Technologies Co.</organization>

      <address>
        <postal>
          <street/>

          <city/>

          <region/>

          <code/>

          <country>India</country>
        </postal>

        <phone/>

        <facsimile/>

        <email>rijesh.kunhi.parambattu@huawei.com</email>

        <uri/>
      </address>
    </author>

    <date day="8" month="March" year="2023"/>

    <area>Transport</area>

    <workgroup>Network File System Version 4</workgroup>

    <keyword>Mis-ordered request</keyword>

    <abstract>
      <t>This document updates RFC8881, Network File System (NFS) version 4
      minor version 1, by adding two operations to prevent the client from
      destroying session when getting the reply of a mis-ordered request with
      NFS4ERR_SEQ_MISORDERED.</t>

      <t>In NFSv4 minor version 1, sequence ID is used to ensure that the size
      of the needed reply cache is tightly bounded. If the server gets a
      mis-ordered request, the client will often break the session and
      establish a new session with the server. This approach results in a
      significant burden on the client and the server. During the process of
      session rebuilding, IO performance will be affected. This is especially
      troublesome when network latency is substantial, as, for example when
      client and server are in different locations. This document will propose
      extensions to NFSv4 that would allow client reconnection to be dispensed
      with.</t>
    </abstract>

    <note title="Requirements Language">
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
      "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
      document are to be interpreted as described in <xref
      target="RFC2119">RFC 2119</xref>.</t>
    </note>
  </front>

  <middle>
    <section title="Introduction">
      <t>In NFSv4 minor version 1, according to RFC 8881, Error code
      NFS4ERR_SEQ_MISORDERED is returned by three operations.<list
          style="symbols">
          <t>The first operation is CREATE_SESSION. csa_sequence is one
          argument of this operation, which is used for serializing
          CREATE_SESSION via a per-client ID sequence number by the client. In
          CREATE_SESSION request, csa_sequence should be equal to ether the
          sequence ID in the client ID's slot(a retry), or the slot's sequence
          ID + 1(correct normal request). Otherwise, NFS4ERR_SEQ_MISORDERED
          will be returned from the server.</t>

          <t>The second operation is SEQUENCE. sa_sequenceid is one argument
          of this operation. In SEQUENCE request, If the difference between
          sa_sequenceid and the server's cached sequence ID at the slot ID is
          two (2) or more, or if sa_sequenceid is less than the cached
          sequence ID (accounting for wraparound of the unsigned sequence ID
          value), then the server MUST return NFS4ERR_SEQ_MISORDERED.</t>

          <t>The third operation is CB_ SEQUENCE, which is similar to
          SEQUENCE. csa_sequenceid is one argument of this operation. In CB_
          SEQUENCE request, If the difference between csa_sequenceid and the
          client&rsquo;s cached sequence ID at the slot ID is two (2) or more,
          or if csa_sequenceid is less than the cached sequence ID (accounting
          for wraparound of the unsigned sequence ID value), then the client
          MUST return NFS4ERR_SEQ_MISORDERED.</t>
        </list></t>

      <t>Mis-order requests may happen as a result of network partition,
      software bug, etc. For such request, the operations subsequent to
      SEQUENCE, if any, are not processed, and so slots state (sequence ID,
      cached reply) are not changed. That means, requests before this
      mis-ordered one were processed correctly and the session state was
      correct. In the current implementation, for most of the clients, this
      error code will trigger the requester breaking the session and creating
      a new session. This process unacceptably interferes with ongoing IO
      operations, especially for the IOs on the normal slots.</t>

      <t>For example of a persistent session, there are several slots on a
      session. Requests on the slots are being processed correctly and replies
      are being received normally. Suppose on one slot of them, a mis-ordered
      request is received by the server and a response with
      NFS4ERR_SEQ_MISORDERED error returns to the client. Then, the client is
      going to destroy the session and establish a new session. Before the new
      session is ready, new requests will not be performed until the pending
      operations finished. The effects on IOs of normal slots will become
      dramatic especially in network latency is substantial, as, for example
      when client and server are in different locations. The client has to
      break the session because it does not know what sequence is expected for
      that session and slot. This current cached sequence information would be
      available to the client eliminating any need to break the session.</t>

      <t>Two operations, SEQENCE_QUERY and CB_SEQENCE_QUERY, are added to
      query sequence ID cached when getting NFS4ERR_SEQ_MISORDERED error.</t>
    </section>

    <section title="Operations for Seqence ID calibration">
      <section title="Operation 59: SEQENCE_QUERY-Query sequence ID of designated session and slot for calibration">
        <section title="ARGUMENTS">
          <t>struct SEQUENCE_QUERY4args {</t>

          <t>sessionid4 sqa_sessionid;</t>

          <t>slotid4 sqa_slotid;</t>

          <t>};</t>
        </section>

        <section title="RESULTS">
          <t>struct SEQUENCE_QUERY4resok {</t>

          <t>sessionid4 sqr_sessionid;</t>

          <t>slotid4 sqr_slotid;</t>

          <t>sequenceid4 sqr_sequenceid;</t>

          <t>};</t>

          <t>union SEQUENCE_QUERY4res switch (nfsstat4 sqr_status) {</t>

          <t>case NFS4_OK: SEQUENCE_QUERY4resok sqr_resok4;</t>

          <t>default: void;</t>

          <t>};</t>
        </section>

        <section title="DESCRIPTION">
          <t>The SEQUENCE_QUERY operation is used by the client to query
          sequence ID cached for designated session and slot.</t>

          <t>SEQUENCE_QUERY MUST appear as the sole operation type of any
          COMPOUND in which it appears. Multiple SEQUENCE_QUERY operations can
          be used in one COMPOUND to query multiple sequence IDs cached for
          multiple slots. The error NFS4ERR_NOT_ONLY_OP will be returned when
          that constraint is not met. Operations other than SEQUENCE,
          SEQENCE_QUERY, BIND_CONN_TO_SESSION, EXCHANGE_ID, CREATE_SESSION,
          and DESTROY_SESSION, MUST NOT appear as the first operation in a
          COMPOUND.</t>

          <t>If SEQUENCE_QUERY is received on a connection not associated with
          the session via CREATE_SESSION or BIND_CONN_TO_SESSION, and
          connection association enforcement is enabled (see Section 18.35),
          then the server returns NFS4ERR_CONN_NOT_BOUND_TO_SESSION.</t>

          <t>The sqa_sessionid argument identifies the session to which this
          request applies. The sqr_sessionid result MUST equal
          sqa_sessionid.</t>

          <t>The sqa_slotid argument is the index in the reply cache for the
          request. The sqr_slotid result MUST equal sqa_slotid.</t>

          <t>The sqr_sequenceid field is the cached sequence ID on the slot.
          The client SHOULD use this value to calibrate sa_sequenceid in the
          next SEQUENCE operation, that is, sqr_sequenceid+1 SHOULD be used as
          the sequence ID of the next request on this slot.</t>
        </section>

        <section title="IMPLEMENTATION">
          <t>For CREATE_SESSION, SEQUENCE operations, if the sequence ID in
          the request is mis-ordered(see RFC8881 18.46.3 Section), the replier
          will fail the request by NFS4ERR_SEQ_MISORDERED and keep the reply
          cache unchanged on the slot of this session. When getting
          NFS4ERR_SEQ_MISORDERED error code in the response, the client SHOULD
          query the cached sequence ID of the slot and session by
          SEQUENCE_QUERY to calibrate its sequence ID for the subsequent
          requests. That is, the sequence ID in next request on this slot
          SHOULD be sqr_sequenceid+1.</t>

          <t>SEQUENCE_QUERY will leave the state of the slot (sequence ID,
          cached reply) unchanged and lease of state related to the client ID
          not renewed.</t>

          <t>If the client is querying an unknown session ID to the server,
          the server SHOULD return NFS4ERR_BADSESSION in the response.</t>

          <t>If the client is attempting to access a slot the replier does not
          have in its slot table (It is possible the slot may have been
          retired), NFS4ERR_BADSLOT SHOULD be returned in the response.</t>
        </section>
      </section>

      <section title="Operation 15:CB_SEQUENCE_QUERY- Query backchannel sequence ID of designated session and slot for calibration">
        <section title="ARGUMENT">
          <t>struct CB_SEQUENCE_QUERY4args {</t>

          <t>sessionid4 csqa_sessionid;</t>

          <t>slotid4 csqa_slotid;</t>

          <t>};</t>
        </section>

        <section title="RESULT">
          <t>struct CB_SEQUENCE_QUERY4resok {</t>

          <t>sessionid4 csqr_sessionid;</t>

          <t>slotid4 csqr_slotid;</t>

          <t>sequenceid4 csqr_sequenceid;</t>

          <t>};</t>

          <t>union CB_SEQUENCE_QUERY4res switch (nfsstat4 csqr_status) {</t>

          <t>case NFS4_OK: CB_SEQUENCE_QUERY4resok csqr_resok4;</t>

          <t>default: void;</t>

          <t>};</t>
        </section>

        <section title="DESCRIPTION">
          <t>CB_SEQUENCE_QUERY is used to calibrate sequence ID of the call
          back request of the server for the backchannel of the session.</t>

          <t>For each CB_COMPOUND request, the first operation MUST be
          CB_SEQUENCE or CB_SEQUENCE_QUERY. If any other operation is in the
          first position of CB_COMPOUND except CB_SEQUENCE_QUERY and
          CB_SEQUENCE, NFS4ERR_OP_NOT_IN_SESSION MUST be returned.</t>

          <t>If the first operation is CB_SEQUENCE, CB_SEQUENCE MUST appear
          once. The error NFS4ERR_SEQUENCE_POS MUST be returned when
          CB_SEQUENCE is found in any position in a CB_COMPOUND beyond the
          first. If the first operation of a CB_COMPOUND is CB_SEQUENCE_QUERY,
          CB_SEQUENCE_QUERY MUST be the sole operation type. There can be
          multiple CB_SEQUENCE_QUERY in this CB_COMPOUND to request multiple
          cached sequence IDs of designated sessions and slots. If any other
          operations are found in this CB_COMPOUND, NFS4ERR_NOT_ONLY_OP MUST
          be returned.</t>

          <t>The csqa_sessionid argument identifies the session to which this
          request applies. The csqr_sessionid result MUST equal
          csqa_sessionid.</t>

          <t>The csqa_slotid argument is the index in the reply cache for the
          request. The csqr_slotid result MUST equal sqa_slotid.</t>

          <t>The csqr_sequenceid field is the cached sequence ID on the slot.
          The server SHOULD use this value to calibrate csa_sequenceid in the
          next SEQUENCE operation, that is, csqr_sequenceid+1 SHOULD be used
          as the sequence ID of the next request on this slot.</t>
        </section>

        <section title="IMPLEMENTATION">
          <t>For CB_SEQUENCE operations, if the sequence ID in the call back
          request is mis-ordered(see RFC8881 20.9 Section), the client will
          fail this request by NFS4ERR_SEQ_MISORDERED and keep the reply cache
          unchanged on the slot of this session. When getting
          NFS4ERR_SEQ_MISORDERED error code in the response, the server SHOULD
          query the cached sequence ID of the slot and session by
          CB_SEQUENCE_QUERY to calibrate its sequence ID for the subsequent
          requests. That is, the sequence ID in next call back request on this
          slot should be csqr_sequenceid+1. CB_SEQUENCE_QUERY will leave the
          state of the slot (sequence ID, cached reply) unchanged and the
          reply of CB_SEQUENCE_QUERY will not renew the lease of state related
          to the client ID on the server side.</t>

          <t>If the server is querying an unknown session ID to the client,
          the client SHOULD return NFS4ERR_BADSESSION in the response.</t>

          <t>If the server is attempting to access a slot the client does not
          have in its slot table (It is possible the slot may have been
          retired), NFS4ERR_BADSLOT SHOULD be returned in the response.</t>
        </section>
      </section>
    </section>

    <section anchor="IANA" title="IANA Considerations">
      <t>This memo includes no request to IANA.</t>

      <t>Note to RFC Editor: this section may be removed on publication as an
      RFC.</t>
    </section>

    <section anchor="Security" title="Security Considerations">
      <t>All considerations from RFC 8881 security relative sections
      [RFC8881].</t>
    </section>

    <section anchor="Acknowledgements" title="Acknowledgements">
      <t>The authors would like to acknowledge David Noveck for reviews of the
      various versions of the draft.</t>
    </section>
  </middle>

  <back>
    <references title="Normative References">
      <?rfc include="reference.RFC.2119"?>

      <?rfc include='reference.RFC.8881'?>
    </references>

    <references title="Informative References"/>

    <section title="An Appendix"/>
  </back>
</rfc>
