autofs: fix autofs_sbi() does not check super block type
authorIan Kent <[email protected]>
Wed, 22 Aug 2018 04:51:45 +0000 (21:51 -0700)
committerLinus Torvalds <[email protected]>
Wed, 22 Aug 2018 17:52:43 +0000 (10:52 -0700)
autofs_sbi() does not check the superblock magic number to verify it has
been given an autofs super block.

Link: http://lkml.kernel.org/r/[email protected]
Reported-by: <[email protected]>
Signed-off-by: Ian Kent <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/autofs/autofs_i.h
fs/autofs/inode.c

index 9400a9f6318a0fab9ac95aeb12e84776a4ae4006..5057b9f0f8461029ae9afb4d321a7e64d0f91da4 100644 (file)
@@ -26,6 +26,7 @@
 #include <linux/list.h>
 #include <linux/completion.h>
 #include <linux/file.h>
+#include <linux/magic.h>
 
 /* This is the range of ioctl() numbers we claim as ours */
 #define AUTOFS_IOC_FIRST     AUTOFS_IOC_READY
@@ -124,7 +125,8 @@ struct autofs_sb_info {
 
 static inline struct autofs_sb_info *autofs_sbi(struct super_block *sb)
 {
-       return (struct autofs_sb_info *)(sb->s_fs_info);
+       return sb->s_magic != AUTOFS_SUPER_MAGIC ?
+               NULL : (struct autofs_sb_info *)(sb->s_fs_info);
 }
 
 static inline struct autofs_info *autofs_dentry_ino(struct dentry *dentry)
index b51980fc274e6c6b26fef944974a076523ae33a3..846c052569dd4913e1aea268ad88a0521251002e 100644 (file)
@@ -10,7 +10,6 @@
 #include <linux/seq_file.h>
 #include <linux/pagemap.h>
 #include <linux/parser.h>
-#include <linux/magic.h>
 
 #include "autofs_i.h"