diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2016-06-27 17:12:34 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2016-07-20 20:50:23 -0400 |
commit | 510cccb5b0c8868a2b302a0ab524da7912da648b (patch) | |
tree | 3b56ec2823c7b2757d1dea1c97b3b02a4595f7c4 /drivers/tty/vt | |
parent | e4add7b6beaff4061693d0632bc1dcb306edba10 (diff) |
tty/vt/keyboard: fix OOB access in do_compute_shiftstate()
The size of individual keymap in drivers/tty/vt/keyboard.c is NR_KEYS,
which is currently 256, whereas number of keys/buttons in input device (and
therefor in key_down) is much larger - KEY_CNT - 768, and that can cause
out-of-bound access when we do
sym = U(key_maps[0][k]);
with large 'k'.
To fix it we should not attempt iterating beyond smaller of NR_KEYS and
KEY_CNT.
Also while at it let's switch to for_each_set_bit() instead of open-coding
it.
Reported-by: Sasha Levin <sasha.levin@oracle.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable@vger.kernel.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/tty/vt')
-rw-r--r-- | drivers/tty/vt/keyboard.c | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/drivers/tty/vt/keyboard.c b/drivers/tty/vt/keyboard.c index f973bfce5d08..1e93a37e27f0 100644 --- a/drivers/tty/vt/keyboard.c +++ b/drivers/tty/vt/keyboard.c | |||
@@ -366,34 +366,22 @@ static void to_utf8(struct vc_data *vc, uint c) | |||
366 | 366 | ||
367 | static void do_compute_shiftstate(void) | 367 | static void do_compute_shiftstate(void) |
368 | { | 368 | { |
369 | unsigned int i, j, k, sym, val; | 369 | unsigned int k, sym, val; |
370 | 370 | ||
371 | shift_state = 0; | 371 | shift_state = 0; |
372 | memset(shift_down, 0, sizeof(shift_down)); | 372 | memset(shift_down, 0, sizeof(shift_down)); |
373 | 373 | ||
374 | for (i = 0; i < ARRAY_SIZE(key_down); i++) { | 374 | for_each_set_bit(k, key_down, min(NR_KEYS, KEY_CNT)) { |
375 | 375 | sym = U(key_maps[0][k]); | |
376 | if (!key_down[i]) | 376 | if (KTYP(sym) != KT_SHIFT && KTYP(sym) != KT_SLOCK) |
377 | continue; | 377 | continue; |
378 | 378 | ||
379 | k = i * BITS_PER_LONG; | 379 | val = KVAL(sym); |
380 | 380 | if (val == KVAL(K_CAPSSHIFT)) | |
381 | for (j = 0; j < BITS_PER_LONG; j++, k++) { | 381 | val = KVAL(K_SHIFT); |
382 | |||
383 | if (!test_bit(k, key_down)) | ||
384 | continue; | ||
385 | 382 | ||
386 | sym = U(key_maps[0][k]); | 383 | shift_down[val]++; |
387 | if (KTYP(sym) != KT_SHIFT && KTYP(sym) != KT_SLOCK) | 384 | shift_state |= BIT(val); |
388 | continue; | ||
389 | |||
390 | val = KVAL(sym); | ||
391 | if (val == KVAL(K_CAPSSHIFT)) | ||
392 | val = KVAL(K_SHIFT); | ||
393 | |||
394 | shift_down[val]++; | ||
395 | shift_state |= (1 << val); | ||
396 | } | ||
397 | } | 385 | } |
398 | } | 386 | } |
399 | 387 | ||