<?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.4 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-venhoek-nts-pool-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.0 -->
  <front>
    <title abbrev="NTS pools">NTS extensions for enabling pools</title>
    <seriesInfo name="Internet-Draft" value="draft-venhoek-nts-pool-00"/>
    <author fullname="David Venhoek">
      <organization>Tweede golf B.V.</organization>
      <address>
        <email>david@tweedegolf.com</email>
      </address>
    </author>
    <author fullname="Folkert de Vries">
      <organization>Tweede golf B.V.</organization>
      <address>
        <email>folkert@tweedegolf.com</email>
      </address>
    </author>
    <author fullname="Marc Schoolderman">
      <organization>Tweede golf B.V.</organization>
      <address>
        <email>marc@tweedegolf.com</email>
      </address>
    </author>
    <date year="2023" month="December" day="22"/>
    <area>INT</area>
    <workgroup>ntp</workgroup>
    <keyword>NTP</keyword>
    <keyword>NTS</keyword>
    <abstract>
      <?line 48?>

<t>The aim of this document is to describe a proof of concept system for NTS pools that are able to be used by clients without any knowledge beyond plain NTS. The work here focuses purely on creating an intermediate NTS Key Exchange server that can be configured with the addresses of multiple downstream servers and distribute load between them. The parts of pool operation dealing with managing the list of servers are left out of scope for this work.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://pendulum-project.github.io/nts-pool-draft/draft-nts-pool.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-venhoek-nts-pool/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/pendulum-project/nts-pool-draft"/>.</t>
    </note>
  </front>
  <middle>
    <?line 52?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>NTS <xref target="RFC8915"/> provides authenticity and limited confidentiality for NTP <xref target="RFC5905"/>. However, the key exchange preceding the actual time exchange makes it hard to implement a pool for NTS supporting servers in a manner similar to the DNS resolution approach taken to provide the NTP Pool <xref target="Pool"/>.</t>
      <t>This document aims to provide extensions to the NTS Key Exchange sessions that allow for an implementation of a pool for NTS that:</t>
      <ul spacing="normal">
        <li>
          <t>is usable without changes to the client,</t>
        </li>
        <li>
          <t>avoids constraining the downstream time source's cookie format,</t>
        </li>
        <li>
          <t>avoids downstream time sources having potential access to all traffic.</t>
        </li>
      </ul>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>Throughout the text, the terms client and server will refer to those roles in an NTS Key Exchange session as specified in <xref target="RFC8915"/>. Please note that this means that the pool itself operates in both roles: As a server towards users of the pool, and as a client towards the downstream time sources.</t>
      <t>Where further specificity of the role of a participant is needed, we will use the term user to indicate a user of a pool, the term pool to indicate the pool itself, and downstream time source for the time servers that the pool delegates the actual providing of time to.</t>
      <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="general-pool-architecture">
      <name>General pool architecture</name>
      <t>We propose a pool model where the pool provides an NTS Key Exchange service to the outside world. A major advantage of this model is that it avoids having to distribute certificates to all downstream time servers. Contrary to <xref target="RFC8915"/>, there is no direct TLS connection between the client and the selected downstream time service.</t>
      <t>In <xref target="RFC8915"/>, cookies are generated based on key material that is extracted from this TLS connection. Our proposed model instead establishes two TLS connections: between the client and the pool, and between the pool and the downstream time server. Because cookies need to be generated using key material from the client, the pool extracts this key material and sends it to the server. The server uses this key material (rather than key material extracted from its connection with the pool) to generate cookies. This way, the pool can remain oblivious to the cookie format of the downstream time server.</t>
    </section>
    <section anchor="client-facilities-for-pools">
      <name>Client facilities for pools</name>
      <t>One challenge with getting multiple time sources from a single NTS Key Exchange server is that clients that allow for explicit pool configuration want to end up with multiple independent time sources. Without additional support, a user of a pool might receive a downstream time source it already has from an NTS Key Exchange session, resulting in that session being a waste of time. To avoid unneccessary NTS Key Exchange sessions, we also introduce a record that clients can use to indicate which downstream time servers they don't want, because they already have them.</t>
    </section>
    <section anchor="pool-authentication">
      <name>Pool authentication</name>
      <t>The extensions proposed below allow a client to establish an NTS association with a server with arbitrary keys, not just those extracted from the TLS session. To discourage misuse, it is not desirable to allow arbitrary clients to do this.</t>
      <t>Therefore, a server supporting the Fixed Key Request record from <xref target="fixedkey"/> <bcp14>MUST</bcp14> authenticate clients using the Fixed Key Request record using TLS client certificates. Support <bcp14>MUST</bcp14> be disabled by default, and when enabled, <bcp14>MUST</bcp14> be limited to an explicitly configured list of clients.</t>
    </section>
    <section anchor="new-nts-record-types">
      <name>New NTS record types</name>
      <section anchor="keepalive">
        <name>Keep Alive</name>
        <t>Record Type Number: To be assigned by IANA (draft implementations: 0x4000)
