From: Tony Lu <tonylu@linux.alibaba.com> Date: 2019-11-11 14:12:14
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
Signed-off-by: Tony Lu <tonylu@linux.alibaba.com>
---
include/linux/netdevice.h | 24 ++++--------------------
net/core/dev.c | 24 ++++++++++++++++++++++++
2 files changed, 28 insertions(+), 20 deletions(-)
@@ -3720,27 +3720,11 @@ extern unsigned int netdev_budget_usecs;/* Called by rtnetlink.c:rtnl_unlock() */voidnetdev_run_todo(void);-/**-*dev_put-releasereferencetodevice-*@dev:networkdevice-*-*Releasereferencetodevicetoallowittobefreed.-*/-staticinlinevoiddev_put(structnet_device*dev)-{-this_cpu_dec(*dev->pcpu_refcnt);-}+/* Release reference to device to allow it to be freed. */+voiddev_put(structnet_device*dev);-/**-*dev_hold-getreferencetodevice-*@dev:networkdevice-*-*Holdreferencetodevicetokeepitfrombeingfreed.-*/-staticinlinevoiddev_hold(structnet_device*dev)-{-this_cpu_inc(*dev->pcpu_refcnt);-}+/* Hold reference to device to keep it from being freed. */+voiddev_hold(structnet_device*dev);/* Carrier loss detection, dial on demand. The functions netif_carrier_on*and_offmaybecalledfromIRQcontext,butitiscaller
From: Stephen Hemminger <stephen@networkplumber.org> Date: 2019-11-11 16:56:45
On Mon, 11 Nov 2019 22:05:03 +0800
Tony Lu [off-list ref] wrote:
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
Signed-off-by: Tony Lu <tonylu@linux.alibaba.com>
In the past dev_hold/dev_put was in the hot path for several
operations. What is the performance implication of doing this?
From: Eric Dumazet <hidden> Date: 2019-11-11 17:22:17
On 11/11/19 6:05 AM, Tony Lu wrote:
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
This looks as a first step.
But I would rather get a full set of scripts/debugging features,
instead of something that most people can not use right now.
Please share the whole thing.
From: Cong Wang <hidden> Date: 2019-11-11 21:26:27
On Mon, Nov 11, 2019 at 6:12 AM Tony Lu [off-list ref] wrote:
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
I debugged a nasty dst refcnt leak in TCP a long time ago, so I can
feel your pain.
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
I think tracepoint serves the purpose of tracking function call history,
you can add tracepoint for each of dev_put()/dev_hold(), which could
also inherit the trace filter and trigger too.
The netdev refcnt itself is not changed very frequently, but it is
refcnt'ed by other things like dst too which is changed frequently.
This is why usually when you see the netdev refcnt leak warning,
the problem is probably somewhere else, like dst refcnt leak.
Hope this helps.
Thanks.
From: Tony Lu <tonylu@linux.alibaba.com> Date: 2019-11-12 07:18:25
On Mon, Nov 11, 2019 at 08:56:32AM -0800, Stephen Hemminger wrote:
On Mon, 11 Nov 2019 22:05:03 +0800
Tony Lu [off-list ref] wrote:
quoted
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
Signed-off-by: Tony Lu <tonylu@linux.alibaba.com>
In the past dev_hold/dev_put was in the hot path for several
operations. What is the performance implication of doing this?
From code analysis, there should be a little performance backwards.
I don't have the benchmark data for now. I will make a kernel module to
take a series of benchmarks for dev_put/dev_hold. Actually there is a plan
to take a whole solution for this issue. The benchmarks will be done
after this.
Cheers
Tony Lu
From: Tony Lu <tonylu@linux.alibaba.com> Date: 2019-11-12 08:47:21
On Mon, Nov 11, 2019 at 01:26:13PM -0800, Cong Wang wrote:
On Mon, Nov 11, 2019 at 6:12 AM Tony Lu [off-list ref] wrote:
quoted
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
I debugged a nasty dst refcnt leak in TCP a long time ago, so I can
feel your pain.
quoted
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
I think tracepoint serves the purpose of tracking function call history,
you can add tracepoint for each of dev_put()/dev_hold(), which could
also inherit the trace filter and trigger too.
Thanks for your advice. I already made a patch set to add a pair of
tracepoints to trace dev_hold()/dev_put() as an available solution. I
used to want to give a flexible approach for people who want to choose.
I will send it out later.
The netdev refcnt itself is not changed very frequently, but it is
refcnt'ed by other things like dst too which is changed frequently.
This is why usually when you see the netdev refcnt leak warning,
the problem is probably somewhere else, like dst refcnt leak.
We also suffered dst refcnt leak issue before. It is really hard to
investigate. I will think about this place well.
From: Tony Lu <tonylu@linux.alibaba.com> Date: 2019-11-12 09:48:14
On Mon, Nov 11, 2019 at 09:21:58AM -0800, Eric Dumazet wrote:
On 11/11/19 6:05 AM, Tony Lu wrote:
quoted
This patch removes static inline from dev_put/dev_hold in order to help
trace the pcpu_refcnt leak of net_device.
We have sufferred this kind of issue for several times during
manipulating NIC between different net namespaces. It prints this
log in dmesg:
unregister_netdevice: waiting for eth0 to become free. Usage count = 1
However, it is hard to find out who called and leaked refcnt in time. It
only left the crime scene but few evidence. Once leaked, it is not
safe to fix it up on the running host. We can't trace dev_put/dev_hold
directly, for the functions are inlined and used wildly amoung modules.
And this issue is common, there are tens of patches fix net_device
refcnt leak for various causes.
To trace the refcnt manipulating, this patch removes static inline from
dev_put/dev_hold. We can use handy tools, such as eBPF with kprobe, to
find out who holds but forgets to put refcnt. This will not be called
frequently, so the overhead is limited.
This looks as a first step.
Yes, I used to want to give a flexible approach for people, and they
could choose tools what they want. And I already made a patch, putting a
pair tracepoints into dev_put()/dev_hold() to trace that. I will send it out
later.
But I would rather get a full set of scripts/debugging features,
instead of something that most people can not use right now.
Please share the whole thing.