Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1580981
| From | Chao Yu <yuchao0@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name |
| Date | 2017-02-15 02:20 +0100 |
| Message-ID | <taWqd-119-7@gated-at.bofh.it> (permalink) |
| References | <taPI5-5ax-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 2017/2/15 2:03, Jaegeuk Kim wrote:
> VFS uses f2fs_lookup() to decide f2fs_add_link() call during file creation.
> But, if there is a race condition, f2fs_add_link() can be called multiple
> times, resulting in multiple dentries with a same name. This patches fixes
> it by adding __f2fs_find_entry() in f2fs_add_link() path.
As during ->lookup, i_mutex will be held all the time, so there is no race
condition in between different file creators?
Thanks,
>
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> ---
> fs/f2fs/dir.c | 14 ++++++++++++--
> 1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c
> index 827c5daef4fc..bc7c48839bec 100644
> --- a/fs/f2fs/dir.c
> +++ b/fs/f2fs/dir.c
> @@ -643,14 +643,24 @@ int __f2fs_add_link(struct inode *dir, const struct qstr *name,
> struct inode *inode, nid_t ino, umode_t mode)
> {
> struct fscrypt_name fname;
> + struct page *page;
> + struct f2fs_dir_entry *de;
> int err;
>
> err = fscrypt_setup_filename(dir, name, 0, &fname);
> if (err)
> return err;
>
> - err = __f2fs_do_add_link(dir, &fname, inode, ino, mode);
> -
> + de = __f2fs_find_entry(dir, &fname, &page);
> + if (de) {
> + f2fs_dentry_kunmap(dir, page);
> + f2fs_put_page(page, 0);
> + err = -EEXIST;
> + } else if (!IS_ERR(page)) {
> + err = __f2fs_do_add_link(dir, &fname, inode, ino, mode);
> + } else {
> + err = PTR_ERR(page);
> + }
> fscrypt_free_filename(&fname);
> return err;
> }
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Jaegeuk Kim <jaegeuk@kernel.org> - 2017-02-14 19:10 +0100
Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Chao Yu <yuchao0@huawei.com> - 2017-02-15 02:20 +0100
Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Jaegeuk Kim <jaegeuk@kernel.org> - 2017-02-15 02:50 +0100
Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Jaegeuk Kim <jaegeuk@kernel.org> - 2017-02-16 02:20 +0100
Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Chao Yu <yuchao0@huawei.com> - 2017-02-16 04:40 +0100
Re: [f2fs-dev] [PATCH] f2fs: fix multiple f2fs_add_link() calls having same name Jaegeuk Kim <jaegeuk@kernel.org> - 2017-02-16 18:30 +0100
csiph-web