From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 31DE8C4363D for ; Fri, 25 Sep 2020 12:53:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F21EF206DB for ; Fri, 25 Sep 2020 12:53:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038439; bh=Hjba65to0WbZ8H4xOBA7DEOuoppyWz/lZKp7NGB6ctY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=tX1i/pSoRKIT7r/obdJbZR5rx69jj6Cdoh8pK9Fc1TvqJoByKMUzsa9NMNcXIiBvk RNfGFdlFe3kGZY0hzTLxmkJTHkKb5521AtfNdupRYzaT1BBOJbDQklimHzjGvrHFRV 8pY1aHxDZy2xW8Kl0BQmiyCdcQ8umVHfqnMvELWo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729498AbgIYMx5 (ORCPT ); Fri, 25 Sep 2020 08:53:57 -0400 Received: from mail.kernel.org ([198.145.29.99]:59952 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729484AbgIYMxv (ORCPT ); Fri, 25 Sep 2020 08:53:51 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 35403206DB; Fri, 25 Sep 2020 12:53:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038430; bh=Hjba65to0WbZ8H4xOBA7DEOuoppyWz/lZKp7NGB6ctY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZABgXrbEDv3k1Yot+WW0Gme2iiShNqEPPHwyG7vEE7g9KTiyNb/MWcAKLcHqkuXdv OMpOYYjzxN4Iu6QKzeq02P+2si2vGOQSr17UKtUexBo1qwQpwV+Tjz5zl4E1cxzA+j N0ORd81hrviaBjxbWE7lcuVtzC6lczQC7wcq2Yy4= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Wei Wang , Eric Dumazet , "David S. Miller" Subject: [PATCH 4.19 08/37] ip: fix tos reflection in ack and reset packets Date: Fri, 25 Sep 2020 14:48:36 +0200 Message-Id: <20200925124722.198455654@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200925124720.972208530@linuxfoundation.org> References: <20200925124720.972208530@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Wei Wang [ Upstream commit ba9e04a7ddf4f22a10e05bf9403db6b97743c7bf ] Currently, in tcp_v4_reqsk_send_ack() and tcp_v4_send_reset(), we echo the TOS value of the received packets in the response. However, we do not want to echo the lower 2 ECN bits in accordance with RFC 3168 6.1.5 robustness principles. Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Wei Wang Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/ipv4/ip_output.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -73,6 +73,7 @@ #include #include #include +#include #include #include #include @@ -1582,7 +1583,7 @@ void ip_send_unicast_reply(struct sock * if (IS_ERR(rt)) return; - inet_sk(sk)->tos = arg->tos; + inet_sk(sk)->tos = arg->tos & ~INET_ECN_MASK; sk->sk_priority = skb->priority; sk->sk_protocol = ip_hdr(skb)->protocol;