From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH v3,net-next 1/2] ip_gre: fix parsing gre header in ipgre_err Date: Sun, 16 Sep 2018 15:34:27 -0700 (PDT) Message-ID: <20180916.153427.1678835674354962099.davem@davemloft.net> References: <1536899208-2958-1-git-send-email-yanhaishuang@cmss.chinamobile.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: kuznet@ms2.inr.ac.ru, jbenc@redhat.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: yanhaishuang@cmss.chinamobile.com Return-path: In-Reply-To: <1536899208-2958-1-git-send-email-yanhaishuang@cmss.chinamobile.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Haishuang Yan Date: Fri, 14 Sep 2018 12:26:47 +0800 > gre_parse_header stops parsing when csum_err is encountered, which means > tpi->key is undefined and ip_tunnel_lookup will return NULL improperly. > > This patch introduce a NULL pointer as csum_err parameter. Even when > csum_err is encountered, it won't return error and continue parsing gre > header as expected. > > Fixes: 9f57c67c379d ("gre: Remove support for sharing GRE protocol hook.") > Reported-by: Jiri Benc > Signed-off-by: Haishuang Yan > > --- > Changes since v3: > * skb_checksum_simple_validate need to be performed in csum_err case. Applied.