Received: by 10.213.65.68 with SMTP id h4csp514614imn; Fri, 16 Mar 2018 10:04:52 -0700 (PDT) X-Google-Smtp-Source: AG47ELvpDqt0kTUrCo+9Gn90oi1ZLrX31MRQ/obl2rCHveXKlUkOz/aJn7g8Ey0E8BRfTKpgOgjW X-Received: by 10.101.69.13 with SMTP id n13mr1936710pgq.301.1521219892038; Fri, 16 Mar 2018 10:04:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521219892; cv=none; d=google.com; s=arc-20160816; b=qTAsaEJxO088j3OeWCyhVa9W9Q7Pq2qg2fP41FKmbgisjs5d/lDnjbvmsRoEpoWcJZ 8Gc1Cv5kRgChFWI51uueKQ72EvMFSYWrNOf9Vh0lEqtK0Rt7pL/ETIJ1/UCWY47MfdzK W4CmApYpaaz+/bCfRp6DO9VxFANupxz8l/zlOyXYBTfN341r9PUD1Lhisshm5dgAwXVc rpmD5xrdCGZfTkqcTKkQmnSRuj7jRyXldbPTWNhJnY+GSlL9euIjmnwOjHbQYycAFZmn +5+2doR04YN2klFuyAG89a5FGIlqRzwLrShlqUZX3D+0U2DX2HH+UBGDdJW0p9rQkr7M bB7g== 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=VTLIejDXSPVwjzrEGVj/QlLISO9H/Y4bYhaVPKZjTSQ=; b=Q3Cw98x7qptEOuXjxKPaq6HMjGr2zgR7Emzdcy3ltivTh84M73vdTM7kREgD1CVz0c KS2r33mJkfeBtrZjpoxcPO6T+dRzlN3K+a/kYzCW3KeqHQjZc0oeErjz888mytRK24VX an7ar7iD6LWV2bAp5vIVLsMLuK1E+LN8gU9x6sIK7ud2dydC3rH6Gh7a7lWC1N0u/q+X ZxMaG1IQ+NHFYK5J6zSvpkZzud8WrjiBT+Ogf9MRR0V52MuigABDoUIa/Qkgg2tve06V UdOjbqIm+5A2Fek8sej6/A3LU32U5RzAUYDXote/jIrhL+FyDZn8jDqXtTvePm6hdMw2 4LOw== 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 g17-v6si90163plo.486.2018.03.16.10.04.38; Fri, 16 Mar 2018 10:04:52 -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 S933542AbeCPPc0 (ORCPT + 99 others); Fri, 16 Mar 2018 11:32:26 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:37946 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932303AbeCPPcX (ORCPT ); Fri, 16 Mar 2018 11:32:23 -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 721DE1162; Fri, 16 Mar 2018 15:32:22 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Florian Westphal , Eric Dumazet , Pablo Neira Ayuso Subject: [PATCH 4.9 61/86] netfilter: x_tables: pass xt_counters struct instead of packet counter Date: Fri, 16 Mar 2018 16:23:24 +0100 Message-Id: <20180316152321.493160668@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180316152317.167709497@linuxfoundation.org> References: <20180316152317.167709497@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.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Florian Westphal commit 4d31eef5176df06f218201bc9c0ce40babb41660 upstream. On SMP we overload the packet counter (unsigned long) to contain percpu offset. Hide this from callers and pass xt_counters address instead. Preparation patch to allocate the percpu counters in page-sized batch chunks. Signed-off-by: Florian Westphal Acked-by: Eric Dumazet Signed-off-by: Pablo Neira Ayuso Signed-off-by: Greg Kroah-Hartman --- include/linux/netfilter/x_tables.h | 6 +----- net/ipv4/netfilter/arp_tables.c | 4 ++-- net/ipv4/netfilter/ip_tables.c | 4 ++-- net/ipv6/netfilter/ip6_tables.c | 5 ++--- net/netfilter/x_tables.c | 9 +++++++++ 5 files changed, 16 insertions(+), 12 deletions(-) --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h @@ -402,11 +402,7 @@ static inline unsigned long xt_percpu_co return 0; } -static inline void xt_percpu_counter_free(u64 pcnt) -{ - if (nr_cpu_ids > 1) - free_percpu((void __percpu *) (unsigned long) pcnt); -} +void xt_percpu_counter_free(struct xt_counters *cnt); static inline struct xt_counters * xt_get_this_cpu_counter(struct xt_counters *cnt) --- a/net/ipv4/netfilter/arp_tables.c +++ b/net/ipv4/netfilter/arp_tables.c @@ -447,7 +447,7 @@ find_check_entry(struct arpt_entry *e, c err: module_put(t->u.kernel.target->me); out: - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -527,7 +527,7 @@ static inline void cleanup_entry(struct if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in --- a/net/ipv4/netfilter/ip_tables.c +++ b/net/ipv4/netfilter/ip_tables.c @@ -591,7 +591,7 @@ find_check_entry(struct ipt_entry *e, st cleanup_match(ematch, net); } - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -679,7 +679,7 @@ cleanup_entry(struct ipt_entry *e, struc if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in --- a/net/ipv6/netfilter/ip6_tables.c +++ b/net/ipv6/netfilter/ip6_tables.c @@ -620,7 +620,7 @@ find_check_entry(struct ip6t_entry *e, s cleanup_match(ematch, net); } - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -707,8 +707,7 @@ static void cleanup_entry(struct ip6t_en if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c @@ -1619,6 +1619,15 @@ void xt_proto_fini(struct net *net, u_in } EXPORT_SYMBOL_GPL(xt_proto_fini); +void xt_percpu_counter_free(struct xt_counters *counters) +{ + unsigned long pcnt = counters->pcnt; + + if (nr_cpu_ids > 1) + free_percpu((void __percpu *)pcnt); +} +EXPORT_SYMBOL_GPL(xt_percpu_counter_free); + static int __net_init xt_net_init(struct net *net) { int i;