[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6a36f208b961181df9a0c611a6f5ffc4c76911f6.camel@redhat.com>
Date: Thu, 08 Jun 2023 11:27:31 +0200
From: Paolo Abeni <pabeni@...hat.com>
To: Jakub Kicinski <kuba@...nel.org>, Simon Wunderlich
<sw@...onwunderlich.de>
Cc: davem@...emloft.net, netdev@...r.kernel.org,
b.a.t.m.a.n@...ts.open-mesh.org, Vladislav Efanov <VEfanov@...ras.ru>,
stable@...nel.org, Sven Eckelmann <sven@...fation.org>
Subject: Re: [PATCH 1/1] batman-adv: Broken sync while rescheduling delayed
work
On Wed, 2023-06-07 at 22:01 -0700, Jakub Kicinski wrote:
> On Wed, 7 Jun 2023 17:55:15 +0200 Simon Wunderlich wrote:
> > The reason for these issues is the lack of synchronization. Delayed
> > work (batadv_dat_purge) schedules new timer/work while the device
> > is being deleted. As the result new timer/delayed work is set after
> > cancel_delayed_work_sync() was called. So after the device is freed
> > the timer list contains pointer to already freed memory.
>
> I guess this is better than status quo but is the fix really complete?
> We're still not preventing the timer / work from getting scheduled
> and staying alive after the netdev has been freed, right?
I *think* this specific use case does not expose such problem, as the
delayed work is (AFAICS) scheduled only at device creation time and by
the work itself, it should never be re-scheduled after
cancel_delayed_work_sync()
Cheers,
Paolo
Powered by blists - more mailing lists