mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Eric Paris <eparis@redhat.com>
To: Andreas Gruenbacher <agruen@suse.de>
Cc: Christoph Hellwig <hch@infradead.org>,
	Matt Helsley <matthltc@us.ibm.com>,
	torvalds@linux-foundation.org, linux-kernel@vger.kernel.org,
	viro@zeniv.linux.org.uk, akpm@linux-foundation.org,
	Michael Kerrisk <michael.kerrisk@gmail.com>
Subject: Re: [GIT PULL] notification tree - try 37!
Date: Thu, 19 Aug 2010 16:42:45 -0400	[thread overview]
Message-ID: <1282250565.21419.1821.camel@acb20005.ipt.aol.com> (raw)
In-Reply-To: <201008192224.12309.agruen@suse.de>

On Thu, 2010-08-19 at 22:24 +0200, Andreas Gruenbacher wrote:
> On Tuesday 17 August 2010 17:08:26 Eric Paris wrote:
> > On Tue, 2010-08-17 at 10:09 +0200, Andreas Gruenbacher wrote:
> > > On Tuesday 17 August 2010 05:39:47 Eric Paris wrote:
> > > > On Mon, 2010-08-16 at 22:32 +0200, Andreas Gruenbacher wrote:
> > > > > Q: What happens when a process watching for FAN_OPEN_PERM or
> > > > > FAN_ACCESS_PERM events exits or dies while events are in flight?  I
> > > > > can't see anything in the code that would wake sleeping processes up
> > > > > when the fsnotify_group of the listener is torn down.
> > > > 
> > > > We can get stuck.  There was code which cleaned that up, but it got
> > > > accidentally removed long ago when, upon review on list, I was told to
> > > > remove all timeout code.  It's easy enough to fix up.  I'll post a
> > > > patch this week.
> > > 
> > > This needs to be fixed then.  Not such a big deal, but it shows that the
> > > tree wasn't ready for being merged yet and needs further review.
> > 
> > Code with bugs, shocking!  Two other bugs have been found and patches
> > for those will be coming shortly.  I've begged for review how many
> > times?  I don't care when review it comes, I'll address any issues as
> > they come up.
> 
> Here is one more bug: when watching a directory with inotify, doing an ls 
> gives me:
> 
> 	Watching d
> 	d was opened
> 	d not opened for writing was closed
> 
> Watching the same directory with fanotify results in:
> 
> 	.../d: pid=... open_perm
> 	.../d: pid=... open
> 	.../d: pid=... access_perm
> 	.../d: pid=... access_perm
> 	.../d: pid=... close
> 
> Five events seem a bit excessive; I can't explain why so many are generated.  
> The real issue is when watching the same directory both with inotify and 
> fanotify, though: the fanotify result stays the same, but 

The extra events are plainly the new events that inotify doesn't
support: namely permissions events.  You ask for and received extra
events....

> 	Watching d
> 	d has not changed
> 	d was opened
> 	d has not changed
> 	d has not changed
> 	d not opened for writing was closed
> 
> In other words, watching a directory with fanotify causes extra inotify events 
> with mask == 0.

I can't reproduce it.

inotifywait -m /mnt/tmp
fanotify -p /mnt/tmp
ls /mnt/tmp

All I see is:

# /tmp/inotifywait.strace -- inotifywait -m /mnt/tmp/
Setting up watches.  
Watches established.
/mnt/tmp/ OPEN,ISDIR 
/mnt/tmp/ CLOSE_NOWRITE,CLOSE,ISDIR

# /storage/tmp/fanotify/fanotify -p /mnt/tmp
/mnt/tmp: pid=508 open_perm
/mnt/tmp: pid=508 open
/mnt/tmp: pid=508 access_perm
/mnt/tmp: pid=508 close

# ls
file  lost+found

You must have some other testing methodology.....


  parent reply	other threads:[~2010-08-19 20:43 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-06 15:58 Eric Paris
2010-08-06 23:34 ` Matt Helsley
2010-08-07  0:06   ` Christoph Hellwig
2010-08-07 19:15     ` Eric Paris
2010-08-07 20:55       ` Matt Helsley
2010-08-16 20:32       ` Andreas Gruenbacher
2010-08-17  3:39         ` Eric Paris
2010-08-17  4:03           ` Matt Helsley
2010-08-17  8:09           ` Andreas Gruenbacher
2010-08-17 15:08             ` Eric Paris
2010-08-19 20:24               ` Andreas Gruenbacher
2010-08-19 20:32                 ` Andreas Gruenbacher
2010-08-19 20:42                 ` Eric Paris [this message]
2010-08-19 21:07                   ` Andreas Gruenbacher
2010-08-19 21:22                     ` Andreas Gruenbacher
2010-08-20  3:50                     ` Eric Paris
2010-08-20 12:38                       ` Andreas Gruenbacher
2010-08-23 16:46                         ` Eric Paris
2010-08-23 22:38                           ` Andreas Gruenbacher
2010-08-20  0:00             ` Andreas Gruenbacher
2010-08-17  8:38           ` Andreas Gruenbacher
2010-08-17 15:24             ` Eric Paris
2010-08-17 15:48               ` Andreas Gruenbacher
2010-08-18 14:18               ` Andreas Gruenbacher
2010-08-17  9:45           ` Tvrtko Ursulin
2010-08-17 10:01             ` Andreas Gruenbacher
2010-08-17 10:12               ` Tvrtko Ursulin
2010-08-17 10:55                 ` Tvrtko Ursulin
2010-08-17 15:27                   ` Eric Paris
2010-08-18 15:47         ` [GIT PULL] notification tree: directory events Andreas Gruenbacher
2010-08-18 15:59           ` Eric Paris
2010-08-18 16:42             ` Christoph Hellwig
2010-08-18 17:07               ` Eric Paris
2010-08-19 12:44             ` Andreas Gruenbacher
2010-08-19 15:00               ` Eric Paris
2010-08-19 23:41                 ` Andreas Gruenbacher
2010-08-20  3:38                   ` Eric Paris
2010-08-20  5:19                     ` Andreas Dilger
2010-08-20  9:21                       ` Christoph Hellwig
2010-08-20 15:29                         ` Andreas Gruenbacher
2010-08-20 20:39                           ` Andreas Dilger
2010-08-20  9:09                     ` Tvrtko Ursulin
2010-08-20 11:07                     ` Andreas Gruenbacher
2010-08-20 11:25                     ` Andreas Gruenbacher
2010-08-20 12:16                     ` Andreas Gruenbacher

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=1282250565.21419.1821.camel@acb20005.ipt.aol.com \
    --to=eparis@redhat.com \
    --cc=agruen@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=hch@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matthltc@us.ibm.com \
    --cc=michael.kerrisk@gmail.com \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@zeniv.linux.org.uk \
    /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

all inboxes | Powered by JetHome®