netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: wenxu <wenxu@ucloud.cn>
To: Pablo Neira Ayuso <pablo@netfilter.org>, netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nf-next 1/3] netfilter: conntrack: export nf_ct_acct_update()
Date: Wed, 25 Mar 2020 10:59:14 +0800	[thread overview]
Message-ID: <cb62c78f-dd8f-5773-0a3b-7ae11ba8839d@ucloud.cn> (raw)
In-Reply-To: <20200324175009.3118-1-pablo@netfilter.org>


On 3/25/2020 1:50 AM, Pablo Neira Ayuso wrote:
> This function allows you to update the conntrack counters.
>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
> ---
>  include/net/netfilter/nf_conntrack_acct.h |  2 ++
>  net/netfilter/nf_conntrack_core.c         | 15 +++++++--------
>  2 files changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/include/net/netfilter/nf_conntrack_acct.h b/include/net/netfilter/nf_conntrack_acct.h
> index f7a060c6eb28..df198c51244a 100644
> --- a/include/net/netfilter/nf_conntrack_acct.h
> +++ b/include/net/netfilter/nf_conntrack_acct.h
> @@ -65,6 +65,8 @@ static inline void nf_ct_set_acct(struct net *net, bool enable)
>  #endif
>  }
>  
> +void nf_ct_acct_update(struct nf_conn *ct, u32 dir, unsigned int bytes);
> +
>  void nf_conntrack_acct_pernet_init(struct net *net);
>  
>  int nf_conntrack_acct_init(void);
> diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
> index a18f8fe728e3..a55c1d6f8191 100644
> --- a/net/netfilter/nf_conntrack_core.c
> +++ b/net/netfilter/nf_conntrack_core.c
> @@ -863,9 +863,7 @@ nf_conntrack_hash_check_insert(struct nf_conn *ct)
>  }
>  EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
>  
> -static inline void nf_ct_acct_update(struct nf_conn *ct,
> -				     enum ip_conntrack_info ctinfo,
> -				     unsigned int len)
> +void nf_ct_acct_update(struct nf_conn *ct, u32 dir, unsigned int bytes)
>  {
>  	struct nf_conn_acct *acct;
>  
> @@ -873,10 +871,11 @@ static inline void nf_ct_acct_update(struct nf_conn *ct,
>  	if (acct) {
>  		struct nf_conn_counter *counter = acct->counter;
>  
> -		atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
> -		atomic64_add(len, &counter[CTINFO2DIR(ctinfo)].bytes);
> +		atomic64_inc(&counter[dir].packets);
> +		atomic64_add(bytes, &counter[dir].bytes);
>  	}
>  }
> +EXPORT_SYMBOL_GPL(nf_ct_acct_update);

This function only add one packet once. Maybe is not so suit for all the scenario

such as the HW flowtable offload get the counter from HW periodicly.

>  
>  static void nf_ct_acct_merge(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
>  			     const struct nf_conn *loser_ct)
> @@ -890,7 +889,7 @@ static void nf_ct_acct_merge(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
>  
>  		/* u32 should be fine since we must have seen one packet. */
>  		bytes = atomic64_read(&counter[CTINFO2DIR(ctinfo)].bytes);
> -		nf_ct_acct_update(ct, ctinfo, bytes);
> +		nf_ct_acct_update(ct, CTINFO2DIR(ctinfo), bytes);
>  	}
>  }
>  
> @@ -1931,7 +1930,7 @@ void __nf_ct_refresh_acct(struct nf_conn *ct,
>  		WRITE_ONCE(ct->timeout, extra_jiffies);
>  acct:
>  	if (do_acct)
> -		nf_ct_acct_update(ct, ctinfo, skb->len);
> +		nf_ct_acct_update(ct, CTINFO2DIR(ctinfo), skb->len);
>  }
>  EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
>  
> @@ -1939,7 +1938,7 @@ bool nf_ct_kill_acct(struct nf_conn *ct,
>  		     enum ip_conntrack_info ctinfo,
>  		     const struct sk_buff *skb)
>  {
> -	nf_ct_acct_update(ct, ctinfo, skb->len);
> +	nf_ct_acct_update(ct, CTINFO2DIR(ctinfo), skb->len);
>  
>  	return nf_ct_delete(ct, 0, 0);
>  }

  parent reply	other threads:[~2020-03-25  2:59 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-24 17:50 [PATCH nf-next 1/3] netfilter: conntrack: export nf_ct_acct_update() Pablo Neira Ayuso
2020-03-24 17:50 ` [PATCH nf-next 2/3] netfilter: nf_tables: add enum nft_flowtable_flags to uapi Pablo Neira Ayuso
2020-03-24 17:50 ` [PATCH nf-next 3/3] netfilter: flowtable: add counter support Pablo Neira Ayuso
2020-03-25  2:59 ` wenxu [this message]
2020-03-26 11:49   ` [PATCH nf-next 1/3] netfilter: conntrack: export nf_ct_acct_update() Pablo Neira Ayuso

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cb62c78f-dd8f-5773-0a3b-7ae11ba8839d@ucloud.cn \
    --to=wenxu@ucloud.cn \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=pablo@netfilter.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).