Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2391343pxu; Mon, 7 Dec 2020 05:33:11 -0800 (PST) X-Google-Smtp-Source: ABdhPJwoesgkQ8m8spUJSImBVkbr0nhar77tlQcM2/EG1cA7fs/EACGv8WP0awneZLxVe5heNPV4 X-Received: by 2002:a17:906:9452:: with SMTP id z18mr19121824ejx.389.1607347991344; Mon, 07 Dec 2020 05:33:11 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607347991; cv=none; d=google.com; s=arc-20160816; b=pCjF7otwBfQc1EyIZMjX0jY3StLyis3Da6eEuslOiUMmh7iryAgoohaZmr4uARttgJ M3eBUJMM5r61Q5iN3fdLlziRal0HVpwGSlR7ZA8l6+qygrwSWjjqyYDic7+Iv2Vqwz7e IUV49/vFbrdeSzccxbHr364icM+GArZfeIgT+U1g2xFJx3OfJmHUeKzyfqLQRqkWn6DE 1uBXxWMyKZa2XqOfNZjcaaTQClfSwgWDrOQHtYiBlkolJ8ObleFs05p/YnAieQ7BAcDM 5t5zelhAWc7i05VhnOwe4KBATedouw5+dWKZ01YmrGdeTtB85YWMhx+FGMAPe4ajhtKi qGEA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=sGLkChrSfRjuAKvhBP4m1P0UmewcaxFXnu6Xx0/EEJk=; b=QcwqzP7PKGRikW5AVuZ+I0BMvLRWcgT+2SFV/njzwpGzk0M1XP6WAXPSU8F2o+89qv K0ePV0ypzduy11rnu23nEQFabuo5Q1Jzpc41wjuzHEon4/4HrnfBtamITRZU1yfAlEGr CBPibIRILWwWUmDoQCkch9Cx0f9XlhcC1iOOwYX4nJdXtgkh9jFUjWtQwtxWHXnjjobp jz+3bT0Hyg1jvdsSfhaNFXKJUUgd1InKNUq4/5JqTmSWjdvWv0Wt3NXImic9n4ij8Aaf 8fEPIGEpOcnK5N/Wg6OH0M0MmORJo5zpG0WTESLEkCBwhuREmWuWxTBv4eP2fuaKBQEN fpOg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-crypto-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-crypto-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id m24si5304986eda.455.2020.12.07.05.32.39; Mon, 07 Dec 2020 05:33:11 -0800 (PST) Received-SPF: pass (google.com: domain of linux-crypto-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-crypto-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-crypto-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725781AbgLGNcd (ORCPT + 99 others); Mon, 7 Dec 2020 08:32:33 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59374 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725804AbgLGNcd (ORCPT ); Mon, 7 Dec 2020 08:32:33 -0500 X-Greylist: delayed 1725 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Mon, 07 Dec 2020 05:31:53 PST Received: from orbyte.nwl.cc (orbyte.nwl.cc [IPv6:2001:41d0:e:133a::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 020A3C0613D0 for ; Mon, 7 Dec 2020 05:31:53 -0800 (PST) Received: from localhost ([::1]:60542 helo=tatos) by orbyte.nwl.cc with esmtp (Exim 4.94) (envelope-from ) id 1kmGAU-0000Qe-UU; Mon, 07 Dec 2020 14:03:06 +0100 From: Phil Sutter To: Steffen Klassert Cc: linux-crypto@vger.kernel.org, netfilter-devel@vger.kernel.org, Nicolas Dichtel Subject: [PATCH] xfrm: interface: Don't hide plain packets from netfilter Date: Mon, 7 Dec 2020 14:03:03 +0100 Message-Id: <20201207130303.30774-1-phil@nwl.cc> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org With an IPsec tunnel without dedicated interface, netfilter sees locally generated packets twice as they exit the physical interface: Once as "the inner packet" with IPsec context attached and once as the encrypted (ESP) packet. With xfrm_interface, the inner packet did not traverse NF_INET_LOCAL_OUT hook anymore, making it impossible to match on both inner header values and associated IPsec data from that hook. Fix this by looping packets transmitted from xfrm_interface through NF_INET_LOCAL_OUT before passing them on to dst_output(), which makes behaviour consistent again from netfilter's point of view. Fixes: f203b76d78092 ("xfrm: Add virtual xfrm interfaces") Signed-off-by: Phil Sutter --- net/xfrm/xfrm_interface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/xfrm/xfrm_interface.c b/net/xfrm/xfrm_interface.c index aa4cdcf69d471..24af61c95b4d4 100644 --- a/net/xfrm/xfrm_interface.c +++ b/net/xfrm/xfrm_interface.c @@ -317,7 +317,8 @@ xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) skb_dst_set(skb, dst); skb->dev = tdev; - err = dst_output(xi->net, skb->sk, skb); + err = NF_HOOK(skb_dst(skb)->ops->family, NF_INET_LOCAL_OUT, xi->net, + skb->sk, skb, NULL, skb_dst(skb)->dev, dst_output); if (net_xmit_eval(err) == 0) { struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats); -- 2.28.0