[patch] xfsprogs: repair pagefault due to missed out sanity NULL check
Ajeet Yadav
ajeet.yadav.77 at gmail.com
Mon Jan 31 20:56:32 CST 2011
xfsprogs: repair pagefaults due to unhandled NULL check in da_read_buf()
xfs_repair does not correctly handle bplist[i] for error situations in
function da_read_buf(). If libxfs_readbuf() fails then bplist[i] = NULL,
but error handing code calls libxfs_putbuf(bdlist[i]) for all indexes of i
without first checking whether its NULL. This result in pagefault in
libpthread library during pthread_mutex_unlock().
This problem is identified when we remove the storage while xfs_repair
is running on it.
Signed-off-by: Ajeet Yadav <ajeet.yadav.77 at gmail.com>
diff -Nurp xfsprogs/repair/dir2.c xfsprogs-dirty/repair/dir2.c
--- xfsprogs/repair/dir2.c 2010-07-16 13:07:09.000000000 +0900
+++ xfsprogs-dirty/repair/dir2.c 2011-01-28 18:49:21.000000000 +0900
@@ -110,9 +110,10 @@ da_read_buf(
bplist[i] = libxfs_readbuf(mp->m_dev,
XFS_FSB_TO_DADDR(mp, bmp[i].startblock),
XFS_FSB_TO_BB(mp, bmp[i].blockcount), 0);
- if (!bplist[i])
+ if (!bplist[i]){
+ nex = i;
goto failed;
-
+ }
pftrace("readbuf %p (%llu, %d)", bplist[i],
(long long)XFS_BUF_ADDR(bplist[i]),
XFS_BUF_COUNT(bplist[i]));
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://oss.sgi.com/pipermail/xfs/attachments/20110201/1f81e30c/attachment.htm>
More information about the xfs
mailing list