2021-04-28 17:36:52

by Paul Cercueil

[permalink] [raw]
Subject: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

The ioctrl() call will return errno=EINVAL if the device does not
support the events interface, and not ENODEV.

Signed-off-by: Paul Cercueil <[email protected]>
---
tools/iio/iio_event_monitor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/iio/iio_event_monitor.c b/tools/iio/iio_event_monitor.c
index bb03859db89d..cdd9a84f18fa 100644
--- a/tools/iio/iio_event_monitor.c
+++ b/tools/iio/iio_event_monitor.c
@@ -323,7 +323,7 @@ int main(int argc, char **argv)
ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
if (ret == -1 || event_fd == -1) {
ret = -errno;
- if (ret == -ENODEV)
+ if (ret == -EINVAL)
fprintf(stderr,
"This device does not support events\n");
else
--
2.30.2


2021-04-28 17:37:24

by Nuno Sa

[permalink] [raw]
Subject: RE: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

> From: Paul Cercueil <[email protected]>
> Sent: Wednesday, April 28, 2021 5:08 PM
> To: Jonathan Cameron <[email protected]>; Lars-Peter Clausen
> <[email protected]>; Peter Meerwald-Stadler
> <[email protected]>
> Cc: [email protected]; [email protected]; Paul
> Cercueil <[email protected]>
> Subject: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
>
>
> The ioctrl() call will return errno=EINVAL if the device does not
> support the events interface, and not ENODEV.
>
> Signed-off-by: Paul Cercueil <[email protected]>

Reviewed-by: Nuno Sa <[email protected]>

> ---
> tools/iio/iio_event_monitor.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/iio/iio_event_monitor.c
> b/tools/iio/iio_event_monitor.c
> index bb03859db89d..cdd9a84f18fa 100644
> --- a/tools/iio/iio_event_monitor.c
> +++ b/tools/iio/iio_event_monitor.c
> @@ -323,7 +323,7 @@ int main(int argc, char **argv)
> ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
> if (ret == -1 || event_fd == -1) {
> ret = -errno;
> - if (ret == -ENODEV)
> + if (ret == -EINVAL)
> fprintf(stderr,
> "This device does not support
> events\n");
> else
> --
> 2.30.2

2021-04-28 19:39:33

by Nuno Sa

[permalink] [raw]
Subject: RE: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

> From: Sa, Nuno <[email protected]>
> Sent: Wednesday, April 28, 2021 5:31 PM
> To: Paul Cercueil <[email protected]>; Jonathan Cameron
> <[email protected]>; Lars-Peter Clausen <[email protected]>; Peter
> Meerwald-Stadler <[email protected]>
> Cc: [email protected]; [email protected]
> Subject: RE: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
>
>
> > From: Paul Cercueil <[email protected]>
> > Sent: Wednesday, April 28, 2021 5:08 PM
> > To: Jonathan Cameron <[email protected]>; Lars-Peter Clausen
> > <[email protected]>; Peter Meerwald-Stadler
> > <[email protected]>
> > Cc: [email protected]; [email protected]; Paul
> > Cercueil <[email protected]>
> > Subject: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
> >
> >
> > The ioctrl() call will return errno=EINVAL if the device does not
> > support the events interface, and not ENODEV.
> >
> > Signed-off-by: Paul Cercueil <[email protected]>
>
> Reviewed-by: Nuno Sa <[email protected]>
>

I guess this should have a Fixes: tag...

- Nuno S?

2021-05-03 11:38:08

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

On Wed, 28 Apr 2021 15:33:21 +0000
"Sa, Nuno" <[email protected]> wrote:

> > From: Sa, Nuno <[email protected]>
> > Sent: Wednesday, April 28, 2021 5:31 PM
> > To: Paul Cercueil <[email protected]>; Jonathan Cameron
> > <[email protected]>; Lars-Peter Clausen <[email protected]>; Peter
> > Meerwald-Stadler <[email protected]>
> > Cc: [email protected]; [email protected]
> > Subject: RE: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
> >
> >
> > > From: Paul Cercueil <[email protected]>
> > > Sent: Wednesday, April 28, 2021 5:08 PM
> > > To: Jonathan Cameron <[email protected]>; Lars-Peter Clausen
> > > <[email protected]>; Peter Meerwald-Stadler
> > > <[email protected]>
> > > Cc: [email protected]; [email protected]; Paul
> > > Cercueil <[email protected]>
> > > Subject: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
> > >
> > >
> > > The ioctrl() call will return errno=EINVAL if the device does not
> > > support the events interface, and not ENODEV.
> > >
> > > Signed-off-by: Paul Cercueil <[email protected]>
> >
> > Reviewed-by: Nuno Sa <[email protected]>
> >
>
> I guess this should have a Fixes: tag...

So, I did a bit of detective work on this one. Seems this change in error
code was actually introduced as a side effect of Alex's recent rework of
the IOCTLs. Prior to that we returned -ENODEV for this case and now
we do indeed return EINVAL.

So we may need to figure out how to fix that, or decide that such is life
and modify this code to give the right error message as done in this patch...

Linus / Alex, thoughts? It's always been a bit messy because we also
return -ENODEV in the path where the ioctl hits a driver that is going away
so it hasn't uniquely identified a lack of support for a long time, even
if that is by far the most likely reason for this return code.

Jonathan


>
> - Nuno Sá

2021-05-03 11:38:16

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

+CC Alexandru Ardelean


On Mon, 3 May 2021 12:06:15 +0100
Jonathan Cameron <[email protected]> wrote:

> On Wed, 28 Apr 2021 15:33:21 +0000
> "Sa, Nuno" <[email protected]> wrote:
>
> > > From: Sa, Nuno <[email protected]>
> > > Sent: Wednesday, April 28, 2021 5:31 PM
> > > To: Paul Cercueil <[email protected]>; Jonathan Cameron
> > > <[email protected]>; Lars-Peter Clausen <[email protected]>; Peter
> > > Meerwald-Stadler <[email protected]>
> > > Cc: [email protected]; [email protected]
> > > Subject: RE: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
> > >
> > >
> > > > From: Paul Cercueil <[email protected]>
> > > > Sent: Wednesday, April 28, 2021 5:08 PM
> > > > To: Jonathan Cameron <[email protected]>; Lars-Peter Clausen
> > > > <[email protected]>; Peter Meerwald-Stadler
> > > > <[email protected]>
> > > > Cc: [email protected]; [email protected]; Paul
> > > > Cercueil <[email protected]>
> > > > Subject: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check
> > > >
> > > >
> > > > The ioctrl() call will return errno=EINVAL if the device does not
> > > > support the events interface, and not ENODEV.
> > > >
> > > > Signed-off-by: Paul Cercueil <[email protected]>
> > >
> > > Reviewed-by: Nuno Sa <[email protected]>
> > >
> >
> > I guess this should have a Fixes: tag...
>
> So, I did a bit of detective work on this one. Seems this change in error
> code was actually introduced as a side effect of Alex's recent rework of
> the IOCTLs. Prior to that we returned -ENODEV for this case and now
> we do indeed return EINVAL.
>
> So we may need to figure out how to fix that, or decide that such is life
> and modify this code to give the right error message as done in this patch...
>
> Linus / Alex, thoughts? It's always been a bit messy because we also
> return -ENODEV in the path where the ioctl hits a driver that is going away
> so it hasn't uniquely identified a lack of support for a long time, even
> if that is by far the most likely reason for this return code.
>
> Jonathan
>
>
> >
> > - Nuno Sá
>

2021-05-03 18:08:31

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

On Mon, May 3, 2021 at 1:05 PM Jonathan Cameron <[email protected]> wrote:

> So, I did a bit of detective work on this one. Seems this change in error
> code was actually introduced as a side effect of Alex's recent rework of
> the IOCTLs. Prior to that we returned -ENODEV for this case and now
> we do indeed return EINVAL.
>
> So we may need to figure out how to fix that, or decide that such is life
> and modify this code to give the right error message as done in this patch...
>
> Linus / Alex, thoughts? It's always been a bit messy because we also
> return -ENODEV in the path where the ioctl hits a driver that is going away
> so it hasn't uniquely identified a lack of support for a long time, even
> if that is by far the most likely reason for this return code.

Normally this would be ABI if any existing userspace can break because
of the wrong error code being returned. Linus (the other one) has
clearly stated that the ABI is a contract that cannot be broken.

So I would just try to fix the errorpath to go back to returning -ENODEV.

Yours,
Linus Walleij

2021-05-03 18:09:09

by Alexandru Ardelean

[permalink] [raw]
Subject: Re: [PATCH] tools/iio: iio_event_monitor: Fix ioctl error check

On Mon, May 3, 2021 at 5:31 PM Linus Walleij <[email protected]> wrote:
>
> On Mon, May 3, 2021 at 1:05 PM Jonathan Cameron <[email protected]> wrote:
>
> > So, I did a bit of detective work on this one. Seems this change in error
> > code was actually introduced as a side effect of Alex's recent rework of
> > the IOCTLs. Prior to that we returned -ENODEV for this case and now
> > we do indeed return EINVAL.
> >
> > So we may need to figure out how to fix that, or decide that such is life
> > and modify this code to give the right error message as done in this patch...
> >
> > Linus / Alex, thoughts? It's always been a bit messy because we also
> > return -ENODEV in the path where the ioctl hits a driver that is going away
> > so it hasn't uniquely identified a lack of support for a long time, even
> > if that is by far the most likely reason for this return code.
>
> Normally this would be ABI if any existing userspace can break because
> of the wrong error code being returned. Linus (the other one) has
> clearly stated that the ABI is a contract that cannot be broken.
>
> So I would just try to fix the errorpath to go back to returning -ENODEV.

Same from my side.
I was just looking through the code now.

Will send a patch.
Sorry for the breakage.

>
> Yours,
> Linus Walleij