Skip to content

Commit

Permalink
ovl: reorder ovl_want_write() after ovl_inode_lock()
Browse files Browse the repository at this point in the history
Make the locking order of ovl_inode_lock() strictly between the two
vfs stacked layers, i.e.:
- ovl vfs locks: sb_writers, inode_lock, ...
- ovl_inode_lock
- upper vfs locks: sb_writers, inode_lock, ...

To that effect, move ovl_want_write() into the helpers ovl_nlink_start()
and ovl_copy_up_start which currently take the ovl_inode_lock() after
ovl_want_write().

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
  • Loading branch information
Amir Goldstein committed Oct 30, 2023
1 parent d08d3b3 commit 162d064
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 87 deletions.
13 changes: 3 additions & 10 deletions fs/overlayfs/copy_up.c
Original file line number Diff line number Diff line change
Expand Up @@ -1170,17 +1170,10 @@ static bool ovl_open_need_copy_up(struct dentry *dentry, int flags)

int ovl_maybe_copy_up(struct dentry *dentry, int flags)
{
int err = 0;

if (ovl_open_need_copy_up(dentry, flags)) {
err = ovl_want_write(dentry);
if (!err) {
err = ovl_copy_up_flags(dentry, flags);
ovl_drop_write(dentry);
}
}
if (!ovl_open_need_copy_up(dentry, flags))
return 0;

return err;
return ovl_copy_up_flags(dentry, flags);
}

int ovl_copy_up_with_data(struct dentry *dentry)
Expand Down
60 changes: 26 additions & 34 deletions fs/overlayfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -559,10 +559,6 @@ static int ovl_create_or_link(struct dentry *dentry, struct inode *inode,
struct cred *override_cred;
struct dentry *parent = dentry->d_parent;

err = ovl_copy_up(parent);
if (err)
return err;

old_cred = ovl_override_creds(dentry->d_sb);

/*
Expand Down Expand Up @@ -626,6 +622,10 @@ static int ovl_create_object(struct dentry *dentry, int mode, dev_t rdev,
.link = link,
};

err = ovl_copy_up(dentry->d_parent);
if (err)
return err;

err = ovl_want_write(dentry);
if (err)
goto out;
Expand Down Expand Up @@ -700,28 +700,24 @@ static int ovl_link(struct dentry *old, struct inode *newdir,
int err;
struct inode *inode;

err = ovl_want_write(old);
err = ovl_copy_up(old);
if (err)
goto out;

err = ovl_copy_up(old);
err = ovl_copy_up(new->d_parent);
if (err)
goto out_drop_write;
goto out;

err = ovl_copy_up(new->d_parent);
err = ovl_nlink_start(old);
if (err)
goto out_drop_write;
goto out;

if (ovl_is_metacopy_dentry(old)) {
err = ovl_set_link_redirect(old);
if (err)
goto out_drop_write;
goto out_nlink_end;
}

err = ovl_nlink_start(old);
if (err)
goto out_drop_write;

inode = d_inode(old);
ihold(inode);

Expand All @@ -731,9 +727,8 @@ static int ovl_link(struct dentry *old, struct inode *newdir,
if (err)
iput(inode);

out_nlink_end:
ovl_nlink_end(old);
out_drop_write:
ovl_drop_write(old);
out:
return err;
}
Expand Down Expand Up @@ -891,17 +886,13 @@ static int ovl_do_remove(struct dentry *dentry, bool is_dir)
goto out;
}

err = ovl_want_write(dentry);
if (err)
goto out;

err = ovl_copy_up(dentry->d_parent);
if (err)
goto out_drop_write;
goto out;

err = ovl_nlink_start(dentry);
if (err)
goto out_drop_write;
goto out;

old_cred = ovl_override_creds(dentry->d_sb);
if (!lower_positive)
Expand All @@ -926,8 +917,6 @@ static int ovl_do_remove(struct dentry *dentry, bool is_dir)
if (ovl_dentry_upper(dentry))
ovl_copyattr(d_inode(dentry));

out_drop_write:
ovl_drop_write(dentry);
out:
ovl_cache_free(&list);
return err;
Expand Down Expand Up @@ -1131,29 +1120,32 @@ static int ovl_rename(struct mnt_idmap *idmap, struct inode *olddir,
}
}

err = ovl_want_write(old);
if (err)
goto out;

err = ovl_copy_up(old);
if (err)
goto out_drop_write;
goto out;

err = ovl_copy_up(new->d_parent);
if (err)
goto out_drop_write;
goto out;
if (!overwrite) {
err = ovl_copy_up(new);
if (err)
goto out_drop_write;
goto out;
} else if (d_inode(new)) {
err = ovl_nlink_start(new);
if (err)
goto out_drop_write;
goto out;

update_nlink = true;
}

if (!update_nlink) {
/* ovl_nlink_start() took ovl_want_write() */
err = ovl_want_write(old);
if (err)
goto out;
}

old_cred = ovl_override_creds(old->d_sb);

