CVE-2026-12235
ŚrednieCVSS 6.3Prawdopodobieństwo exploitacji (EPSS)
Niskie ryzykoPercentyl 1 - wyżej niż 1% wszystkich znanych CVE
Streszczenie
Podsystem Linkable Loadable Extensions (llext) w Zephyr OS nieprawidłowo obsługuje wpisy relokacji PLT/RELA podczas linkowania relokowalnych rozszerzeń ELF na architekturze Xtensa. Brak walidacji pola r_offset pozwala na zapis poza buforem tekstowym rozszerzenia, co prowadzi do naruszenia pamięci w kontekście nadzorcy.
Ocena ryzyka
Atakujący może wykorzystać tę podatność do zapisu poza dozwolonym obszarem pamięci w trybie nadzorcy, co może prowadzić do utraty integralności i dostępności systemu oraz naruszenia granic sandboxa dla rozszerzeń działających w trybie użytkownika.
Rekomendacja
Zastosuj poprawkę dodającą walidację, która odrzuca wpisy RELA z r_offset większym lub równym rozmiarowi sekcji docelowej. Zaktualizuj system do wersji zawierającej tę poprawkę i unikaj ładowania rozszerzeń ELF z niezaufanych źródeł.
Oryginalny opis (angielski, źródło NVD)
The Linkable Loadable Extensions (llext) subsystem mis-handles PLT/RELA relocation entries when linking a relocatable (partially-linked) ELF extension. In llext_link_plt() (subsys/llext/llext_link.c), the relocatable branch (tgt != NULL, the path used for Xtensa relocatable objects) computed the patch address as ext->mem[LLEXT_MEM_TEXT] - text.sh_offset + rela.r_offset + tgt->sh_offset and then performed the relocation write there without validating rela.r_offset. Its sibling shared/dynamic branch already rejected out-of-range offsets via llext_file_offset(). rela.r_offset is read directly from the ELF's RELA table, so a crafted entry with an offset larger than the target section makes the write land arbitrarily far outside the extension's text buffer. The result is an attacker-influenced out-of-bounds write (the location via r_offset, the written value being the resolved symbol address) performed in supervisor context at link time, before any extension code runs. The path is reached from llext_load() whenever an application loads an attacker-influenced ELF extension on Xtensa with writable storage; llext is documented to accept extensions of untrusted origin. Impact is supervisor-context memory corruption (integrity and availability loss, and a sandbox-boundary escape for user-mode extensions). Exploitation is gated by the Xtensa relocatable PLT path and writable storage, and turning the out-of-range write into a useful primitive is non-trivial. The fix adds a bound check rejecting any RELA entry whose r_offset >= tgt->sh_size, mirroring the existing validation in the shared branch.

