Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1571203 > unrolled thread
| Started by | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| First post | 2017-02-01 00:20 +0100 |
| Last post | 2017-02-01 12:10 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] Input: refuse to register absolute devices without absinfo Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-01 00:20 +0100
Re: [PATCH] Input: refuse to register absolute devices without absinfo Benjamin Tissoires <benjamin.tissoires@redhat.com> - 2017-02-01 09:40 +0100
Re: [PATCH] Input: refuse to register absolute devices without absinfo Jiri Kosina <jikos@kernel.org> - 2017-02-01 12:10 +0100
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Date | 2017-02-01 00:20 +0100 |
| Subject | [PATCH] Input: refuse to register absolute devices without absinfo |
| Message-ID | <t5PSr-6L5-29@gated-at.bofh.it> |
If device is supposed to send absolute events (i.e. EV_ABS bit is set in
dev->evbit) but dev->absinfo is not allocated, then the driver has done
something wrong, and we should not register such device. Otherwise we'll
crash later, when driver tries to send absolute event.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
drivers/input/input.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/input/input.c b/drivers/input/input.c
index f0d2d45a68e3..4617f2db9e36 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -2095,6 +2095,12 @@ int input_register_device(struct input_dev *dev)
const char *path;
int error;
+ if (test_bit(EV_ABS, dev->evbit) && !dev->absinfo) {
+ dev_err(&dev->dev,
+ "Absolute device without dev->absinfo, refusing to register\n");
+ return -EINVAL;
+ }
+
if (dev->devres_managed) {
devres = devres_alloc(devm_input_device_unregister,
sizeof(struct input_devres), GFP_KERNEL);
--
2.11.0.483.g087da7b7c-goog
--
Dmitry
[toc] | [next] | [standalone]
| From | Benjamin Tissoires <benjamin.tissoires@redhat.com> |
|---|---|
| Date | 2017-02-01 09:40 +0100 |
| Subject | Re: [PATCH] Input: refuse to register absolute devices without absinfo |
| Message-ID | <t5YCm-3vC-27@gated-at.bofh.it> |
| In reply to | #1571203 |
On Jan 31 2017 or thereabouts, Dmitry Torokhov wrote:
> If device is supposed to send absolute events (i.e. EV_ABS bit is set in
> dev->evbit) but dev->absinfo is not allocated, then the driver has done
> something wrong, and we should not register such device. Otherwise we'll
> crash later, when driver tries to send absolute event.
>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
Looks good to me:
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Cheers,
Benjamin
> drivers/input/input.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/input/input.c b/drivers/input/input.c
> index f0d2d45a68e3..4617f2db9e36 100644
> --- a/drivers/input/input.c
> +++ b/drivers/input/input.c
> @@ -2095,6 +2095,12 @@ int input_register_device(struct input_dev *dev)
> const char *path;
> int error;
>
> + if (test_bit(EV_ABS, dev->evbit) && !dev->absinfo) {
> + dev_err(&dev->dev,
> + "Absolute device without dev->absinfo, refusing to register\n");
> + return -EINVAL;
> + }
> +
> if (dev->devres_managed) {
> devres = devres_alloc(devm_input_device_unregister,
> sizeof(struct input_devres), GFP_KERNEL);
> --
> 2.11.0.483.g087da7b7c-goog
>
>
> --
> Dmitry
[toc] | [prev] | [next] | [standalone]
| From | Jiri Kosina <jikos@kernel.org> |
|---|---|
| Date | 2017-02-01 12:10 +0100 |
| Subject | Re: [PATCH] Input: refuse to register absolute devices without absinfo |
| Message-ID | <t60Xv-5a0-1@gated-at.bofh.it> |
| In reply to | #1571203 |
On Tue, 31 Jan 2017, Dmitry Torokhov wrote: > If device is supposed to send absolute events (i.e. EV_ABS bit is set in > dev->evbit) but dev->absinfo is not allocated, then the driver has done > something wrong, and we should not register such device. Otherwise we'll > crash later, when driver tries to send absolute event. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Jiri Kosina <jkosina@suse.cz> Thanks. -- Jiri Kosina SUSE Labs
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web