From: Sergei Shtylyov <sergei.shtylyov-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
To: Jarno Rajahalme <jarno-LZ6Gd1LRuIk@public.gmane.org>,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: dev-yBygre7rU0TnMu66kgdUjQ@public.gmane.org,
netfilter-devel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH net-next v5 7/8] openvswitch: Delay conntrack helper call for new connections.
Date: Thu, 17 Dec 2015 16:33:14 +0300 [thread overview]
Message-ID: <5672B99A.7080404@cogentembedded.com> (raw)
In-Reply-To: <1450312607-44050-8-git-send-email-jarno-LZ6Gd1LRuIk@public.gmane.org>
Hello.
On 12/17/2015 3:36 AM, Jarno Rajahalme wrote:
> There is no need to help connections that are not confirmed, so we can
> delay helping new connections to the time when they are confirmed.
> This change is needed for NAT support, and having this as a separate
> patch will make the following NAT patch a bit easier to review.
>
> Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
> ---
> net/openvswitch/conntrack.c | 20 +++++++++++++++-----
> 1 file changed, 15 insertions(+), 5 deletions(-)
>
> diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c
> index 7aa38fa..ba44287 100644
> --- a/net/openvswitch/conntrack.c
> +++ b/net/openvswitch/conntrack.c
[...]
> @@ -491,11 +496,16 @@ static int __ovs_ct_lookup(struct net *net, struct sw_flow_key *key,
> return -ENOENT;
>
> ovs_ct_update_key(skb, key, true);
> + }
>
> - if (ovs_ct_helper(skb, info->family) != NF_ACCEPT) {
> - WARN_ONCE(1, "helper rejected packet");
> - return -EINVAL;
> - }
> + /* Call the helper right after nf_conntrack_in() for confirmed
> + * connections, but only when commiting for unconfirmed connections.
> + */
> + ct = nf_ct_get(skb, &ctinfo);
> + if (ct && (nf_ct_is_confirmed(ct) ? !cached : info->commit)
> + && ovs_ct_helper(skb, info->family) != NF_ACCEPT) {
Please leave && on the line being broken, don't carry it into the
continuation line.
MBR, Sergei
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
next prev parent reply other threads:[~2015-12-17 13:33 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-17 0:36 [PATCH net-next v5 0/8] openvswitch: NAT support Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 1/8] netfilter: Remove IP_CT_NEW_REPLY definition Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 2/8] netfilter: Factor out nf_ct_get_info() Jarno Rajahalme
2015-12-17 13:31 ` Sergei Shtylyov
[not found] ` <1450312607-44050-3-git-send-email-jarno-LZ6Gd1LRuIk@public.gmane.org>
2015-12-25 12:30 ` Pablo Neira Ayuso
2016-01-08 23:32 ` Jarno Rajahalme
[not found] ` <1450312607-44050-1-git-send-email-jarno-LZ6Gd1LRuIk@public.gmane.org>
2015-12-17 0:36 ` [PATCH net-next v5 3/8] netfilter: Allow calling into nat helper without skb_dst Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 4/8] openvswitch: Update the CT state key only after nf_conntrack_in() Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 6/8] openvswitch: Handle NF_REPEAT in conntrack action Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 5/8] openvswitch: Find existing conntrack entry after upcall Jarno Rajahalme
2015-12-17 0:36 ` [PATCH net-next v5 7/8] openvswitch: Delay conntrack helper call for new connections Jarno Rajahalme
[not found] ` <1450312607-44050-8-git-send-email-jarno-LZ6Gd1LRuIk@public.gmane.org>
2015-12-17 13:33 ` Sergei Shtylyov [this message]
2015-12-17 0:36 ` [PATCH net-next v5 8/8] openvswitch: Interface with NAT Jarno Rajahalme
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=5672B99A.7080404@cogentembedded.com \
--to=sergei.shtylyov-m4dtvfq/zs1mrggop+s0pdbpr1lh4cv8@public.gmane.org \
--cc=dev-yBygre7rU0TnMu66kgdUjQ@public.gmane.org \
--cc=jarno-LZ6Gd1LRuIk@public.gmane.org \
--cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=netfilter-devel-u79uwXL29TY76Z2rM5mHXA@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.