From: David Lechner <david@lechnology.com>
To: William Breathitt Gray <vilhelm.gray@gmail.com>
Cc: linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
Greg KH <gregkh@linuxfoundation.org>
Subject: Re: [PATCH] counter: drop chrdev_lock
Date: Mon, 18 Oct 2021 11:03:49 -0500 [thread overview]
Message-ID: <e8158cd7-fbde-5a9a-f4d9-a863745e3d58@lechnology.com> (raw)
In-Reply-To: <YW0673OckeCY6Qs/@shinobu>
On 10/18/21 4:14 AM, William Breathitt Gray wrote:
> On Sun, Oct 17, 2021 at 01:55:21PM -0500, David Lechner wrote:
>> diff --git a/drivers/counter/counter-sysfs.c b/drivers/counter/counter-sysfs.c
>> index 1ccd771da25f..7bf8882ff54d 100644
>> --- a/drivers/counter/counter-sysfs.c
>> +++ b/drivers/counter/counter-sysfs.c
>> @@ -796,25 +796,18 @@ static int counter_events_queue_size_write(struct counter_device *counter,
>> u64 val)
>> {
>> DECLARE_KFIFO_PTR(events, struct counter_event);
>> - int err = 0;
>> -
>> - /* Ensure chrdev is not opened more than 1 at a time */
>> - if (!atomic_add_unless(&counter->chrdev_lock, 1, 1))
>> - return -EBUSY;
>> + int err;
>>
>> /* Allocate new events queue */
>> err = kfifo_alloc(&events, val, GFP_KERNEL);
>> if (err)
>> - goto exit_early;
>> + return err;
>>
>> /* Swap in new events queue */
>> kfifo_free(&counter->events);
>> counter->events.kfifo = events.kfifo;
>
> Do we need to hold the events_lock mutex here for this swap in case
> counter_chrdev_read() is in the middle of reading the kfifo to
> userspace, or do the kfifo macros already protect us from a race
> condition here?
>
Another possibility might be to disallow changing the size while
events are enabled. Otherwise, we also need to protect against
write after free.
I considered this:
swap(counter->events.kfifo, events.kfifo);
kfifo_free(&events);
But I'm not sure that would be safe enough.
next prev parent reply other threads:[~2021-10-18 16:03 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-17 18:55 [PATCH] counter: drop chrdev_lock David Lechner
2021-10-18 6:08 ` Greg KH
2021-10-18 8:58 ` William Breathitt Gray
2021-10-18 9:13 ` Greg KH
2021-10-18 9:51 ` William Breathitt Gray
2021-10-18 16:14 ` David Lechner
2021-10-18 23:56 ` William Breathitt Gray
2021-10-18 9:14 ` William Breathitt Gray
2021-10-18 16:03 ` David Lechner [this message]
2021-10-19 6:53 ` William Breathitt Gray
2021-10-19 7:07 ` Greg KH
2021-10-19 7:18 ` William Breathitt Gray
2021-10-19 7:29 ` Greg KH
2021-10-19 7:46 ` William Breathitt Gray
2021-10-19 9:36 ` Greg KH
2021-10-19 14:44 ` David Lechner
2021-10-19 20:59 ` William Breathitt Gray
2021-10-20 5:42 ` William Breathitt Gray
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=e8158cd7-fbde-5a9a-f4d9-a863745e3d58@lechnology.com \
--to=david@lechnology.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vilhelm.gray@gmail.com \
/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