]> git.baikalelectronics.ru Git - kernel.git/commit
coda: Avoid partial allocation of sig_inputArgs
authorKees Cook <keescook@chromium.org>
Fri, 27 Jan 2023 22:39:21 +0000 (14:39 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Mar 2023 08:33:52 +0000 (09:33 +0100)
commit4853103f0d402c6f2d36b39b4d2a39099193fb0b
tree7e31ad62b3e42b6ce8c42004548095d153bce31d
parent0ae2e7d412b2a3237f58199b827bf975ca94e1e2
coda: Avoid partial allocation of sig_inputArgs

[ Upstream commit f52a9ea03f1a5cb7c6d3af0534a3c4aca335267f ]

GCC does not like having a partially allocated object, since it cannot
reason about it for bounds checking when it is passed to other code.
Instead, fully allocate sig_inputArgs. (Alternatively, sig_inputArgs
should be defined as a struct coda_in_hdr, if it is actually not using
any other part of the union.) Seen under GCC 13:

../fs/coda/upcall.c: In function 'coda_upcall':
../fs/coda/upcall.c:801:22: warning: array subscript 'union inputArgs[0]' is partly outside array bounds of 'unsigned char[20]' [-Warray-bounds=]
  801 |         sig_inputArgs->ih.opcode = CODA_SIGNAL;
      |                      ^~

Cc: Jan Harkes <jaharkes@cs.cmu.edu>
Cc: coda@cs.cmu.edu
Cc: codalist@coda.cs.cmu.edu
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20230127223921.never.882-kees@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/coda/upcall.c