Critical bit: 0</t>
        <t>Indicates a desire to keep the TLS connection active for more than one message exchange. This can be used by a pool to reuse connections to downstream NTS Key Exchange servers multiple times, reducing load on both the pool and downstream servers.</t>
        <t>Client <bcp14>MUST</bcp14> send this record with a body of size 0. Client <bcp14>MUST NOT</bcp14> use Keep Alive unless the request contains a record type allowing the use of Keep Alive. Within this specification, that is limited to the Supported Protocol List and Fixed Key Request records. A server <bcp14>SHOULD</bcp14> ignore any body for the Keep Alive record.</t>
        <t>When supported by a server and allowed for the request in question, the server <bcp14>MUST</bcp14> include a Keep Alive record with a body of size 0 in the response and keep the TLS connection active after the response to handle further requests from the client. A client <bcp14>SHOULD</bcp14> ignore any body for the Keep Alive record.</t>
        <t>When included in the request or response, the client respectively server <bcp14>MAY</bcp14>, contrary to the requirements in <xref target="RFC8915"/>, send another request or response. Any TLS "close_notify" <bcp14>SHALL</bcp14> be sent only after the last request or response respectively to use the connection.</t>
        <t>Once a Keep Alive record has been sent by a client, or honored by a server, the TLS connection over which it was sent <bcp14>MUST NOT</bcp14> be used for key extraction. Doing so anyway can result in the reuse of keys and may result in loss of confidentiality or authenticity of the resulting NTP exchanges.</t>
      </section>
      <section anchor="supportedprotocol">
        <name>Supported Next Protocol List</name>
        <t>Record Type Number: To be assigned by IANA (draft implementations: 0x4004)
Critical bit: 1</t>
        <t>This record can be used by a pool to query downstream servers about which next protocols they support.</t>
        <t>Client <bcp14>MUST</bcp14> send with no body. Clients <bcp14>MAY</bcp14> use Keep Alive in combination with this record. Contrary to <xref target="RFC8915"/>, a request with this record <bcp14>SHOULD NOT</bcp14> include a "Next Protocol Negotiation", "AEAD Algorithm Negotiation" or "Fixed Key Request" record.</t>
        <t>Server <bcp14>MUST</bcp14> ignore any client body sent and <bcp14>MUST</bcp14> send in response a Supported Next Protocol List record with as data a list of 16-bit integers, giving the protocol IDs the server supports.</t>
        <t>When included, the server <bcp14>MUST NOT</bcp14> negotiate a next protocol, AEAD algorithm, or keys for this request.</t>
      </section>
      <section anchor="supportedalgorithm">
        <name>Supported Algorithm List</name>
        <t>Record Type Number: To be assigned by IANA (draft implementations: 0x4001)
Critical bit: 1</t>
        <t>This record can be used by a pool to query downstream servers about which AEAD algorithms they support.</t>
        <t>Client <bcp14>MUST</bcp14> send with no body. Clients <bcp14>MAY</bcp14> use Keep Alive in combination with this record. Contrary to <xref target="RFC8915"/>, a request with this record <bcp14>SHOULD NOT</bcp14> include a "Next Protocol Negotiation", "AEAD Algorithm Negotiation" or "Fixed Key Request" record.</t>
        <t>Server <bcp14>MUST</bcp14> ignore any client body sent and <bcp14>MUST</bcp14> send in response a Supported Algorithm List record with as data a list of tuples of two 16-bit integers, the first giving an algorithm ID for the AEAD and the second giving the length of the key for that algorithm ID.</t>
        <t>When included, the server <bcp14>MUST NOT</bcp14> negotiate a next protocol, AEAD algorithm, or keys for this request.</t>
        <t>We include the algorithm key size in the response so that a pool does not itself need knowledge of which AEAD algorithms exist, and what their key sizes are. Instead, it can use the provided key length when extracting keys from the TLS connection between end user and pool. This allows adoption of new AEAD algorithms without any changes being needed for the pool software.</t>
      </section>
      <section anchor="fixedkey">
        <name>Fixed Key Request</name>
        <t>Record Type Number: To be assigned by IANA (draft implementations: 0x4002)
