linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Bartosz Golaszewski <brgl@bgdev.pl>
Cc: Linus Walleij <linus.walleij@linaro.org>,
	Kent Gibson <warthog618@gmail.com>,
	Jonathan Corbet <corbet@lwn.net>,
	linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-doc@vger.kernel.org,
	Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: Re: [PATCH v5] gpio: consumer: new virtual driver
Date: Thu, 17 Aug 2023 13:03:22 +0300	[thread overview]
Message-ID: <ZN3wauUBENDd7aRU@smile.fi.intel.com> (raw)
In-Reply-To: <20230815185650.152968-1-brgl@bgdev.pl>

On Tue, Aug 15, 2023 at 08:56:50PM +0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> 
> The GPIO subsystem has a serious problem with undefined behavior and
> use-after-free bugs on hot-unplug of GPIO chips. This can be considered a
> corner-case by some as most GPIO controllers are enabled early in the
> boot process and live until the system goes down but most GPIO drivers
> do allow unbind over sysfs, many are loadable modules that can be (force)
> unloaded and there are also GPIO devices that can be dynamically detached,
> for instance CP2112 which is a USB GPIO expender.
> 
> Bugs can be triggered both from user-space as well as by in-kernel users.
> We have the means of testing it from user-space via the character device
> but the issues manifest themselves differently in the kernel.
> 
> This is a proposition of adding a new virtual driver - a configurable
> GPIO consumer that can be configured over configfs (similarly to
> gpio-sim).
> 
> The configfs interface allows users to create dynamic GPIO lookup tables
> that are registered with the GPIO subsystem. Every config group
> represents a consumer device. Every sub-group represents a single GPIO
> lookup. The device can work in three modes: just keeping the line
> active, toggling it every second or requesting its interrupt and
> reporting edges. Every lookup allows to specify the key, offset and
> flags as per the lookup struct defined in linux/gpio/machine.h.
> 
> The module together with gpio-sim allows to easily trigger kernel
> hot-unplug errors. A simple use-case is to create a simulated chip,
> setup the consumer to lookup one of its lines in 'monitor' mode, unbind
> the simulator, unbind the consumer and observe the fireworks in dmesg.
> 
> This driver is aimed as a helper in tackling the hot-unplug problem in
> GPIO as well as basis for future regression testing once the fixes are
> upstream.

...

> +	struct gpio_consumer_device *dev = lookup->parent;
> +
> +	guard(mutex)(&dev->lock);
> +
> +	return sprintf(page, "%s\n", lookup->key);

...

> +static ssize_t
> +gpio_consumer_lookup_config_offset_show(struct config_item *item, char *page)
> +{
> +	struct gpio_consumer_lookup *lookup = to_gpio_consumer_lookup(item);
> +	struct gpio_consumer_device *dev = lookup->parent;
> +	unsigned int offset;
> +
> +	scoped_guard(mutex, &dev->lock)
> +		offset = lookup->offset;
> +
> +	return sprintf(page, "%d\n", offset);

Consistently it can be simplified same way

	guard(mutex)(&dev->lock);

	return sprintf(page, "%d\n", lookup->offset);

BUT. Thinking about this more. With guard() we put sprintf() inside the lock,
which is suboptimal from runtime point of view. So, I think now that all these
should actually use scoped_guard() rather than guard().

> +}

...

> +	guard(mutex)(&dev->lock);
> +
> +	return lookup->flags;

...

> +static ssize_t
> +gpio_consumer_lookup_config_transitory_show(struct config_item *item,
> +					    char *page)
> +{

> +	enum gpio_lookup_flags flags;
> +
> +	flags = gpio_consumer_lookup_get_flags(item);

This is perfectly one line < 80 characters.

> +	return sprintf(page, "%s\n", flags & GPIO_TRANSITORY ? "1" : "0");
> +}

-- 
With Best Regards,
Andy Shevchenko



  reply	other threads:[~2023-08-17 10:04 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-15 18:56 [PATCH v5] gpio: consumer: new virtual driver Bartosz Golaszewski
2023-08-17 10:03 ` Andy Shevchenko [this message]
2023-08-17 12:14   ` Bartosz Golaszewski
2023-08-17 12:38     ` Andy Shevchenko
2023-08-17 12:53       ` Bartosz Golaszewski
2023-08-17 13:00         ` Andy Shevchenko

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=ZN3wauUBENDd7aRU@smile.fi.intel.com \
    --to=andriy.shevchenko@linux.intel.com \
    --cc=bartosz.golaszewski@linaro.org \
    --cc=brgl@bgdev.pl \
    --cc=corbet@lwn.net \
    --cc=linus.walleij@linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=warthog618@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;
as well as URLs for NNTP newsgroup(s).