Message ID | 20240819134827.2989452-4-edumazet@google.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | ipv6: fix possible UAF in output paths | expand |
On 8/19/24 7:48 AM, Eric Dumazet wrote: > diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c > index 1b9ebee7308f02a626c766de1794e6b114ae8554..519690514b2d1520a311adbcfaa8c6a69b1e85d3 100644 > --- a/net/ipv6/ip6_output.c > +++ b/net/ipv6/ip6_output.c > @@ -287,11 +287,15 @@ int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6, > head_room += opt->opt_nflen + opt->opt_flen; > > if (unlikely(head_room > skb_headroom(skb))) { > + /* Make sure idev stays alive */ > + rcu_read_lock(); > skb = skb_expand_head(skb, head_room); > if (!skb) { > + rcu_read_unlock(); > IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); rcu_read_unlock after INC_STATS > return -ENOBUFS; > } > + rcu_read_unlock(); > } > > if (opt) {
On Mon, Aug 19, 2024 at 5:21 PM David Ahern <dsahern@kernel.org> wrote: > > On 8/19/24 7:48 AM, Eric Dumazet wrote: > > diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c > > index 1b9ebee7308f02a626c766de1794e6b114ae8554..519690514b2d1520a311adbcfaa8c6a69b1e85d3 100644 > > --- a/net/ipv6/ip6_output.c > > +++ b/net/ipv6/ip6_output.c > > @@ -287,11 +287,15 @@ int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6, > > head_room += opt->opt_nflen + opt->opt_flen; > > > > if (unlikely(head_room > skb_headroom(skb))) { > > + /* Make sure idev stays alive */ > > + rcu_read_lock(); > > skb = skb_expand_head(skb, head_room); > > if (!skb) { > > + rcu_read_unlock(); > > IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); > > rcu_read_unlock after INC_STATS Indeed, thanks for noticing.
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 1b9ebee7308f02a626c766de1794e6b114ae8554..519690514b2d1520a311adbcfaa8c6a69b1e85d3 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -287,11 +287,15 @@ int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6, head_room += opt->opt_nflen + opt->opt_flen; if (unlikely(head_room > skb_headroom(skb))) { + /* Make sure idev stays alive */ + rcu_read_lock(); skb = skb_expand_head(skb, head_room); if (!skb) { + rcu_read_unlock(); IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); return -ENOBUFS; } + rcu_read_unlock(); } if (opt) {
If skb_expand_head() returns NULL, skb has been freed and the associated dst/idev could also have been freed. We must use rcu_read_lock() to prevent a possible UAF. Fixes: 0c9f227bee11 ("ipv6: use skb_expand_head in ip6_xmit") Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Vasily Averin <vvs@virtuozzo.com> --- net/ipv6/ip6_output.c | 4 ++++ 1 file changed, 4 insertions(+)