Critical Bit: 1</t>
        <t>When a client is properly authenticated, the server <bcp14>SHOULD NOT</bcp14> perform Key Extraction but rather use the keys provided by the client in the extension field. This allows a pool to do key negotiation on behalf of its users with the downstream NTS Key Exchange servers, even though it terminates the TLS connection.</t>
        <t>When used, the client <bcp14>MUST</bcp14> provide an AEAD Algorithm Negotiation record with precisely one algorithm, and a Next Protocol Negotiation record with precisely one next protocol. The data in the Fixed Key Request record must have length twice the key length N of the AEAD algorithm in the AEAD Algorithm Negotiation record. The first N bytes <bcp14>MUST</bcp14> be the C2S Key and the second set of N bytes <bcp14>MUST</bcp14> be the S2C key. Clients <bcp14>MAY</bcp14> use Keep Alive in combination with this record.</t>
        <t><bcp14>MUST NOT</bcp14> be sent by a server. Server <bcp14>SHOULD</bcp14> treat the extension field as unknown when sent by any client not authorized to make fixed key requests.</t>
      </section>
      <section anchor="serverdeny">
        <name>NTP Server Deny</name>
        <t>Record Type Number: To be assigned by IANA (draft implementations: 0x4003)
Critical Bit: 0</t>
        <t>When provided by a client, indicates a desire to connect to a server other than the server specified in the record. This can be used to ensure a client receives independent NTP servers from one NTS Key Exchange server without having to potentially try multiple times to get a new server.</t>
        <t>A client <bcp14>MAY</bcp14> send multiple of these records if desired. The data in the record <bcp14>SHOULD</bcp14> match that given through an NTPv4 Server Negotiation received in an earlier request from the same NTS Key Exchange server.</t>
        <t><bcp14>MUST NOT</bcp14> be sent by a server. Server <bcp14>MAY</bcp14> at its discretion ignore the request from the client and still provide the given server in an NTPv4 Server Negotiation record.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="pools-position">
        <name>Pool's position</name>
        <t>In the pool design presented above, the pool effectively acts as a man in the middle between the user and the ultimate time source during the NTS Key Exchange portion of the session. This means that the pool has access to the key material of these sessions. Although this is a small additional risk, we consider this acceptable because the pool could already always assign sessions for a user to time servers it controls anyway.</t>
        <t>The fact that the pool also gets access to key material makes it less advisable to have a pool as a downstream time source for another pool, as this increases the number of actors with access to the key material even further.</t>
        <t>The design above does avoid sharing key material between all downstream time sources. As a consequence, a downstream time source in the pool will not be able to break confidentiality or authenticity of traffic with other downstream time sources of the pool. Furthermore, any traffic directly with the downstream time source has no key material involved that is known to the pool.</t>
      </section>
      <section anchor="error-handling">
        <name>Error handling</name>
        <t>To avoid giving multiple downstream time sources access to the key material of the end user, it is important that the keys extracted from the TLS session between the user and the pool are sent to at most one downstream time source. If an error occurs after sending the Fixed Key Request record, either with the TLS connection between the pool and the downstream time source, or by being explicitly reported by the downstream time source to the pool, the pool <bcp14>SHOULD</bcp14> return an error to the user. Retrying with a different downstream time source during the same TLS session may unintentionally leave the user vulnerable to the operator of the originally selected downstream time source.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to allocate the following entries in the Network Time Security Key Establishment Record Types registry <xref target="RFC8915"/>:</t>
      <table>
        <thead>
          <tr>
            <th align="left">Record Type Number</th>
            <th align="left">Description</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">[[TBD]]</td>
            <td align="left">Keep Alive</td>
            <td align="left">[[this memo]] <xref target="keepalive"/></td>
          </tr>
          <tr>
            <td align="left">[[TBD]]</td>
            <td align="left">Supported Next Protocol List</td>
            <td align="left">[[this memo]] <xref target="keepalive"/></td>
          </tr>
          <tr>
            <td align="left">[[TBD]]</td>
            <td align="left">Supported Algorithm List</td>
            <td align="left">[[this memo]] <xref target="supportedalgorithm"/></td>
          </tr>
          <tr>
            <td align="left">[[TBD]]</td>
            <td align="left">Fixed Key Request</td>
            <td align="left">[[this memo]] <xref target="fixedkey"/></td>
          </tr>
          <tr>
            <td align="left">[[TBD]]</td>
            <td align="left">NTP Server Deny</td>
            <td align="left">[[this memo]] <xref target="serverdeny"/></td>
          </tr>
        </tbody>
      </table>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC8915">
          <front>
            <title>Network Time Security for the Network Time Protocol</title>
            <author fullname="D. Franke" initials="D." surname="Franke"/>
            <author fullname="D. Sibold" initials="D." surname="Sibold"/>
            <author fullname="K. Teichel" initials="K." surname="Teichel"/>
            <author fullname="M. Dansarie" initials="M." surname="Dansarie"/>
            <author fullname="R. Sundblad" initials="R." surname="Sundblad"/>
            <date month="September" year="2020"/>
            <abstract>
              <t>This memo specifies Network Time Security (NTS), a mechanism for using Transport Layer Security (TLS) and Authenticated Encryption with Associated Data (AEAD) to provide cryptographic security for the client-server mode of the Network Time Protocol (NTP).</t>
              <t>NTS is structured as a suite of two loosely coupled sub-protocols. The first (NTS Key Establishment (NTS-KE)) handles initial authentication and key establishment over TLS. The second (NTS Extension Fields for NTPv4) handles encryption and authentication during NTP time synchronization via extension fields in the NTP packets, and holds all required state only on the client via opaque cookies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8915"/>
          <seriesInfo name="DOI" value="10.17487/RFC8915"/>
        </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="RFC5905">
          <front>
            <title>Network Time Protocol Version 4: Protocol and Algorithms Specification</title>
            <author fullname="D. Mills" initials="D." surname="Mills"/>
            <author fullname="J. Martin" initials="J." role="editor" surname="Martin"/>
            <author fullname="J. Burbank" initials="J." surname="Burbank"/>
            <author fullname="W. Kasch" initials="W." surname="Kasch"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Network Time Protocol (NTP) is widely used to synchronize computer clocks in the Internet. This document describes NTP version 4 (NTPv4), which is backwards compatible with NTP version 3 (NTPv3), described in RFC 1305, as well as previous versions of the protocol. NTPv4 includes a modified protocol header to accommodate the Internet Protocol version 6 address family. NTPv4 includes fundamental improvements in the mitigation and discipline algorithms that extend the potential accuracy to the tens of microseconds with modern workstations and fast LANs. It includes a dynamic server discovery scheme, so that in many cases, specific server configuration is not required. It corrects certain errors in the NTPv3 design and implementation and includes an optional extension mechanism. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5905"/>
          <seriesInfo name="DOI" value="10.17487/RFC5905"/>
        </reference>
        <reference anchor="Pool" target="https://www.ntppool.org">
          <front>
            <title>NTP Pool website</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 195?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors thank Marlon Peeters for their input and discussions during the writing of this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1a63Ibx5X+P0/RC/1wskVCoiNnbVY2CSVKNmslSivSVrlc
