netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success,
@ 2017-02-21 23:25 Jarno Rajahalme
  2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Jarno Rajahalme @ 2017-02-21 23:25 UTC (permalink / raw)
  To: netdev; +Cc: jarno, fgao, pablo

Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
returns void") inadvertently changed the successful return value of
nf_ct_expect_related_report() from 0 to 1, which caused openvswitch
conntrack integration fail in FTP test cases.

Fix this by always returning zero on the success code path.

Fixes: 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert() returns void")
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
---
 net/netfilter/nf_conntrack_expect.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netfilter/nf_conntrack_expect.c b/net/netfilter/nf_conntrack_expect.c
index e19a697..d6ace69 100644
--- a/net/netfilter/nf_conntrack_expect.c
+++ b/net/netfilter/nf_conntrack_expect.c
@@ -467,7 +467,7 @@ int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
 
 	spin_unlock_bh(&nf_conntrack_expect_lock);
 	nf_ct_expect_event_report(IPEXP_NEW, expect, portid, report);
-	return ret;
+	return 0;
 out:
 	spin_unlock_bh(&nf_conntrack_expect_lock);
 	return ret;
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value.
  2017-02-21 23:25 [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Jarno Rajahalme
@ 2017-02-21 23:25 ` Jarno Rajahalme
  2017-02-21 23:45   ` Joe Stringer
  2017-02-22  9:47   ` Pablo Neira Ayuso
  2017-02-21 23:41 ` [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Joe Stringer
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 7+ messages in thread
From: Jarno Rajahalme @ 2017-02-21 23:25 UTC (permalink / raw)
  To: netdev; +Cc: jarno, fgao, pablo

Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
returns void") inadvertently changed the successful return value of
nf_ct_expect_related_report() from 0 to 1 due to
__nf_ct_expect_check() returning 1 on success.  Prevent this
regression in the future by changing the return value of
__nf_ct_expect_check() to 0 on success.

Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
---
 net/netfilter/nf_conntrack_expect.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/netfilter/nf_conntrack_expect.c b/net/netfilter/nf_conntrack_expect.c
index d6ace69..4b2e1fb 100644
--- a/net/netfilter/nf_conntrack_expect.c
+++ b/net/netfilter/nf_conntrack_expect.c
@@ -410,7 +410,7 @@ static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
 	struct net *net = nf_ct_exp_net(expect);
 	struct hlist_node *next;
 	unsigned int h;
-	int ret = 1;
+	int ret = 0;
 
 	if (!master_help) {
 		ret = -ESHUTDOWN;
@@ -460,7 +460,7 @@ int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
 
 	spin_lock_bh(&nf_conntrack_expect_lock);
 	ret = __nf_ct_expect_check(expect);
-	if (ret <= 0)
+	if (ret < 0)
 		goto out;
 
 	nf_ct_expect_insert(expect);
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success,
  2017-02-21 23:25 [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Jarno Rajahalme
  2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
@ 2017-02-21 23:41 ` Joe Stringer
  2017-02-22  9:47 ` Pablo Neira Ayuso
  2017-02-22 10:00 ` Sergei Shtylyov
  3 siblings, 0 replies; 7+ messages in thread
From: Joe Stringer @ 2017-02-21 23:41 UTC (permalink / raw)
  To: Jarno Rajahalme; +Cc: netdev, fgao, Pablo Neira Ayuso

On 21 February 2017 at 15:25, Jarno Rajahalme <jarno@ovn.org> wrote:
> Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
> returns void") inadvertently changed the successful return value of
> nf_ct_expect_related_report() from 0 to 1, which caused openvswitch
> conntrack integration fail in FTP test cases.

I can't tell at a glance given all the netlink callback stuff but I
suspect this broke expectation insertion from netlink too.

> Fix this by always returning zero on the success code path.
>
> Fixes: 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert() returns void")
> Signed-off-by: Jarno Rajahalme <jarno@ovn.org>

Acked-by: Joe Stringer <joe@ovn.org>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value.
  2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
@ 2017-02-21 23:45   ` Joe Stringer
  2017-02-22  9:47   ` Pablo Neira Ayuso
  1 sibling, 0 replies; 7+ messages in thread
From: Joe Stringer @ 2017-02-21 23:45 UTC (permalink / raw)
  To: Jarno Rajahalme; +Cc: netdev, fgao, Pablo Neira Ayuso

On 21 February 2017 at 15:25, Jarno Rajahalme <jarno@ovn.org> wrote:
> Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
> returns void") inadvertently changed the successful return value of
> nf_ct_expect_related_report() from 0 to 1 due to
> __nf_ct_expect_check() returning 1 on success.  Prevent this
> regression in the future by changing the return value of
> __nf_ct_expect_check() to 0 on success.
>
> Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
> ---

It seems like other functions in this file return 0 as successful
condition, so from that perspective this seems more in line with
existing code.

Acked-by: Joe Stringer <joe@ovn.org>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success,
  2017-02-21 23:25 [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Jarno Rajahalme
  2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
  2017-02-21 23:41 ` [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Joe Stringer
@ 2017-02-22  9:47 ` Pablo Neira Ayuso
  2017-02-22 10:00 ` Sergei Shtylyov
  3 siblings, 0 replies; 7+ messages in thread
From: Pablo Neira Ayuso @ 2017-02-22  9:47 UTC (permalink / raw)
  To: Jarno Rajahalme; +Cc: netdev, fgao, netfilter-devel

On Tue, Feb 21, 2017 at 03:25:21PM -0800, Jarno Rajahalme wrote:
> Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
> returns void") inadvertently changed the successful return value of
> nf_ct_expect_related_report() from 0 to 1, which caused openvswitch
> conntrack integration fail in FTP test cases.
> 
> Fix this by always returning zero on the success code path.

Please, Cc netfilter-devel for your netfilter patches.

I can pick these patches via nf.git tree.

Thank you.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value.
  2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
  2017-02-21 23:45   ` Joe Stringer
@ 2017-02-22  9:47   ` Pablo Neira Ayuso
  1 sibling, 0 replies; 7+ messages in thread
From: Pablo Neira Ayuso @ 2017-02-22  9:47 UTC (permalink / raw)
  To: Jarno Rajahalme; +Cc: netdev, fgao

On Tue, Feb 21, 2017 at 03:25:22PM -0800, Jarno Rajahalme wrote:
> Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
> returns void") inadvertently changed the successful return value of
> nf_ct_expect_related_report() from 0 to 1 due to
> __nf_ct_expect_check() returning 1 on success.  Prevent this
> regression in the future by changing the return value of
> __nf_ct_expect_check() to 0 on success.

Same thing, please Cc netfilter-devel. Thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success,
  2017-02-21 23:25 [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Jarno Rajahalme
                   ` (2 preceding siblings ...)
  2017-02-22  9:47 ` Pablo Neira Ayuso
@ 2017-02-22 10:00 ` Sergei Shtylyov
  3 siblings, 0 replies; 7+ messages in thread
From: Sergei Shtylyov @ 2017-02-22 10:00 UTC (permalink / raw)
  To: Jarno Rajahalme, netdev; +Cc: fgao, pablo

Hello!

On 2/22/2017 2:25 AM, Jarno Rajahalme wrote:

> Commit 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert()

    Need at least 12 hex digits.

> returns void") inadvertently changed the successful return value of
> nf_ct_expect_related_report() from 0 to 1, which caused openvswitch
> conntrack integration fail in FTP test cases.
>
> Fix this by always returning zero on the success code path.
>
> Fixes: 4dee62b1 ("netfilter: nf_ct_expect: nf_ct_expect_insert() returns void")
> Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
[...]

MBR, Sergei

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-02-22 10:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-21 23:25 [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Jarno Rajahalme
2017-02-21 23:25 ` [PATCH net-next 2/2] netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value Jarno Rajahalme
2017-02-21 23:45   ` Joe Stringer
2017-02-22  9:47   ` Pablo Neira Ayuso
2017-02-21 23:41 ` [PATCH net-next 1/2] netfilter: nf_ct_expect: nf_ct_expect_related_report(): Return zero on success, Joe Stringer
2017-02-22  9:47 ` Pablo Neira Ayuso
2017-02-22 10:00 ` Sergei Shtylyov

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).