diff options
| author | Antonio Ospite <ospite@studenti.unina.it> | 2010-10-05 11:20:17 -0400 |
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2010-10-06 05:30:34 -0400 |
| commit | e42dee9a99a3ecd32b5c027e8f7411fb5bc11eb6 (patch) | |
| tree | 98ddb05e7f8eb8420ad376d3c8ef8f2a993659ea | |
| parent | d20d5ffab92f00188f360c44c791a5ffb988247c (diff) | |
HID: hidraw, fix a NULL pointer dereference in hidraw_write
BUG: unable to handle kernel NULL pointer dereference at 0000000000000028
IP: [<ffffffffa0f0a625>] hidraw_write+0x3b/0x116 [hid]
[...]
This is reproducible by disconnecting the device while userspace writes
to dev node in a loop and doesn't check return values in order to exit
the loop.
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Cc: stable@kernel.org
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
| -rw-r--r-- | drivers/hid/hidraw.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/hid/hidraw.c b/drivers/hid/hidraw.c index 9eaf6ae5f97f..a3866b5c0c43 100644 --- a/drivers/hid/hidraw.c +++ b/drivers/hid/hidraw.c | |||
| @@ -109,6 +109,12 @@ static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t | |||
| 109 | int ret = 0; | 109 | int ret = 0; |
| 110 | 110 | ||
| 111 | mutex_lock(&minors_lock); | 111 | mutex_lock(&minors_lock); |
| 112 | |||
| 113 | if (!hidraw_table[minor]) { | ||
| 114 | ret = -ENODEV; | ||
| 115 | goto out; | ||
| 116 | } | ||
| 117 | |||
| 112 | dev = hidraw_table[minor]->hid; | 118 | dev = hidraw_table[minor]->hid; |
| 113 | 119 | ||
| 114 | if (!dev->hid_output_raw_report) { | 120 | if (!dev->hid_output_raw_report) { |
