linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ryusuke Konishi <konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
To: dexen.devries-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Cc: linux-nilfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: an irritating problem and possible source of quiet data loss
Date: Tue, 23 Aug 2011 13:29:15 +0900 (JST)	[thread overview]
Message-ID: <20110823.132915.20107862.ryusuke@osrg.net> (raw)
In-Reply-To: <201108171207.22032.dexen.devries-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

On Wed, 17 Aug 2011 12:07:21 +0000, dexen deVries wrote:
> Hi,
> 
> theres' that irritating problem that two files on the same device
> and with same pathname -- but different content -- can have same
> inode number on NILFS2. It really can screw automated and manual
> backup/restore. Best of all, it seems to be against POSIX. Actually,
> two `versions' of the same file.
> 
> Today I wanted to revert a config file to certain older version:
> 
> (/dev/sda3 is the current root filesystem)
> 
> # chcp ss /dev/sda3 7591068
> # mount /dev/sda3 /mnt/x -o ro,cp=7591068
> # diff -burN /etc/adjtime  /mnt/x/etc/adjtime | diffstat
>  adjtime |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> so far so good. However!
> 
> # cp etc/adjtime /etc
> cp: `etc/adjtime' and `/etc/adjtime' are the same file
> 
> and it did /not/ copy the original version over the new file.
> 
> 
> The thing is, till recently the `diff' would also (errorously!) not
> report difference between those two files, because it relied on
> comparing device and inode numbers. If those matched, the files must
> be the same file. Just like pointer equality in C programming
> language: if two objects are located at the same address (pointer
> equality), they are the same object.

Yes, this is a known and essential problem of the snapshot mounts in nilfs.

> MVFS (a ClearCase thingie) and NILFS2 break that; diff now contains special 
> workaround because of MVFS. But some other utilities do not.
> 
> From diff's sources:
> > POSIX says that two files are identical if st_ino and st_dev are
> > the same, but many file systems incorrectly assign the same (device,
> > inode) pair to two distinct files, including:
> > 
> > ((short list: Linux NFS, Network Appliance NFS, MVFS)) 
> 
> Please consider fixing that: either report different inode numbers on mounted 
> snapshots, or use different device numbers for mounted snapshots. The later 
> could make more sense -- a snapshot of filesystem is a much different entity 
> than the current state -- and also could be way easier to implement in kernel 
> without changing filesystem format.

Some filesystem uses anonymous block device to avoid this issue, but
the number of anonymous devices is limited to 127 per system.

We often make concurrent snapshot mounts whose total number is larger
than this.  A compromise for this issue is adding mount option which
switches reusing the original block ID or assigning a new block ID for
snapshot mounts.

-- I don't know if we can actually do this, but I agree that it is a
problem to be handled in some way.

> Before any fix is ready, a manual workaround is possible, by using loop device:
> 
> coil!root!/mnt # losetup -f -v /dev/sda3
> Loop device is /dev/loop0
> coil!root!/mnt # mount /dev/loop0 /mnt/x -o cp=7591068,ro
> (now /dev/loop0 mounted at /mnt/x has different device ID than the root 
> filesystem at /dev/sda3)
> coil!root!~ # cp /mnt/x/etc/adjtime /etc/adjtime 
> 
> (worked!)

Thanks for reporting the workaround.

Regards,
Ryusuke Konishi
--
To unsubscribe from this list: send the line "unsubscribe linux-nilfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      parent reply	other threads:[~2011-08-23  4:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-17 12:07 an irritating problem and possible source of quiet data loss dexen deVries
     [not found] ` <201108171207.22032.dexen.devries-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-08-17 12:12   ` [clarification] " dexen deVries
2011-08-23  4:29   ` Ryusuke Konishi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110823.132915.20107862.ryusuke@osrg.net \
    --to=konishi.ryusuke-zyj7fxus5i5l9jvzuh4aog@public.gmane.org \
    --cc=dexen.devries-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=linux-nilfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).