lvs-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Julian Anastasov <ja@ssi.bg>
To: Florian Westphal <fw@strlen.de>
Cc: netfilter-devel@vger.kernel.org, lvs-devel@vger.kernel.org,
	horms@verge.net.au
Subject: Re: [PATCH nf-next 4/4] netfilter: ipvs: merge ipv4 + ipv6 icmp reply handlers
Date: Tue, 12 Oct 2021 20:21:32 +0300 (EEST)	[thread overview]
Message-ID: <8dba13d5-a250-bb1e-7db-ebb02c665af5@ssi.bg> (raw)
In-Reply-To: <20211012120608.21827-5-fw@strlen.de>


	Hello,

On Tue, 12 Oct 2021, Florian Westphal wrote:

> Signed-off-by: Florian Westphal <fw@strlen.de>
> ---
>  net/netfilter/ipvs/ip_vs_core.c | 37 +++++++++++++--------------------
>  1 file changed, 14 insertions(+), 23 deletions(-)
> 
> diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
> index ad5f5e50547f..c43b1eb61580 100644
> --- a/net/netfilter/ipvs/ip_vs_core.c
> +++ b/net/netfilter/ipvs/ip_vs_core.c
> @@ -2106,40 +2106,31 @@ static unsigned int
>  ip_vs_forward_icmp(void *priv, struct sk_buff *skb,
>  		   const struct nf_hook_state *state)
>  {
> -	int r;
>  	struct netns_ipvs *ipvs = net_ipvs(state->net);
> -
> -	if (ip_hdr(skb)->protocol != IPPROTO_ICMP)
> -		return NF_ACCEPT;
> +	int r;
>  
>  	/* ipvs enabled in this netns ? */
>  	if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable))
>  		return NF_ACCEPT;
>  
> -	return ip_vs_in_icmp(ipvs, skb, &r, state->hook);
> -}
> -
> +	if (state->pf == NFPROTO_IPV4 &&
> +	    ip_hdr(skb)->protocol != IPPROTO_ICMP) {
> +		return NF_ACCEPT;

	Can we split the above checks?:

	if (state->pf == NFPROTO_IPV4) {
		if (ip_hdr(skb)->protocol != IPPROTO_ICMP) {
			return NF_ACCEPT;
	} else {
#ifdef ...

	We don't want to call ip_vs_fill_iph_skb for IPv4
when IPPROTO_ICMP. Patches 1-3 look ok.

>  #ifdef CONFIG_IP_VS_IPV6
> -static unsigned int
> -ip_vs_forward_icmp_v6(void *priv, struct sk_buff *skb,
> -		      const struct nf_hook_state *state)
> -{
> -	int r;
> -	struct netns_ipvs *ipvs = net_ipvs(state->net);
> -	struct ip_vs_iphdr iphdr;
> +	} else {
> +		struct ip_vs_iphdr iphdr;
>  
> -	ip_vs_fill_iph_skb(AF_INET6, skb, false, &iphdr);
> -	if (iphdr.protocol != IPPROTO_ICMPV6)
> -		return NF_ACCEPT;
> +		ip_vs_fill_iph_skb(AF_INET6, skb, false, &iphdr);
>  
> -	/* ipvs enabled in this netns ? */
> -	if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable))
> -		return NF_ACCEPT;
> +		if (iphdr.protocol != IPPROTO_ICMPV6)
> +			return NF_ACCEPT;
>  
> -	return ip_vs_in_icmp_v6(ipvs, skb, &r, state->hook, &iphdr);
> -}
> +		return ip_vs_in_icmp_v6(ipvs, skb, &r, state->hook, &iphdr);
>  #endif
> +	}
>  
> +	return ip_vs_in_icmp(ipvs, skb, &r, state->hook);
> +}
>  
>  static const struct nf_hook_ops ip_vs_ops4[] = {
>  	/* After packet filtering, change source only for VS/NAT */
> @@ -2224,7 +2215,7 @@ static const struct nf_hook_ops ip_vs_ops6[] = {
>  	/* After packet filtering (but before ip_vs_out_icmp), catch icmp
>  	 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
>  	{
> -		.hook		= ip_vs_forward_icmp_v6,
> +		.hook		= ip_vs_forward_icmp,
>  		.pf		= NFPROTO_IPV6,
>  		.hooknum	= NF_INET_FORWARD,
>  		.priority	= 99,
> -- 
> 2.32.0

Regards

--
Julian Anastasov <ja@ssi.bg>

      reply	other threads:[~2021-10-12 17:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-12 12:06 [PATCH nf-next 0/4] netfilter: ipvs: remove unneeded hook wrappers Florian Westphal
2021-10-12 12:06 ` [PATCH nf-next 1/4] netfilter: ipvs: prepare for hook function reduction Florian Westphal
2021-10-12 12:06 ` [PATCH nf-next 2/4] netfilter: ipvs: remove unneeded output wrappers Florian Westphal
2021-10-12 12:06 ` [PATCH nf-next 3/4] netfilter: ipvs: remove unneeded input wrappers Florian Westphal
2021-10-12 12:06 ` [PATCH nf-next 4/4] netfilter: ipvs: merge ipv4 + ipv6 icmp reply handlers Florian Westphal
2021-10-12 17:21   ` Julian Anastasov [this message]

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=8dba13d5-a250-bb1e-7db-ebb02c665af5@ssi.bg \
    --to=ja@ssi.bg \
    --cc=fw@strlen.de \
    --cc=horms@verge.net.au \
    --cc=lvs-devel@vger.kernel.org \
    --cc=netfilter-devel@vger.kernel.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 read-only IMAP folder(s) and NNTP newsgroup(s).