From: Florian Westphal <fw@strlen.de>
To: <netfilter-devel@vger.kernel.org>
Subject: [PATCH nf-next 0/2] netfilter: reduce size of hook entry points
Date: Sun, 3 Dec 2017 00:58:46 +0100 [thread overview]
Message-ID: <20171202235848.22737-1-fw@strlen.de> (raw)
struct net contains:
struct nf_hook_entries __rcu *hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
where NFPROTO_NUMPROTO = 13 and NF_MAX_HOOKS = 8.
... and that needs a *lot* more space than what we really need.
We only need hooks for arp, bridge, ipv4, ipv6 and decnet.
Arp only has 3 hook types, decnet has 7, all others have 5.
So replace this with dedicated arrays of the correct size to save
some space.
Changes since RFC:
- bridge only needs 5, not 6 hooks (BROUTE isn't a real hookpoint)
- Use run-time check to reject register requests for hook types that
don't fit the array size.
RFC tried to use BUILD_BUG_ON checks in nf_hook(), but that breaks build
on some older gcc releases.
include/linux/netfilter.h | 30 ++++++++++++++++++--
include/net/netns/netfilter.h | 15 +++++++++-
net/bridge/br_netfilter_hooks.c | 2 -
net/netfilter/core.c | 60 ++++++++++++++++++++++++++++++++++------
net/netfilter/nf_queue.c | 21 ++++++++++++--
5 files changed, 114 insertions(+), 14 deletions(-)
next reply other threads:[~2017-12-02 23:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-02 23:58 Florian Westphal [this message]
2017-12-02 23:58 ` [PATCH nf-next 1/2] netfilter: reduce size of hook entry point locations Florian Westphal
2017-12-02 23:58 ` [PATCH nf-next 2/2] netfilter: reduce hook array sizes to what is needed Florian Westphal
2017-12-06 18:14 ` Pablo Neira Ayuso
2017-12-06 8:20 ` [PATCH nf-next 0/2] netfilter: reduce size of hook entry points Pablo Neira Ayuso
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=20171202235848.22737-1-fw@strlen.de \
--to=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 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).