linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] f2fs: fix to recover inode's uid/gid during POR
@ 2018-09-20  9:41 Chao Yu
  2018-09-20 21:41 ` Jaegeuk Kim
  2018-09-21  6:06 ` Christoph Hellwig
  0 siblings, 2 replies; 5+ messages in thread
From: Chao Yu @ 2018-09-20  9:41 UTC (permalink / raw)
  To: jaegeuk; +Cc: linux-f2fs-devel, linux-kernel, chao, Chao Yu

Step to reproduce this bug:
1. logon as root
2. mount -t f2fs /dev/sdd /mnt;
3. touch /mnt/file;
4. chown system /mnt/file; chgrp system /mnt/file;
5. xfs_io -f /mnt/file -c "fsync";
6. godown /mnt;
7. umount /mnt;
8. mount -t f2fs /dev/sdd /mnt;

After step 8) we will expect file's uid/gid are all system, but during
recovery, these two fields were not been recovered, fix it.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/f2fs/recovery.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
index ba678efe7cad..da9f59b9044e 100644
--- a/fs/f2fs/recovery.c
+++ b/fs/f2fs/recovery.c
@@ -209,6 +209,8 @@ static void recover_inode(struct inode *inode, struct page *page)
 	char *name;
 
 	inode->i_mode = le16_to_cpu(raw->i_mode);
+	i_uid_write(inode, le32_to_cpu(raw->i_uid));
+	i_gid_write(inode, le32_to_cpu(raw->i_gid));
 	f2fs_i_size_write(inode, le64_to_cpu(raw->i_size));
 	inode->i_atime.tv_sec = le64_to_cpu(raw->i_atime);
 	inode->i_ctime.tv_sec = le64_to_cpu(raw->i_ctime);
-- 
2.18.0.rc1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] f2fs: fix to recover inode's uid/gid during POR
  2018-09-20  9:41 [PATCH] f2fs: fix to recover inode's uid/gid during POR Chao Yu
@ 2018-09-20 21:41 ` Jaegeuk Kim
  2018-09-21  6:06 ` Christoph Hellwig
  1 sibling, 0 replies; 5+ messages in thread
From: Jaegeuk Kim @ 2018-09-20 21:41 UTC (permalink / raw)
  To: Chao Yu; +Cc: linux-f2fs-devel, linux-kernel, chao

On 09/20, Chao Yu wrote:
> Step to reproduce this bug:
> 1. logon as root
> 2. mount -t f2fs /dev/sdd /mnt;
> 3. touch /mnt/file;
> 4. chown system /mnt/file; chgrp system /mnt/file;
> 5. xfs_io -f /mnt/file -c "fsync";
> 6. godown /mnt;
> 7. umount /mnt;
> 8. mount -t f2fs /dev/sdd /mnt;
> 
> After step 8) we will expect file's uid/gid are all system, but during
> recovery, these two fields were not been recovered, fix it.

Hmm, I tried this before, but wasn't enough to fix everything. :(

> 
> Signed-off-by: Chao Yu <yuchao0@huawei.com>
> ---
>  fs/f2fs/recovery.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> index ba678efe7cad..da9f59b9044e 100644
> --- a/fs/f2fs/recovery.c
> +++ b/fs/f2fs/recovery.c
> @@ -209,6 +209,8 @@ static void recover_inode(struct inode *inode, struct page *page)
>  	char *name;
>  
>  	inode->i_mode = le16_to_cpu(raw->i_mode);
> +	i_uid_write(inode, le32_to_cpu(raw->i_uid));
> +	i_gid_write(inode, le32_to_cpu(raw->i_gid));
>  	f2fs_i_size_write(inode, le64_to_cpu(raw->i_size));
>  	inode->i_atime.tv_sec = le64_to_cpu(raw->i_atime);
>  	inode->i_ctime.tv_sec = le64_to_cpu(raw->i_ctime);
> -- 
> 2.18.0.rc1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] f2fs: fix to recover inode's uid/gid during POR
  2018-09-20  9:41 [PATCH] f2fs: fix to recover inode's uid/gid during POR Chao Yu
  2018-09-20 21:41 ` Jaegeuk Kim
@ 2018-09-21  6:06 ` Christoph Hellwig
  2018-09-21  6:20   ` Chao Yu
  1 sibling, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2018-09-21  6:06 UTC (permalink / raw)
  To: Chao Yu; +Cc: jaegeuk, linux-f2fs-devel, linux-kernel, chao

On Thu, Sep 20, 2018 at 05:41:30PM +0800, Chao Yu wrote:
> Step to reproduce this bug:
> 1. logon as root
> 2. mount -t f2fs /dev/sdd /mnt;
> 3. touch /mnt/file;
> 4. chown system /mnt/file; chgrp system /mnt/file;
> 5. xfs_io -f /mnt/file -c "fsync";
> 6. godown /mnt;
> 7. umount /mnt;
> 8. mount -t f2fs /dev/sdd /mnt;

Please wire this up for xfstests (as a generic test).

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] f2fs: fix to recover inode's uid/gid during POR
  2018-09-21  6:06 ` Christoph Hellwig
@ 2018-09-21  6:20   ` Chao Yu
  2018-09-21  6:40     ` Christoph Hellwig
  0 siblings, 1 reply; 5+ messages in thread
From: Chao Yu @ 2018-09-21  6:20 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: jaegeuk, linux-f2fs-devel, linux-kernel, chao

Hi Christoph,

On 2018/9/21 14:06, Christoph Hellwig wrote:
> On Thu, Sep 20, 2018 at 05:41:30PM +0800, Chao Yu wrote:
>> Step to reproduce this bug:
>> 1. logon as root
>> 2. mount -t f2fs /dev/sdd /mnt;
>> 3. touch /mnt/file;
>> 4. chown system /mnt/file; chgrp system /mnt/file;
>> 5. xfs_io -f /mnt/file -c "fsync";
>> 6. godown /mnt;
>> 7. umount /mnt;
>> 8. mount -t f2fs /dev/sdd /mnt;
> 
> Please wire this up for xfstests (as a generic test).

No problem, I just plan to.

Out of curiosity, are you filter some key words like 'recover' in your
email client to find this so quickly?

Thanks,

> 
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] f2fs: fix to recover inode's uid/gid during POR
  2018-09-21  6:20   ` Chao Yu
@ 2018-09-21  6:40     ` Christoph Hellwig
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Hellwig @ 2018-09-21  6:40 UTC (permalink / raw)
  To: Chao Yu; +Cc: Christoph Hellwig, jaegeuk, linux-f2fs-devel, linux-kernel, chao

On Fri, Sep 21, 2018 at 02:20:49PM +0800, Chao Yu wrote:
> No problem, I just plan to.
> 
> Out of curiosity, are you filter some key words like 'recover' in your
> email client to find this so quickly?

No, I just do a quick glanceof lkml every morning, and this just caught
my eye.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-09-21  6:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-20  9:41 [PATCH] f2fs: fix to recover inode's uid/gid during POR Chao Yu
2018-09-20 21:41 ` Jaegeuk Kim
2018-09-21  6:06 ` Christoph Hellwig
2018-09-21  6:20   ` Chao Yu
2018-09-21  6:40     ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).