Re: [PATCH] pstore/ram: Validate ECC parameters against Reed-Solomon constraint
From: Naoya Tezuka
Date: Mon Jun 23 2025 - 00:37:47 EST
Hi Tzung-Bi and others,
I truly appreciate your time and feedback on my patch.
On Mon, Jun 23, 2025 at 12:03 PM Tzung-Bi Shih <tzungbi@xxxxxxxxxx> wrote:
>
> On Fri, Jun 20, 2025 at 02:47:57PM +0900, Naoya Tezuka wrote:
> > The Reed-Solomon library enforces the constraint `n <= 2^m - 1` via a
> > BUG_ON(), where `n` is `block_size + ecc_size` and `m` is `symsize` for
> ^^^^^^^^
> Better to provide a link, e.g. [1].
>
> [1]: https://elixir.bootlin.com/linux/v6.15/source/lib/reed_solomon/decode_rs.c#L43
You're right, I'll add that link to this `BUG_ON()` in the v2 patch.
>
> > the pstore RAM backend. A driver providing invalid parameters can trigger
> > this, leading to a kernel panic. For more details on the theory behind:
> > https://www.cs.cmu.edu/~guyb/realworld/reedsolomon/reed_solomon_codes.html
> >
> > This issue was discovered during develop chromeos_pstore driver:
>
> s/develop/developing/.
Thank you for pointing this out. I'll fix the typo in the v2 patch.
Best regards,
Naoya Tezuka