[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAMzD94QsX=RC3-5fvy5-2DXWAZ4G5=LMZ=K2SXR92NnFSxBbTg@mail.gmail.com>
Date: Mon, 14 Oct 2024 10:22:44 -0400
From: Brian Vazquez <brianvv@...gle.com>
To: Eric Dumazet <edumazet@...gle.com>
Cc: "David S . Miller" <davem@...emloft.net>, Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>, Martin KaFai Lau <martin.lau@...nel.org>,
Kuniyuki Iwashima <kuniyu@...zon.com>, Neal Cardwell <ncardwell@...gle.com>, netdev@...r.kernel.org,
eric.dumazet@...il.com
Subject: Re: [PATCH v3 net-next 4/5] ipv6: tcp: give socket pointer to control skbs
Thanks for this patch! This indeed helps to have more info within a
bpf program which is extremely useful!
On Thu, Oct 10, 2024 at 1:48 PM Eric Dumazet <edumazet@...gle.com> wrote:
>
> tcp_v6_send_response() send orphaned 'control packets'.
>
> These are RST packets and also ACK packets sent from TIME_WAIT.
>
> Some eBPF programs would prefer to have a meaningful skb->sk
> pointer as much as possible.
>
> This means that TCP can now attach TIME_WAIT sockets to outgoing
> skbs.
>
> Signed-off-by: Eric Dumazet <edumazet@...gle.com>
Reviewed-by: Brian Vazquez <brianvv@...gle.com>
> ---
> net/ipv6/tcp_ipv6.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
> index 7634c0be6acbdb67bb378cc81bdbf184552d2afc..597920061a3a061a878bf0f7a1b03ac4898918a9 100644
> --- a/net/ipv6/tcp_ipv6.c
> +++ b/net/ipv6/tcp_ipv6.c
> @@ -967,6 +967,9 @@ static void tcp_v6_send_response(const struct sock *sk, struct sk_buff *skb, u32
> }
>
> if (sk) {
> + /* unconstify the socket only to attach it to buff with care. */
> + skb_set_owner_edemux(buff, (struct sock *)sk);
> +
> if (sk->sk_state == TCP_TIME_WAIT)
> mark = inet_twsk(sk)->tw_mark;
> else
> --
> 2.47.0.rc1.288.g06298d1525-goog
>
Powered by blists - more mailing lists