Re: [quicwg/base-drafts] Output of the discard keys design team (#2673)
ianswett <notifications@github.com> Thu, 09 May 2019 16:17 UTC
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0C63B1202AC for <quic-issues@ietfa.amsl.com>; Thu, 9 May 2019 09:17:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.01
X-Spam-Level:
X-Spam-Status: No, score=-3.01 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_PASS=-0.001, T_DKIMWL_WL_HIGH=-0.01] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MHwvLSZjvwW4 for <quic-issues@ietfa.amsl.com>; Thu, 9 May 2019 09:17:22 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CEAB3120288 for <quic-issues@ietf.org>; Thu, 9 May 2019 09:17:21 -0700 (PDT)
Date: Thu, 09 May 2019 09:17:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1557418640; bh=zRwIGCS8zAsSYmru8NMUF0j2mpebeY/5+VIxNSRhSWU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lj9zaH7PBzFgfwOYuPyKzhKqQhiIVVIUDVnfrHycvRZtTJ/s/u1WuX5LtM+01TLsh +SIyKrIOjEi9ICHMk/FL+RHoDo3GbLGJPK+CVZhZ/CijoxfTqKqhJFpnB2mRjviSDC tfz1U9c4SZ8E8zqIa89jcwvokXfhlPKW5HLuTKhE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CPLU47O4I7SSPC5524GCRBEVBNHHBUUAEMU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2673/review/235686326@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2673@github.com>
References: <quicwg/base-drafts/pull/2673@github.com>
Subject: Re: [quicwg/base-drafts] Output of the discard keys design team (#2673)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5cd45290aeb6b_2c7c3f9dbf0cd96428048d"; charset="UTF-8"
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KN6lWk5E7T85QFuLJUKdSLZMp60>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 09 May 2019 16:17:31 -0000
ianswett approved this pull request. Thank you so much for defining "Handshake Complete"! > + +### Discarding 0-RTT Keys + +Clients SHOULD discard 0-RTT keys as soon as they install 1-RTT keys, since +they have no use after that moment. + +0-RTT and 1-RTT packets share the same packet number space, and clients do not +send 0-RTT packets after sending a 1-RTT packet ({{using-early-data}}). +Therefore a server MAY discard 0-RTT keys as soon as it receives a 1-RTT +packet. However, due to packet reordering, a 0-RTT packet could arrive after +a 1-RTT packet. Servers MAY temporarily retain 0-RTT keys to allow decrypting +reordered packets without requiring their contents to be retransmitted with +1-RTT keys. Servers MUST discard 0-RTT keys within three times the Probe +Timeout (PTO, see {{QUIC-RECOVERY}}) after receiving a 1-RTT packet. A server +MAY discard 0-RTT keys earlier if it determines that it has received all 0-RTT +packets, which can be done by keeping track of packet numbers. ```suggestion packets, which can be done by keeping track of missing packet numbers. ``` The easiest proxy for this is whether there are multiple ACK ranges in the ACK frame, which a receiver is already tracking, FWIW. > @@ -1086,25 +1097,44 @@ before the final TLS handshake messages are received. A client will be unable to decrypt 1-RTT packets from the server, whereas a server will be able to decrypt 1-RTT packets from the client. -However, a server MUST NOT process data from incoming 1-RTT protected packets -before verifying either the client Finished message or - in the case that the -server has chosen to use a pre-shared key - the pre-shared key binder (see -Section 4.2.11 of {{!TLS13}}). Verifying these values provides the server with -an assurance that the ClientHello has not been modified. Packets protected with +Even though 1-RTT keys are available to a server after receiving the first +handshake messages from a client, it is missing assurances on the state of the +client: + +- The client is not authenticated, unless the server has chosen to use a +pre-shared key and validated the client's pre-shared key binder; see +Section 4.2.11 of {{!TLS13}}. +- The client has not demonstrated liveness. +1 > -an assurance that the ClientHello has not been modified. Packets protected with +Even though 1-RTT keys are available to a server after receiving the first +handshake messages from a client, it is missing assurances on the client state: + +- The client is not authenticated, unless the server has chosen to use a +pre-shared key and validated the client's pre-shared key binder; see +Section 4.2.11 of {{!TLS13}}. +- The client has not demonstrated liveness. +- Any received 0-RTT data that the server responds to might be due to a replay +attack. + +Therefore, the server's use of 1-RTT keys is limited before the handshake is +complete. A server MUST NOT process data from incoming 1-RTT +protected packets before the TLS handshake is complete. Because +sending acknowledgments indicates that all frames in a packet have been +processed, this means that a server cannot send acknowledgments for 1-RTT ```suggestion processed, a server cannot send acknowledgments for 1-RTT ``` > @@ -1116,9 +1145,21 @@ TLS KeyUpdate message. Endpoints MUST treat the receipt of a TLS KeyUpdate message as a connection error of type 0x10a, equivalent to a fatal TLS alert of unexpected_message (see {{tls-errors}}). -An endpoint MUST NOT initiate more than one key update at a time. A new key -cannot be used until the endpoint has received and successfully decrypted a -packet with a matching KEY_PHASE. +An endpoint MUST NOT initiate the first key update until the handshake is +confirmed ({{handshake-confirmed}}). An endpoint MUST NOT initiate a subsequent +key update until it has received an acknowledgment for a packet sent at the +current KEY_PHASE. This can be implemented by tracking the lowest packet +number sent with each KEY_PHASE, and the highest acknowledged packet number +in the 1-RTT space: once the latter is higher than or equal to the former, +another key update can be initiated. + +Endpoints MAY limit the number of sets of keys they retain to two sets for +removing packet protection and one set for protecting packets. Older keys +can be discarded. Updating keys multiple times rapidly can cause +packets to be effectively lost if packets are significantly delayed. ```suggestion packets to be effectively lost if packets are significantly reordered. ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/quicwg/base-drafts/pull/2673#pullrequestreview-235686326
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… ianswett
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- [quicwg/base-drafts] Output of the discard keys d… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Martin Thomson
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Martin Thomson
- Re: [quicwg/base-drafts] Output of the discard ke… MikkelFJ
- Re: [quicwg/base-drafts] Output of the discard ke… Martin Thomson
- Re: [quicwg/base-drafts] Output of the discard ke… MikkelFJ
- Re: [quicwg/base-drafts] Output of the discard ke… Christopher Wood
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Mike Bishop
- Re: [quicwg/base-drafts] Output of the discard ke… ianswett
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Jana Iyengar
- Re: [quicwg/base-drafts] Output of the discard ke… MikkelFJ
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Jana Iyengar
- Re: [quicwg/base-drafts] Output of the discard ke… Jana Iyengar
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… David Schinazi
- Re: [quicwg/base-drafts] Output of the discard ke… Jana Iyengar
- Re: [quicwg/base-drafts] Output of the discard ke… Martin Thomson