mirror of
https://github.com/torvalds/linux.git
synced 2025-04-09 14:45:27 +00:00

Some filesystems, such as NFS, cifs, ceph, and fuse, do not have complete control of sequencing on the actual filesystem (e.g. on a different server) and may find that the inode created for a mkdir request already exists in the icache and dcache by the time the mkdir request returns. For example, if the filesystem is mounted twice the directory could be visible on the other mount before it is on the original mount, and a pair of name_to_handle_at(), open_by_handle_at() calls could instantiate the directory inode with an IS_ROOT() dentry before the first mkdir returns. This means that the dentry passed to ->mkdir() may not be the one that is associated with the inode after the ->mkdir() completes. Some callers need to interact with the inode after the ->mkdir completes and they currently need to perform a lookup in the (rare) case that the dentry is no longer hashed. This lookup-after-mkdir requires that the directory remains locked to avoid races. Planned future patches to lock the dentry rather than the directory will mean that this lookup cannot be performed atomically with the mkdir. To remove this barrier, this patch changes ->mkdir to return the resulting dentry if it is different from the one passed in. Possible returns are: NULL - the directory was created and no other dentry was used ERR_PTR() - an error occurred non-NULL - this other dentry was spliced in This patch only changes file-systems to return "ERR_PTR(err)" instead of "err" or equivalent transformations. Subsequent patches will make further changes to some file-systems to return a correct dentry. Not all filesystems reliably result in a positive hashed dentry: - NFS, cifs, hostfs will sometimes need to perform a lookup of the name to get inode information. Races could result in this returning something different. Note that this lookup is non-atomic which is what we are trying to avoid. Placing the lookup in filesystem code means it only happens when the filesystem has no other option. - kernfs and tracefs leave the dentry negative and the ->revalidate operation ensures that lookup will be called to correctly populate the dentry. This could be fixed but I don't think it is important to any of the users of vfs_mkdir() which look at the dentry. The recommendation to use d_drop();d_splice_alias() is ugly but fits with current practice. A planned future patch will change this. Reviewed-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: NeilBrown <neilb@suse.de> Link: https://lore.kernel.org/r/20250227013949.536172-2-neilb@suse.de Signed-off-by: Christian Brauner <brauner@kernel.org>
267 lines
5.7 KiB
C
267 lines
5.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* linux/fs/minix/namei.c
|
|
*
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
*/
|
|
|
|
#include "minix.h"
|
|
|
|
static int add_nondir(struct dentry *dentry, struct inode *inode)
|
|
{
|
|
int err = minix_add_link(dentry, inode);
|
|
if (!err) {
|
|
d_instantiate(dentry, inode);
|
|
return 0;
|
|
}
|
|
inode_dec_link_count(inode);
|
|
iput(inode);
|
|
return err;
|
|
}
|
|
|
|
static struct dentry *minix_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
|
|
{
|
|
struct inode * inode = NULL;
|
|
ino_t ino;
|
|
|
|
if (dentry->d_name.len > minix_sb(dir->i_sb)->s_namelen)
|
|
return ERR_PTR(-ENAMETOOLONG);
|
|
|
|
ino = minix_inode_by_name(dentry);
|
|
if (ino)
|
|
inode = minix_iget(dir->i_sb, ino);
|
|
return d_splice_alias(inode, dentry);
|
|
}
|
|
|
|
static int minix_mknod(struct mnt_idmap *idmap, struct inode *dir,
|
|
struct dentry *dentry, umode_t mode, dev_t rdev)
|
|
{
|
|
struct inode *inode;
|
|
|
|
if (!old_valid_dev(rdev))
|
|
return -EINVAL;
|
|
|
|
inode = minix_new_inode(dir, mode);
|
|
if (IS_ERR(inode))
|
|
return PTR_ERR(inode);
|
|
|
|
minix_set_inode(inode, rdev);
|
|
mark_inode_dirty(inode);
|
|
return add_nondir(dentry, inode);
|
|
}
|
|
|
|
static int minix_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
|
|
struct file *file, umode_t mode)
|
|
{
|
|
struct inode *inode = minix_new_inode(dir, mode);
|
|
|
|
if (IS_ERR(inode))
|
|
return finish_open_simple(file, PTR_ERR(inode));
|
|
minix_set_inode(inode, 0);
|
|
mark_inode_dirty(inode);
|
|
d_tmpfile(file, inode);
|
|
return finish_open_simple(file, 0);
|
|
}
|
|
|
|
static int minix_create(struct mnt_idmap *idmap, struct inode *dir,
|
|
struct dentry *dentry, umode_t mode, bool excl)
|
|
{
|
|
return minix_mknod(&nop_mnt_idmap, dir, dentry, mode, 0);
|
|
}
|
|
|
|
static int minix_symlink(struct mnt_idmap *idmap, struct inode *dir,
|
|
struct dentry *dentry, const char *symname)
|
|
{
|
|
int i = strlen(symname)+1;
|
|
struct inode * inode;
|
|
int err;
|
|
|
|
if (i > dir->i_sb->s_blocksize)
|
|
return -ENAMETOOLONG;
|
|
|
|
inode = minix_new_inode(dir, S_IFLNK | 0777);
|
|
if (IS_ERR(inode))
|
|
return PTR_ERR(inode);
|
|
|
|
minix_set_inode(inode, 0);
|
|
err = page_symlink(inode, symname, i);
|
|
if (unlikely(err)) {
|
|
inode_dec_link_count(inode);
|
|
iput(inode);
|
|
return err;
|
|
}
|
|
return add_nondir(dentry, inode);
|
|
}
|
|
|
|
static int minix_link(struct dentry * old_dentry, struct inode * dir,
|
|
struct dentry *dentry)
|
|
{
|
|
struct inode *inode = d_inode(old_dentry);
|
|
|
|
inode_set_ctime_current(inode);
|
|
inode_inc_link_count(inode);
|
|
ihold(inode);
|
|
return add_nondir(dentry, inode);
|
|
}
|
|
|
|
static struct dentry *minix_mkdir(struct mnt_idmap *idmap, struct inode *dir,
|
|
struct dentry *dentry, umode_t mode)
|
|
{
|
|
struct inode * inode;
|
|
int err;
|
|
|
|
inode = minix_new_inode(dir, S_IFDIR | mode);
|
|
if (IS_ERR(inode))
|
|
return ERR_CAST(inode);
|
|
|
|
inode_inc_link_count(dir);
|
|
minix_set_inode(inode, 0);
|
|
inode_inc_link_count(inode);
|
|
|
|
err = minix_make_empty(inode, dir);
|
|
if (err)
|
|
goto out_fail;
|
|
|
|
err = minix_add_link(dentry, inode);
|
|
if (err)
|
|
goto out_fail;
|
|
|
|
d_instantiate(dentry, inode);
|
|
out:
|
|
return ERR_PTR(err);
|
|
|
|
out_fail:
|
|
inode_dec_link_count(inode);
|
|
inode_dec_link_count(inode);
|
|
iput(inode);
|
|
inode_dec_link_count(dir);
|
|
goto out;
|
|
}
|
|
|
|
static int minix_unlink(struct inode * dir, struct dentry *dentry)
|
|
{
|
|
struct inode * inode = d_inode(dentry);
|
|
struct folio *folio;
|
|
struct minix_dir_entry * de;
|
|
int err;
|
|
|
|
de = minix_find_entry(dentry, &folio);
|
|
if (!de)
|
|
return -ENOENT;
|
|
err = minix_delete_entry(de, folio);
|
|
folio_release_kmap(folio, de);
|
|
|
|
if (err)
|
|
return err;
|
|
inode_set_ctime_to_ts(inode, inode_get_ctime(dir));
|
|
inode_dec_link_count(inode);
|
|
return 0;
|
|
}
|
|
|
|
static int minix_rmdir(struct inode * dir, struct dentry *dentry)
|
|
{
|
|
struct inode * inode = d_inode(dentry);
|
|
int err = -ENOTEMPTY;
|
|
|
|
if (minix_empty_dir(inode)) {
|
|
err = minix_unlink(dir, dentry);
|
|
if (!err) {
|
|
inode_dec_link_count(dir);
|
|
inode_dec_link_count(inode);
|
|
}
|
|
}
|
|
return err;
|
|
}
|
|
|
|
static int minix_rename(struct mnt_idmap *idmap,
|
|
struct inode *old_dir, struct dentry *old_dentry,
|
|
struct inode *new_dir, struct dentry *new_dentry,
|
|
unsigned int flags)
|
|
{
|
|
struct inode * old_inode = d_inode(old_dentry);
|
|
struct inode * new_inode = d_inode(new_dentry);
|
|
struct folio * dir_folio = NULL;
|
|
struct minix_dir_entry * dir_de = NULL;
|
|
struct folio *old_folio;
|
|
struct minix_dir_entry * old_de;
|
|
int err = -ENOENT;
|
|
|
|
if (flags & ~RENAME_NOREPLACE)
|
|
return -EINVAL;
|
|
|
|
old_de = minix_find_entry(old_dentry, &old_folio);
|
|
if (!old_de)
|
|
goto out;
|
|
|
|
if (S_ISDIR(old_inode->i_mode)) {
|
|
err = -EIO;
|
|
dir_de = minix_dotdot(old_inode, &dir_folio);
|
|
if (!dir_de)
|
|
goto out_old;
|
|
}
|
|
|
|
if (new_inode) {
|
|
struct folio *new_folio;
|
|
struct minix_dir_entry * new_de;
|
|
|
|
err = -ENOTEMPTY;
|
|
if (dir_de && !minix_empty_dir(new_inode))
|
|
goto out_dir;
|
|
|
|
err = -ENOENT;
|
|
new_de = minix_find_entry(new_dentry, &new_folio);
|
|
if (!new_de)
|
|
goto out_dir;
|
|
err = minix_set_link(new_de, new_folio, old_inode);
|
|
folio_release_kmap(new_folio, new_de);
|
|
if (err)
|
|
goto out_dir;
|
|
inode_set_ctime_current(new_inode);
|
|
if (dir_de)
|
|
drop_nlink(new_inode);
|
|
inode_dec_link_count(new_inode);
|
|
} else {
|
|
err = minix_add_link(new_dentry, old_inode);
|
|
if (err)
|
|
goto out_dir;
|
|
if (dir_de)
|
|
inode_inc_link_count(new_dir);
|
|
}
|
|
|
|
err = minix_delete_entry(old_de, old_folio);
|
|
if (err)
|
|
goto out_dir;
|
|
|
|
mark_inode_dirty(old_inode);
|
|
|
|
if (dir_de) {
|
|
err = minix_set_link(dir_de, dir_folio, new_dir);
|
|
if (!err)
|
|
inode_dec_link_count(old_dir);
|
|
}
|
|
out_dir:
|
|
if (dir_de)
|
|
folio_release_kmap(dir_folio, dir_de);
|
|
out_old:
|
|
folio_release_kmap(old_folio, old_de);
|
|
out:
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* directories can handle most operations...
|
|
*/
|
|
const struct inode_operations minix_dir_inode_operations = {
|
|
.create = minix_create,
|
|
.lookup = minix_lookup,
|
|
.link = minix_link,
|
|
.unlink = minix_unlink,
|
|
.symlink = minix_symlink,
|
|
.mkdir = minix_mkdir,
|
|
.rmdir = minix_rmdir,
|
|
.mknod = minix_mknod,
|
|
.rename = minix_rename,
|
|
.getattr = minix_getattr,
|
|
.tmpfile = minix_tmpfile,
|
|
};
|