kernfs: use dumber locking for kernfs_find_and_get_node_by_ino()
kernfs_find_and_get_node_by_ino() uses RCU protection. It's currently a bit buggy because it can look up a node which hasn't been activated yet and thus may end up exposing a node that the kernfs user is still prepping. While it can be fixed by pushing it further in the current direction, it's already complicated and isn't clear whether the complexity is justified. The main use of kernfs_find_and_get_node_by_ino() is for exportfs operations. They aren't super hot and all the follow-up operations (e.g. mapping to path) use normal locking anyway. Let's switch to a dumber locking scheme and protect the lookup with kernfs_idr_lock. Signed-off-by: Tejun Heo <tj@kernel.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
@ -363,18 +363,9 @@ void kernfs_kill_sb(struct super_block *sb)
|
||||
|
||||
void __init kernfs_init(void)
|
||||
{
|
||||
|
||||
/*
|
||||
* the slab is freed in RCU context, so kernfs_find_and_get_node_by_ino
|
||||
* can access the slab lock free. This could introduce stale nodes,
|
||||
* please see how kernfs_find_and_get_node_by_ino filters out stale
|
||||
* nodes.
|
||||
*/
|
||||
kernfs_node_cache = kmem_cache_create("kernfs_node_cache",
|
||||
sizeof(struct kernfs_node),
|
||||
0,
|
||||
SLAB_PANIC | SLAB_TYPESAFE_BY_RCU,
|
||||
NULL);
|
||||
0, SLAB_PANIC, NULL);
|
||||
|
||||
/* Creates slab cache for kernfs inode attributes */
|
||||
kernfs_iattrs_cache = kmem_cache_create("kernfs_iattrs_cache",
|
||||
|
Reference in New Issue
Block a user