]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
phonet: fix rtm_phonet_notify() skb allocation
authorEric Dumazet <edumazet@google.com>
Thu, 2 May 2024 16:17:00 +0000 (16:17 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 May 2024 10:02:22 +0000 (12:02 +0200)
commitee9e39a6cb3ca2a3d35b4ae25547ee3526a44d00
tree664f2f2405071123c2dc8ecd774abe7da1b0121a
parentd4c6b1807ce625df7d9c30861e3f9ef1277c92a2
phonet: fix rtm_phonet_notify() skb allocation

[ Upstream commit d8cac8568618dcb8a51af3db1103e8d4cc4aeea7 ]

fill_route() stores three components in the skb:

- struct rtmsg
- RTA_DST (u8)
- RTA_OIF (u32)

Therefore, rtm_phonet_notify() should use

NLMSG_ALIGN(sizeof(struct rtmsg)) +
nla_total_size(1) +
nla_total_size(4)

Fixes: f062f41d0657 ("Phonet: routing table Netlink interface")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Rémi Denis-Courmont <courmisch@gmail.com>
Link: https://lore.kernel.org/r/20240502161700.1804476-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/phonet/pn_netlink.c