[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20121015152957.24859.7960.stgit@localhost.localdomain>
Date: Mon, 15 Oct 2012 19:30:03 +0400
From: Stanislav Kinsbursky <skinsbursky@...allels.com>
To: akpm@...ux-foundation.org, viro@...iv.linux.org.uk
Cc: linux-kernel@...r.kernel.org, criu@...nvz.org,
ebiederm@...ssion.com, rientjes@...gle.com, gorcunov@...nvz.org,
devel@...nvz.org
Subject: [PATCH] proc: check vma->vm_file before dereferencing
It can be equal to NULL.
Signed-off-by: Stanislav Kinsbursky <skinsbursky@...allels.com>
---
fs/proc/base.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/fs/proc/base.c b/fs/proc/base.c
index 144a967..74fc562 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -1770,8 +1770,9 @@ static struct dentry *proc_map_files_lookup(struct inode *dir,
if (!vma)
goto out_no_vma;
- result = proc_map_files_instantiate(dir, dentry, task,
- (void *)(unsigned long)vma->vm_file->f_mode);
+ if (vma->vm_file)
+ result = proc_map_files_instantiate(dir, dentry, task,
+ (void *)(unsigned long)vma->vm_file->f_mode);
out_no_vma:
up_read(&mm->mmap_sem);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists