ipv4: route: restore skb_dst_set in inet_rtm_getroute
recent updates to inet_rtm_getroute dropped skb_dst_set in
inet_rtm_getroute. This patch restores it because it is
needed to release the dst correctly.
Fixes: 3765d35ed8
("net: ipv4: Convert inet_rtm_getroute to rcu versions of route lookup")
Reported-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a5e2ee5da4
commit
ba52d61e0f
@ -2547,8 +2547,9 @@ EXPORT_SYMBOL_GPL(ip_route_output_flow);
|
|||||||
/* called with rcu_read_lock held */
|
/* called with rcu_read_lock held */
|
||||||
static int rt_fill_info(struct net *net, __be32 dst, __be32 src, u32 table_id,
|
static int rt_fill_info(struct net *net, __be32 dst, __be32 src, u32 table_id,
|
||||||
struct flowi4 *fl4, struct sk_buff *skb, u32 portid,
|
struct flowi4 *fl4, struct sk_buff *skb, u32 portid,
|
||||||
u32 seq, struct rtable *rt)
|
u32 seq)
|
||||||
{
|
{
|
||||||
|
struct rtable *rt = skb_rtable(skb);
|
||||||
struct rtmsg *r;
|
struct rtmsg *r;
|
||||||
struct nlmsghdr *nlh;
|
struct nlmsghdr *nlh;
|
||||||
unsigned long expires = 0;
|
unsigned long expires = 0;
|
||||||
@ -2750,6 +2751,7 @@ static int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
|
|||||||
if (err)
|
if (err)
|
||||||
goto errout_free;
|
goto errout_free;
|
||||||
|
|
||||||
|
skb_dst_set(skb, &rt->dst);
|
||||||
if (rtm->rtm_flags & RTM_F_NOTIFY)
|
if (rtm->rtm_flags & RTM_F_NOTIFY)
|
||||||
rt->rt_flags |= RTCF_NOTIFY;
|
rt->rt_flags |= RTCF_NOTIFY;
|
||||||
|
|
||||||
@ -2763,8 +2765,7 @@ static int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
|
|||||||
fl4.flowi4_tos, res.fi, 0);
|
fl4.flowi4_tos, res.fi, 0);
|
||||||
else
|
else
|
||||||
err = rt_fill_info(net, dst, src, table_id, &fl4, skb,
|
err = rt_fill_info(net, dst, src, table_id, &fl4, skb,
|
||||||
NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
|
NETLINK_CB(in_skb).portid, nlh->nlmsg_seq);
|
||||||
rt);
|
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
goto errout_free;
|
goto errout_free;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user