linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Heinrich Schuchardt <xypron.debian@gmx.de>
Cc: Andrew Vagin <avagin@parallels.com>, Jan Kara <jack@suse.cz>,
	Al Viro <viro@ZenIV.linux.org.uk>,
	Andrey Vagin <avagin@openvz.org>,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
	John McCutchan <john@johnmccutchan.com>,
	Robert Love <rlove@rlove.org>, Eric Paris <eparis@parisplace.org>,
	Cyrill Gorcunov <gorcunov@openvz.org>,
	Pavel Emelyanov <xemul@parallels.com>,
	"Michael Kerrisk (man-pages)" <mtk.manpages@gmail.com>
Subject: Re: [PATCH] fs: don't remove inotify watchers from alive inode-s
Date: Tue, 16 Sep 2014 23:12:11 +0200	[thread overview]
Message-ID: <20140916211211.GG1205@quack.suse.cz> (raw)
In-Reply-To: <54146D8D.9090708@gmx.de>

On Sat 13-09-14 18:15:09, Heinrich Schuchardt wrote:
> On Tue 09-09-14 02:27:12, Al Viro wrote:
> http://lkml.org/lkml/2014/9/8/762
> > I agree that it changes user-visible ABI and I agree the behavior
> > isn't really specified in the manpage.
> 
> Shouldn't we start with putting the expected behavior into the
> manpage before patching the code? I am missing a patch for
> man7/inotify.7.
  Good idea. Thanks for bringing this up. And ideally we should write it
down before settling for a solution to this problem. Because when thinking
about it again, some details of the behavior are still vague.

> On Mon, Sep 08, 2014 at 04:01:56PM +0400, Andrey Vagin wrote:
> http://lkml.org/lkml/2014/9/8/219
> >
> > 	fd = inotify_init1(IN_NONBLOCK);
> > 	deleted = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0666);
> > 	link(path, path_link);
> >
> > 	wd_deleted = inotify_add_watch(fd, path_link, IN_ALL_EVENTS);
> >
> > 	unlink(path);
> > 	unlink(path_link);
> >
> > 	printf(" --- unlink\n");
> > 	read_evetns(fd);
> >
> > 	close(deleted);
> > 	printf(" --- close\n");
> > 	read_evetns(fd);
> >
> > Without this patch:
> >   --- unlink
> > 4	(IN_ATTRIB)
> > 400	(IN_DELETE_SELF)
> > 8000	(IN_IGNORED)
> >   --- close
> > FAIL
> >
> > With this patch:
> >   --- unlink
> > 4	(IN_ATTRIB)
> > 400	(IN_DELETE_SELF)
> >   --- close
> > 8	(IN_CLOSE_WRITE)
> > 400	(IN_DELETE_SELF)
> > 8000	(IN_IGNORED)
> > PASS
> 
> Shouldn't the second IN_DELETE_SELF occur before
> --- close ?
> Why is IN_CLOSE_WRITE created?
  So I would like events to be generated until the watched inode really
gets deleted. This way simple (non-hardlinked) file behaves and that's what
seems "natural". In this light generating IN_CLOSE_WRITE is what we want to
do.

Generation of IN_DELETE_SELF is less obvious I think. Do we want to
generate IN_DELETE_SELF for each hardlink to the inode that gets removed? I
don't think so (this actually would be too visible user API change IMHO).
To match the single link case I think we want to generate IN_DELETE_SELF
when the last link to the file is removed. But then generating it twice
like we would do with the above patch is wrong... Opinions?

								Honza
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

  reply	other threads:[~2014-09-16 21:12 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-08 12:01 [PATCH] fs: don't remove inotify watchers from alive inode-s Andrey Vagin
2014-09-08 12:19 ` Cyrill Gorcunov
2014-09-08 14:45 ` Jan Kara
2014-09-09  1:27 ` Al Viro
2014-09-09  8:54   ` Jan Kara
2014-09-10  9:43     ` Andrew Vagin
2014-09-13 16:15       ` Heinrich Schuchardt
2014-09-16 21:12         ` Jan Kara [this message]
2014-09-17 21:01           ` Andrew Vagin
2014-09-18 10:00             ` Jan Kara

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=20140916211211.GG1205@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=avagin@openvz.org \
    --cc=avagin@parallels.com \
    --cc=eparis@parisplace.org \
    --cc=gorcunov@openvz.org \
    --cc=john@johnmccutchan.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mtk.manpages@gmail.com \
    --cc=rlove@rlove.org \
    --cc=viro@ZenIV.linux.org.uk \
    --cc=xemul@parallels.com \
    --cc=xypron.debian@gmx.de \
    /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).