All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
@ 2018-02-23 23:49 Eric Sandeen
  2018-02-26 16:39 ` Brian Foster
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Eric Sandeen @ 2018-02-23 23:49 UTC (permalink / raw)
  To: linux-xfs

Today if we run swapext and crash, log replay can fail because
the recovery code tries to instantiate the donor inode from
disk to replay the swapext, but it's been deleted and we throw
corruption failures if we try to get an inode off disk with
i_mode == 0.

This fixes both sides: We don't log the swapext change if the
inode has been deleted, and we don't try to recover it either.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
index 26f2413..de48eb8 100644
--- a/fs/xfs/xfs_inode_item.c
+++ b/fs/xfs/xfs_inode_item.c
@@ -436,6 +436,12 @@ xfs_inode_item_format(
 			~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
 	}
 
+	/* If this inode has been deleted do not log swapext owner changes */
+	if (VFS_I(ip)->i_mode == 0) {
+		ilf->ilf_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
+		iip->ili_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
+	}
+
 	/* update the format with the exact fields we actually logged */
 	ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
 }
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
index 5e219d9..d0e33b9 100644
--- a/fs/xfs/xfs_log_recover.c
+++ b/fs/xfs/xfs_log_recover.c
@@ -3199,7 +3199,9 @@ xlog_recover_inode_pass2(
 	}
 
 out_owner_change:
-	if (in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER))
+	/* Recover the swapext owner change unless inode has been deleted */
+	if ((in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)) &&
+	    (dip->di_mode != 0))
 		error = xfs_recover_inode_owner_change(mp, dip, in_f,
 						       buffer_list);
 	/* re-generate the checksum. */


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

* Re: [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-02-23 23:49 [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes Eric Sandeen
@ 2018-02-26 16:39 ` Brian Foster
  2018-02-26 20:56   ` Brian Foster
  2018-03-24  0:13 ` [PATCH V2] xfs: do not log " Eric Sandeen
  2018-03-28 22:12 ` [PATCH V3] xfs: do not log/recover " Eric Sandeen
  2 siblings, 1 reply; 12+ messages in thread
From: Brian Foster @ 2018-02-26 16:39 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: linux-xfs

On Fri, Feb 23, 2018 at 05:49:41PM -0600, Eric Sandeen wrote:
> Today if we run swapext and crash, log replay can fail because
> the recovery code tries to instantiate the donor inode from
> disk to replay the swapext, but it's been deleted and we throw
> corruption failures if we try to get an inode off disk with
> i_mode == 0.
> 
> This fixes both sides: We don't log the swapext change if the
> inode has been deleted, and we don't try to recover it either.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
> 
> diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
> index 26f2413..de48eb8 100644
> --- a/fs/xfs/xfs_inode_item.c
> +++ b/fs/xfs/xfs_inode_item.c
> @@ -436,6 +436,12 @@ xfs_inode_item_format(
>  			~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
>  	}
>  
> +	/* If this inode has been deleted do not log swapext owner changes */
> +	if (VFS_I(ip)->i_mode == 0) {
> +		ilf->ilf_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> +		iip->ili_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> +	}
> +

Do you have any more details on the context that leads to this issue?
More specifically, is the problem limited to/because of the case where
the inode is relogged and the owner change flag carries forward to the
transaction that ultimately frees it (which seems to me is what the
above prevents)? Or is there some other scenario that can lead to this?

I guess I'm kind of wondering if this can still happen in spite of the
above, if the extent swap -> unlink happens in separate log formats and
the inode happens to be written back before a crash and the log tail
being unpinned. Now that I think of it I suppose the log recovery lsn
ordering should prevent that kind of thing on v5 filesystems, at least.

Note that I'd expect the log recovery side change to detect that
regardless, I'm more just wondering if we need both if the above is not
necessarily sufficient.

Brian

>  	/* update the format with the exact fields we actually logged */
>  	ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
>  }
> diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
> index 5e219d9..d0e33b9 100644
> --- a/fs/xfs/xfs_log_recover.c
> +++ b/fs/xfs/xfs_log_recover.c
> @@ -3199,7 +3199,9 @@ xlog_recover_inode_pass2(
>  	}
>  
>  out_owner_change:
> -	if (in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER))
> +	/* Recover the swapext owner change unless inode has been deleted */
> +	if ((in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)) &&
> +	    (dip->di_mode != 0))
>  		error = xfs_recover_inode_owner_change(mp, dip, in_f,
>  						       buffer_list);
>  	/* re-generate the checksum. */
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-02-26 16:39 ` Brian Foster
@ 2018-02-26 20:56   ` Brian Foster
  2018-03-07 19:58     ` Eric Sandeen
  0 siblings, 1 reply; 12+ messages in thread
