diff mbox series

[net] ipv6: Continue processing multipath route even if gateway attribute is invalid

Message ID 20220103171911.94739-1-dsahern@kernel.org (mailing list archive)
State Accepted
Delegated to: Netdev Maintainers
Headers show
Series [net] ipv6: Continue processing multipath route even if gateway attribute is invalid | expand

Checks

Context Check Description
netdev/tree_selection success Clearly marked for net
netdev/fixes_present success Fixes tag present in non-next series
netdev/subject_prefix success Link
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 1 this patch: 1
netdev/cc_maintainers warning 3 maintainers not CCed: yoshfuji@linux-ipv6.org davem@davemloft.net kuba@kernel.org
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes fail Problems with Fixes tag: 1
netdev/build_allmodconfig_warn success Errors and warnings before: 1 this patch: 1
netdev/checkpatch warning WARNING: Unknown commit id 'd5297ac885b5', maybe rebased or not pulled?
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

David Ahern Jan. 3, 2022, 5:19 p.m. UTC
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: d5297ac885b5 ("ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route")
Signed-off-by: David Ahern <dsahern@kernel.org>
Cc: Nicolas Dichtel <nicolas.dichtel@6wind.com>
---
 net/ipv6/route.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

Comments

Nicolas Dichtel Jan. 3, 2022, 5:31 p.m. UTC | #1
Le 03/01/2022 à 18:19, David Ahern a écrit :
> 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: d5297ac885b5 ("ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route")
> Signed-off-by: David Ahern <dsahern@kernel.org>
> Cc: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>

Thanks for the follow up.
Jakub Kicinski Jan. 3, 2022, 6:02 p.m. UTC | #2
On Mon, 3 Jan 2022 18:31:03 +0100 Nicolas Dichtel wrote:
> Le 03/01/2022 à 18:19, David Ahern a écrit :
> > 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: d5297ac885b5 ("ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route")
> > Signed-off-by: David Ahern <dsahern@kernel.org>
> > Cc: Nicolas Dichtel <nicolas.dichtel@6wind.com>  
> Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>

Fixed the commit ID and applied, thanks!
diff mbox series

Patch

diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 3f36f9603f00..1deb6297aab6 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -5457,8 +5457,10 @@  static int ip6_route_multipath_del(struct fib6_config *cfg,
 			if (nla) {
 				err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
 							extack);
-				if (err)
-					return err;
+				if (err) {
+					last_err = err;
+					goto next_rtnh;
+				}
 
 				r_cfg.fc_flags |= RTF_GATEWAY;
 			}
@@ -5467,6 +5469,7 @@  static int ip6_route_multipath_del(struct fib6_config *cfg,
 		if (err)
 			last_err = err;
 
+next_rtnh:
 		rtnh = rtnh_next(rtnh, &remaining);
 	}