From: Jakub Kicinski <kuba@kernel.org>
To: "Keller, Jacob E" <jacob.e.keller@intel.com>
Cc: "davem@davemloft.net" <davem@davemloft.net>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"edumazet@google.com" <edumazet@google.com>,
"pabeni@redhat.com" <pabeni@redhat.com>,
"Jonathan Lemon" <bsd@meta.com>
Subject: Re: [PATCH net-next] genetlink: fix policy dump for dumps
Date: Tue, 8 Nov 2022 15:44:26 -0800 [thread overview]
Message-ID: <20221108154426.3a882067@kernel.org> (raw)
In-Reply-To: <CO1PR11MB5089F3CECB59624025A648A3D63F9@CO1PR11MB5089.namprd11.prod.outlook.com>
On Tue, 8 Nov 2022 20:47:57 +0000 Keller, Jacob E wrote:
> A little bit tricky code here, but it makes sense. We could rewrite this to be a bit more verbose like:
>
> doit_err = genl_get_cmd(.. GENL_CMD_CAP_DO ..);
> dumpit_err = genl_get_cmd(.. GENL_CMD_CAP_DUMPIT ..);
> if (doit_err && dumpit_err) {
> ...
> }
>
> That might be a bit easier to read than the !! ( ) + ( ) < 1 notation.
True, I should not give into the bit math temptations.
How about a helper:
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 9b7dfc45dd67..600993c80050 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -282,6 +282,7 @@ genl_cmd_full_to_split(struct genl_split_ops *op,
return 0;
}
+/* Must make sure that op is initialized to 0 on failure */
static int
genl_get_cmd(u32 cmd, u8 flags, const struct genl_family *family,
struct genl_split_ops *op)
@@ -302,6 +303,21 @@ genl_get_cmd(u32 cmd, u8 flags, const struct genl_family *family,
return err;
}
+/* For policy dumping only, get ops of both do and dump.
+ * Fail if both are missing, genl_get_cmd() will zero-init in case of failure.
+ */
+static int
+genl_get_cmd_both(u32 cmd, const struct genl_family *family,
+ struct genl_split_ops *doit, struct genl_split_ops *dumpit)
+{
+ int err1, err2;
+
+ err1 = genl_get_cmd(cmd, GENL_CMD_CAP_DO, family, doit);
+ err2 = genl_get_cmd(cmd, GENL_CMD_CAP_DUMP, family, dumpit);
+
+ return err1 && err2 ? -ENOENT : 0;
+}
+
static bool
genl_op_iter_init(const struct genl_family *family, struct genl_op_iter *iter)
{
@@ -1406,10 +1422,10 @@ static int ctrl_dumppolicy_start(struct netlink_callback *cb)
ctx->single_op = true;
ctx->op = nla_get_u32(tb[CTRL_ATTR_OP]);
- if (genl_get_cmd(ctx->op, GENL_CMD_CAP_DO, rt, &doit) &&
- genl_get_cmd(ctx->op, GENL_CMD_CAP_DUMP, rt, &dump)) {
+ err = genl_get_cmd_both(ctx->op, rt, &doit, &dump);
+ if (err) {
NL_SET_BAD_ATTR(cb->extack, tb[CTRL_ATTR_OP]);
- return -ENOENT;
+ return err;
}
if (doit.policy) {
@@ -1551,13 +1567,9 @@ static int ctrl_dumppolicy(struct sk_buff *skb, struct netlink_callback *cb)
if (ctx->single_op) {
struct genl_split_ops doit, dumpit;
- if (genl_get_cmd(ctx->op, GENL_CMD_CAP_DO,
- ctx->rt, &doit) &&
- genl_get_cmd(ctx->op, GENL_CMD_CAP_DUMP,
- ctx->rt, &dumpit)) {
- WARN_ON(1);
+ if (WARN_ON(genl_get_cmd_both(ctx->op, ctx->rt,
+ &doit, &dumpit)))
return -ENOENT;
- }
if (ctrl_dumppolicy_put_op(skb, cb, &doit, &dumpit))
return skb->len;
--
2.38.1
next prev parent reply other threads:[~2022-11-08 23:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-08 20:40 [PATCH net-next] genetlink: fix policy dump for dumps Jakub Kicinski
2022-11-08 20:47 ` Keller, Jacob E
2022-11-08 23:44 ` Jakub Kicinski [this message]
2022-11-08 23:49 ` Keller, Jacob E
2022-11-09 17:46 ` Leon Romanovsky
2022-11-09 18:59 ` Leon Romanovsky
2022-11-09 20:11 ` Jakub Kicinski
2022-11-10 2:42 ` Saeed Mahameed
2022-11-10 6:00 ` Leon Romanovsky
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=20221108154426.3a882067@kernel.org \
--to=kuba@kernel.org \
--cc=bsd@meta.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jacob.e.keller@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/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).