* [PATCH 2/2] Btrfs: refactor error handling to drop inode in btrfs_create()
2012-11-30 3:40 ` [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask Filipe Brandenburger
@ 2012-11-30 3:40 ` Filipe Brandenburger
2012-11-30 6:17 ` [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask Liu Bo
2012-12-04 7:05 ` Filipe Brandenburger
2 siblings, 0 replies; 5+ messages in thread
From: Filipe Brandenburger @ 2012-11-30 3:40 UTC (permalink / raw)
To: Chris Mason, linux-btrfs; +Cc: linux-kernel, Filipe Brandenburger
Refactor it by checking whether the inode has been created and needs to be
dropped (drop_inode_on_err) and also if the err variable is set. That way the
variable doesn't need to be set on each and every error handling block.
Signed-off-by: Filipe Brandenburger <filbranden@google.com>
---
fs/btrfs/inode.c | 27 ++++++++++++---------------
1 file changed, 12 insertions(+), 15 deletions(-)
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index caf9d76..1d66c9e 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4963,7 +4963,7 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
struct btrfs_trans_handle *trans;
struct btrfs_root *root = BTRFS_I(dir)->root;
struct inode *inode = NULL;
- int drop_inode = 0;
+ int drop_inode_on_err = 0;
int err;
unsigned long nr = 0;
u64 objectid;
@@ -4989,18 +4989,15 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
err = PTR_ERR(inode);
goto out_unlock;
}
+ drop_inode_on_err = 1;
err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
- if (err) {
- drop_inode = 1;
+ if (err)
goto out_unlock;
- }
err = btrfs_update_inode(trans, root, inode);
- if (err) {
- drop_inode = 1;
+ if (err)
goto out_unlock;
- }
/*
* If the active LSM wants to access the inode during
@@ -5013,17 +5010,17 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
if (err)
- drop_inode = 1;
- else {
- inode->i_mapping->a_ops = &btrfs_aops;
- inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
- BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
- d_instantiate(dentry, inode);
- }
+ goto out_unlock;
+
+ inode->i_mapping->a_ops = &btrfs_aops;
+ inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
+ BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
+ d_instantiate(dentry, inode);
+
out_unlock:
nr = trans->blocks_used;
btrfs_end_transaction(trans, root);
- if (drop_inode) {
+ if (err && drop_inode_on_err) {
inode_dec_link_count(inode);
iput(inode);
}
--
1.7.11.7
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask
2012-11-30 3:40 ` [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask Filipe Brandenburger
2012-11-30 3:40 ` [PATCH 2/2] Btrfs: refactor error handling to drop inode in btrfs_create() Filipe Brandenburger
@ 2012-11-30 6:17 ` Liu Bo
2012-12-04 7:05 ` Filipe Brandenburger
2 siblings, 0 replies; 5+ messages in thread
From: Liu Bo @ 2012-11-30 6:17 UTC (permalink / raw)
To: Filipe Brandenburger; +Cc: Chris Mason, linux-btrfs, linux-kernel
On Thu, Nov 29, 2012 at 07:40:08PM -0800, Filipe Brandenburger wrote:
> When a new file is created with btrfs_create(), the inode will initially be
> created with permissions 0666 and later on in btrfs_init_acl() it will be
> adapted to mask out the umask bits. The problem is that this change won't make
> it into the btrfs_inode unless there's another change to the inode (e.g. writing
> content changing the size or touching the file changing the mtime.)
>
> This fix adds a call to btrfs_update_inode() to btrfs_create() to make sure that
> the change will not get lost if the in-memory inode is flushed before other
> changes are made to the file.
>
Looks good to me.
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
thanks,
liubo
> Signed-off-by: Filipe Brandenburger <filbranden@google.com>
> ---
> fs/btrfs/inode.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index 95542a1..caf9d76 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -4996,6 +4996,12 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
> goto out_unlock;
> }
>
> + err = btrfs_update_inode(trans, root, inode);
> + if (err) {
> + drop_inode = 1;
> + goto out_unlock;
> + }
> +
> /*
> * If the active LSM wants to access the inode during
> * d_instantiate it needs these. Smack checks to see
> --
> 1.7.11.7
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask
2012-11-30 3:40 ` [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask Filipe Brandenburger
2012-11-30 3:40 ` [PATCH 2/2] Btrfs: refactor error handling to drop inode in btrfs_create() Filipe Brandenburger
2012-11-30 6:17 ` [PATCH 1/2] Btrfs: fix permissions of empty files not affected by umask Liu Bo
@ 2012-12-04 7:05 ` Filipe Brandenburger
2 siblings, 0 replies; 5+ messages in thread
From: Filipe Brandenburger @ 2012-12-04 7:05 UTC (permalink / raw)
To: Chris Mason, linux-btrfs
Hi,
Any concerns on this patchset? Any chance it can be integrated in time
for 3.8 or too risky for it? The Bugzilla entry contains some test
cases that reproduce the issue fairly easily by unmounting the
filesystem right after creating an empty file... Let me know if there
are any extra fixes or tests you'd like me to provide.
Thanks,
Filipe
On Thu, Nov 29, 2012 at 7:40 PM, Filipe Brandenburger
<filbranden@google.com> wrote:
> When a new file is created with btrfs_create(), the inode will initially be
> created with permissions 0666 and later on in btrfs_init_acl() it will be
> adapted to mask out the umask bits. The problem is that this change won't make
> it into the btrfs_inode unless there's another change to the inode (e.g. writing
> content changing the size or touching the file changing the mtime.)
>
> This fix adds a call to btrfs_update_inode() to btrfs_create() to make sure that
> the change will not get lost if the in-memory inode is flushed before other
> changes are made to the file.
>
> Signed-off-by: Filipe Brandenburger <filbranden@google.com>
> ---
> fs/btrfs/inode.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index 95542a1..caf9d76 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -4996,6 +4996,12 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
> goto out_unlock;
> }
>
> + err = btrfs_update_inode(trans, root, inode);
> + if (err) {
> + drop_inode = 1;
> + goto out_unlock;
> + }
> +
> /*
> * If the active LSM wants to access the inode during
> * d_instantiate it needs these. Smack checks to see
> --
> 1.7.11.7
>
^ permalink raw reply [flat|nested] 5+ messages in thread