CVE-2023-53481
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
01/10/2025
Last modified:
02/10/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed<br />
<br />
Following process will trigger an infinite loop in ubi_wl_put_peb():<br />
<br />
ubifs_bgt ubi_bgt<br />
ubifs_leb_unmap<br />
ubi_leb_unmap<br />
ubi_eba_unmap_leb<br />
ubi_wl_put_peb wear_leveling_worker<br />
e1 = rb_entry(rb_first(&ubi->used)<br />
e2 = get_peb_for_wl(ubi)<br />
ubi_io_read_vid_hdr // return err (flash fault)<br />
out_error:<br />
ubi->move_from = ubi->move_to = NULL<br />
wl_entry_destroy(ubi, e1)<br />
ubi->lookuptbl[e->pnum] = NULL<br />
retry:<br />
e = ubi->lookuptbl[pnum]; // return NULL<br />
if (e == ubi->move_from) { // NULL == NULL gets true<br />
goto retry; // infinite loop !!!<br />
<br />
$ top<br />
PID USER PR NI VIRT RES SHR S %CPU %MEM COMMAND<br />
7676 root 20 0 0 0 0 R 100.0 0.0 ubifs_bgt0_0<br />
<br />
Fix it by:<br />
1) Letting ubi_wl_put_peb() returns directly if wearl leveling entry has<br />
been removed from &#39;ubi->lookuptbl&#39;.<br />
2) Using &#39;ubi->wl_lock&#39; protecting wl entry deletion to preventing an<br />
use-after-free problem for wl entry in ubi_wl_put_peb().<br />
<br />
Fetch a reproducer in [Link].
Impact
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/3afaaf6f5867dc4ad383808d4053f428ec7b867d
- https://git.kernel.org/stable/c/4d57a7333e26040f2b583983e1970d9d460e56b0
- https://git.kernel.org/stable/c/5af1c643184a5d09ff5b3f334077a4d0a163c677
- https://git.kernel.org/stable/c/8a18856e074479bd050b01e688c58defadce7ab0
- https://git.kernel.org/stable/c/b40d2fbf47af58377e898b5062077a47bb28a132
- https://git.kernel.org/stable/c/b5be23f6ae610bdb262160a1f294afee6d0e6a69
- https://git.kernel.org/stable/c/cc4bc532acda66189bddc03b3fe1ad689d9a48a2
- https://git.kernel.org/stable/c/f006f596fe851c3b6aae60b79f89f89f0e515d2f



