From: Suzuki Date: Tue, 7 Feb 2006 20:58:36 +0000 (-0800) Subject: [PATCH] Fix do_path_lookup() to add the check for error in link_path_walk() X-Git-Tag: v2.6.16-rc3~126 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3bc8414b079ec372485c99ed1f33c6c42ca9d756;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [PATCH] Fix do_path_lookup() to add the check for error in link_path_walk() Fix do_path_lookup() to avoid accessing invalid dentry or inode when the link_path_walk() has failed. This should fix Bugme #5897. Signed-off-by: Suzuki K P Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/namei.c b/fs/namei.c index faf61c35..e28de84 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1119,9 +1119,11 @@ static int fastcall do_path_lookup(int dfd, const char *name, current->total_link_count = 0; retval = link_path_walk(name, nd); out: - if (unlikely(current->audit_context - && nd && nd->dentry && nd->dentry->d_inode)) + if (likely(retval == 0)) { + if (unlikely(current->audit_context && nd && nd->dentry && + nd->dentry->d_inode)) audit_inode(name, nd->dentry->d_inode, flags); + } return retval; fput_unlock_fail: