From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Taehee Yoo <ap420073@gmail.com>
Cc: fw@strlen.de, netfilter-devel@vger.kernel.org
Subject: Re: [PATCH] netfilter: xt_ecn: Add missing hotdrop mark.
Date: Mon, 31 Jul 2017 20:20:15 +0200 [thread overview]
Message-ID: <20170731182015.GA15201@salvia> (raw)
In-Reply-To: <20170729103300.30447-1-ap420073@gmail.com>
On Sat, Jul 29, 2017 at 07:33:00PM +0900, Taehee Yoo wrote:
> If the netfilter can't get L4 header, the netfilter
> marks hotdrop value. then {ip, ip6, arp, eb}t_do_table() drops
> that packet immediately. but xt_ecn doesn't mark hotdrop value.
>
> Signed-off-by: Taehee Yoo <ap420073@gmail.com>
> ---
> net/netfilter/xt_ecn.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/net/netfilter/xt_ecn.c b/net/netfilter/xt_ecn.c
> index 3c831a8..c58db1d 100644
> --- a/net/netfilter/xt_ecn.c
> +++ b/net/netfilter/xt_ecn.c
> @@ -37,8 +37,10 @@ static bool match_tcp(const struct sk_buff *skb, struct xt_action_param *par)
> * be good citizens.
> */
> th = skb_header_pointer(skb, par->thoff, sizeof(_tcph), &_tcph);
> - if (th == NULL)
> + if (!th) {
> + par->hotdrop = true;
> return false;
> + }
Is it that we always - consistenly - drop packets that has no
information that we need.
I would say it's better to do this via policy, it's more flexible,
rather than assuming that accessing a packet that doesn't contain the
information that we need means a drop.
Another concern for me regarding this is the fact that probably this
has been the default behaviour for long time, if that's the case, I
would be reluctant to change this at this point.
Let me know, thanks!
next prev parent reply other threads:[~2017-07-31 18:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-29 10:33 [PATCH] netfilter: xt_ecn: Add missing hotdrop mark Taehee Yoo
2017-07-31 18:20 ` Pablo Neira Ayuso [this message]
2017-08-01 2:57 ` Taehee Yoo
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=20170731182015.GA15201@salvia \
--to=pablo@netfilter.org \
--cc=ap420073@gmail.com \
--cc=fw@strlen.de \
--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.