On 12/8/20 4:55 AM, stran...@codeaurora.org wrote:
> Hi everyone,
>
> We've recently been investigating a refcount problem when unregistering a
> netdevice from the kernel. It seems that the IPv6 module is still holding
> various references to the inet6_dev associated with the main netdevice struct
> that are not being released, preventing the unregistration from completing.
>
> After tracing the various locations that take/release refcounts to these two
> structs, we see that there are mismatches in the refcount for the inet6_dev
> in the DST path when there are routes flushed with the
> rt6_uncached_list_flush_dev() function during rt6_disable_ip() when the
> device is unregistering. It seems that usually these references are freed via
> ip6_dst_ifdown() in the dst_ops->ifdown callback from dst_dev_put(), but this
> callback is not executed in the rt6_uncached_list_flush_dev() function.
> Instead, a reference to the inet6_dev is simply dropped to account for the
> inet6_dev_get() in ip6_rt_copy_init().
>
> Unfortunately, this does not seem to be sufficient, as these uncached routes
> have an additional refcount on the inet6_device attached to them from the DST
> allocation. In the normal case, this reference from the DST allocation will
> happen in the dst_ops->destroy() callback in the dst_destroy() function when
> the DST is being freed. However, since rt6_uncached_list_flush_dev() changes
> the inet6_device stored in the DST to the loopback device, the
> dst_ops->destroy() callback doesn't decrement the refcount on the correct
> inet6_dev struct.
>
> We're wondering if it would be appropriate to put() the refcount additionally
> for the uncached routes when flushing out the list for the unregistering
> device. Perhaps something like the following?
>
dev refcount imbalances are quite common, particularly on old kernel versions,
lacking few fixes.
First thing is to let us know on which kernel version you see this, and how you
reproduce it.