From: Phil Sutter <phil@nwl.cc>
To: Pablo Neira Ayuso <pablo@netfilter.org>
Cc: Florian Westphal <fw@strlen.de>, Eric Garver <e@erig.me>,
netfilter-devel@vger.kernel.org
Subject: [nf-next PATCH] netfilter: nf_tables: Introduce NFT_TABLE_F_PERSIST
Date: Fri, 15 Dec 2023 13:26:27 +0100 [thread overview]
Message-ID: <20231215122627.19686-1-phil@nwl.cc> (raw)
This companion flag to NFT_TABLE_F_OWNER requests the kernel to keep the
table around after the process has exited. It marks such table as
orphaned and allows another process to retake ownership later.
Signed-off-by: Phil Sutter <phil@nwl.cc>
---
include/uapi/linux/netfilter/nf_tables.h | 6 +++-
net/netfilter/nf_tables_api.c | 37 ++++++++++++++++++------
2 files changed, 33 insertions(+), 10 deletions(-)
diff --git a/include/uapi/linux/netfilter/nf_tables.h b/include/uapi/linux/netfilter/nf_tables.h
index ca30232b7bc8..3fee994721cd 100644
--- a/include/uapi/linux/netfilter/nf_tables.h
+++ b/include/uapi/linux/netfilter/nf_tables.h
@@ -179,13 +179,17 @@ enum nft_hook_attributes {
* enum nft_table_flags - nf_tables table flags
*
* @NFT_TABLE_F_DORMANT: this table is not active
+ * @NFT_TABLE_F_OWNER: this table is owned by a process
+ * @NFT_TABLE_F_PERSIST: this table shall outlive its owner
*/
enum nft_table_flags {
NFT_TABLE_F_DORMANT = 0x1,
NFT_TABLE_F_OWNER = 0x2,
+ NFT_TABLE_F_PERSIST = 0x4,
};
#define NFT_TABLE_F_MASK (NFT_TABLE_F_DORMANT | \
- NFT_TABLE_F_OWNER)
+ NFT_TABLE_F_OWNER | \
+ NFT_TABLE_F_PERSIST)
/**
* enum nft_table_attributes - nf_tables table netlink attributes
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index a75dcce2c6c4..cca2741f47be 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -1198,24 +1198,29 @@ static void nf_tables_table_disable(struct net *net, struct nft_table *table)
static int nf_tables_updtable(struct nft_ctx *ctx)
{
struct nft_trans *trans;
- u32 flags;
+ u32 flags = 0;
int ret;
- if (!ctx->nla[NFTA_TABLE_FLAGS])
- return 0;
+ if (ctx->nla[NFTA_TABLE_FLAGS])
+ flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
- flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
if (flags & ~NFT_TABLE_F_MASK)
return -EOPNOTSUPP;
if (flags == ctx->table->flags)
return 0;
- if ((nft_table_has_owner(ctx->table) &&
- !(flags & NFT_TABLE_F_OWNER)) ||
- (!nft_table_has_owner(ctx->table) &&
- flags & NFT_TABLE_F_OWNER))
- return -EOPNOTSUPP;
+ if (nft_table_has_owner(ctx->table)) {
+ if (ctx->table->nlpid != ctx->portid)
+ return -EPERM;
+ if (!(flags & NFT_TABLE_F_OWNER))
+ return -EOPNOTSUPP;
+ }
+
+ if (flags & NFT_TABLE_F_OWNER &&
+ !nft_table_has_owner(ctx->table) &&
+ !(ctx->table->flags & NFT_TABLE_F_PERSIST))
+ return -EPERM;
/* No dormant off/on/off/on games in single transaction */
if (ctx->table->flags & __NFT_TABLE_F_UPDATE)
@@ -1226,6 +1231,16 @@ static int nf_tables_updtable(struct nft_ctx *ctx)
if (trans == NULL)
return -ENOMEM;
+ if (flags & NFT_TABLE_F_OWNER) {
+ ctx->table->flags &= ~NFT_TABLE_F_PERSIST;
+ ctx->table->flags |= flags & NFT_TABLE_F_PERSIST;
+ ctx->table->flags |= NFT_TABLE_F_OWNER;
+ ctx->table->nlpid = ctx->portid;
+ } else if (nft_table_has_owner(ctx->table)) {
+ ctx->table->flags &= ~NFT_TABLE_F_OWNER;
+ ctx->table->nlpid = 0;
+ }
+
if ((flags & NFT_TABLE_F_DORMANT) &&
!(ctx->table->flags & NFT_TABLE_F_DORMANT)) {
ctx->table->flags |= NFT_TABLE_F_DORMANT;
@@ -11373,6 +11388,10 @@ static int nft_rcv_nl_event(struct notifier_block *this, unsigned long event,
list_for_each_entry(table, &nft_net->tables, list) {
if (nft_table_has_owner(table) &&
n->portid == table->nlpid) {
+ if (table->flags & NFT_TABLE_F_PERSIST) {
+ table->flags &= ~NFT_TABLE_F_OWNER;
+ continue;
+ }
__nft_release_hook(net, table);
list_del_rcu(&table->list);
to_delete[deleted++] = table;
--
2.43.0
next reply other threads:[~2023-12-15 12:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-15 12:26 Phil Sutter [this message]
2023-12-18 23:30 ` [nf-next PATCH] netfilter: nf_tables: Introduce NFT_TABLE_F_PERSIST 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=20231215122627.19686-1-phil@nwl.cc \
--to=phil@nwl.cc \
--cc=e@erig.me \
--cc=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.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