stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* FAILED: patch "[PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath" failed to apply to 4.4-stable tree
@ 2022-01-07 13:48 gregkh
  2022-01-09  9:30 ` Pavel Machek
  0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2022-01-07 13:48 UTC (permalink / raw)
  To: dsahern, davem, nicolas.dichtel; +Cc: stable


The patch below does not apply to the 4.4-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.

thanks,

greg k-h

------------------ original commit in Linus's tree ------------------

From 4619bcf91399f00a40885100fb61d594d8454033 Mon Sep 17 00:00:00 2001
From: David Ahern <dsahern@kernel.org>
Date: Thu, 30 Dec 2021 17:36:33 -0700
Subject: [PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath
 route

Commit referenced in the Fixes tag used nla_memcpy for RTA_GATEWAY as
does the current nla_get_in6_addr. nla_memcpy protects against accessing
memory greater than what is in the attribute, but there is no check
requiring the attribute to have an IPv6 address. Add it.

Fixes: 51ebd3181572 ("ipv6: add support of equal cost multipath (ECMP)")
Signed-off-by: David Ahern <dsahern@kernel.org>
Cc: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 42d60c76d30a..d16599c225b8 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -5224,6 +5224,19 @@ static bool ip6_route_mpath_should_notify(const struct fib6_info *rt)
 	return should_notify;
 }
 
+static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla,
+			     struct netlink_ext_ack *extack)
+{
+	if (nla_len(nla) < sizeof(*gw)) {
+		NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_GATEWAY");
+		return -EINVAL;
+	}
+
+	*gw = nla_get_in6_addr(nla);
+
+	return 0;
+}
+
 static int ip6_route_multipath_add(struct fib6_config *cfg,
 				   struct netlink_ext_ack *extack)
 {
@@ -5264,7 +5277,13 @@ static int ip6_route_multipath_add(struct fib6_config *cfg,
 
 			nla = nla_find(attrs, attrlen, RTA_GATEWAY);
 			if (nla) {
-				r_cfg.fc_gateway = nla_get_in6_addr(nla);
+				int ret;
+
+				ret = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
+							extack);
+				if (ret)
+					return ret;
+
 				r_cfg.fc_flags |= RTF_GATEWAY;
 			}
 			r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: FAILED: patch "[PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath" failed to apply to 4.4-stable tree
  2022-01-07 13:48 FAILED: patch "[PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath" failed to apply to 4.4-stable tree gregkh
@ 2022-01-09  9:30 ` Pavel Machek
  2022-01-09 10:07   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Pavel Machek @ 2022-01-09  9:30 UTC (permalink / raw)
  To: gregkh; +Cc: dsahern, davem, nicolas.dichtel, stable

[-- Attachment #1: Type: text/plain, Size: 1566 bytes --]

Hi!

> The patch below does not apply to the 4.4-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.

I could not find better place to reply.

I see this patch is queued for 5.10 and 4.19. But it is wrong:

> >From 4619bcf91399f00a40885100fb61d594d8454033 Mon Sep 17 00:00:00 2001
> From: David Ahern <dsahern@kernel.org>
> Date: Thu, 30 Dec 2021 17:36:33 -0700
> Subject: [PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath
>  route
> 
> Commit referenced in the Fixes tag used nla_memcpy for RTA_GATEWAY as
> does the current nla_get_in6_addr. nla_memcpy protects against accessing
> memory greater than what is in the attribute, but there is no check
> requiring the attribute to have an IPv6 address. Add it.
> 
> Fixes: 51ebd3181572 ("ipv6: add support of equal cost multipath
> (ECMP)")

...> @@ -5264,7 +5277,13 @@ static int ip6_route_multipath_add(struct fib6_config *cfg,
>  
>  			nla = nla_find(attrs, attrlen, RTA_GATEWAY);
>  			if (nla) {
> -				r_cfg.fc_gateway = nla_get_in6_addr(nla);
> +				int ret;
> +
> +				ret = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
> +							extack);
> +				if (ret)
> +					return ret;
> +

Direct return may not be used here. It needs to goto cleanup.

It is already fixed in mainline, so you can probably just cherry-pick
followup patch, too.

Best regards,
							Pavel
-- 
http://www.livejournal.com/~pavelmachek

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: FAILED: patch "[PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath" failed to apply to 4.4-stable tree
  2022-01-09  9:30 ` Pavel Machek
@ 2022-01-09 10:07   ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2022-01-09 10:07 UTC (permalink / raw)
  To: Pavel Machek; +Cc: dsahern, davem, nicolas.dichtel, stable

On Sun, Jan 09, 2022 at 10:30:59AM +0100, Pavel Machek wrote:
> Hi!
> 
> > The patch below does not apply to the 4.4-stable tree.
> > If someone wants it applied there, or to any other stable or longterm
> > tree, then please email the backport, including the original git commit
> > id to <stable@vger.kernel.org>.
> 
> I could not find better place to reply.
> 
> I see this patch is queued for 5.10 and 4.19. But it is wrong:
> 
> > >From 4619bcf91399f00a40885100fb61d594d8454033 Mon Sep 17 00:00:00 2001
> > From: David Ahern <dsahern@kernel.org>
> > Date: Thu, 30 Dec 2021 17:36:33 -0700
> > Subject: [PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath
> >  route
> > 
> > Commit referenced in the Fixes tag used nla_memcpy for RTA_GATEWAY as
> > does the current nla_get_in6_addr. nla_memcpy protects against accessing
> > memory greater than what is in the attribute, but there is no check
> > requiring the attribute to have an IPv6 address. Add it.
> > 
> > Fixes: 51ebd3181572 ("ipv6: add support of equal cost multipath
> > (ECMP)")
> 
> ...> @@ -5264,7 +5277,13 @@ static int ip6_route_multipath_add(struct fib6_config *cfg,
> >  
> >  			nla = nla_find(attrs, attrlen, RTA_GATEWAY);
> >  			if (nla) {
> > -				r_cfg.fc_gateway = nla_get_in6_addr(nla);
> > +				int ret;
> > +
> > +				ret = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
> > +							extack);
> > +				if (ret)
> > +					return ret;
> > +
> 
> Direct return may not be used here. It needs to goto cleanup.
> 
> It is already fixed in mainline, so you can probably just cherry-pick
> followup patch, too.

What is the follow-up patch git id?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-09 10:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-07 13:48 FAILED: patch "[PATCH] ipv6: Check attribute length for RTA_GATEWAY in multipath" failed to apply to 4.4-stable tree gregkh
2022-01-09  9:30 ` Pavel Machek
2022-01-09 10:07   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).