linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
* f2fs not mountable: CRC validation failed
@ 2017-03-26 20:12 Piergiorgio Sartor
  2017-03-26 23:45 ` Jaegeuk Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Piergiorgio Sartor @ 2017-03-26 20:12 UTC (permalink / raw)
  To: linux-f2fs-devel

Hi all,

I apologize in advance in case this is the
wrong place for support (if so, please
point me in the right direction).

I've an USB stick formatted with f2fs,
used under Linux on a RPi2.
To be clear, it is a USB device, not
an SD card.

After a crash, the USB stick is not mountable
any more.
There is no HW error on the stick.

A "fsck" returns, among other information:

[f2fs_crc_valid: 486] CRC validation failed: cal_crc = 3543933224, blk_crc = 719768680 buff_size = 0xffc
[f2fs_crc_valid: 486] CRC validation failed: cal_crc = 1071250051, blk_crc = 2385854943 buff_size = 0xffc
[f2fs_do_mount:2018] Can't find valid checkpoint

And it does not perform any check / repair.

I'm a bit puzzled, I wonder if there is way
to force a repair, partially could be OK too.

Clearly, "fsck.f2fs -f" did not work.

Any chance to save some data?

f2fs-tools is version 1.8.0 (I guess it's latest).

System is Fedora 25, the tool is self compiled.

Thanks a lot in advance, in case other information
are required, please let me know.

bye,

-- 

piergiorgio

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: f2fs not mountable: CRC validation failed
  2017-03-26 20:12 f2fs not mountable: CRC validation failed Piergiorgio Sartor
@ 2017-03-26 23:45 ` Jaegeuk Kim
  2017-03-27 17:37   ` Piergiorgio Sartor
  0 siblings, 1 reply; 3+ messages in thread
From: Jaegeuk Kim @ 2017-03-26 23:45 UTC (permalink / raw)
  To: Piergiorgio Sartor; +Cc: linux-f2fs-devel

Hello,

On 03/26, Piergiorgio Sartor wrote:
> Hi all,
> 
> I apologize in advance in case this is the
> wrong place for support (if so, please
> point me in the right direction).
> 
> I've an USB stick formatted with f2fs,
> used under Linux on a RPi2.
> To be clear, it is a USB device, not
> an SD card.
> 
> After a crash, the USB stick is not mountable
> any more.
> There is no HW error on the stick.
> 
> A "fsck" returns, among other information:
> 
> [f2fs_crc_valid: 486] CRC validation failed: cal_crc = 3543933224, blk_crc = 719768680 buff_size = 0xffc
> [f2fs_crc_valid: 486] CRC validation failed: cal_crc = 1071250051, blk_crc = 2385854943 buff_size = 0xffc
> [f2fs_do_mount:2018] Can't find valid checkpoint

Wow, this means all the checkpoint blocks were corrupted by USB stick, since we
always guarantee one of them should be valid, which can be used as trusted root
index. I'm in doubt whether or not USB stick supports cache_flush reliably tho.

If you have a chance, now f2fs supports multiple devices, so you'd better use
two paritions: one is very small local storage and the other is an USB stick, so
that local storage keeps superblock and checkpoint more reliably.

> And it does not perform any check / repair.
> 
> I'm a bit puzzled, I wonder if there is way
> to force a repair, partially could be OK too.
> 
> Clearly, "fsck.f2fs -f" did not work.
> 
> Any chance to save some data?

Hmm, fsck.f2fs always starts from valid checkpoint and superblock, so you can't.
In order to retrieve some data, it needs to scan whole image to get inodes, but
it looks like another tool that we need to implement.

Thanks,

> 
> f2fs-tools is version 1.8.0 (I guess it's latest).
> 
> System is Fedora 25, the tool is self compiled.
> 
> Thanks a lot in advance, in case other information
> are required, please let me know.
> 
> bye,
> 
> -- 
> 
> piergiorgio
> 
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Linux-f2fs-devel mailing list
> Linux-f2fs-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: f2fs not mountable: CRC validation failed
  2017-03-26 23:45 ` Jaegeuk Kim
@ 2017-03-27 17:37   ` Piergiorgio Sartor
  0 siblings, 0 replies; 3+ messages in thread
From: Piergiorgio Sartor @ 2017-03-27 17:37 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: Piergiorgio Sartor, linux-f2fs-devel

Hi,

thanks for the answer.

On Sun, Mar 26, 2017 at 04:45:37PM -0700, Jaegeuk Kim wrote:
> Hello,
> 
> On 03/26, Piergiorgio Sartor wrote:
> > Hi all,
> > 
> > I apologize in advance in case this is the
> > wrong place for support (if so, please
> > point me in the right direction).
> > 
> > I've an USB stick formatted with f2fs,
> > used under Linux on a RPi2.
> > To be clear, it is a USB device, not
> > an SD card.
> > 
> > After a crash, the USB stick is not mountable
> > any more.
> > There is no HW error on the stick.
> > 
> > A "fsck" returns, among other information:
> > 
> > [f2fs_crc_valid: 486] CRC validation failed: cal_crc = 3543933224, blk_crc = 719768680 buff_size = 0xffc
> > [f2fs_crc_valid: 486] CRC validation failed: cal_crc = 1071250051, blk_crc = 2385854943 buff_size = 0xffc
> > [f2fs_do_mount:2018] Can't find valid checkpoint
> 
> Wow, this means all the checkpoint blocks were corrupted by USB stick, since we
> always guarantee one of them should be valid, which can be used as trusted root
> index. I'm in doubt whether or not USB stick supports cache_flush reliably tho.

Well, it was quite an hard crash, the Rpi2 was
not reachable via ssh and it was lost by the
DNS server (not any more resolvable).
It seems to me it is possible the crash was
so severe to damage the fs indepedently from
the USB stick capabilities...
BTW, it is plenty of reports of SD card damaged
by crash of RPi2.

> If you have a chance, now f2fs supports multiple devices, so you'd better use
> two paritions: one is very small local storage and the other is an USB stick, so
> that local storage keeps superblock and checkpoint more reliably.

Which kernel version support this?
Furthermore, the "small local storage" would be,
in this case, the SD card, which does not seem
to me reliable (if this is required).

> > And it does not perform any check / repair.
> > 
> > I'm a bit puzzled, I wonder if there is way
> > to force a repair, partially could be OK too.
> > 
> > Clearly, "fsck.f2fs -f" did not work.
> > 
> > Any chance to save some data?
> 
> Hmm, fsck.f2fs always starts from valid checkpoint and superblock, so you can't.
> In order to retrieve some data, it needs to scan whole image to get inodes, but
> it looks like another tool that we need to implement.

OK, well, when it will be ready... :-)

In any case, it would be good to have such a
tool, if the fs can be recovered by it.

I think my only option, right now, is to
re-install the system.

> Thanks,

Thank you,

bye,

pg

> > 
> > f2fs-tools is version 1.8.0 (I guess it's latest).
> > 
> > System is Fedora 25, the tool is self compiled.
> > 
> > Thanks a lot in advance, in case other information
> > are required, please let me know.
> > 
> > bye,
> > 
> > -- 
> > 
> > piergiorgio
> > 
> > ------------------------------------------------------------------------------
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > _______________________________________________
> > Linux-f2fs-devel mailing list
> > Linux-f2fs-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

-- 

piergiorgio

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-03-27 17:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-26 20:12 f2fs not mountable: CRC validation failed Piergiorgio Sartor
2017-03-26 23:45 ` Jaegeuk Kim
2017-03-27 17:37   ` Piergiorgio Sartor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).