fix race in drivers/char/random.c:get_reg()
authorMichael Schmitz <schmitzmic@gmail.com>
Sun, 30 Apr 2017 07:49:21 +0000 (19:49 +1200)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 23 May 2018 01:36:25 +0000 (21:36 -0400)
commitd6a83da161a84eb873884d1df4e3148b714a3cc5
tree5487db1f1569ba05133ad1ab52d4d72f8882d668
parenteea38c1ae9ef33a1d62be034fe3bf26f227df0ee
fix race in drivers/char/random.c:get_reg()

[ Upstream commit 9dfa7bba35ac08a63565d58c454dccb7e1bb0a08 ]

get_reg() can be reentered on architectures with prioritized interrupts
(m68k in this case), causing f->reg_index to be incremented after the
range check. Out of bounds memory access past the pt_regs struct results.
This will go mostly undetected unless access is beyond end of memory.

Prevent the race by disabling interrupts in get_reg().

Tested on m68k (Atari Falcon, and ARAnyM emulator).

Kudos to Geert Uytterhoeven for helping to trace this race.

Signed-off-by: Michael Schmitz <schmitzmic@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/char/random.c