mirror of
https://github.com/armbian/linux-cix.git
synced 2026-01-06 12:30:45 -08:00
genetlink: start to validate reserved header bytes
We had historically not checked that genlmsghdr.reserved is 0 on input which prevents us from using those precious bytes in the future. One use case would be to extend the cmd field, which is currently just 8 bits wide and 256 is not a lot of commands for some core families. To make sure that new families do the right thing by default put the onus of opting out of validation on existing families. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Acked-by: Paul Moore <paul@paul-moore.com> (NetLabel) Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
53a406803c
commit
9c5d03d362
@@ -2322,6 +2322,7 @@ static struct genl_family nbd_genl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = nbd_connect_genl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(nbd_connect_genl_ops),
|
||||
.resv_start_op = NBD_CMD_STATUS + 1,
|
||||
.maxattr = NBD_ATTR_MAX,
|
||||
.policy = nbd_attr_policy,
|
||||
.mcgrps = nbd_mcast_grps,
|
||||
|
||||
@@ -1859,6 +1859,7 @@ static struct genl_family gtp_genl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = gtp_genl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(gtp_genl_ops),
|
||||
.resv_start_op = GTP_CMD_ECHOREQ + 1,
|
||||
.mcgrps = gtp_genl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(gtp_genl_mcgrps),
|
||||
};
|
||||
|
||||
@@ -630,6 +630,7 @@ static struct genl_family hwsim_genl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = hwsim_nl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(hwsim_nl_ops),
|
||||
.resv_start_op = MAC802154_HWSIM_CMD_NEW_EDGE + 1,
|
||||
.mcgrps = hwsim_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(hwsim_mcgrps),
|
||||
};
|
||||
|
||||
@@ -3404,6 +3404,7 @@ static struct genl_family macsec_fam __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = macsec_genl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(macsec_genl_ops),
|
||||
.resv_start_op = MACSEC_CMD_UPD_OFFLOAD + 1,
|
||||
};
|
||||
|
||||
static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
|
||||
|
||||
@@ -2840,6 +2840,7 @@ static struct genl_family team_nl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = team_nl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(team_nl_ops),
|
||||
.resv_start_op = TEAM_CMD_PORT_LIST_GET + 1,
|
||||
.mcgrps = team_nl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(team_nl_mcgrps),
|
||||
};
|
||||
|
||||
@@ -621,6 +621,7 @@ static const struct genl_ops genl_ops[] = {
|
||||
static struct genl_family genl_family __ro_after_init = {
|
||||
.ops = genl_ops,
|
||||
.n_ops = ARRAY_SIZE(genl_ops),
|
||||
.resv_start_op = WG_CMD_SET_DEVICE + 1,
|
||||
.name = WG_GENL_NAME,
|
||||
.version = WG_GENL_VERSION,
|
||||
.maxattr = WGDEVICE_A_MAX,
|
||||
|
||||
@@ -5288,6 +5288,7 @@ static struct genl_family hwsim_genl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = hwsim_ops,
|
||||
.n_small_ops = ARRAY_SIZE(hwsim_ops),
|
||||
.resv_start_op = HWSIM_CMD_DEL_MAC_ADDR + 1,
|
||||
.mcgrps = hwsim_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(hwsim_mcgrps),
|
||||
};
|
||||
|
||||
@@ -486,6 +486,7 @@ static struct genl_family tcmu_genl_family __ro_after_init = {
|
||||
.netnsok = true,
|
||||
.small_ops = tcmu_genl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(tcmu_genl_ops),
|
||||
.resv_start_op = TCMU_CMD_SET_FEATURES + 1,
|
||||
};
|
||||
|
||||
#define tcmu_cmd_set_dbi_cur(cmd, index) ((cmd)->dbi_cur = (index))
|
||||
|
||||
@@ -693,6 +693,7 @@ static struct genl_family thermal_gnl_family __ro_after_init = {
|
||||
.policy = thermal_genl_policy,
|
||||
.small_ops = thermal_genl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(thermal_genl_ops),
|
||||
.resv_start_op = THERMAL_GENL_CMD_CDEV_GET + 1,
|
||||
.mcgrps = thermal_genl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(thermal_genl_mcgrps),
|
||||
};
|
||||
|
||||
@@ -1183,6 +1183,7 @@ static struct genl_family vdpa_nl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.ops = vdpa_nl_ops,
|
||||
.n_ops = ARRAY_SIZE(vdpa_nl_ops),
|
||||
.resv_start_op = VDPA_CMD_DEV_VSTATS_GET + 1,
|
||||
};
|
||||
|
||||
static int vdpa_init(void)
|
||||
|
||||
@@ -51,6 +51,7 @@ struct genl_family cifs_genl_family = {
|
||||
.policy = cifs_genl_policy,
|
||||
.ops = cifs_genl_ops,
|
||||
.n_ops = ARRAY_SIZE(cifs_genl_ops),
|
||||
.resv_start_op = CIFS_GENL_CMD_SWN_NOTIFY + 1,
|
||||
.mcgrps = cifs_genl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(cifs_genl_mcgrps),
|
||||
};
|
||||
|
||||
@@ -75,6 +75,7 @@ static struct genl_family family __ro_after_init = {
|
||||
.version = DLM_GENL_VERSION,
|
||||
.small_ops = dlm_nl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(dlm_nl_ops),
|
||||
.resv_start_op = DLM_CMD_HELLO + 1,
|
||||
.module = THIS_MODULE,
|
||||
};
|
||||
|
||||
|
||||
@@ -197,6 +197,7 @@ static struct genl_family ksmbd_genl_family = {
|
||||
.module = THIS_MODULE,
|
||||
.ops = ksmbd_genl_ops,
|
||||
.n_ops = ARRAY_SIZE(ksmbd_genl_ops),
|
||||
.resv_start_op = KSMBD_EVENT_SPNEGO_AUTHEN_RESPONSE + 1,
|
||||
};
|
||||
|
||||
static void ksmbd_nl_init_fixup(void)
|
||||
|
||||
@@ -294,6 +294,7 @@ static struct genl_family ZZZ_genl_family __ro_after_init = {
|
||||
.ops = ZZZ_genl_ops,
|
||||
.n_ops = ARRAY_SIZE(ZZZ_genl_ops),
|
||||
.mcgrps = ZZZ_genl_mcgrps,
|
||||
.resv_start_op = 42, /* drbd is currently the only user */
|
||||
.n_mcgrps = ARRAY_SIZE(ZZZ_genl_mcgrps),
|
||||
.module = THIS_MODULE,
|
||||
};
|
||||
|
||||
@@ -39,6 +39,8 @@ struct genl_info;
|
||||
* undo operations done by pre_doit, for example release locks
|
||||
* @mcgrps: multicast groups used by this family
|
||||
* @n_mcgrps: number of multicast groups
|
||||
* @resv_start_op: first operation for which reserved fields of the header
|
||||
* can be validated, new families should leave this field at zero
|
||||
* @mcgrp_offset: starting number of multicast group IDs in this family
|
||||
* (private)
|
||||
* @ops: the operations supported by this family
|
||||
@@ -58,6 +60,7 @@ struct genl_family {
|
||||
u8 n_ops;
|
||||
u8 n_small_ops;
|
||||
u8 n_mcgrps;
|
||||
u8 resv_start_op;
|
||||
const struct nla_policy *policy;
|
||||
int (*pre_doit)(const struct genl_ops *ops,
|
||||
struct sk_buff *skb,
|
||||
|
||||
@@ -688,6 +688,7 @@ static struct genl_family family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.ops = taskstats_ops,
|
||||
.n_ops = ARRAY_SIZE(taskstats_ops),
|
||||
.resv_start_op = CGROUPSTATS_CMD_GET + 1,
|
||||
.netnsok = true,
|
||||
};
|
||||
|
||||
|
||||
@@ -1493,6 +1493,7 @@ struct genl_family batadv_netlink_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = batadv_netlink_ops,
|
||||
.n_small_ops = ARRAY_SIZE(batadv_netlink_ops),
|
||||
.resv_start_op = BATADV_CMD_SET_VLAN + 1,
|
||||
.mcgrps = batadv_netlink_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(batadv_netlink_mcgrps),
|
||||
};
|
||||
|
||||
@@ -9610,6 +9610,7 @@ static struct genl_family devlink_nl_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = devlink_nl_ops,
|
||||
.n_small_ops = ARRAY_SIZE(devlink_nl_ops),
|
||||
.resv_start_op = DEVLINK_CMD_SELFTESTS_RUN + 1,
|
||||
.mcgrps = devlink_nl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(devlink_nl_mcgrps),
|
||||
};
|
||||
|
||||
@@ -1645,6 +1645,7 @@ static struct genl_family net_drop_monitor_family __ro_after_init = {
|
||||
.module = THIS_MODULE,
|
||||
.small_ops = dropmon_ops,
|
||||
.n_small_ops = ARRAY_SIZE(dropmon_ops),
|
||||
.resv_start_op = NET_DM_CMD_STATS_GET + 1,
|
||||
.mcgrps = dropmon_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(dropmon_mcgrps),
|
||||
};
|
||||
|
||||
@@ -1033,6 +1033,7 @@ static struct genl_family ethtool_genl_family __ro_after_init = {
|
||||
.parallel_ops = true,
|
||||
.ops = ethtool_genl_ops,
|
||||
.n_ops = ARRAY_SIZE(ethtool_genl_ops),
|
||||
.resv_start_op = ETHTOOL_MSG_MODULE_GET + 1,
|
||||
.mcgrps = ethtool_nl_mcgrps,
|
||||
.n_mcgrps = ARRAY_SIZE(ethtool_nl_mcgrps),
|
||||
};
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user