* [PATCH net] fix null-deref in ipv4_link_failure
@ 2023-09-08 3:18 Kyle Zeng
2023-09-08 20:13 ` Vadim Fedorenko
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Kyle Zeng @ 2023-09-08 3:18 UTC (permalink / raw)
To: pabeni, dsahern; +Cc: davem, netdev, ssuryaextr
Currently, we assume the skb is associated with a device before calling
__ip_options_compile, which is not always the case if it is re-routed by
ipvs.
When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
This patch adds a check for the edge case and switch to use the net_device
from the rtable when skb->dev is NULL.
Suggested-by: Paolo Abeni<pabeni@redhat.com>
Suggested-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
---
net/ipv4/route.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index d8c99bdc617..1be34e5eea1 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1214,6 +1214,7 @@ EXPORT_INDIRECT_CALLABLE(ipv4_dst_check);
static void ipv4_send_dest_unreach(struct sk_buff *skb)
{
struct ip_options opt;
+ struct net_device *dev;
int res;
/* Recompile ip options since IPCB may not be valid anymore.
@@ -1230,7 +1231,8 @@ static void ipv4_send_dest_unreach(struct sk_buff *skb)
opt.optlen = ip_hdr(skb)->ihl * 4 - sizeof(struct iphdr);
rcu_read_lock();
- res = __ip_options_compile(dev_net(skb->dev), &opt, skb, NULL);
+ dev = skb->dev ? skb->dev : skb_rtable(skb)->dst.dev;
+ res = __ip_options_compile(dev_net(dev), &opt, skb, NULL);
rcu_read_unlock();
if (res)
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net] fix null-deref in ipv4_link_failure
2023-09-08 3:18 Kyle Zeng
@ 2023-09-08 20:13 ` Vadim Fedorenko
2023-09-11 4:36 ` David Ahern
2023-09-11 6:09 ` Paolo Abeni
2 siblings, 0 replies; 7+ messages in thread
From: Vadim Fedorenko @ 2023-09-08 20:13 UTC (permalink / raw)
To: Kyle Zeng, pabeni, dsahern; +Cc: davem, netdev, ssuryaextr
On 08.09.2023 04:18, Kyle Zeng wrote:
> Currently, we assume the skb is associated with a device before calling
> __ip_options_compile, which is not always the case if it is re-routed by
> ipvs.
> When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
> This patch adds a check for the edge case and switch to use the net_device
> from the rtable when skb->dev is NULL.
>
> Suggested-by: Paolo Abeni<pabeni@redhat.com>
> Suggested-by: David Ahern <dsahern@kernel.org>
> Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
> Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
> ---
> net/ipv4/route.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index d8c99bdc617..1be34e5eea1 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1214,6 +1214,7 @@ EXPORT_INDIRECT_CALLABLE(ipv4_dst_check);
> static void ipv4_send_dest_unreach(struct sk_buff *skb)
> {
> struct ip_options opt;
> + struct net_device *dev;
Please, use reverse x-mas tree order for local variables
> int res;
>
> /* Recompile ip options since IPCB may not be valid anymore.
> @@ -1230,7 +1231,8 @@ static void ipv4_send_dest_unreach(struct sk_buff *skb)
> opt.optlen = ip_hdr(skb)->ihl * 4 - sizeof(struct iphdr);
>
> rcu_read_lock();
> - res = __ip_options_compile(dev_net(skb->dev), &opt, skb, NULL);
> + dev = skb->dev ? skb->dev : skb_rtable(skb)->dst.dev;
> + res = __ip_options_compile(dev_net(dev), &opt, skb, NULL);
> rcu_read_unlock();
>
> if (res)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] fix null-deref in ipv4_link_failure
2023-09-08 3:18 Kyle Zeng
2023-09-08 20:13 ` Vadim Fedorenko
@ 2023-09-11 4:36 ` David Ahern
2023-09-11 6:09 ` Paolo Abeni
2 siblings, 0 replies; 7+ messages in thread
From: David Ahern @ 2023-09-11 4:36 UTC (permalink / raw)
To: Kyle Zeng, pabeni; +Cc: davem, netdev, ssuryaextr
On 9/7/23 9:18 PM, Kyle Zeng wrote:
> Currently, we assume the skb is associated with a device before calling
> __ip_options_compile, which is not always the case if it is re-routed by
> ipvs.
> When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
> This patch adds a check for the edge case and switch to use the net_device
> from the rtable when skb->dev is NULL.
>
> Suggested-by: Paolo Abeni<pabeni@redhat.com>
> Suggested-by: David Ahern <dsahern@kernel.org>
> Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
> Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
> ---
> net/ipv4/route.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
Reviewed-by: David Ahern <dsahern@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] fix null-deref in ipv4_link_failure
2023-09-08 3:18 Kyle Zeng
2023-09-08 20:13 ` Vadim Fedorenko
2023-09-11 4:36 ` David Ahern
@ 2023-09-11 6:09 ` Paolo Abeni
2 siblings, 0 replies; 7+ messages in thread
From: Paolo Abeni @ 2023-09-11 6:09 UTC (permalink / raw)
To: Kyle Zeng, dsahern; +Cc: davem, netdev, ssuryaextr
On Thu, 2023-09-07 at 20:18 -0700, Kyle Zeng wrote:
> Currently, we assume the skb is associated with a device before calling
> __ip_options_compile, which is not always the case if it is re-routed by
> ipvs.
> When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
> This patch adds a check for the edge case and switch to use the net_device
> from the rtable when skb->dev is NULL.
>
> Suggested-by: Paolo Abeni<pabeni@redhat.com>
> Suggested-by: David Ahern <dsahern@kernel.org>
> Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
> Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
> ---
> net/ipv4/route.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index d8c99bdc617..1be34e5eea1 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1214,6 +1214,7 @@ EXPORT_INDIRECT_CALLABLE(ipv4_dst_check);
> static void ipv4_send_dest_unreach(struct sk_buff *skb)
> {
> struct ip_options opt;
> + struct net_device *dev;
> int res;
>
> /* Recompile ip options since IPCB may not be valid anymore.
> @@ -1230,7 +1231,8 @@ static void ipv4_send_dest_unreach(struct sk_buff *skb)
> opt.optlen = ip_hdr(skb)->ihl * 4 - sizeof(struct iphdr);
>
> rcu_read_lock();
> - res = __ip_options_compile(dev_net(skb->dev), &opt, skb, NULL);
> + dev = skb->dev ? skb->dev : skb_rtable(skb)->dst.dev;
> + res = __ip_options_compile(dev_net(dev), &opt, skb, NULL);
> rcu_read_unlock();
>
> if (res)
The patch LGTM, but if you are going to re-post to address Vadim's
feedback, please additionally drop my Suggested-by. I only reviewed a
previous revision.
Thanks!
Paolo
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net] fix null-deref in ipv4_link_failure
@ 2023-09-12 2:35 Kyle Zeng
2023-09-12 15:58 ` David Ahern
2023-09-14 9:17 ` Paolo Abeni
0 siblings, 2 replies; 7+ messages in thread
From: Kyle Zeng @ 2023-09-12 2:35 UTC (permalink / raw)
To: pabeni, dsahern; +Cc: vfedorenko, davem, netdev, ssuryaextr
Currently, we assume the skb is associated with a device before calling
__ip_options_compile, which is not always the case if it is re-routed by
ipvs.
When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
This patch adds a check for the edge case and switch to use the net_device
from the rtable when skb->dev is NULL.
Fixes: ed0de45 ("ipv4: recompile ip options in ipv4_link_failure")
Suggested-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
Cc: Vadim Fedorenko <vfedorenko@novek.ru>
---
net/ipv4/route.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index d8c99bdc617..cba0d148c27 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1213,6 +1213,7 @@ EXPORT_INDIRECT_CALLABLE(ipv4_dst_check);
static void ipv4_send_dest_unreach(struct sk_buff *skb)
{
+ struct net_device *dev;
struct ip_options opt;
int res;
@@ -1230,7 +1231,8 @@ static void ipv4_send_dest_unreach(struct sk_buff *skb)
opt.optlen = ip_hdr(skb)->ihl * 4 - sizeof(struct iphdr);
rcu_read_lock();
- res = __ip_options_compile(dev_net(skb->dev), &opt, skb, NULL);
+ dev = skb->dev ? skb->dev : skb_rtable(skb)->dst.dev;
+ res = __ip_options_compile(dev_net(dev), &opt, skb, NULL);
rcu_read_unlock();
if (res)
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net] fix null-deref in ipv4_link_failure
2023-09-12 2:35 [PATCH net] fix null-deref in ipv4_link_failure Kyle Zeng
@ 2023-09-12 15:58 ` David Ahern
2023-09-14 9:17 ` Paolo Abeni
1 sibling, 0 replies; 7+ messages in thread
From: David Ahern @ 2023-09-12 15:58 UTC (permalink / raw)
To: Kyle Zeng, pabeni; +Cc: vfedorenko, davem, netdev, ssuryaextr
On 9/11/23 8:35 PM, Kyle Zeng wrote:
> Currently, we assume the skb is associated with a device before calling
> __ip_options_compile, which is not always the case if it is re-routed by
> ipvs.
> When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
> This patch adds a check for the edge case and switch to use the net_device
> from the rtable when skb->dev is NULL.
>
> Fixes: ed0de45 ("ipv4: recompile ip options in ipv4_link_failure")
> Suggested-by: David Ahern <dsahern@kernel.org>
> Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
> Cc: Stephen Suryaputra <ssuryaextr@gmail.com>
> Cc: Vadim Fedorenko <vfedorenko@novek.ru>
> ---
> net/ipv4/route.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
Reviewed-by: David Ahern <dsahern@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] fix null-deref in ipv4_link_failure
2023-09-12 2:35 [PATCH net] fix null-deref in ipv4_link_failure Kyle Zeng
2023-09-12 15:58 ` David Ahern
@ 2023-09-14 9:17 ` Paolo Abeni
1 sibling, 0 replies; 7+ messages in thread
From: Paolo Abeni @ 2023-09-14 9:17 UTC (permalink / raw)
To: Kyle Zeng, dsahern; +Cc: vfedorenko, davem, netdev, ssuryaextr
On Mon, 2023-09-11 at 19:35 -0700, Kyle Zeng wrote:
> Currently, we assume the skb is associated with a device before calling
> __ip_options_compile, which is not always the case if it is re-routed by
> ipvs.
> When skb->dev is NULL, dev_net(skb->dev) will become null-dereference.
> This patch adds a check for the edge case and switch to use the net_device
> from the rtable when skb->dev is NULL.
>
> Fixes: ed0de45 ("ipv4: recompile ip options in ipv4_link_failure")
I'm sorry for the nit-picking, but please use 12 chars to identify the
blamed commit or we risk (future) conflicts.
Please also add a subsystem tag inside the subj. Finally include a
revision counter into prefix, alike:
[PATCH v3 net] ipv4: fix ...
(I'm not really sure about the correct counter here, since a few
versions flied without it)
Note that you can retain David's ack in the next revision.
Thanks!
Paolo
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-14 9:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-12 2:35 [PATCH net] fix null-deref in ipv4_link_failure Kyle Zeng
2023-09-12 15:58 ` David Ahern
2023-09-14 9:17 ` Paolo Abeni
-- strict thread matches above, loose matches on Subject: below --
2023-09-08 3:18 Kyle Zeng
2023-09-08 20:13 ` Vadim Fedorenko
2023-09-11 4:36 ` David Ahern
2023-09-11 6:09 ` Paolo Abeni
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).