Re: [PATCH v3] iio: buffer: Don't allow buffers without any channels enabled to be activated

From: Jonathan Cameron
Date: Sat Mar 28 2020 - 09:13:58 EST


On Thu, 26 Mar 2020 11:30:12 +0200
Alexandru Ardelean <alexandru.ardelean@xxxxxxxxxx> wrote:

> From: Lars-Peter Clausen <lars@xxxxxxxxxx>
>
> Before activating a buffer make sure that at least one channel is enabled.
> Activating a buffer with 0 channels enabled doesn't make too much sense and
> disallowing this case makes sure that individual driver don't have to add
> special case code to handle it.
>
> Currently, without this patch enabling a buffer is possible and no error is
> produced. With this patch -EINVAL is returned.
>
> An example of execution with this patch and some instrumented print-code:
> root@analog:~# cd /sys/bus/iio/devices/iio\:device3/buffer
> root@analog:/sys/bus/iio/devices/iio:device3/buffer# echo 1 > enable
> 0: iio_verify_update 748 indio_dev->masklength 2 *insert_buffer->scan_mask 00000000
> 1: iio_verify_update 753
> 2:__iio_update_buffers 1115 ret -22
> 3: iio_buffer_store_enable 1241 ret -22
> -bash: echo: write error: Invalid argument
> 1, 2 & 3 are exit-error paths. 0 the first print in iio_verify_update()
> rergardless of error path.
>
> Without this patch (and same instrumented print-code):
> root@analog:~# cd /sys/bus/iio/devices/iio\:device3/buffer
> root@analog:/sys/bus/iio/devices/iio:device3/buffer# echo 1 > enable
> 0: iio_verify_update 748 indio_dev->masklength 2 *insert_buffer->scan_mask 00000000
> root@analog:/sys/bus/iio/devices/iio:device3/buffer#
> Buffer is enabled with no error.
>
> Fixes: 84b36ce5f79c0 ("staging:iio: Add support for multiple buffers")
> Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx>
> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@xxxxxxxxxx>
I've added a note saying that I don't think this is suitable for
'automatic' back porting to stable. I'm not against it being requested
for particular kernels though if someone specifically wants it.

I'd kind of count this as an interface improvement rather than
it being broken as such before :)

Applied to the togreg branch of iio.git and pushed out as testing
for the autobuilders to play with it.

Thanks,

Jonathan

> ---
>
> Changelog v2 -> v3:
> * actually added Fixes tag; seems I forgot it in v2
> hopefully the tag is the good one; if needed, it can be
> dropped; this has been around for ~8 years; no idea if it's worth
> backporting
>
> Changelog v1 -> v2:
> * moved check in iio_verify_update()
> * added dev_dbg() message; should help some folks understand the message
> * documented steps to reproduce
>
> drivers/iio/industrialio-buffer.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c
> index 5ff34ce8b6a2..e6fa1a4e135d 100644
> --- a/drivers/iio/industrialio-buffer.c
> +++ b/drivers/iio/industrialio-buffer.c
> @@ -686,6 +686,13 @@ static int iio_verify_update(struct iio_dev *indio_dev,
> bool scan_timestamp;
> unsigned int modes;
>
> + if (insert_buffer &&
> + bitmap_empty(insert_buffer->scan_mask, indio_dev->masklength)) {
> + dev_dbg(&indio_dev->dev,
> + "At least one scan element must be enabled first\n");
> + return -EINVAL;
> + }
> +
> memset(config, 0, sizeof(*config));
> config->watermark = ~0;
>