All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink
@ 2017-03-25 13:03 Liping Zhang
  2017-03-29 10:36 ` Pablo Neira Ayuso
  2017-03-29 10:41 ` Pablo Neira Ayuso
  0 siblings, 2 replies; 5+ messages in thread
From: Liping Zhang @ 2017-03-25 13:03 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel, Liping Zhang

From: Liping Zhang <zlpnobody@gmail.com>

cthelpers added via nfnetlink may have the same tuple, i.e. except for
the l3proto and l4proto, other fields are all zero. So even with the
different names, we will also fail to add them:
  # nfct helper add ssdp inet udp
  # nfct helper add tftp inet udp
  nfct v1.4.3: netlink error: File exists

So in order to avoid unpredictable behaviour, we should:
1. cthelpers can be selected by nft ct helper obj or xt_CT target, so
report error if duplicated { name, l3proto, l4proto } tuple exist.
2. cthelpers can be selected by nf_ct_tuple_src_mask_cmp when
nf_ct_auto_assign_helper is enabled, so also report error if duplicated
{ l3proto, l4proto, src-port } tuple exist.

Also note, if the cthelper is added from userspace, then the src-port will
always be zero, it's invalid for nf_ct_auto_assign_helper, so there's no
need to check the second point listed above.

Fixes: 893e093c786c ("netfilter: nf_ct_helper: bail out on duplicated helpers")
Signed-off-by: Liping Zhang <zlpnobody@gmail.com>
---
 net/netfilter/nf_conntrack_helper.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c
index 6dc44d9..a28ecfa 100644
--- a/net/netfilter/nf_conntrack_helper.c
+++ b/net/netfilter/nf_conntrack_helper.c
@@ -386,10 +386,20 @@ int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
 	BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1);
 
 	mutex_lock(&nf_ct_helper_mutex);
-	hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
-		if (nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple, &mask)) {
-			ret = -EEXIST;
-			goto out;
+	if (__nf_conntrack_helper_find(me->name, me->tuple.src.l3num,
+				       me->tuple.dst.protonum)) {
+		ret = -EEXIST;
+		goto out;
+	}
+
+	/* avoid unpredictable behaviour for auto_assign_helper */
+	if (!(me->flags & NF_CT_HELPER_F_USERSPACE)) {
+		hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
+			if (nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple,
+						     &mask)) {
+				ret = -EEXIST;
+				goto out;
+			}
 		}
 	}
 	hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]);
-- 
2.5.5



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

