wolfBoot/include
Daniele Lacamera 286581cf18 F-5093: fix OOB memset in x86_paging_setup_ptp and non-looping panic
Three related defects:
- panic() halted with a single hlt instruction (no loop), so any
  resumable interrupt (LAPIC timer via iretq) caused it to return,
  allowing callers to continue executing.  Add while(1) and declare
  __attribute__((noreturn)) in both definition and header.
- x86_paging_setup_ptp guarded with == WOLFBOOT_PTP_NUM instead of >=,
  so if the counter ever exceeded that value (after a panic() return)
  the guard was permanently bypassed.
- The ptp pointer was computed before the bounds check, creating an
  out-of-bounds pointer for one-past-end indices; move the assignment
  to after the guard so no invalid pointer is ever formed.

Add unit-x86-paging-oob test that sets page_table_page_used to
WOLFBOOT_PTP_NUM and verifies that every subsequent call to
x86_paging_setup_ptp triggers panic (via longjmp stub) rather than
silently proceeding with an out-of-bounds memset.
2026-06-10 21:01:16 +02:00
..
MPLAB Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
wolfboot Add hardware-based DICE on mcxn 2026-05-21 20:49:20 +02:00
x86 F-5093: fix OOB memset in x86_paging_setup_ptp and non-looping panic 2026-06-10 21:01:16 +02:00
delta.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
disk.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
elf.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
encrypt.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
fdt.h Add wolfBoot FIT support for loading bitstream 2026-06-09 15:30:27 +02:00
gpt.h F-4715: bound GPT partition-entry array size before CRC scan in disk_open 2026-06-10 21:01:16 +02:00
gzip.h Fixes from peer review (Thank you Daniele and Marco) 2026-05-05 10:16:16 +02:00
hal.h Add wolfBoot FIT support for loading bitstream 2026-06-09 15:30:27 +02:00
hal_fpga.h Add wolfBoot FIT support for loading bitstream 2026-06-09 15:30:27 +02:00
hooks.h
image.h unify rsa and rsa-pss into single verify method 2026-04-28 15:02:57 +02:00
keystore.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
loader.h rename aggregate RSA PSS macro, add Renesas protection 2026-04-28 15:02:57 +02:00
multiboot.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
otp_keystore.h Fix initialization of string in otp_keystore tag (fix build error) 2026-05-06 10:22:59 +02:00
pci.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
printf.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
sdhci.h Peer review fixes + ZynqMP robustness improvements 2026-04-28 14:55:06 +02:00
spi_drv.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
spi_flash.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
stage2_params.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
target.h.in Add wolfBoot FIT support for loading bitstream 2026-06-09 15:30:27 +02:00
tpm.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
uart_drv.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
uart_flash.h Preparing release v2.8.0 + update copyright 2026-04-16 13:11:56 +02:00
user_settings.h remove pem to der define to reduce image size 2026-06-05 10:44:30 -06:00