|
Kmods SIG |
50e2b3 |
From 8ff006e57ad3a25f909c456d053aa498b6673a39 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
50e2b3 |
From: Namjae Jeon <namjae.jeon@samsung.com>
|
|
Kmods SIG |
50e2b3 |
Date: Tue, 29 Sep 2020 09:09:49 +0900
|
|
Kmods SIG |
50e2b3 |
Subject: [Backport 8ff006e57ad3] exfat: fix use of uninitialized spinlock on
|
|
Kmods SIG |
50e2b3 |
error path
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
syzbot reported warning message:
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
Call Trace:
|
|
Kmods SIG |
50e2b3 |
__dump_stack lib/dump_stack.c:77 [inline]
|
|
Kmods SIG |
50e2b3 |
dump_stack+0x1d6/0x29e lib/dump_stack.c:118
|
|
Kmods SIG |
50e2b3 |
register_lock_class+0xf06/0x1520 kernel/locking/lockdep.c:893
|
|
Kmods SIG |
50e2b3 |
__lock_acquire+0xfd/0x2ae0 kernel/locking/lockdep.c:4320
|
|
Kmods SIG |
50e2b3 |
lock_acquire+0x148/0x720 kernel/locking/lockdep.c:5029
|
|
Kmods SIG |
50e2b3 |
__raw_spin_lock include/linux/spinlock_api_smp.h:142 [inline]
|
|
Kmods SIG |
50e2b3 |
_raw_spin_lock+0x2a/0x40 kernel/locking/spinlock.c:151
|
|
Kmods SIG |
50e2b3 |
spin_lock include/linux/spinlock.h:354 [inline]
|
|
Kmods SIG |
50e2b3 |
exfat_cache_inval_inode+0x30/0x280 src/cache.c:226
|
|
Kmods SIG |
50e2b3 |
exfat_evict_inode+0x124/0x270 src/inode.c:660
|
|
Kmods SIG |
50e2b3 |
evict+0x2bb/0x6d0 fs/inode.c:576
|
|
Kmods SIG |
50e2b3 |
exfat_fill_super+0x1e07/0x27d0 src/super.c:681
|
|
Kmods SIG |
50e2b3 |
get_tree_bdev+0x3e9/0x5f0 fs/super.c:1342
|
|
Kmods SIG |
50e2b3 |
vfs_get_tree+0x88/0x270 fs/super.c:1547
|
|
Kmods SIG |
50e2b3 |
do_new_mount fs/namespace.c:2875 [inline]
|
|
Kmods SIG |
50e2b3 |
path_mount+0x179d/0x29e0 fs/namespace.c:3192
|
|
Kmods SIG |
50e2b3 |
do_mount fs/namespace.c:3205 [inline]
|
|
Kmods SIG |
50e2b3 |
__do_sys_mount fs/namespace.c:3413 [inline]
|
|
Kmods SIG |
50e2b3 |
__se_sys_mount+0x126/0x180 fs/namespace.c:3390
|
|
Kmods SIG |
50e2b3 |
do_syscall_64+0x31/0x70 arch/x86/entry/common.c:46
|
|
Kmods SIG |
50e2b3 |
entry_SYSCALL_64_after_hwframe+0x44/0xa9
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
If exfat_read_root() returns an error, spinlock is used in
|
|
Kmods SIG |
50e2b3 |
exfat_evict_inode() without initialization. This patch combines
|
|
Kmods SIG |
50e2b3 |
exfat_cache_init_inode() with exfat_inode_init_once() to initialize
|
|
Kmods SIG |
50e2b3 |
spinlock by slab constructor.
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
Fixes: c35b6810c495 ("exfat: add exfat cache")
|
|
Kmods SIG |
50e2b3 |
Cc: stable@vger.kernel.org # v5.7+
|
|
Kmods SIG |
50e2b3 |
Reported-by: syzbot <syzbot+b91107320911a26c9a95@syzkaller.appspotmail.com>
|
|
Kmods SIG |
50e2b3 |
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
|
|
Kmods SIG |
50e2b3 |
---
|
|
Kmods SIG |
50e2b3 |
src/cache.c | 11 -----------
|
|
Kmods SIG |
50e2b3 |
src/exfat_fs.h | 3 ++-
|
|
Kmods SIG |
50e2b3 |
src/inode.c | 2 --
|
|
Kmods SIG |
50e2b3 |
src/super.c | 5 ++++-
|
|
Kmods SIG |
50e2b3 |
4 files changed, 6 insertions(+), 15 deletions(-)
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/cache.c b/src/cache.c
|
|
Kmods SIG |
50e2b3 |
index 03d0824fc368a5b10241082e271dd4bfefd26ada..5a2f119b7e8c79c6e6c917dd66f12b10acef00b5 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/cache.c
|
|
Kmods SIG |
50e2b3 |
+++ b/src/cache.c
|
|
Kmods SIG |
50e2b3 |
@@ -17,7 +17,6 @@
|
|
Kmods SIG |
50e2b3 |
#include "exfat_raw.h"
|
|
Kmods SIG |
50e2b3 |
#include "exfat_fs.h"
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
-#define EXFAT_CACHE_VALID 0
|
|
Kmods SIG |
50e2b3 |
#define EXFAT_MAX_CACHE 16
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
struct exfat_cache {
|
|
Kmods SIG |
50e2b3 |
@@ -61,16 +60,6 @@ void exfat_cache_shutdown(void)
|
|
Kmods SIG |
50e2b3 |
kmem_cache_destroy(exfat_cachep);
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
-void exfat_cache_init_inode(struct inode *inode)
|
|
Kmods SIG |
50e2b3 |
-{
|
|
Kmods SIG |
50e2b3 |
- struct exfat_inode_info *ei = EXFAT_I(inode);
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
- spin_lock_init(&ei->cache_lru_lock);
|
|
Kmods SIG |
50e2b3 |
- ei->nr_caches = 0;
|
|
Kmods SIG |
50e2b3 |
- ei->cache_valid_id = EXFAT_CACHE_VALID + 1;
|
|
Kmods SIG |
50e2b3 |
- INIT_LIST_HEAD(&ei->cache_lru);
|
|
Kmods SIG |
50e2b3 |
-}
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
static inline struct exfat_cache *exfat_cache_alloc(void)
|
|
Kmods SIG |
50e2b3 |
{
|
|
Kmods SIG |
50e2b3 |
return kmem_cache_alloc(exfat_cachep, GFP_NOFS);
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/exfat_fs.h b/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
index 95d717f8620cd06cd29909ca07a17208dfd12325..c013fe931d9c17aaed61c75d0d9c41e67cd67907 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
+++ b/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
@@ -248,6 +248,8 @@ struct exfat_sb_info {
|
|
Kmods SIG |
50e2b3 |
struct rcu_head rcu;
|
|
Kmods SIG |
50e2b3 |
};
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
+#define EXFAT_CACHE_VALID 0
|
|
Kmods SIG |
50e2b3 |
+
|
|
Kmods SIG |
50e2b3 |
/*
|
|
Kmods SIG |
50e2b3 |
* EXFAT file system inode in-memory data
|
|
Kmods SIG |
50e2b3 |
*/
|
|
Kmods SIG |
50e2b3 |
@@ -428,7 +430,6 @@ extern const struct dentry_operations exfat_utf8_dentry_ops;
|
|
Kmods SIG |
50e2b3 |
/* cache.c */
|
|
Kmods SIG |
50e2b3 |
int exfat_cache_init(void);
|
|
Kmods SIG |
50e2b3 |
void exfat_cache_shutdown(void);
|
|
Kmods SIG |
50e2b3 |
-void exfat_cache_init_inode(struct inode *inode);
|
|
Kmods SIG |
50e2b3 |
void exfat_cache_inval_inode(struct inode *inode);
|
|
Kmods SIG |
50e2b3 |
int exfat_get_cluster(struct inode *inode, unsigned int cluster,
|
|
Kmods SIG |
50e2b3 |
unsigned int *fclus, unsigned int *dclus,
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/inode.c b/src/inode.c
|
|
Kmods SIG |
50e2b3 |
index 7f90204adef53027dd1eb4348141394af5548b1b..a6de17cac3dfd5566832da7cbabb5635bb186a1a 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/inode.c
|
|
Kmods SIG |
50e2b3 |
+++ b/src/inode.c
|
|
Kmods SIG |
50e2b3 |
@@ -611,8 +611,6 @@ static int exfat_fill_inode(struct inode *inode, struct exfat_dir_entry *info)
|
|
Kmods SIG |
50e2b3 |
ei->i_crtime = info->crtime;
|
|
Kmods SIG |
50e2b3 |
inode->i_atime = info->atime;
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
- exfat_cache_init_inode(inode);
|
|
Kmods SIG |
50e2b3 |
-
|
|
Kmods SIG |
50e2b3 |
return 0;
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/super.c b/src/super.c
|
|
Kmods SIG |
50e2b3 |
index 3b6a1659892ffd6ee3a94f6aa0f8bfca65fba9ae..60b941ba557b41fae3ea6b16b3041c3aecdc2b93 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/super.c
|
|
Kmods SIG |
50e2b3 |
+++ b/src/super.c
|
|
Kmods SIG |
50e2b3 |
@@ -376,7 +376,6 @@ static int exfat_read_root(struct inode *inode)
|
|
Kmods SIG |
50e2b3 |
inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
|
|
Kmods SIG |
50e2b3 |
current_time(inode);
|
|
Kmods SIG |
50e2b3 |
exfat_truncate_atime(&inode->i_atime);
|
|
Kmods SIG |
50e2b3 |
- exfat_cache_init_inode(inode);
|
|
Kmods SIG |
50e2b3 |
return 0;
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
@@ -763,6 +762,10 @@ static void exfat_inode_init_once(void *foo)
|
|
Kmods SIG |
50e2b3 |
{
|
|
Kmods SIG |
50e2b3 |
struct exfat_inode_info *ei = (struct exfat_inode_info *)foo;
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
+ spin_lock_init(&ei->cache_lru_lock);
|
|
Kmods SIG |
50e2b3 |
+ ei->nr_caches = 0;
|
|
Kmods SIG |
50e2b3 |
+ ei->cache_valid_id = EXFAT_CACHE_VALID + 1;
|
|
Kmods SIG |
50e2b3 |
+ INIT_LIST_HEAD(&ei->cache_lru);
|
|
Kmods SIG |
50e2b3 |
INIT_HLIST_NODE(&ei->i_hash_fat);
|
|
Kmods SIG |
50e2b3 |
inode_init_once(&ei->vfs_inode);
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
--
|
|
Kmods SIG |
50e2b3 |
2.31.1
|
|
Kmods SIG |
50e2b3 |
|