OpenSBI Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Fixes for load/store misaligned and access faults
@ 2026-06-05 11:32 Bo Gan
  2026-06-05 11:32 ` [PATCH v2 1/8] include: sbi: Add more mstatus and instruction encoding Bo Gan
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Bo Gan @ 2026-06-05 11:32 UTC (permalink / raw)
  To: opensbi, wangruikang, dramforever, andrew.jones; +Cc: cleger, pjw, asrinivasan

Re-visit the load/store misaligned and access fault handlers to fix
issues related to coding patterns, floating-point state, and instruction
decoding:

 a. Vector misaligned load/store emulator is invoked improperly
 b. vsstatus.FS is not set dirty when V=1
 c. No checking of previous XLEN, resulting in wrong insn decoding
 d. Load/Store base address is wrongly assumed to be trap address
 e. High 32-bits of tinst needs to be checked against 0

The pathset is validated on a modified QEMU[1] that exposed misaligned
faults, and QEMU[2], which further disabled the insn transformation.
[2] covers more insn decoding branches, including the particular ones
which can trigger the wrong decoding (c)

The patchset is also validated on Sifive P550 core (ESWIN EIC7700),
which is RV64-only in M/(V)S/(V)U, no HW misaligned support, no vector,
and mtinst always 0. Refer to [3] for the git repo/branch that has all
6 patches applied along with the test case that exercises all integer
and floating-point load/store instructions.

Test case used is available in PATCH 8.

There's no change to the behavior of the vector misaligned load/store
handler. However, I've found additional issues with them:

 - `uint8_t mask[VLEN_MAX / 8]` in sbi_trap_v_ldst.c is 8KB, which
   can overflow the default 4KB stack.
 - tinst should be zero'ed out to not confuse previous mode when
   redirecting faults, otherwise the vector insn can be mistaken
   as a regular load/store.
 - VS in previous mode must be set dirty for loads.

These will be addressed in follow-up patches.

[1] https://github.com/ganboing/qemu/tree/ganboing-misalign
[2] https://github.com/ganboing/qemu/tree/ganboing-misalign-no-tinst
[3] https://github.com/ganboing/opensbi/tree/fix-ldst-v2
---
Changes in v2:
 - Addressed Anup's comment for PATCH 5 in v1
 - Validate load/store offset is 0 in misaligned faults w/ DEBUG build

---
Bo Gan (8):
  include: sbi: Add more mstatus and instruction encoding
  include: sbi: Add sbi_regs_prev_xlen
  include: sbi: Add GET_RDS_NUM/SET(_FP32/_FP64)_RDS macros
  include: sbi: set FS dirty in vsstatus when V=1
  lib: sbi: Do not override emulator callback for vector load/store
  Makefile: define OPENSBI_DEBUG if DEBUG builds
  lib: sbi: Rework load/store emulator instruction decoding
  [NOT-FOR-UPSTREAM] Test program for misaligned load/store

 Makefile                     |   1 +
 include/sbi/riscv_encoding.h |  21 +-
 include/sbi/riscv_fp.h       |  30 ++-
 include/sbi/sbi_platform.h   |  92 +++++--
 include/sbi/sbi_trap.h       |  59 ++++
 include/sbi/sbi_trap_ldst.h  |   4 +-
 lib/sbi/sbi_trap_ldst.c      | 510 ++++++++++++++++++++++++-----------
 lib/sbi/sbi_trap_v_ldst.c    |  25 +-
 tests/ldst.S                 | 134 +++++++++
 tests/ldst.h                 | 170 ++++++++++++
 tests/test-misaligned-ldst.c | 154 +++++++++++
 11 files changed, 994 insertions(+), 206 deletions(-)
 create mode 100644 tests/ldst.S
 create mode 100644 tests/ldst.h
 create mode 100644 tests/test-misaligned-ldst.c

-- 
2.34.1


-- 
opensbi mailing list
opensbi@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/opensbi

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2026-06-16  8:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-05 11:32 [PATCH v2 0/8] Fixes for load/store misaligned and access faults Bo Gan
2026-06-05 11:32 ` [PATCH v2 1/8] include: sbi: Add more mstatus and instruction encoding Bo Gan
2026-06-05 11:32 ` [PATCH v2 2/8] include: sbi: Add sbi_regs_prev_xlen Bo Gan
2026-06-05 11:32 ` [PATCH v2 3/8] include: sbi: Add GET_RDS_NUM/SET(_FP32/_FP64)_RDS macros Bo Gan
2026-06-05 11:32 ` [PATCH v2 4/8] include: sbi: set FS dirty in vsstatus when V=1 Bo Gan
2026-06-05 11:32 ` [PATCH v2 5/8] lib: sbi: Do not override emulator callback for vector load/store Bo Gan
2026-06-16  8:17   ` Anup Patel
2026-06-05 11:32 ` [PATCH v2 6/8] Makefile: define OPENSBI_DEBUG if DEBUG builds Bo Gan
2026-06-16  8:19   ` Anup Patel
2026-06-05 11:32 ` [PATCH v2 7/8] lib: sbi: Rework load/store emulator instruction decoding Bo Gan
2026-06-16  8:21   ` Anup Patel
2026-06-05 11:32 ` [PATCH v2 8/8] [NOT-FOR-UPSTREAM] Test program for misaligned load/store Bo Gan
2026-06-16  8:23   ` Anup Patel
2026-06-08 18:18 ` [PATCH v2 0/8] Fixes for load/store misaligned and access faults Anirudh Srinivasan
2026-06-08 21:42   ` Bo Gan
2026-06-10  0:02     ` Anirudh Srinivasan
2026-06-16  8:25 ` Anup Patel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox