Re: The TCP and UDP checksum algorithm may soon need updating

Carsten Bormann <cabo@tzi.org> Mon, 08 June 2020 09:54 UTC

Return-Path: <cabo@tzi.org>
X-Original-To: ietf@ietfa.amsl.com
Delivered-To: ietf@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 887AB3A082D for <ietf@ietfa.amsl.com>; Mon, 8 Jun 2020 02:54:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.897
X-Spam-Level:
X-Spam-Status: No, score=-1.897 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
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 V21GFHvhdnVv for <ietf@ietfa.amsl.com>; Mon, 8 Jun 2020 02:54:18 -0700 (PDT)
Received: from gabriel-vm-2.zfn.uni-bremen.de (gabriel-vm-2.zfn.uni-bremen.de [134.102.50.17]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5B2003A0826 for <ietf@ietf.org>; Mon, 8 Jun 2020 02:54:18 -0700 (PDT)
Received: from [192.168.217.116] (p5089ae91.dip0.t-ipconnect.de [80.137.174.145]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gabriel-vm-2.zfn.uni-bremen.de (Postfix) with ESMTPSA id 49gT9g52z2zyVk; Mon, 8 Jun 2020 11:54:15 +0200 (CEST)
Content-Type: text/plain; charset="utf-8"
Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.80.23.2.2\))
Subject: Re: The TCP and UDP checksum algorithm may soon need updating
From: Carsten Bormann <cabo@tzi.org>
In-Reply-To: <D55AFBFD-0D59-4176-B6BD-D6A1801FEC2C@akamai.com>
Date: Mon, 08 Jun 2020 11:54:15 +0200
Cc: Michael Thomas <mike@mtcc.com>, Joseph Touch <touch@strayalpha.com>, "ietf@ietf.org" <ietf@ietf.org>
X-Mao-Original-Outgoing-Id: 613302855.15607-1496134d16cbdecda492c6e11a818aee
Content-Transfer-Encoding: quoted-printable
Message-Id: <77B2A0BC-0B4B-4118-A618-CE3F91B976F1@tzi.org>
References: <28A2725D-00F8-4739-8A73-ED176F8EF561@strayalpha.com> <3AA98081-A70E-4076-8096-79FFAEE8A738@huitema.net> <830b91c4-0bb5-af5b-f7b8-c5edd43dc87e@mtcc.com> <4512C1BF-5722-479B-8506-24018610BEAD@strayalpha.com> <5b4ea5ea-e2d6-1a01-3676-dd2a72dbd2c1@mtcc.com> <2C425F1E-2E12-4E47-ACEC-AF4C4A93FA3E@akamai.com> <140429ad-af8b-e03f-a641-1e78b6056fa4@mtcc.com> <D55AFBFD-0D59-4176-B6BD-D6A1801FEC2C@akamai.com>
To: "Salz, Rich" <rsalz=40akamai.com@dmarc.ietf.org>
X-Mailer: Apple Mail (2.3608.80.23.2.2)
Archived-At: <https://mailarchive.ietf.org/arch/msg/ietf/DQPhiTHkQIoqEIJQce_MofEjQak>
X-BeenThere: ietf@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: IETF-Discussion <ietf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/ietf>, <mailto:ietf-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/ietf/>
List-Post: <mailto:ietf@ietf.org>
List-Help: <mailto:ietf-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ietf>, <mailto:ietf-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 08 Jun 2020 09:54:22 -0000

On 2020-06-08, at 01:52, Salz, Rich <rsalz=40akamai.com@dmarc.ietf.org> wrote:
> 
>>   Because the TCP headers aren't part of the hmac digest? Am I missing 
>    something?
> 
> And how does that affect the application data?  What corruption of TCP headers would not end up being noticed at the application layer and therefore TLS?

Noticed, sure.
It is still a performance bug if transfers need to be redone from scratch just because the TCP checksum failed to catch corruption.
As the transfers get longer, the probability of some corruption approaches one, so the number of transfer attempts needed before one goes through goes through the roof.

(Literally the first thing I did on the IP network of this university, when I came here in 1993, was to find the reason for random file corruption in the network.  Of course, it was a Sun NFS server with a failing Ethernet card.  At the time, UDP checksums were generally switched off for NFS, but even if they would have been switched on, we’d just seen the corruption ~ 2**-16 as often.  Security protocols used right would have protected us from this and would have made the bit errors a performance statistic…)

TL;DR: Don’t use the network without security.  
But if the secure protocols fail to recover, you still have a problem.
QUIC completely solves this particular problem; only TLS/TCP has it, DTLS doesn’t.

Grüße, Carsten