From: Brian Foster @ 2018-02-26 20:56 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: linux-xfs

On Mon, Feb 26, 2018 at 11:39:51AM -0500, Brian Foster wrote:
> On Fri, Feb 23, 2018 at 05:49:41PM -0600, Eric Sandeen wrote:
> > Today if we run swapext and crash, log replay can fail because
> > the recovery code tries to instantiate the donor inode from
> > disk to replay the swapext, but it's been deleted and we throw
> > corruption failures if we try to get an inode off disk with
> > i_mode == 0.
> > 
> > This fixes both sides: We don't log the swapext change if the
> > inode has been deleted, and we don't try to recover it either.
> > 
> > Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> > ---
> > 
> > diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
> > index 26f2413..de48eb8 100644
> > --- a/fs/xfs/xfs_inode_item.c
> > +++ b/fs/xfs/xfs_inode_item.c
> > @@ -436,6 +436,12 @@ xfs_inode_item_format(
> >  			~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
> >  	}
> >  
> > +	/* If this inode has been deleted do not log swapext owner changes */
> > +	if (VFS_I(ip)->i_mode == 0) {
> > +		ilf->ilf_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> > +		iip->ili_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> > +	}
> > +
> 
> Do you have any more details on the context that leads to this issue?
> More specifically, is the problem limited to/because of the case where
> the inode is relogged and the owner change flag carries forward to the
> transaction that ultimately frees it (which seems to me is what the
> above prevents)? Or is there some other scenario that can lead to this?
> 
> I guess I'm kind of wondering if this can still happen in spite of the
> above, if the extent swap -> unlink happens in separate log formats and
> the inode happens to be written back before a crash and the log tail
> being unpinned. Now that I think of it I suppose the log recovery lsn
> ordering should prevent that kind of thing on v5 filesystems, at least.
> 

After playing around a bit I think I managed to set myself straight on
this. Indeed, I think the above recovery LSN ordering rules hold for any
separately logged extent swap and subsequent inode free on v5
filesystems. It essentially doesn't matter on v4 filesystems because
there is no metadata owner update on extent swap, since that format
doesn't have the owner info in the bmbt buffers.

So I think this covers everything. My only remaining comments are to
perhaps add a bit more detail in the commit log and/or code comments to
document the situation. Also, have you considered defining a new
function to perform this update on the inode item explicitly from
xfs_ifree() rather than burying it down in xfs_inode_item_format() (more
for clarity than any technical reason that I can think of)?

Brian

