[quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
David Schinazi <notifications@github.com> Wed, 26 June 2019 21:25 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 26CB01203AE for <quic-issues@ietfa.amsl.com>; Wed, 26 Jun 2019 14:25:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level:
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] 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 KxLagZSgQ7Ey for <quic-issues@ietfa.amsl.com>; Wed, 26 Jun 2019 14:25:40 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B43C0120188 for <quic-issues@ietf.org>; Wed, 26 Jun 2019 14:25:40 -0700 (PDT)
Date: Wed, 26 Jun 2019 14:25:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1561584339; bh=1E2Ajh8IsMvh2y+KkqTbRcXhdLCjZykza9w9iJDVU/o=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=lI4CeFIkLJB8Vi1ypQGRbrQdoO8KCcxmUMerSP4HNM4EB7BMDIt0hOyQ25fmPScrm p3/eAHCUJLD0Fk9r5ku1RYMKp5oj2B0L9CMicbrxpbzi9F1HRnpedJDbIU7yQ+v9fu hyiX1ElBDt8JRkPHTqDVe9mCI+HU2+Aq42V37MYg=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKHM4JKSJTVHZIH7N3EEKVHEVBNHHBW7JPKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2851@github.com>
Subject: [quicwg/base-drafts] Allow connections to share a port by adding restrictions on zero-length connection IDs (#2851)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d13e2d38d8d7_57b23fa3d12cd968932ef"; charset="UTF-8"
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
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/xvPqvbhhI3bqgCvZ31zOzuYoGWY>
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: Wed, 26 Jun 2019 21:25:43 -0000
In the current spec, zero-length connection IDs can be used when a host wants to route connections on the 4-tuple (remote IP/port, local IP/port). However, doing this prevents your peer from multiplexing connections on a single port. This PR restricts zero-length connection IDs to only be used when a host can route connection on the local 2-tuple (IP/port). The current spec does not allow clients to share a local port ever, because at the time they start their connection they cannot know if a given server will want to route on the 4-tuple. Additionally, some clients might even be forced to perform this multiplexing because they are going through a proxy. Slightly restricting the use of zero-length connection IDs gives value to client connection IDs. Fixes #2844. You can view, comment on, or merge this pull request online at: https://github.com/quicwg/base-drafts/pull/2851 -- Commit Summary -- * Allow connections to share a port by adding restrictions on zero-length connection IDs -- File Changes -- M draft-ietf-quic-transport.md (41) -- Patch Links -- https://github.com/quicwg/base-drafts/pull/2851.patch https://github.com/quicwg/base-drafts/pull/2851.diff -- 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/2851
- [quicwg/base-drafts] Allow connections to share a… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… MikkelFJ
- Re: [quicwg/base-drafts] Allow connections to sha… MikkelFJ
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… MikkelFJ
- Re: [quicwg/base-drafts] Allow connections to sha… MikkelFJ
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… MikkelFJ
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… ianswett
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Kazuho Oku
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Igor Lubashev
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Mike Bishop
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Jana Iyengar
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Eric Kinnear
- Re: [quicwg/base-drafts] Allow connections to sha… ianswett
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… David Schinazi
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson
- Re: [quicwg/base-drafts] Allow connections to sha… Martin Thomson