[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200121000446.339681-1-ndev@hwipl.net>
Date: Tue, 21 Jan 2020 01:04:46 +0100
From: Hans Wippel <ndev@...pl.net>
To: kgraul@...ux.ibm.com, ubraun@...ux.ibm.com, davem@...emloft.net
Cc: netdev@...r.kernel.org, Hans Wippel <ndev@...pl.net>
Subject: [PATCH net-next] net/smc: allow unprivileged users to read pnet table
The current flags of the SMC_PNET_GET command only allow privileged
users to retrieve entries from the pnet table via netlink. The content
of the pnet table may be useful for all users though, e.g., for
debugging smc connection problems.
This patch removes the GENL_ADMIN_PERM flag so that unprivileged users
can read the pnet table.
Signed-off-by: Hans Wippel <ndev@...pl.net>
---
net/smc/smc_pnet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/smc/smc_pnet.c b/net/smc/smc_pnet.c
index 82dedf052d86..2a5ed47c3e08 100644
--- a/net/smc/smc_pnet.c
+++ b/net/smc/smc_pnet.c
@@ -611,7 +611,7 @@ static const struct genl_ops smc_pnet_ops[] = {
{
.cmd = SMC_PNETID_GET,
.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
- .flags = GENL_ADMIN_PERM,
+ /* can be retrieved by unprivileged users */
.doit = smc_pnet_get,
.dumpit = smc_pnet_dump,
.start = smc_pnet_dump_start
--
2.25.0
Powered by blists - more mailing lists