netlink: make range pointers in policies const
authorJakub Kicinski <kuba@kernel.org>
Wed, 25 Oct 2023 16:22:04 +0000 (09:22 -0700)
committerJakub Kicinski <kuba@kernel.org>
Thu, 26 Oct 2023 23:24:09 +0000 (16:24 -0700)
struct nla_policy is usually constant itself, but unless
we make the ranges inside constant we won't be able to
make range structs const. The ranges are not modified
by the core.

Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Reviewed-by: David Ahern <dsahern@kernel.org>
Reviewed-by: Nikolay Aleksandrov <razor@blackwall.org>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20231025162204.132528-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/bonding/bond_netlink.c
drivers/net/vxlan/vxlan_mdb.c
include/net/netlink.h
net/ipv6/ioam6_iptunnel.c
net/sched/sch_fq.c
net/sched/sch_fq_pie.c
net/sched/sch_qfq.c
net/sched/sch_taprio.c
net/wireless/nl80211.c
tools/net/ynl/ynl-gen-c.py

index 27cbe148f0db5f82e988af3773fff1e3fce0997d..cfa74cf8bb1a95b1eb36f1135e39c256a220fec0 100644 (file)
@@ -85,7 +85,7 @@ nla_put_failure:
 }
 
 /* Limit the max delay range to 300s */
-static struct netlink_range_validation delay_range = {
+static const struct netlink_range_validation delay_range = {
        .max = 300000,
 };
 
index 5e041622261a555582517ea1441e7a78e1f3d9b0..3a21389658ce936139623839958b83f96b30ee87 100644 (file)
@@ -311,7 +311,7 @@ vxlan_mdbe_src_list_pol[MDBE_SRC_LIST_MAX + 1] = {
        [MDBE_SRC_LIST_ENTRY] = NLA_POLICY_NESTED(vxlan_mdbe_src_list_entry_pol),
 };
 
-static struct netlink_range_validation vni_range = {
+static const struct netlink_range_validation vni_range = {
        .max = VXLAN_N_VID - 1,
 };
 
index aba2b162a2260b71ba134e8966771164ec5e0175..83bdf787aeeecf5ddf3a116673a58a07c82ea6dd 100644 (file)
@@ -360,8 +360,8 @@ struct nla_policy {
                const u32 mask;
                const char *reject_message;
                const struct nla_policy *nested_policy;
-               struct netlink_range_validation *range;
-               struct netlink_range_validation_signed *range_signed;
+               const struct netlink_range_validation *range;
+               const struct netlink_range_validation_signed *range_signed;
                struct {
                        s16 min, max;
                };
index f6f5b83dd954db9364b138dc59fd82fac9edf650..7563f8c6aa87cf9f7841ee78dcea2a16f60ac344 100644 (file)
@@ -46,7 +46,7 @@ struct ioam6_lwt {
        struct ioam6_lwt_encap  tuninfo;
 };
 
-static struct netlink_range_validation freq_range = {
+static const struct netlink_range_validation freq_range = {
        .min = IOAM6_IPTUNNEL_FREQ_MIN,
        .max = IOAM6_IPTUNNEL_FREQ_MAX,
 };
index bf9d00518a60853b27910c47738509c09d53bf19..0fd18c344ab5ae6d53e12fc764c0506a2979b4c8 100644 (file)
@@ -897,7 +897,7 @@ static int fq_resize(struct Qdisc *sch, u32 log)
        return 0;
 }
 
-static struct netlink_range_validation iq_range = {
+static const struct netlink_range_validation iq_range = {
        .max = INT_MAX,
 };
 
index 68e6acd0f130d93de42b75f8af40513899b5e2bd..5b595773e59b70acbfe8c743e977a98468469b77 100644 (file)
@@ -202,7 +202,7 @@ out:
        return NET_XMIT_CN;
 }
 
-static struct netlink_range_validation fq_pie_q_range = {
+static const struct netlink_range_validation fq_pie_q_range = {
        .min = 1,
        .max = 1 << 20,
 };
index 5598f8be18ae1a0f252f50c198a328599ff0f5f1..28315166fe8e1f15775eabd9ea09bd8fd706aa34 100644 (file)
@@ -213,7 +213,7 @@ static struct qfq_class *qfq_find_class(struct Qdisc *sch, u32 classid)
        return container_of(clc, struct qfq_class, common);
 }
 
-static struct netlink_range_validation lmax_range = {
+static const struct netlink_range_validation lmax_range = {
        .min = QFQ_MIN_LMAX,
        .max = QFQ_MAX_LMAX,
 };
index 1cb5e41c0ec7242216531b6da342bfa54df33879..2e1949de4171add132da0201191e24bc49d741a2 100644 (file)
@@ -1015,7 +1015,7 @@ static const struct nla_policy taprio_tc_policy[TCA_TAPRIO_TC_ENTRY_MAX + 1] = {
                                                              TC_FP_PREEMPTIBLE),
 };
 
-static struct netlink_range_validation_signed taprio_cycle_time_range = {
+static const struct netlink_range_validation_signed taprio_cycle_time_range = {
        .min = 0,
        .max = INT_MAX,
 };
index 2650543dcebeea3b6182975a70f2cbbeb581100b..2f8353bf603cb1c1214b07ae8e4b94bdfffadd5a 100644 (file)
@@ -463,7 +463,7 @@ nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] = {
        [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
 };
 
-static struct netlink_range_validation nl80211_punct_bitmap_range = {
+static const struct netlink_range_validation nl80211_punct_bitmap_range = {
        .min = 0,
        .max = 0xffff,
 };
index 0fee68863db4f52bead8dbd595b819bbd8114acc..31fd96f14fc0a36219a88a2c8f3de1d87301e47a 100755 (executable)
@@ -2038,7 +2038,7 @@ def print_kernel_policy_ranges(family, cw):
                 first = False
 
             sign = '' if attr.type[0] == 'u' else '_signed'
-            cw.block_start(line=f'struct netlink_range_validation{sign} {c_lower(attr.enum_name)}_range =')
+            cw.block_start(line=f'static const struct netlink_range_validation{sign} {c_lower(attr.enum_name)}_range =')
             members = []
             if 'min' in attr.checks:
                 members.append(('min', attr.get_limit('min')))