Re: [PATCH RFC 00/17] ubifs: Add filesystem repair support

From: Zhihao Cheng
Date: Fri Dec 29 2023 - 08:10:16 EST


在 2023/12/29 18:06, Richard Weinberger 写道:
----- Ursprüngliche Mail -----
Von: "chengzhihao1" <chengzhihao1@xxxxxxxxxx>
An: "david oberhollenzer" <david.oberhollenzer@xxxxxxxxxxxxx>, "richard" <richard@xxxxxx>, "Miquel Raynal"
<miquel.raynal@xxxxxxxxxxx>, "Sascha Hauer" <s.hauer@xxxxxxxxxxxxxx>, "Tudor Ambarus" <Tudor.Ambarus@xxxxxxxxxx>
CC: "linux-kernel" <linux-kernel@xxxxxxxxxxxxxxx>, "linux-mtd" <linux-mtd@xxxxxxxxxxxxxxxxxxx>
Gesendet: Donnerstag, 28. Dezember 2023 02:40:55
Betreff: [PATCH RFC 00/17] ubifs: Add filesystem repair support
Thanks a lot for sharing this.
Below you find some thoughts that came into my mind while skimming over the
patch series.

UBIFS repair provides a way to fix inconsistent UBIFS image(which is
corrupted by hardware exceptions or UBIFS realization bugs) and makes
filesystem become consistent, just like fsck tools(eg. fsck.ext4,
fsck.f2fs, fsck.fat, etc.) do.
I don't fully agree. The tool makes UBIFS mount again but you still have lost data
and later userspace might fail because file no longer contain what the application
expected.
So my fear is that we're just shifting the problem one layer up.

UBIFS never had a fsck for reasons. UBIFS tries hard to not become inconsistent,
by maintaining a data journal for example.
It can fail of course by hardware issues. e.g. if the underlying MTD loses bits,
but there is nothing UBIFS can do except something like storing duplicates
of data like BTRFS does.

And finally, the biggest pain point, it can fail due to bugs in UBIFS itself.
In my opinion bugs should get addressed by improving our test infrastructure
instead of working around.

I make UBIFS repair for two reasons:

1. There have been many inconsistent problems happened in our products(40+ per year), and reasons for most of them are unknown, I even can't judge the problem is caused by UBIFS bug or hardware exception. The consistent problems, for example, TNC points to an empty space, TNC points to an unexpected node, bad key order in znodes, dirty space of pnode becomes greater than LEB size, huge number in master->total_dead(looks like overflow), etc. I cannot send these bad images to find help, because the corporate policy. Our kernel version is new, and latest bugfixs in linux-mainline are picked in time. I have looked though journal/recovery UBIFS subsystem dozens of times, the implementation looks good, except one problem[2]. And we have do many powercut/faul-injection tests for ubifs, and Zhaolong has published our fault-injection implementation in [3], the result is that journal/recovery UBIFS subsystem does look sturdy.

2. If there exists a fsck tool, user have one more option to deal with inconsistent UBIFS image. UBIFS is mainly applied in embeded system, making filesystem available is most important when filesystem becomes inconsistent in some situations.

[1] https://linux-mtd.infradead.narkive.com/bfcHzD0j/ubi-ubifs-corruptions-during-random-power-cuts

[2] https://bugzilla.kernel.org/show_bug.cgi?id=218309

[3] https://patchwork.ozlabs.org/project/linux-mtd/list/?series=388034

I'm not sure whether you prefer a fsck tool, in my opinion, fsck just provide a way for userspace to fix filesystem, user can choose invoke it or not according to the tool's limitations based on specific situation. But according to your following reply, I guess you can accept that UBIFS can have a fsck, and fsck should let user known which file is recovered incomplete, which file is old, rather than just make filesystem become consistent.


About why do we need it, how it works, what it can fix or it can not
fix, when and how to use it, see more details in
Documentation/filesystems/ubifs/repair.rst (Patch 17).
This needs to go into the cover letter.
OK, thanks for reminding.
Testing on UBIFS repair refers to
https://bugzilla.kernel.org/show_bug.cgi?id=218327

Whatever, we finally have a way to fix inconsistent UBFIS image instead
of formatting UBI when UBIFS becomes inconsistent.
Fix in terms of making mount work again, I fear? As I said, most likely
the problem is now one layer above. UBIFS thinks everything is good but
userspace suddenly will see old/incomplete files.

What I can think of is a tool (in userspace like other fscks) which
can recover certain UBIFS structures but makes very clear to the user what
the data is lost. e.g. that inode XY now misses some blocks or an old version
of something will be used.
But this isl nothing you can run blindly in production.

Let me see.

First, we have a common view, fsck tool is valuable for UBIFS, it just provide a way for user application to make UBIFS be consistent and available. Right?

Second, you concern odd/incomplete files are recovered just like I metioned in documentation(Limitations section), which still make application failed because the recovered file lost data or deleted file is recovered. So you suggested me that make a userspace fsck tool, and fsck can telll user which file is data lost, which file is recovered after deletion.

The difficulty comes from second point,  how does fsck know a file is recovered incomplete or old. Whether the node is existing, it is judged by TNC, but TNC could be damaged like I descibed in above. Do you have any ideas?

Besides, we get incomplete file because some data nodes are corrupted, the corrupted data is printed in dbg msg when it is dropped.