qemu/target/mips/tcg/sysemu
Peter Maydell 0fe4cac5dd target/mips: Avoid shift by negative number in page_table_walk_refill()
Coverity points out that in page_table_walk_refill() we can
shift by a negative number, which is undefined behaviour
(CID 1452918, 1452920, 1452922).  We already catch the
negative directory_shift and leaf_shift as being a "bail
out early" case, but not until we've already used them to
calculated some offset values.

The shifts can be negative only if ptew > 1, so make the
bail-out-early check look directly at that, and only
calculate the shift amounts and the offsets based on them
after we have done that check. This allows
us to simplify the expressions used to calculate the
shift amounts, use an unsigned type, and avoids the
undefined behaviour.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
[PMD: Check for ptew > 1, use unsigned type]
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20230717213504.24777-3-philmd@linaro.org>
2023-07-25 14:41:16 +02:00
..
cp0_helper.c target/mips: Fix WatchHi.M handling 2022-06-11 11:34:12 +02:00
lcsr_helper.c target/mips: Implement Loongson CSR instructions 2023-07-10 23:33:37 +02:00
meson.build target/mips: Implement Loongson CSR instructions 2023-07-10 23:33:37 +02:00
mips-semi.c gdbstub: move syscall handling to new file 2023-03-07 20:44:08 +00:00
special_helper.c target/mips: Replace tb_pc() with tb->pc 2023-03-01 07:33:17 -10:00
tlb_helper.c target/mips: Avoid shift by negative number in page_table_walk_refill() 2023-07-25 14:41:16 +02:00