* Re: [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink
  2017-03-25 13:03 [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink Liping Zhang
@ 2017-03-29 10:36 ` Pablo Neira Ayuso
  2017-03-29 10:41 ` Pablo Neira Ayuso
  1 sibling, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2017-03-29 10:36 UTC (permalink / raw)
  To: Liping Zhang; +Cc: netfilter-devel, Liping Zhang

On Sat, Mar 25, 2017 at 09:03:23PM +0800, Liping Zhang wrote:
> From: Liping Zhang <zlpnobody@gmail.com>
> 
> cthelpers added via nfnetlink may have the same tuple, i.e. except for
> the l3proto and l4proto, other fields are all zero. So even with the
> different names, we will also fail to add them:
>   # nfct helper add ssdp inet udp
>   # nfct helper add tftp inet udp
>   nfct v1.4.3: netlink error: File exists
> 
> So in order to avoid unpredictable behaviour, we should:
> 1. cthelpers can be selected by nft ct helper obj or xt_CT target, so
> report error if duplicated { name, l3proto, l4proto } tuple exist.
> 2. cthelpers can be selected by nf_ct_tuple_src_mask_cmp when
> nf_ct_auto_assign_helper is enabled, so also report error if duplicated
> { l3proto, l4proto, src-port } tuple exist.
> 
> Also note, if the cthelper is added from userspace, then the src-port will
> always be zero, it's invalid for nf_ct_auto_assign_helper, so there's no
> need to check the second point listed above.

Also applied, thanks.

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

* Re: [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink
  2017-03-25 13:03 [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink Liping Zhang
  2017-03-29 10:36 ` Pablo Neira Ayuso
@ 2017-03-29 10:41 ` Pablo Neira Ayuso
  2017-03-29 11:05   ` Liping Zhang
  1 sibling, 1 reply; 5+ messages in thread
From: Pablo Neira Ayuso @ 2017-03-29 10:41 UTC (permalink / raw)
  To: Liping Zhang; +Cc: netfilter-devel, Liping Zhang

On Sat, Mar 25, 2017 at 09:03:23PM +0800, Liping Zhang wrote:
> From: Liping Zhang <zlpnobody@gmail.com>
> 
> cthelpers added via nfnetlink may have the same tuple, i.e. except for
> the l3proto and l4proto, other fields are all zero. So even with the
> different names, we will also fail to add them:
>   # nfct helper add ssdp inet udp
>   # nfct helper add tftp inet udp
>   nfct v1.4.3: netlink error: File exists
> 
> So in order to avoid unpredictable behaviour, we should:
> 1. cthelpers can be selected by nft ct helper obj or xt_CT target, so
> report error if duplicated { name, l3proto, l4proto } tuple exist.
> 2. cthelpers can be selected by nf_ct_tuple_src_mask_cmp when
> nf_ct_auto_assign_helper is enabled, so also report error if duplicated
> { l3proto, l4proto, src-port } tuple exist.
> 
> Also note, if the cthelper is added from userspace, then the src-port will
> always be zero, it's invalid for nf_ct_auto_assign_helper, so there's no
> need to check the second point listed above.
> 
> Fixes: 893e093c786c ("netfilter: nf_ct_helper: bail out on duplicated helpers")
> Signed-off-by: Liping Zhang <zlpnobody@gmail.com>
> ---
>  net/netfilter/nf_conntrack_helper.c | 18 ++++++++++++++----
>  1 file changed, 14 insertions(+), 4 deletions(-)
> 
> diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c
> index 6dc44d9..a28ecfa 100644
> --- a/net/netfilter/nf_conntrack_helper.c
> +++ b/net/netfilter/nf_conntrack_helper.c
> @@ -386,10 +386,20 @@ int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
>  	BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1);
>  
>  	mutex_lock(&nf_ct_helper_mutex);
> -	hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
> -		if (nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple, &mask)) {
> -			ret = -EEXIST;
> -			goto out;
> +	if (__nf_conntrack_helper_find(me->name, me->tuple.src.l3num,
> +				       me->tuple.dst.protonum)) {
> +		ret = -EEXIST;
> +		goto out;
> +	}
> +
> +	/* avoid unpredictable behaviour for auto_assign_helper */
> +	if (!(me->flags & NF_CT_HELPER_F_USERSPACE)) {
> +		hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
> +			if (nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple,
> +						     &mask)) {
> +				ret = -EEXIST;
> +				goto out;
> +			}

Wait.

Just a comestic change, would this look better if we just do:

	hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
                 if (!strcmp(h->name, name) &&
                     (h->tuple.src.l3num != NFPROTO_UNSPEC &&
                      h->tuple.src.l3num != l3num)) &&
                     h->tuple.dst.protonum == protonum) {
                        ret = -EEXIST;
                        goto out;
                 }

                 /* avoid unpredictable behaviour for auto_assign_helper */
                 if (!(me->flags & NF_CT_HELPER_F_USERSPACE)) &&
                     nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple, &mask)) {
                        ret = -EEXIST;
                        goto out;
	}

__nf_conntrack_helper_find() uses the _rcu variant to iterate over the
helper hash table, and we don't need this given we hold the mutex.
This is likely going to spot false positives with the RCU debugging
instrumentation I think.

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

* Re: [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink
  2017-03-29 10:41 ` Pablo Neira Ayuso
@ 2017-03-29 11:05   ` Liping Zhang
  2017-03-29 11:50     ` Pablo Neira Ayuso
  0 siblings, 1 reply; 5+ messages in thread
From: Liping Zhang @ 2017-03-29 11:05 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: Liping Zhang, Netfilter Developer Mailing List

Hi Pablo,

2017-03-29 18:41 GMT+08:00 Pablo Neira Ayuso <pablo@netfilter.org>:
[...]
> Wait.
>
> Just a comestic change, would this look better if we just do:
>
>         hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
>                  if (!strcmp(h->name, name) &&
>                      (h->tuple.src.l3num != NFPROTO_UNSPEC &&
>                       h->tuple.src.l3num != l3num)) &&

I think this check condition here should be:
(h->tuple.src.l3num == NFPROTO_UNSPEC || h->tuple.src.l3num == l3num)

>                      h->tuple.dst.protonum == protonum) {
>                         ret = -EEXIST;
>                         goto out;
>                  }
>
>                  /* avoid unpredictable behaviour for auto_assign_helper */
>                  if (!(me->flags & NF_CT_HELPER_F_USERSPACE)) &&
>                      nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple, &mask)) {
>                         ret = -EEXIST;
>                         goto out;
>         }
>
> __nf_conntrack_helper_find() uses the _rcu variant to iterate over the
> helper hash table, and we don't need this given we hold the mutex.
> This is likely going to spot false positives with the RCU debugging
> instrumentation I think.

Right, I did not notice this point. I will send V2 later.

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

* Re: [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink
  2017-03-29 11:05   ` Liping Zhang
@ 2017-03-29 11:50     ` Pablo Neira Ayuso
  0 siblings, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2017-03-29 11:50 UTC (permalink / raw)
  To: Liping Zhang; +Cc: Liping Zhang, Netfilter Developer Mailing List

On Wed, Mar 29, 2017 at 07:05:10PM +0800, Liping Zhang wrote:
> Hi Pablo,
> 
> 2017-03-29 18:41 GMT+08:00 Pablo Neira Ayuso <pablo@netfilter.org>:
> [...]
> > Wait.
> >
> > Just a comestic change, would this look better if we just do:
> >
> >         hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
> >                  if (!strcmp(h->name, name) &&
> >                      (h->tuple.src.l3num != NFPROTO_UNSPEC &&
> >                       h->tuple.src.l3num != l3num)) &&
> 
> I think this check condition here should be:
> (h->tuple.src.l3num == NFPROTO_UNSPEC || h->tuple.src.l3num == l3num)

Yes, I noticed after sending indeed.

> >                      h->tuple.dst.protonum == protonum) {
> >                         ret = -EEXIST;
> >                         goto out;
> >                  }
> >
> >                  /* avoid unpredictable behaviour for auto_assign_helper */
> >                  if (!(me->flags & NF_CT_HELPER_F_USERSPACE)) &&
> >                      nf_ct_tuple_src_mask_cmp(&cur->tuple, &me->tuple, &mask)) {
> >                         ret = -EEXIST;
> >                         goto out;
> >         }
> >
> > __nf_conntrack_helper_find() uses the _rcu variant to iterate over the
> > helper hash table, and we don't need this given we hold the mutex.
> > This is likely going to spot false positives with the RCU debugging
> > instrumentation I think.
> 
> Right, I did not notice this point. I will send V2 later.

Thanks!

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

end of thread, other threads:[~2017-03-29 11:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-25 13:03 [PATCH nf] netfilter: nf_ct_helper: permit cthelpers with different names via nfnetlink Liping Zhang
2017-03-29 10:36 ` Pablo Neira Ayuso
2017-03-29 10:41 ` Pablo Neira Ayuso
2017-03-29 11:05   ` Liping Zhang
2017-03-29 11:50     ` Pablo Neira Ayuso

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.