diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-02 22:17:34 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-10 02:18:19 +0300 |
commit | ce285c267a003acbf607f3540ff71287f82e5282 (patch) | |
tree | e1fc114f3e1246fc819452ce1254e0df777f12bd /fs/autofs/autofs_i.h | |
parent | 5467a68cbf6884c9a9d91e2a89140afb1839c835 (diff) | |
download | linux-ce285c267a003acbf607f3540ff71287f82e5282.tar.xz |
autofs: fix use-after-free in lockless ->d_manage()
autofs_d_release() can overlap with lockless ->d_manage(),
ending up with autofs_dentry_ino() freed under the latter.
Make freeing autofs_info instances RCU-delayed...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/autofs/autofs_i.h')
-rw-r--r-- | fs/autofs/autofs_i.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/autofs/autofs_i.h b/fs/autofs/autofs_i.h index 70c132acdab1..e1091312abe1 100644 --- a/fs/autofs/autofs_i.h +++ b/fs/autofs/autofs_i.h @@ -71,6 +71,7 @@ struct autofs_info { kuid_t uid; kgid_t gid; + struct rcu_head rcu; }; #define AUTOFS_INF_EXPIRING (1<<0) /* dentry in the process of expiring */ |