Re: File Read Returns Non-existent Null Bytes

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

 



On Thu, Feb 26, 2015 at 08:29:51AM -0500, Trond Myklebust wrote:
> On Thu, Feb 26, 2015 at 7:41 AM, Chris Perl <cperl@xxxxxxxxxxxxxx> wrote:
> >>> Ok, thanks for helping me understand this a little more clearly.  For
> >>> my own edification, is there somewhere I can find the details where
> >>> these things are spelled out (or is it just somewhere in rfc1813 that
> >>> I haven't seen)?
> >>
> >> There is a short description here:
> >>     http://nfs.sourceforge.net/#faq_a8
> >
> > Yes, thanks.  I had come across that when trying to do a little
> > research after your initial reply.
> >
> > However, I was hoping for something with a little more detail.  For
> > example, you said earlier that "the close-to-open cache consistency
> > model is clear ...", which implied to me that there was a more formal
> > description somewhere outlining the semantics and constraints.  Or is
> > it just more of an implementation detail?
> >
> > Also, reading that FAQ entry seems to reinforce my original notion
> > that a client reading a file that is being updated might get stale
> > data returned from its cache, but shouldn't get corrupt data returned
> > from its cache.  Perhaps the FAQ entry should be updated to explicitly
> > note that corrupt data can be returned?
> >
> > FWIW, I realize that the use case I've given as a reproducer isn't
> > supported and isn't supposed to work.  I accept that and that is fine.
> > However, we do run into this problem in "everyday types of file
> > sharing" (to quote that FAQ).  Sometimes (not very often, but enough
> > that its annoying), someone will cat a file that is already in their
> > clients page cache, and it happens to be at just the wrong time,
> > resulting in corrupt data being read.
> 
> If you are saying that we're not making it clear enough that "you
> ignore these rules at your peril" then, fair enough, I'm sure Chuck
> would be able to add a line to the faq stating just that.

Yeah, I don't think that FAQ answer is clear.  It talks a little about
how close-to-open is implemented but doesn't really state clearly what
applications can assume.  The first paragraph comes close, but it's
really just a motivating example.

A rought attempt, but it feels a little overboard while still
incomplete:

	- access from multiple processes on the same client provides the
	  same guarantees as on local filesystems.

	- access from multiple clients will provide the same guarantees
	  as long as no client's open for write overlaps any other open
	  from another client.

	- if a client does open a file for read while another holds it
	  open for write, results of that client's reads are undefined.

	- More specifically, a read of a byte at offset X could return a
	  byte that has been written to that offset during a concurrent
	  write open, or the value stored there at offset X at the start
	  of that write open, or 0 if X happened to be past the end of
	  file at any point during the concurrent write open.  The
	  reader may not assume any relationships among values at
	  different offsets or the file size, updates to any of which
	  may be seen in any order.

?

--b.
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Filesystem Development]     [Linux USB Development]     [Linux Media Development]     [Video for Linux]     [Linux NILFS]     [Linux Audio Users]     [Yosemite Info]     [Linux SCSI]

  Powered by Linux