On 4/7/17 2:49 AM, Shan Hai wrote: > The print command of the xfs_db would cause segfault on a corrupted > or CRC error block, fix it by bailing out the print when encountered > a corrupted or CRC error block, below is an example to reproduce the > segfault: > > mkfs.xfs -f /dev/sda1 > xfs_db -r -c "agf 0" -c "addr rmaproot" -c "p" /dev/sda1 > Metadata CRC error detected at xfs_rmapbt block 0x0/0x1000 > Segmentation fault (core dumped) Simply refusing to print any structure with corruption would defeat the purpose of xfs_db, I think - it is difficult to analyze a corrupted structure if you cannot examine it. Today: # xfs_db -x fsfile2 xfs_db> inode 128 xfs_db> write -c core.magic 0x4949 Allowing write of corrupted data and bad CRC core.magic = 0x4949 xfs_db> quit # xfs_db -x fsfile2 xfs_db> inode 128 Metadata corruption detected at xfs_inode block 0x80/0x2000 Metadata CRC error detected for ino 128 xfs_db> p core.magic core.magic = 0x4949 xfs_db> i.e. we can read the structure and print the values even if it is corrupted. but with your change on the same damaged inode: xfs_db> p core.magic data corrupted or CRC error xfs_db> That's not useful. I think you need to find the root cause of the segfault, and handle it if possible, instead of refusing to print any corrupted structures. -Eric > Signed-off-by: Shan Hai <shan.hai@xxxxxxxxxx> > --- > db/print.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/db/print.c b/db/print.c > index e31372f..08bb39a 100644 > --- a/db/print.c > +++ b/db/print.c > @@ -69,11 +69,19 @@ print_f( > char **argv) > { > pfunc_t pf; > + int err; > > if (cur_typ == NULL) { > dbprintf(_("no current type\n")); > return 0; > } > + > + err = iocur_top->bp->b_error; > + if ((err == -EFSCORRUPTED) || (err == -EFSBADCRC)) { > + dbprintf(_("data corrupted or CRC error\n")); > + return 0; > + } > + > pf = cur_typ->pfunc; > if (pf == NULL) { > dbprintf(_("no print function for type %s\n"), cur_typ->name); > -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html