Thread (7 messages) 7 messages, 3 authors, 2024-10-24

Re: [PATCH] net: Add tcp_drop_reason tracepoint

From: Yafang Shao <hidden>
Date: 2024-10-23 14:35:04
Also in: netdev
Subsystem: networking [general], networking [tcp], the rest · Maintainers: "David S. Miller", Eric Dumazet, Jakub Kicinski, Paolo Abeni, Neal Cardwell, Linus Torvalds

On Wed, Oct 23, 2024 at 9:01 PM Eric Dumazet [off-list ref] wrote:
On Wed, Oct 23, 2024 at 2:33 PM Yafang Shao [off-list ref] wrote:
quoted
We previously hooked the tcp_drop_reason() function using BPF to monitor
TCP drop reasons. However, after upgrading our compiler from GCC 9 to GCC
11, tcp_drop_reason() is now inlined, preventing us from hooking into it.
To address this, it would be beneficial to introduce a dedicated tracepoint
for monitoring.
This patch would require changes in user space tracers.
I am surprised no one came up with a noinline variant.

__bpf_kfunc is using

#define __bpf_kfunc __used __retain noinline

I would rather not have include/trace/events/tcp.h becoming the
biggest file in TCP stack...
I’d prefer not to introduce a new tracepoint if we can easily hook it
with BPF. Does the following change look good to you?
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 092456b8f8af..ebea844cc974 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -4720,7 +4720,7 @@ static bool tcp_ooo_try_coalesce(struct sock *sk,
        return res;
 }

-static void tcp_drop_reason(struct sock *sk, struct sk_buff *skb,
+noinline static void tcp_drop_reason(struct sock *sk, struct sk_buff *skb,
                            enum skb_drop_reason reason)
 {
        sk_drops_add(sk, skb);




--
Regards
Yafang
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help