rq3GTANoc2YamZ4BhNB6lzzLPtl+55zumR5cKCfr7K+tUonAoKf7XL9z69PT
06y1bWnO1eT69kaZD62pvXW1V3PXKFPrWWnrhVo5V/pJpmezxqzD2vAs161Z
uGZ7rnxbZFnh8lpX2K9o9Lw9XZt66czdad36U3rh9MmTzHezyno6pd2usPLq
xe1LpR4pXXqHvW1dmJXBf3U7OVETU9jWNVaX9OXq4hn+gLLJ1bvbl5Os7qqZ
ac6zAkScZznoBvmdP1dt05kMlP4u043ROOP6Ntu45m7RuG51rup2ld2ZLZ4U
55k6Vde3b+XPTQaKO+z1SKmw9v3X9EVIfY8tSB5f00/0uNK2pCV/Nh90tSrN
NHcVPddNvjxXy7Zd+fPHj5MfH2M7bG3bZTcDs8RoV3bV6apxP5m8fdwLiuU3
wdoSvPkWa+Nuu+9MZbepdTtvPxYdxIfTZVuVkyzTXbt0DfGN3ZWad2UpKptc
6rUt1Heiswn/6pqFru1fdQt1navbjTGFUQtXztWz6XdTXmJECJOC3v5zy0to
BbE7OXDKS1femaZV2Oi7xhr/dx80lw1+wVGvoQd1ky/BfWGaStd/91kVdtg7
KKsdNmvtGoai1LuXz7/86uyL8yyz9Xznhy++evIFfXwLCs5541Y3C9MOtrHZ
bKYwR1YQ6JI14pKwSn5RbczM29Zk2enpqdIz3zY6b7PsdmmUtpVyc9UurVfw
va6C2yh8bh3k6/PGzrBGwVKwCP/gIrlZtcpvfWsqdvLel7GJbmG5eGFWGtoB
73beFGq2VXlpsbNXG9ia67Cs3qq72m1KUywMFm5dXahVqW1NG04V0UYOp5YG
G85BmTderbrGlFvlapXDLVtyJV0rW7dQDhwdls7k/IfZqhcf8qWusbc3zdo0
QlyO1SAKXMztAnsVTA9+A81F0RhPh4DNqitbC4+DSDY1xGV0FfbxOLBQhcVD
O+twXuk0GDSk4po2qoT2lW5a3opEo9zKNGwtEKpmRORzYVB6Qd+IgBJ70gv9
OeC7NHM86+R5jl1Y4qwsEs5UNFrZoiih3Ufqqm4bV3Q5HZVlJIr7+2BeHz+S
FuFh4JA8GNqwuW23zE9pK9hHIYIh5ARe0m+i37eyC9nix49T9Y3bGFB4wlQD
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
AAA=

-->

</rfc>
