]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: rtnetlink: add msg kind names
authorNikolay Aleksandrov <razor@blackwall.org>
Wed, 13 Apr 2022 10:51:51 +0000 (13:51 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Oct 2024 13:11:57 +0000 (15:11 +0200)
[ Upstream commit 12dc5c2cb7b269c5a1c6d02844f40bfce942a7a6 ]

Add rtnl kind names instead of using raw values. We'll need to
check for DEL kind later to validate bulk flag support.

Signed-off-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Stable-dep-of: d51705614f66 ("mctp: Handle error of rtnl_register_module().")
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/net/rtnetlink.h
net/core/rtnetlink.c

index a2a74e0e5c494a7698c197973ada997745ea0461..c9d3ae92c93217524147a45b9cae514e80488805 100644 (file)
@@ -13,6 +13,13 @@ enum rtnl_link_flags {
        RTNL_FLAG_DOIT_UNLOCKED = 1,
 };
 
+enum rtnl_kinds {
+       RTNL_KIND_NEW,
+       RTNL_KIND_DEL,
+       RTNL_KIND_GET,
+       RTNL_KIND_SET
+};
+
 void rtnl_register(int protocol, int msgtype,
                   rtnl_doit_func, rtnl_dumpit_func, unsigned int flags);
 int rtnl_register_module(struct module *owner, int protocol, int msgtype,
index eca7f6f4a52f5ac0c19bc4f695aa7b2ef5205844..8fc86d1edf5611273ae7d1c1e9394cbe22ea1c79 100644 (file)
@@ -5521,11 +5521,11 @@ static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
 {
        struct net *net = sock_net(skb->sk);
        struct rtnl_link *link;
+       enum rtnl_kinds kind;
        struct module *owner;
        int err = -EOPNOTSUPP;
        rtnl_doit_func doit;
        unsigned int flags;
-       int kind;
        int family;
        int type;
 
@@ -5542,11 +5542,11 @@ static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
        family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
        kind = type&3;
 
-       if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN))
+       if (kind != RTNL_KIND_GET && !netlink_net_capable(skb, CAP_NET_ADMIN))
                return -EPERM;
 
        rcu_read_lock();
-       if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
+       if (kind == RTNL_KIND_GET && (nlh->nlmsg_flags & NLM_F_DUMP)) {
                struct sock *rtnl;
                rtnl_dumpit_func dumpit;
                u32 min_dump_alloc = 0;