linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lars-Peter Clausen <lars@metafoo.de>
To: Pavel Andrianov <andrianov@ispras.ru>,
	Jonathan Cameron <jic23@kernel.org>
Cc: ldv-project@linuxtesting.org,
	Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
	Alexandru Ardelean <alexandru.ardelean@analog.com>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: A potential data race in drivers/iio/adc/berlin2-adc.ko
Date: Thu, 18 Mar 2021 09:47:29 +0100	[thread overview]
Message-ID: <71686d00-1b1a-9fc2-e65d-dd9be140fd27@metafoo.de> (raw)
In-Reply-To: <e0a0dddc-b5e4-f544-c448-84910861afc1@metafoo.de>

On 3/18/21 9:27 AM, Lars-Peter Clausen wrote:
> On 3/18/21 9:07 AM, Pavel Andrianov wrote:
>> Hi,
>>
>> berlin2_adc_probe [1] registers two interrupt handlers: 
>> berlin2_adc_irq [2]
>> and berlin2_adc_tsen_irq [3]. The interrupt handlers operate with the 
>> same data, for example, modify
>> priv->data with different masks:
>>
>> priv->data &= BERLIN2_SM_ADC_MASK;
>> and
>> priv->data &= BERLIN2_SM_TSEN_MASK;
>>
>> If the two interrupt handlers are executed simultaneously, a 
>> potential data race takes place. So, the question is if the situation 
>> is possible. For example, in the case of the handlers are executed on 
>> different CPU cores.
>>
>> Best regards,
>> Pavel
>>
>> [1] 
>> https://elixir.bootlin.com/linux/latest/source/drivers/iio/adc/berlin2-adc.c#L283 
>>
>> [2] 
>> https://elixir.bootlin.com/linux/latest/source/drivers/iio/adc/berlin2-adc.c#L239 
>>
>> [3] 
>> https://elixir.bootlin.com/linux/latest/source/drivers/iio/adc/berlin2-adc.c#L259
>>
> Looking at the code there are two functions. berlin2_adc_tsen_read() 
> and berlin2_adc_read(). These two function are take the same mutex and 
> can not run concurrently. At the beginning of the protected section 
> the corresponding interrupt for that function is enabled and at the 
> end disabled. So at least if the hardware works correctly those two 
> interrupts will never fire at the same time.
>
> Now, if the hardware misbehaves the two interrupts could still fire at 
> the same time.
>
> - Lars
>
Actually thinking a bit more about this the interrupt could still fire 
after it has been disabled since there is no synchronization between the 
disable and the interrupt handler. And the handler might be queued on 
one CPU, while the disable is running on another CPU.


  reply	other threads:[~2021-03-18  8:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-18  8:07 A potential data race in drivers/iio/adc/berlin2-adc.ko Pavel Andrianov
2021-03-18  8:27 ` Lars-Peter Clausen
2021-03-18  8:47   ` Lars-Peter Clausen [this message]
2021-03-20 14:53     ` Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=71686d00-1b1a-9fc2-e65d-dd9be140fd27@metafoo.de \
    --to=lars@metafoo.de \
    --cc=alexandru.ardelean@analog.com \
    --cc=andrianov@ispras.ru \
    --cc=jic23@kernel.org \
    --cc=ldv-project@linuxtesting.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmeerw@pmeerw.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).