remoteproc: avoid stack overflow in debugfs file
authorArnd Bergmann <arnd@arndb.de>
Fri, 20 Nov 2015 17:26:07 +0000 (18:26 +0100)
committerDanny Wood <danwood76@gmail.com>
Tue, 29 Jan 2019 13:11:20 +0000 (13:11 +0000)
commit0ce2cd2d39d94fcf9f6e176399f3b09d6ac32162
treed1c49eb823012196a4b86961bc2f9e4b1a4cd1e4
parentca4b187eb8795847e78e4011fcbfa74e0a47b15f
remoteproc: avoid stack overflow in debugfs file

commit 92792e48e2ae6051af30468a87994b5432da2f06 upstream.

Recent gcc versions warn about reading from a negative offset of
an on-stack array:

drivers/remoteproc/remoteproc_debugfs.c: In function 'rproc_recovery_write':
drivers/remoteproc/remoteproc_debugfs.c:167:9: warning: 'buf[4294967295u]' may be used uninitialized in this function [-Wmaybe-uninitialized]

I don't see anything in sys_write() that prevents us from
being called with a zero 'count' argument, so we should
add an extra check in rproc_recovery_write() to prevent the
access and avoid the warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 2e37abb89a2e ("remoteproc: create a 'recovery' debugfs entry")
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/remoteproc/remoteproc_debugfs.c