Re: [PATCH] xfs: handle inconsistent log item formatting state correctly

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Mar 07, 2018 at 09:14:41AM +1100, Dave Chinner wrote:
> On Tue, Mar 06, 2018 at 07:31:56AM -0500, Brian Foster wrote:
> > On Tue, Mar 06, 2018 at 09:18:57AM +1100, Dave Chinner wrote:
> > > On Mon, Mar 05, 2018 at 09:40:01AM -0500, Brian Foster wrote:
> > > > On Fri, Mar 02, 2018 at 09:35:27AM +1100, Dave Chinner wrote:
> > > > but will it ever be written back (unless some other
> > > > transaction modifies/commits it) if it doesn't make it to the AIL? ISTM
> > > > that this is a corruption vector with at least a couple different
> > > > interesting paths (e.g. unmount losing data or a crash -> log recovery
> > > > inconsistency).
> > > > 
> > > > Unless I'm mistaken in the above, I think we need to be a bit more
> > > > aggressive in handling this condition. We could obviously assert/warn,
> > > > but IMO a shutdown is appropriate given that we may have to assume that
> > > > clearing the dirty state made the fs inconsistent (and we already
> > > > shutdown for slightly more innocuous things, like tx overrun, in
> > > > comparison). The problem is that we need to make sure the current
> > > > transaction is not partially committed so we don't actually corrupt the
> > > > fs by shutting down, which leads to one last thought...
> > > > 
> > > > AFAICT the transaction commit path expects to handle items that are
> > > > either not dirty or otherwise must be logged. It looks like the earliest
> > > > we identify this problem is xlog_cil_alloc_shadow_bufs() after we've
> > > > called ->iop_size(). Any reason we couldn't handle this problem there?
> > > 
> > > Because that code can validly be passed a dirty object that ends up
> > > with no logged regions. IMO, shadow buffer allocation is the wrong
> > > place to be determining if a dirty item needs to be added to the CIL
> > > or not - that's the job of the formatting code....
> > 
> > I don't think the lidp dirty state necessarily means an item has logged
> > regions or not (and so lack of dirty regions doesn't necessarily justify
> > clearing the dirty flag). We still log for an invalidated buffer, for
> > example, and/or an item may have been dirtied by a previous transaction
> > and end up clean in a subsequent one.
> 
> An invalidated buffer has the BLI_STALE state, and this gets
> formatted into the log on commit in the buf log format structure so
> that log recovery can correctly cancel invalidated buffers instead
> of replaying them. IOWs, they *definitely* have log vectors
> associated with them.
> 

Yep, pretty much what I stated above.

> That's the thing - anything that is dirtied and needs to be written
> to the log will write a log item format structure into a log vector.
> The only time this will not occur is if the object is actually clean
> and a log item format structure does not need to be written. That's
> the case where niovecs = 0.
> 
> The only exception to this case is ordered buffers - they have a
> dirty lidp, but a clean log item format structure. They need a log
> vector structure allocated because they have to pass through the CIL
> into the AIL so they can be correctly ordered. But the point here is
> that we've passed a "dirty object that ends up with no logged
> regions" to the formatting code, and it's special cased this because
> it's been marked as an "ordered" log item.
> 

Right, and both of these fall under the categories I had listed below
(lidp clean or lidp dirty+ordered)...

> > FWIW, I think it would make sense to handle this case at format time if
> > it were a valid state, not so much if it isn't. I'm simply not following
> > how it is a valid state.
> 
> The object state is valid. putting such objects into the CIL is what
> is not valid, and that's where the bug is.
> 
> > AFAICT we have the following valid states at
> > transaction commit time:
> > 
> > - lid not dirty, lip state is a 'don't care'
> > - lid dirty, lip ordered, niovecs == 0
> > - lid dirty, lip !ordered, niovecs != 0
> > 
> > ... and anything else is essentially a bug. Am I missing some other
> > case?
> 
> No. We handle all 3 cases you mention above, but we must keep in
> mind that there's only one other case here:
> 
> - lid dirty, lip !ordered, niovecs == 0
> 
> And that's exactly the case that the code currently tries to handle
> and gets wrong. It leaves this log item in a bad state (dirty, but
> with no attached xfs_log_vec) and adds it to the CIL, and that gets
> tripped over later when pushing the CIL.
> 
> 
> That's all I'm fixing in this patch. I'm ignoring whether it's
> possible or not (the original code thought it necessary to handle),
> and if the log item format information says the object is clean,
> then it's clean and we should reflect that in the transaction we are
> committing. That's why I cleared the lid dirty flag - it's clean,
> and we should make sure we treat it consistently as a clean object.
>

My argument is not that it's not possible. My argument is that the
semantics of XFS_LID_DIRTY suggest the transaction modified the object
in memory. Today, that means we log a range of the object, log an
invalidation or order a buffer. E.g., we modify an actual metadata
object, dirty the item (log or order), dirty the lidp and dirty the
transaction. If we didn't ever modify a particular object, then there's
no reason to dirty it that I can see. Failing to log/order the object
properly doesn't justify assuming it hasn't been modified IMO, we don't
really know either way.

The way the flag is used seems to bear that out. It's set when an object
has been modified by a transaction. The way the flag alters behavior
suggests the same. Objects that have been dirtied by a transaction
cannot be released from that transaction and a cancel of a transaction
with a dirty lidp causes fs shutdown (because we dirty the transaction
once we dirty a lidp).

> All the transaction cleanup will work correctly when it's committed
> and clean log items are released (and freed) because that doesn't
> care what the lid dirty state is, just what the log item state is...
> 

A cancel of that same transaction would shutdown the fs because it
dirtied (i.e., presumably modified) an object. So we can't cancel the
transaction for risk of corruption, we can't release the object from the
transaction, yet this patch proposes behavior where a commit of that
transaction can silently undirty the lidp, commit whatever else might be
in the transaction and carry on as if nothing were wrong.

At the very least, this is inconsistent with how this flag is used
everywhere else. How do you explain that?

> > > > There's no reason to allocate a vector we already know we aren't going
> > > > to use (and that is clearly based on invalid parameters), after all.
> > > 
> > > Such objects still need a log vector attached to them so they can be
> > > processed through the CIL and entered into the AIL via the log
> > > vector chain.
> > 
> > Confused. This patch prevents that from happening on such objects (which
> > you just noted above wrt to the appropriate place to determine whether
> > to insert into the CIL). Hm?
> 
> See my comments about ordered buffers above. The only difference
> between a clean log item we should drop from the transaction and a
> clean log item we should consider as dirty and pass through the CIL
> into the AIL is the ordered flag....
> 

Sure, but that doesn't answer my question. Why does this patch allocate
log vectors for log items that are not going to be inserted to the CIL
by the committing transaction? I don't see a reason to do that
regardless of the validity question.

Brian

> Cheers,
> 
> Dave.
> -- 
> Dave Chinner
> david@xxxxxxxxxxxxx
--
To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [XFS Filesystem Development (older mail)]     [Linux Filesystem Development]     [Linux Audio Users]     [Yosemite Trails]     [Linux Kernel]     [Linux RAID]     [Linux SCSI]


  Powered by Linux