]> git.baikalelectronics.ru Git - kernel.git/commit
drivers/rapidio/devices/rio_mport_cdev.c: NUL terminate some strings
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 16 Jul 2019 23:30:03 +0000 (16:30 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 17 Jul 2019 02:23:24 +0000 (19:23 -0700)
commit5c24ab1b69ceb86e196e02ef215c9951b8af05b1
treeae32050682ced663e04100253e1daeba3d2225da
parentfb0077022f91e40b607498274095247bd3fda735
drivers/rapidio/devices/rio_mport_cdev.c: NUL terminate some strings

The dev_info.name[] array has space for RIO_MAX_DEVNAME_SZ + 1
characters.  But the problem here is that we don't ensure that the user
put a NUL terminator on the end of the string.  It could lead to an out
of bounds read.

Link: http://lkml.kernel.org/r/20190529110601.GB19119@mwanda
Fixes: 64128ba4e067 ("rapidio: add mport char device driver")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Alexandre Bounine <alex.bou9@gmail.com>
Cc: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rapidio/devices/rio_mport_cdev.c