if (!list_empty(&list)) {
Expand Down Expand Up @@ -1286,8 +1278,8 @@ static int ovl_rename(struct mnt_idmap *idmap, struct inode *olddir,
revert_creds(old_cred);
if (update_nlink)
ovl_nlink_end(new);
out_drop_write:
ovl_drop_write(old);
else
ovl_drop_write(old);
out:
dput(opaquedir);
ovl_cache_free(&list);
Expand Down
7 changes: 1 addition & 6 deletions fs/overlayfs/export.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,7 @@ static int ovl_encode_maybe_copy_up(struct dentry *dentry)
if (ovl_dentry_upper(dentry))
return 0;

err = ovl_want_write(dentry);
if (!err) {
err = ovl_copy_up(dentry);
ovl_drop_write(dentry);
}

err = ovl_copy_up(dentry);
if (err) {
pr_warn_ratelimited("failed to copy up on encode (%pd2, err=%i)\n",
dentry, err);
Expand Down
57 changes: 27 additions & 30 deletions fs/overlayfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ int ovl_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
if (err)
return err;

err = ovl_want_write(dentry);
if (err)
goto out;

if (attr->ia_valid & ATTR_SIZE) {
/* Truncate should trigger data copy up as well */
full_copy_up = true;
Expand All @@ -54,7 +50,7 @@ int ovl_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
winode = d_inode(upperdentry);
err = get_write_access(winode);
if (err)
goto out_drop_write;
goto out;
}

if (attr->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
Expand All @@ -78,19 +74,23 @@ int ovl_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
*/
attr->ia_valid &= ~ATTR_OPEN;

err = ovl_want_write(dentry);
if (err)
goto out_put_write;

inode_lock(upperdentry->d_inode);
old_cred = ovl_override_creds(dentry->d_sb);
err = ovl_do_notify_change(ofs, upperdentry, attr);
revert_creds(old_cred);
if (!err)
ovl_copyattr(dentry->d_inode);
inode_unlock(upperdentry->d_inode);
ovl_drop_write(dentry);

out_put_write:
if (winode)
put_write_access(winode);
}
out_drop_write:
ovl_drop_write(dentry);
out:
return err;
}
Expand Down Expand Up @@ -361,27 +361,27 @@ int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
struct path realpath;
const struct cred *old_cred;

err = ovl_want_write(dentry);
if (err)
goto out;

if (!value && !upperdentry) {
ovl_path_lower(dentry, &realpath);
old_cred = ovl_override_creds(dentry->d_sb);
err = vfs_getxattr(mnt_idmap(realpath.mnt), realdentry, name, NULL, 0);
revert_creds(old_cred);
if (err < 0)
goto out_drop_write;
goto out;
}

if (!upperdentry) {
err = ovl_copy_up(dentry);
if (err)
goto out_drop_write;
goto out;

realdentry = ovl_dentry_upper(dentry);
}

err = ovl_want_write(dentry);
if (err)
goto out;

old_cred = ovl_override_creds(dentry->d_sb);
if (value) {
err = ovl_do_setxattr(ofs, realdentry, name, value, size,
Expand All @@ -391,12 +391,10 @@ int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
err = ovl_do_removexattr(ofs, realdentry, name);
}
revert_creds(old_cred);
ovl_drop_write(dentry);

/* copy c/mtime */
ovl_copyattr(inode);

out_drop_write:
ovl_drop_write(dentry);
out:
return err;
}
Expand Down Expand Up @@ -611,10 +609,6 @@ static int ovl_set_or_remove_acl(struct dentry *dentry, struct inode *inode,
struct dentry *upperdentry = ovl_dentry_upper(dentry);
struct dentry *realdentry = upperdentry ?: ovl_dentry_lower(dentry);

err = ovl_want_write(dentry);
if (err)
return err;

/*
* If ACL is to be removed from a lower file, check if it exists in
* the first place before copying it up.
Expand All @@ -630,31 +624,34 @@ static int ovl_set_or_remove_acl(struct dentry *dentry, struct inode *inode,
revert_creds(old_cred);
if (IS_ERR(real_acl)) {
err = PTR_ERR(real_acl);
goto out_drop_write;
goto out;
}
posix_acl_release(real_acl);
}

if (!upperdentry) {
err = ovl_copy_up(dentry);
if (err)
goto out_drop_write;
goto out;

realdentry = ovl_dentry_upper(dentry);
}

err = ovl_want_write(dentry);
if (err)
goto out;

old_cred = ovl_override_creds(dentry->d_sb);
if (acl)
err = ovl_do_set_acl(ofs, realdentry, acl_name, acl);
else
err = ovl_do_remove_acl(ofs, realdentry, acl_name);
revert_creds(old_cred);
ovl_drop_write(dentry);

/* copy c/mtime */
ovl_copyattr(inode);

out_drop_write:
ovl_drop_write(dentry);
out:
return err;
}

Expand Down Expand Up @@ -778,14 +775,14 @@ int ovl_fileattr_set(struct mnt_idmap *idmap,
unsigned int flags;
int err;

err = ovl_want_write(dentry);
if (err)
goto out;

err = ovl_copy_up(dentry);
if (!err) {
ovl_path_real(dentry, &upperpath);

err = ovl_want_write(dentry);
if (err)
goto out;

old_cred = ovl_override_creds(inode->i_sb);
/*
* Store immutable/append-only flags in xattr and clear them
Expand All @@ -798,6 +795,7 @@ int ovl_fileattr_set(struct mnt_idmap *idmap,
if (!err)
err = ovl_real_fileattr_set(&upperpath, fa);
revert_creds(old_cred);
ovl_drop_write(dentry);

/*
* Merge real inode flags with inode flags read from
Expand All @@ -812,7 +810,6 @@ int ovl_fileattr_set(struct mnt_idmap *idmap,
/* Update ctime */
ovl_copyattr(inode);
}
ovl_drop_write(dentry);
out:
return err;
}
Expand Down
Loading

0 comments on commit 162d064

Please sign in to comment.