Received: by 10.192.165.156 with SMTP id m28csp60119imm; Tue, 10 Apr 2018 16:23:03 -0700 (PDT) X-Google-Smtp-Source: AIpwx4956YprqR92mH0PL1tH6ERdpzOETQrOSni6vh75fUWO4jN3tjl2yR512C8iTrnhtFG4apWA X-Received: by 10.98.141.20 with SMTP id z20mr1963596pfd.144.1523402583531; Tue, 10 Apr 2018 16:23:03 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523402583; cv=none; d=google.com; s=arc-20160816; b=VjEvzRGwb0OMVOffCPAnYoy5KW6gJTwAZG9rZ7adpIw+83thdBf4Kc/c88pn2PCnOf U/X6uQGRfSICumBqPxadiTbcbyB/k1VTUwKuIRyRTJXemUf+4cau3LXOq+mPy/2MZeQO WtMHXhVssKgiqiURrLwgQOCztZkGhHkQ4uNk7Cnnde3UrLTgRP811S2cUWrBSJ2nvS/z Gkremd4ypJeuDvu/pg/oeATg9qLAwaXXK3MHglHt8cVrRerVDo5yIMMtvsI+pORuHNGm FIPuomsWylligXo7ZhL9sjcHVslbHIUPw0xs8bTLu611ed2+wDAQf8lig5QFymvILaUM X+Qw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=9Q2Zup5QH9JLba60XqV0jXnjiKhV0PPEUQCUo4T2HHQ=; b=n7T+WyDq6BPulMDI4A088hNsPX5oINQYDtfBHd64sgLJeVpM5zL/Vhh2l4AEbtlRni Tw+JBQ/usKvfx9epKCU5eGxAmsLmj7zP2G1LY1EpdMt+bjWCjdLfCat7HeO0NCda9rOo ycj3WuB6mTSarb/7ApwGZ/lxyXqk4+wvYwt3n945pR3tonI6l9cxZRHZRSn8NQOKl1h8 hcUBOZM6VVychkdr4hfBYLKD5vtu9USE4XbICgq6JDn5RKBPJmK4B+8k8c+7Y0h+gUr6 vdUZe2Jr4mrwuQ2GlxJQ0yVtDWJXLptqo43kSxHUZHpaYafSr0rSlokohqGrP2NegUeV ifdQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n10si2795965pfe.57.2018.04.10.16.22.26; Tue, 10 Apr 2018 16:23:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754820AbeDJWbe (ORCPT + 99 others); Tue, 10 Apr 2018 18:31:34 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:40388 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752802AbeDJWbb (ORCPT ); Tue, 10 Apr 2018 18:31:31 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 9A83ADE0; Tue, 10 Apr 2018 22:31:30 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jeff Barnhill <0xeffeff@gmail.com>, "David S. Miller" Subject: [PATCH 4.15 127/168] net/ipv6: Increment OUTxxx counters after netfilter hook Date: Wed, 11 Apr 2018 00:24:29 +0200 Message-Id: <20180410212806.167316209@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180410212800.144079021@linuxfoundation.org> References: <20180410212800.144079021@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jeff Barnhill <0xeffeff@gmail.com> [ Upstream commit 71a1c915238c970cd9bdd5bf158b1279d6b6d55b ] At the end of ip6_forward(), IPSTATS_MIB_OUTFORWDATAGRAMS and IPSTATS_MIB_OUTOCTETS are incremented immediately before the NF_HOOK call for NFPROTO_IPV6 / NF_INET_FORWARD. As a result, these counters get incremented regardless of whether or not the netfilter hook allows the packet to continue being processed. This change increments the counters in ip6_forward_finish() so that it will not happen if the netfilter hook chooses to terminate the packet, which is similar to how IPv4 works. Signed-off-by: Jeff Barnhill <0xeffeff@gmail.com> Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/ipv6/ip6_output.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -375,6 +375,11 @@ static int ip6_forward_proxy_check(struc static inline int ip6_forward_finish(struct net *net, struct sock *sk, struct sk_buff *skb) { + struct dst_entry *dst = skb_dst(skb); + + __IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS); + __IP6_ADD_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTOCTETS, skb->len); + return dst_output(net, sk, skb); } @@ -568,8 +573,6 @@ int ip6_forward(struct sk_buff *skb) hdr->hop_limit--; - __IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS); - __IP6_ADD_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTOCTETS, skb->len); return NF_HOOK(NFPROTO_IPV6, NF_INET_FORWARD, net, NULL, skb, skb->dev, dst->dev, ip6_forward_finish);