Re: Possible data-race related bug in u132_hcd module.

From: Alan Stern
Date: Mon Mar 30 2020 - 12:03:33 EST


On Mon, 30 Mar 2020 madhuparnabhowmik10@xxxxxxxxx wrote:

> Hi,
>
> This bug is found by Linux Driver Verification project (linuxtesting.org).
>
> The bug is related to the parallel execution of u132_probe() function
> andÂu132_hcd_exit() function in u132_hcd.c. In case the module is
> unloaded when the probe function is executing there can be data race
> as the mutex lockÂu132_module_lock is not used properly.Â

Normally drivers do not have to worry about races between their probe
and exit routines. The exit routine should unregister the driver from
its bus subsystem, and unregistration is supposed to wait until all
probe and remove functions have finished executing.

> i) Usage of mutex lock only when writing into the u132_exiting
> variable inÂu132_hcd_exit(). The lock is not used when this variable
> is read inÂu132_probe().

I'm not familiar with u132_hcd, but the probe routine shouldn't need to
use and "exiting" variable at all.

>
> Moreover, this variable does not serve itsÂpurpose, as even if
> lockingÂis used while the u132_exiting variable is read in probe(),
> the function may still miss that exit function is executing if it
> acquires the mutex before exit() function does.
>
> How to fix this?

Are you certain there really is a problem?

> ii) Usage of mutex while adding entries inÂu132_static_list in probe
> function but not in exit function while unregistering.
> This should be easy to fix by holding the mutex in the exit function as well.

Why does the driver need a static list?

> There can be other synchronization problems related to the usage of
> u132_module_lock in this module, I have only spotted these so far.

You should look at other drivers for comparison. They don't have to
face this kind of problem. u132_hcd should be similar to them.

Alan Stern