linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] fs/sysctl: fix potential page fault while unregistering sysctl table
@ 2018-02-27 22:43 Danilo Krummrich
  2018-02-27 22:43 ` [PATCH 2/2] fs/sysctl: remove redundant link check in proc_sys_link_fill_cache() Danilo Krummrich
  2018-02-27 23:02 ` [PATCH 1/2] fs/sysctl: fix potential page fault while unregistering sysctl table Kees Cook
  0 siblings, 2 replies; 6+ messages in thread
From: Danilo Krummrich @ 2018-02-27 22:43 UTC (permalink / raw)
  To: mcgrof, keescook; +Cc: linux-kernel, linux-fsdevel, Danilo Krummrich

proc_sys_link_fill_cache() does not take currently unregistering
sysctl tables into account, which might result into a page fault in
sysctl_follow_link() - add a check to fix it.

Signed-off-by: Danilo Krummrich <danilokrummrich@dk-develop.de>
---
 fs/proc/proc_sysctl.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index c5cbbdff3c3d..a0b6c647835e 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -709,6 +709,9 @@ static bool proc_sys_link_fill_cache(struct file *file,
 	bool ret = true;
 	head = sysctl_head_grab(head);
 
+	if (IS_ERR(head))
+		return false;
+
 	if (S_ISLNK(table->mode)) {
 		/* It is not an error if we can not follow the link ignore it */
 		int err = sysctl_follow_link(&head, &table);
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-02-27 23:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-27 22:43 [PATCH 1/2] fs/sysctl: fix potential page fault while unregistering sysctl table Danilo Krummrich
2018-02-27 22:43 ` [PATCH 2/2] fs/sysctl: remove redundant link check in proc_sys_link_fill_cache() Danilo Krummrich
2018-02-27 22:59   ` Kees Cook
2018-02-27 23:01     ` Danilo Krummrich
2018-02-27 23:02 ` [PATCH 1/2] fs/sysctl: fix potential page fault while unregistering sysctl table Kees Cook
2018-02-27 23:20   ` Danilo Krummrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).