Zhihao Cheng
cc4bc532ac
ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed
...
[ Upstream commit 4d57a7333e26040f2b583983e1970d9d460e56b0 ]
Following process will trigger an infinite loop in ubi_wl_put_peb():
ubifs_bgt ubi_bgt
ubifs_leb_unmap
ubi_leb_unmap
ubi_eba_unmap_leb
ubi_wl_put_peb wear_leveling_worker
e1 = rb_entry(rb_first(&ubi->used)
e2 = get_peb_for_wl(ubi)
ubi_io_read_vid_hdr // return err (flash fault)
out_error:
ubi->move_from = ubi->move_to = NULL
wl_entry_destroy(ubi, e1)
ubi->lookuptbl[e->pnum] = NULL
retry:
e = ubi->lookuptbl[pnum]; // return NULL
if (e == ubi->move_from) { // NULL == NULL gets true
goto retry; // infinite loop !!!
$ top
PID USER PR NI VIRT RES SHR S %CPU %MEM COMMAND
7676 root 20 0 0 0 0 R 100.0 0.0 ubifs_bgt0_0
Fix it by:
1) Letting ubi_wl_put_peb() returns directly if wearl leveling entry has
been removed from 'ubi->lookuptbl'.
2) Using 'ubi->wl_lock' protecting wl entry deletion to preventing an
use-after-free problem for wl entry in ubi_wl_put_peb().
Fetch a reproducer in [Link].
Fixes: 43f9b25a9cdd7b1 ("UBI: bugfix: protect from volume removal")
Fixes: ee59ba8b064f692 ("UBI: Fix stale pointers in ubi->lookuptbl")
Link: https://bugzilla.kernel.org/show_bug.cgi?id=216111
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2023-03-11 13:55:21 +01:00
..
2022-04-28 10:17:22 +02:00
2022-09-21 10:38:09 +02:00
2022-06-24 20:47:36 +02:00
2022-12-31 13:32:12 +01:00
2022-12-31 13:32:15 +01:00
2022-11-07 16:53:04 +01:00
2023-01-18 11:58:24 +01:00
2023-03-10 09:34:21 +01:00
2022-10-11 17:42:58 -06:00
2023-03-11 13:55:21 +01:00
2022-09-19 18:14:53 +02:00
2022-09-21 10:38:07 +02:00
2021-06-11 20:44:21 +02:00
2021-08-06 22:05:13 +02:00
2022-06-28 06:33:15 -06:00
2021-08-17 18:41:59 +02:00
2022-04-25 10:43:12 +02:00
2022-09-21 10:38:11 +02:00
2022-09-20 10:40:30 +02:00
2022-12-31 13:32:15 +01:00
2022-04-26 09:27:12 +02:00
2023-03-10 09:33:38 +01:00
2022-09-19 18:14:53 +02:00
2021-10-18 06:17:01 -06:00
2022-09-21 10:38:07 +02:00
2022-09-21 10:38:07 +02:00
2021-06-11 20:43:26 +02:00
2021-08-23 10:01:06 +02:00
2022-09-21 10:38:07 +02:00
2022-09-21 10:38:07 +02:00