From: Eric Sandeen Date: Wed, 25 Mar 2015 03:54:25 +0000 (+1100) Subject: xfs: fix NULL pointer dereference in xfs_filestream_lookup_ag() X-Git-Tag: v4.1-rc1~31^2~3^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b26384dc52edba2f5fcc2b38eccc98e1f44bb379;p=thirdparty%2Fkernel%2Flinux.git xfs: fix NULL pointer dereference in xfs_filestream_lookup_ag() If xfs_filestream_get_parent() fails, we have a null pip, goto out, and attempt to IRELE(NULL). This causes a null pointer dereference and BUG(). Fix this by directly returning NULLAGNUMBER in this case. Reported-by: Adrien Nader Signed-off-by: Eric Sandeen Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/fs/xfs/xfs_filestream.c b/fs/xfs/xfs_filestream.c index a2e86e8a0feac..8f9f854376c62 100644 --- a/fs/xfs/xfs_filestream.c +++ b/fs/xfs/xfs_filestream.c @@ -322,7 +322,7 @@ xfs_filestream_lookup_ag( pip = xfs_filestream_get_parent(ip); if (!pip) - goto out; + return NULLAGNUMBER; mru = xfs_mru_cache_lookup(mp->m_filestream, pip->i_ino); if (mru) {