mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 05:27:07 +02:00
ovl: fix missing negative dentry check in ovl_rename()
commita295aef603upstream. The following reproducer mkdir lower upper work merge touch lower/old touch lower/new mount -t overlay overlay -olowerdir=lower,upperdir=upper,workdir=work merge rm merge/new mv merge/old merge/new & unlink upper/new may result in this race: PROCESS A: rename("merge/old", "merge/new"); overwrite=true,ovl_lower_positive(old)=true, ovl_dentry_is_whiteout(new)=true -> flags |= RENAME_EXCHANGE PROCESS B: unlink("upper/new"); PROCESS A: lookup newdentry in new_upperdir call vfs_rename() with negative newdentry and RENAME_EXCHANGE Fix by adding the missing check for negative newdentry. Signed-off-by: Zheng Liang <zhengliang6@huawei.com> Fixes:e9be9d5e76("overlay filesystem") Cc: <stable@vger.kernel.org> # v3.18 Signed-off-by: Miklos Szeredi <mszeredi@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1500f0c836
commit
9763ffd4da
|
|
@ -1214,9 +1214,13 @@ static int ovl_rename(struct inode *olddir, struct dentry *old,
|
||||||
goto out_dput;
|
goto out_dput;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!d_is_negative(newdentry) &&
|
if (!d_is_negative(newdentry)) {
|
||||||
(!new_opaque || !ovl_is_whiteout(newdentry)))
|
if (!new_opaque || !ovl_is_whiteout(newdentry))
|
||||||
goto out_dput;
|
goto out_dput;
|
||||||
|
} else {
|
||||||
|
if (flags & RENAME_EXCHANGE)
|
||||||
|
goto out_dput;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (olddentry == trap)
|
if (olddentry == trap)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user