> Note that I'd expect the log recovery side change to detect that
> regardless, I'm more just wondering if we need both if the above is not
> necessarily sufficient.
> 
> Brian
> 
> >  	/* update the format with the exact fields we actually logged */
> >  	ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
> >  }
> > diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
> > index 5e219d9..d0e33b9 100644
> > --- a/fs/xfs/xfs_log_recover.c
> > +++ b/fs/xfs/xfs_log_recover.c
> > @@ -3199,7 +3199,9 @@ xlog_recover_inode_pass2(
> >  	}
> >  
> >  out_owner_change:
> > -	if (in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER))
> > +	/* Recover the swapext owner change unless inode has been deleted */
> > +	if ((in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)) &&
> > +	    (dip->di_mode != 0))
> >  		error = xfs_recover_inode_owner_change(mp, dip, in_f,
> >  						       buffer_list);
> >  	/* re-generate the checksum. */
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-02-26 20:56   ` Brian Foster
@ 2018-03-07 19:58     ` Eric Sandeen
  2018-03-08 19:46       ` Brian Foster
  0 siblings, 1 reply; 12+ messages in thread
From: Eric Sandeen @ 2018-03-07 19:58 UTC (permalink / raw)
  To: Brian Foster, Eric Sandeen; +Cc: linux-xfs



On 2/26/18 2:56 PM, Brian Foster wrote:
> On Mon, Feb 26, 2018 at 11:39:51AM -0500, Brian Foster wrote:
>> On Fri, Feb 23, 2018 at 05:49:41PM -0600, Eric Sandeen wrote:
>>> Today if we run swapext and crash, log replay can fail because
>>> the recovery code tries to instantiate the donor inode from
>>> disk to replay the swapext, but it's been deleted and we throw
>>> corruption failures if we try to get an inode off disk with
>>> i_mode == 0.
>>>
>>> This fixes both sides: We don't log the swapext change if the
>>> inode has been deleted, and we don't try to recover it either.
>>>
>>> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
>>> ---
>>>
>>> diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
>>> index 26f2413..de48eb8 100644
>>> --- a/fs/xfs/xfs_inode_item.c
>>> +++ b/fs/xfs/xfs_inode_item.c
>>> @@ -436,6 +436,12 @@ xfs_inode_item_format(
>>>  			~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
>>>  	}
>>>  
>>> +	/* If this inode has been deleted do not log swapext owner changes */
>>> +	if (VFS_I(ip)->i_mode == 0) {
>>> +		ilf->ilf_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
>>> +		iip->ili_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
>>> +	}
>>> +
>>
>> Do you have any more details on the context that leads to this issue?
>> More specifically, is the problem limited to/because of the case where
>> the inode is relogged and the owner change flag carries forward to the
>> transaction that ultimately frees it (which seems to me is what the
>> above prevents)? Or is there some other scenario that can lead to this?
>>
>> I guess I'm kind of wondering if this can still happen in spite of the
>> above, if the extent swap -> unlink happens in separate log formats and
>> the inode happens to be written back before a crash and the log tail
>> being unpinned. Now that I think of it I suppose the log recovery lsn
>> ordering should prevent that kind of thing on v5 filesystems, at least.
>>
> 
> After playing around a bit I think I managed to set myself straight on
> this. Indeed, I think the above recovery LSN ordering rules hold for any
> separately logged extent swap and subsequent inode free on v5
> filesystems. It essentially doesn't matter on v4 filesystems because
> there is no metadata owner update on extent swap, since that format
> doesn't have the owner info in the bmbt buffers.
> 
> So I think this covers everything. My only remaining comments are to
> perhaps add a bit more detail in the commit log and/or code comments to
> document the situation. Also, have you considered defining a new
> function to perform this update on the inode item explicitly from
> xfs_ifree() rather than burying it down in xfs_inode_item_format() (more
> for clarity than any technical reason that I can think of)?

Sorry for the late reply.

I'm not sure I see a way to do this in xfs_ifree, because we don't have
access to the inode log format to make the necessary changes at that point.
Or am I missing something?

And, um, you've probably been more methodical than I have in checking out
the change - can I ask for a suggestion of what sorts of comments you'd
like to see to make things more clear?  I fear I'm in "unknown unknowns"
territory.

Thanks,
-Eric


> Brian


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

* Re: [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-03-07 19:58     ` Eric Sandeen
@ 2018-03-08 19:46       ` Brian Foster
  0 siblings, 0 replies; 12+ messages in thread
From: Brian Foster @ 2018-03-08 19:46 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Eric Sandeen, linux-xfs

On Wed, Mar 07, 2018 at 01:58:31PM -0600, Eric Sandeen wrote:
> 
> 
> On 2/26/18 2:56 PM, Brian Foster wrote:
> > On Mon, Feb 26, 2018 at 11:39:51AM -0500, Brian Foster wrote:
> >> On Fri, Feb 23, 2018 at 05:49:41PM -0600, Eric Sandeen wrote:
> >>> Today if we run swapext and crash, log replay can fail because
> >>> the recovery code tries to instantiate the donor inode from
> >>> disk to replay the swapext, but it's been deleted and we throw
> >>> corruption failures if we try to get an inode off disk with
> >>> i_mode == 0.
> >>>
> >>> This fixes both sides: We don't log the swapext change if the
> >>> inode has been deleted, and we don't try to recover it either.
> >>>
> >>> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> >>> ---
> >>>
> >>> diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
> >>> index 26f2413..de48eb8 100644
> >>> --- a/fs/xfs/xfs_inode_item.c
> >>> +++ b/fs/xfs/xfs_inode_item.c
> >>> @@ -436,6 +436,12 @@ xfs_inode_item_format(
> >>>  			~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
> >>>  	}
> >>>  
> >>> +	/* If this inode has been deleted do not log swapext owner changes */
> >>> +	if (VFS_I(ip)->i_mode == 0) {
> >>> +		ilf->ilf_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> >>> +		iip->ili_fields &= ~(XFS_ILOG_DOWNER | XFS_ILOG_AOWNER);
> >>> +	}
> >>> +
> >>
> >> Do you have any more details on the context that leads to this issue?
> >> More specifically, is the problem limited to/because of the case where
> >> the inode is relogged and the owner change flag carries forward to the
> >> transaction that ultimately frees it (which seems to me is what the
> >> above prevents)? Or is there some other scenario that can lead to this?
> >>
> >> I guess I'm kind of wondering if this can still happen in spite of the
> >> above, if the extent swap -> unlink happens in separate log formats and
> >> the inode happens to be written back before a crash and the log tail
> >> being unpinned. Now that I think of it I suppose the log recovery lsn
> >> ordering should prevent that kind of thing on v5 filesystems, at least.
> >>
> > 
> > After playing around a bit I think I managed to set myself straight on
> > this. Indeed, I think the above recovery LSN ordering rules hold for any
> > separately logged extent swap and subsequent inode free on v5
> > filesystems. It essentially doesn't matter on v4 filesystems because
> > there is no metadata owner update on extent swap, since that format
> > doesn't have the owner info in the bmbt buffers.
> > 
> > So I think this covers everything. My only remaining comments are to
> > perhaps add a bit more detail in the commit log and/or code comments to
> > document the situation. Also, have you considered defining a new
> > function to perform this update on the inode item explicitly from
> > xfs_ifree() rather than burying it down in xfs_inode_item_format() (more
> > for clarity than any technical reason that I can think of)?
> 
> Sorry for the late reply.
> 
> I'm not sure I see a way to do this in xfs_ifree, because we don't have
> access to the inode log format to make the necessary changes at that point.
> Or am I missing something?
> 

Don't you just have to clear the owner change flag from the inode log
item log flags (->ili_fields)? If so, ISTM you could just do that from
wherever you have the inode (via ->i_itemp).

> And, um, you've probably been more methodical than I have in checking out
> the change - can I ask for a suggestion of what sorts of comments you'd
> like to see to make things more clear?  I fear I'm in "unknown unknowns"
> territory.
> 

I don't quite recall exactly what I was thinking here. Reading the above
again, perhaps it just wasn't immediately clear that a removed file was
a critical aspect of the problem. "Run swapext" doesn't really imply it,
but I suppose that's the common sequence with xfs_fsr (alloc donor file,
swap extents, unlink donor).

WRT to the code comment, it might be useful to note why we clear the
owner change flag rather than just restate what the code does (i.e.,
IIRC because log recovery might attempt the owner change sequence if
that state is relogged with the transaction that actually unlinks the
inode, and that apparently explodes..).

Brian

> Thanks,
> -Eric
> 
> 
> > Brian
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH V2] xfs: do not log swapext extent owner changes for deleted inodes
  2018-02-23 23:49 [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes Eric Sandeen
  2018-02-26 16:39 ` Brian Foster
