ipv6: Continue processing multipath route even if gateway attribute is invalid
[ Upstream commit e30a845b0376eb51c9c94f56bbd53b2e08ba822f ] ip6_route_multipath_del loop continues processing the multipath attribute even if delete of a nexthop path fails. For consistency, do the same if the gateway attribute is invalid. Fixes: 1ff15a710a86 ("ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route") Signed-off-by: David Ahern <dsahern@kernel.org> Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Link: https://lore.kernel.org/r/20220103171911.94739-1-dsahern@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
5a7d650bb1
commit
72b0d14a0a
@@ -5348,8 +5348,10 @@ static int ip6_route_multipath_del(struct fib6_config *cfg,
|
|||||||
if (nla) {
|
if (nla) {
|
||||||
err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
|
err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
|
||||||
extack);
|
extack);
|
||||||
if (err)
|
if (err) {
|
||||||
return err;
|
last_err = err;
|
||||||
|
goto next_rtnh;
|
||||||
|
}
|
||||||
|
|
||||||
r_cfg.fc_flags |= RTF_GATEWAY;
|
r_cfg.fc_flags |= RTF_GATEWAY;
|
||||||
}
|
}
|
||||||
@@ -5358,6 +5360,7 @@ static int ip6_route_multipath_del(struct fib6_config *cfg,
|
|||||||
if (err)
|
if (err)
|
||||||
last_err = err;
|
last_err = err;
|
||||||
|
|
||||||
|
next_rtnh:
|
||||||
rtnh = rtnh_next(rtnh, &remaining);
|
rtnh = rtnh_next(rtnh, &remaining);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user