From: Pablo Neira Ayuso <pablo@netfilter.org>
To: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nf] netfilter: nf_ct_helper: bail out on duplicated ports
Date: Mon, 30 May 2016 12:25:04 +0200 [thread overview]
Message-ID: <20160530102433.GA1817@salvia> (raw)
In-Reply-To: <1464167637-7996-1-git-send-email-pablo@netfilter.org>
On Wed, May 25, 2016 at 11:13:57AM +0200, Pablo Neira Ayuso wrote:
> Compare the helper name up to the dash, so we can catch if the user has
> supplied duplicated ports via module parameters.
>
> Reported-by: Feng Gao <gfree.wind@gmail.com>
> Reported-by: Taehee Yoo <ap420073@gmail.com>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
> ---
> net/netfilter/nf_conntrack_helper.c | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c
> index 3b40ec5..94f36f2 100644
> --- a/net/netfilter/nf_conntrack_helper.c
> +++ b/net/netfilter/nf_conntrack_helper.c
> @@ -361,9 +361,10 @@ EXPORT_SYMBOL_GPL(nf_ct_helper_log);
>
> int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
> {
> - int ret = 0;
> struct nf_conntrack_helper *cur;
> unsigned int h = helper_hash(&me->tuple);
> + const char *slash;
> + int len, ret = 0;
>
> BUG_ON(me->expect_policy == NULL);
> BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES);
> @@ -371,7 +372,13 @@ int nf_conntrack_helper_register(struct nf_conntrack_helper *me)
>
> mutex_lock(&nf_ct_helper_mutex);
> hlist_for_each_entry(cur, &nf_ct_helper_hash[h], hnode) {
> - if (strncmp(cur->name, me->name, NF_CT_HELPER_NAME_LEN) == 0 &&
> + slash = strchr(cur->name, '-');
I'm discarding this, we have a valid helper using dash in the name.
net/netfilter/nf_conntrack_netbios_ns.c: .name = "netbios-ns",
Will send a new version of this patch.
prev parent reply other threads:[~2016-05-30 10:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-25 9:13 [PATCH nf] netfilter: nf_ct_helper: bail out on duplicated ports Pablo Neira Ayuso
2016-05-30 10:25 ` Pablo Neira Ayuso [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=20160530102433.GA1817@salvia \
--to=pablo@netfilter.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 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.