@ 2018-03-24  0:13 ` Eric Sandeen
  2018-03-24  1:03   ` Darrick J. Wong
  2018-03-26 12:13   ` Brian Foster
  2018-03-28 22:12 ` [PATCH V3] xfs: do not log/recover " Eric Sandeen
  2 siblings, 2 replies; 12+ messages in thread
From: Eric Sandeen @ 2018-03-24  0:13 UTC (permalink / raw)
  To: Eric Sandeen, linux-xfs, Brian Foster

Today if we run fsr and crash, log replay can fail because
the recovery code tries to instantiate the donor inode from
disk to replay the swapext, but it's been deleted and we get
verifier failures when we try to read it off disk with
i_mode == 0.

Strip the extent owner changes out of the logged fields when
we're freeing the inode to avoid this.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

V2: Move the fix to xfs_ifree per bfoster's suggestion

diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 604ee38..d17e2d5 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -2470,6 +2470,10 @@
 	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
 	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
+
+	/* Don't attempt to replay owner changes for a deleted inode */
+	ip->i_itemp->ili_fields &= !(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
+
 	/*
 	 * Bump the generation count so no one will be confused
 	 * by reincarnations of this inode.


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

* Re: [PATCH V2] xfs: do not log swapext extent owner changes for deleted inodes
  2018-03-24  0:13 ` [PATCH V2] xfs: do not log " Eric Sandeen
@ 2018-03-24  1:03   ` Darrick J. Wong
  2018-03-26 12:13   ` Brian Foster
  1 sibling, 0 replies; 12+ messages in thread
From: Darrick J. Wong @ 2018-03-24  1:03 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Eric Sandeen, linux-xfs, Brian Foster

On Fri, Mar 23, 2018 at 07:13:43PM -0500, Eric Sandeen wrote:
> Today if we run fsr and crash, log replay can fail because
> the recovery code tries to instantiate the donor inode from
> disk to replay the swapext, but it's been deleted and we get
> verifier failures when we try to read it off disk with
> i_mode == 0.
> 
> Strip the extent owner changes out of the logged fields when
> we're freeing the inode to avoid this.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Looks ok, will test...
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
> 
> V2: Move the fix to xfs_ifree per bfoster's suggestion
> 
> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> index 604ee38..d17e2d5 100644
> --- a/fs/xfs/xfs_inode.c
> +++ b/fs/xfs/xfs_inode.c
> @@ -2470,6 +2470,10 @@
>  	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
>  	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
>  	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
> +
> +	/* Don't attempt to replay owner changes for a deleted inode */
> +	ip->i_itemp->ili_fields &= !(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
> +
>  	/*
>  	 * Bump the generation count so no one will be confused
>  	 * by reincarnations of this inode.
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH V2] xfs: do not log swapext extent owner changes for deleted inodes
  2018-03-24  0:13 ` [PATCH V2] xfs: do not log " Eric Sandeen
  2018-03-24  1:03   ` Darrick J. Wong
@ 2018-03-26 12:13   ` Brian Foster
  2018-03-26 13:37     ` Eric Sandeen
  1 sibling, 1 reply; 12+ messages in thread
From: Brian Foster @ 2018-03-26 12:13 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Eric Sandeen, linux-xfs

On Fri, Mar 23, 2018 at 07:13:43PM -0500, Eric Sandeen wrote:
> Today if we run fsr and crash, log replay can fail because
> the recovery code tries to instantiate the donor inode from
> disk to replay the swapext, but it's been deleted and we get
> verifier failures when we try to read it off disk with
> i_mode == 0.
> 
> Strip the extent owner changes out of the logged fields when
> we're freeing the inode to avoid this.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
> 
> V2: Move the fix to xfs_ifree per bfoster's suggestion
> 
> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> index 604ee38..d17e2d5 100644
> --- a/fs/xfs/xfs_inode.c
> +++ b/fs/xfs/xfs_inode.c
> @@ -2470,6 +2470,10 @@
>  	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
>  	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
>  	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
> +
> +	/* Don't attempt to replay owner changes for a deleted inode */
> +	ip->i_itemp->ili_fields &= !(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);

				   ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER)

Brian

> +
>  	/*
>  	 * Bump the generation count so no one will be confused
>  	 * by reincarnations of this inode.
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH V2] xfs: do not log swapext extent owner changes for deleted inodes
  2018-03-26 12:13   ` Brian Foster
@ 2018-03-26 13:37     ` Eric Sandeen
  0 siblings, 0 replies; 12+ messages in thread
From: Eric Sandeen @ 2018-03-26 13:37 UTC (permalink / raw)
  To: Brian Foster, Eric Sandeen; +Cc: linux-xfs

On 3/26/18 7:13 AM, Brian Foster wrote:
> On Fri, Mar 23, 2018 at 07:13:43PM -0500, Eric Sandeen wrote:
>> Today if we run fsr and crash, log replay can fail because
>> the recovery code tries to instantiate the donor inode from
>> disk to replay the swapext, but it's been deleted and we get
>> verifier failures when we try to read it off disk with
>> i_mode == 0.
>>
>> Strip the extent owner changes out of the logged fields when
>> we're freeing the inode to avoid this.
>>
>> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
>> ---
>>
>> V2: Move the fix to xfs_ifree per bfoster's suggestion
>>
>> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
>> index 604ee38..d17e2d5 100644
>> --- a/fs/xfs/xfs_inode.c
>> +++ b/fs/xfs/xfs_inode.c
>> @@ -2470,6 +2470,10 @@
>>  	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
>>  	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
>>  	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
>> +
>> +	/* Don't attempt to replay owner changes for a deleted inode */
>> +	ip->i_itemp->ili_fields &= !(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
> 
> 				   ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER)
> 
> Brian

Oh man.  :(  Total brain burp, thanks for catching that.
Some days I think my hair is getting too pointy to keep doing this work.  :(

-Eric

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

* [PATCH V3] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-02-23 23:49 [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes Eric Sandeen
  2018-02-26 16:39 ` Brian Foster
  2018-03-24  0:13 ` [PATCH V2] xfs: do not log " Eric Sandeen
@ 2018-03-28 22:12 ` Eric Sandeen
  2018-03-29 13:19   ` Brian Foster
  2 siblings, 1 reply; 12+ messages in thread
From: Eric Sandeen @ 2018-03-28 22:12 UTC (permalink / raw)
  To: Eric Sandeen, linux-xfs

Today if we run xfs_fsr and crash[1], log replay can fail because
the recovery code tries to instantiate the donor inode from
disk to replay the swapext, but it's been deleted and we get
verifier failures when we try to read the inode off disk with
i_mode == 0.

This fixes both sides: We don't log the swapext change if the
inode has been deleted, and we don't try to recover it either.

[1] or if systemd doesn't uncleanly unmount root, as is its wont
    to do ...

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

V2: Move the fix to xfs_ifree per bfoster's suggestion
V3: Fix my eeeediot logic thinko, and add back in replay fix
    so that people already in this situation can recover.
    Tidy up commit log a bit.

diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 604ee38..d17e2d5 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -2470,6 +2470,10 @@
 	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
 	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
+
+	/* Don't attempt to replay owner changes for a deleted inode */
+	ip->i_itemp->ili_fields &= ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
+
 	/*
 	 * Bump the generation count so no one will be confused
 	 * by reincarnations of this inode.
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
index 5e219d9..d0e33b9 100644
--- a/fs/xfs/xfs_log_recover.c
+++ b/fs/xfs/xfs_log_recover.c
@@ -3199,7 +3199,9 @@ xlog_recover_inode_pass2(
 	}
 
 out_owner_change:
-	if (in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER))
+	/* Recover the swapext owner change unless inode has been deleted */
+	if ((in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)) &&
+	    (dip->di_mode != 0))
 		error = xfs_recover_inode_owner_change(mp, dip, in_f,
 						       buffer_list);
 	/* re-generate the checksum. */



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

* Re: [PATCH V3] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-03-28 22:12 ` [PATCH V3] xfs: do not log/recover " Eric Sandeen
@ 2018-03-29 13:19   ` Brian Foster
  2018-03-29 13:26     ` Eric Sandeen
  0 siblings, 1 reply; 12+ messages in thread
From: Brian Foster @ 2018-03-29 13:19 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Eric Sandeen, linux-xfs

On Wed, Mar 28, 2018 at 05:12:44PM -0500, Eric Sandeen wrote:
> Today if we run xfs_fsr and crash[1], log replay can fail because
> the recovery code tries to instantiate the donor inode from
> disk to replay the swapext, but it's been deleted and we get
> verifier failures when we try to read the inode off disk with
> i_mode == 0.
> 
> This fixes both sides: We don't log the swapext change if the
> inode has been deleted, and we don't try to recover it either.
> 
> [1] or if systemd doesn't uncleanly unmount root, as is its wont
>     to do ...

Eh? :P

> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---

Looks fine. With the commit log fixed up:

Reviewed-by: Brian Foster <bfoster@redhat.com>

> 
> V2: Move the fix to xfs_ifree per bfoster's suggestion
> V3: Fix my eeeediot logic thinko, and add back in replay fix
>     so that people already in this situation can recover.
>     Tidy up commit log a bit.
> 
> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> index 604ee38..d17e2d5 100644
> --- a/fs/xfs/xfs_inode.c
> +++ b/fs/xfs/xfs_inode.c
> @@ -2470,6 +2470,10 @@
>  	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
>  	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
>  	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
> +
> +	/* Don't attempt to replay owner changes for a deleted inode */
> +	ip->i_itemp->ili_fields &= ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
> +
>  	/*
>  	 * Bump the generation count so no one will be confused
>  	 * by reincarnations of this inode.
> diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
> index 5e219d9..d0e33b9 100644
> --- a/fs/xfs/xfs_log_recover.c
> +++ b/fs/xfs/xfs_log_recover.c
> @@ -3199,7 +3199,9 @@ xlog_recover_inode_pass2(
>  	}
>  
>  out_owner_change:
> -	if (in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER))
> +	/* Recover the swapext owner change unless inode has been deleted */
> +	if ((in_f->ilf_fields & (XFS_ILOG_DOWNER|XFS_ILOG_AOWNER)) &&
> +	    (dip->di_mode != 0))
>  		error = xfs_recover_inode_owner_change(mp, dip, in_f,
>  						       buffer_list);
>  	/* re-generate the checksum. */
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH V3] xfs: do not log/recover swapext extent owner changes for deleted inodes
  2018-03-29 13:19   ` Brian Foster
@ 2018-03-29 13:26     ` Eric Sandeen
  0 siblings, 0 replies; 12+ messages in thread
From: Eric Sandeen @ 2018-03-29 13:26 UTC (permalink / raw)
  To: Brian Foster; +Cc: Eric Sandeen, linux-xfs



On 3/29/18 8:19 AM, Brian Foster wrote:
> On Wed, Mar 28, 2018 at 05:12:44PM -0500, Eric Sandeen wrote:
>> Today if we run xfs_fsr and crash[1], log replay can fail because
>> the recovery code tries to instantiate the donor inode from
>> disk to replay the swapext, but it's been deleted and we get
>> verifier failures when we try to read the inode off disk with
>> i_mode == 0.
>>
>> This fixes both sides: We don't log the swapext change if the
>> inode has been deleted, and we don't try to recover it either.
>>
>> [1] or if systemd doesn't uncleanly unmount root, as is its wont
>>     to do ...
> 
> Eh? :P

Obviously I meant to say "doesn't not uncleanly unmount" ... o_O

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

end of thread, other threads:[~2018-03-29 13:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-23 23:49 [PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes Eric Sandeen
2018-02-26 16:39 ` Brian Foster
2018-02-26 20:56   ` Brian Foster
2018-03-07 19:58     ` Eric Sandeen
2018-03-08 19:46       ` Brian Foster
2018-03-24  0:13 ` [PATCH V2] xfs: do not log " Eric Sandeen
2018-03-24  1:03   ` Darrick J. Wong
2018-03-26 12:13   ` Brian Foster
2018-03-26 13:37     ` Eric Sandeen
2018-03-28 22:12 ` [PATCH V3] xfs: do not log/recover " Eric Sandeen
2018-03-29 13:19   ` Brian Foster
2018-03-29 13:26     ` Eric Sandeen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.