linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Amir Goldstein <amir73il@gmail.com>
Cc: Jan Kara <jack@suse.cz>,
	Matthew Bobrowski <mbobrowski@mbobrowski.org>,
	linux-fsdevel <linux-fsdevel@vger.kernel.org>,
	linux-api@vger.kernel.org
Subject: Re: [PATCH v4 00/15] fanotify: add support for more event types
Date: Thu, 10 Jan 2019 12:43:39 +0100	[thread overview]
Message-ID: <20190110114339.GG15790@quack2.suse.cz> (raw)
In-Reply-To: <CAOQ4uxiY8o4B4C8_oku9LUQscALd1E98wAdhadbc5_O9eDD0pQ@mail.gmail.com>

On Thu 10-01-19 11:50:30, Amir Goldstein wrote:
> On Thu, Jan 10, 2019 at 11:22 AM Jan Kara <jack@suse.cz> wrote:
> >
> > On Thu 10-01-19 09:49:24, Amir Goldstein wrote:
> > > On Wed, Jan 9, 2019 at 5:34 PM Amir Goldstein <amir73il@gmail.com> wrote:
> > > >
> > > > On Wed, Jan 9, 2019 at 4:02 PM Jan Kara <jack@suse.cz> wrote:
> > > > >
> > > > > On Mon 07-01-19 09:46:37, Amir Goldstein wrote:
> > > > > > On Fri, Jan 4, 2019 at 1:00 PM Jan Kara <jack@suse.cz> wrote:
> > > > > > > On Sun 02-12-18 13:38:11, Amir Goldstein wrote:
> > > > > > > > This is the 4th revision of patch series to add support for filesystem
> > > > > > > > change monitoring to fanotify.
> > > > > > > > It incorporates the changes you requested in review of v3 FAN_REPORT_FID
> > > > > > > > patches.
> > > > > > > > The complete work is available on fanotify_dirent branch [1] on my tree.
> > > > > > > >
> > > > > > > > The combined functionality of FAN_MARK_FILESYSTEM, FAN_REPORT_FID and
> > > > > > > > dirent modification events is demonstrated with a prototype of global
> > > > > > > > filesystem monitor based on inotify-tools [2].
> > > > > > > >
> > > > > > > > In your review of v3 patched you only got as far as patch v3 9/13.
> > > > > > > > Because this patch marks the end of the FAN_REPORT_FID sub series,
> > > > > > > > I found it best to re-post the entire series with the changes you
> > > > > > > > requested thus far. For convenience of review, I pushed branches
> > > > > > > > fanotify_fid-v3 [3] and fanotify_fid-v4 [4] with the work you
> > > > > > > > reviewed so far and its re-worked version.
> > > > > > > >
> > > > > > > > One thing that we discussed and I did NOT do is move struct file_handle
> > > > > > > > to uapi headers. This got complicated due to existing definitions in
> > > > > > > > glibc header files and I realized we could do without it.
> > > > > > > >
> > > > > > > > I have added the vfs_get_fsid() helper as you requested, but since it
> > > > > > > > wasn't required by the patch set, I added it as two new cleanup patches
> > > > > > > > at the end of the FAN_REPORT_FID series, so you will be able to stage
> > > > > > > > the feature with or without the VFS change.
> > > > > > >
> > > > > > > So overall the series looks very good. I've had only some smaller comments
> > > > > > > / disagreements. So once we settle those please resend the series and I'll
> > > > > > > pick it up to my tree.
> > > > > > >
> > > > > >
> > > > > > Jan,
> > > > > >
> > > > > > I addressed all your comments, rebased on v5.0-rc1 and pushed to:
> > > > > > https://github.com/amir73il/linux/commits/fanotify_dirent
> > > > > >
> > > > > > When I get an ACK from you on the FAN_ONDIR issue, I will post the v5 series.
> > > > > > The gist is that FAN_ONDIR an input flag is required to produce mkdir/rmdir
> > > > > > events (as you suggested) and FAN_ONDIR is reported as output flag
> > > > > > for FAN_REPORT_FID group for all events that occur on directories
> > > > > > and never reported to non FAN_REPORT_FID group.
> > > > >
> > > > > Agreed. But thinking about it a bit more and looking at your patch on
> > > > > Github I think your solution doesn't quite work in presence of event
> > > > > merging since an event with FAN_ONDIR can get merged with event without
> > > > > FAN_ONDIR, can't it? That seems to be generally a problem with
> > > > > should_merge() for direntry events that it doesn't take ISDIR flag into
> > > > > account...
> > > > >
> > > >
> > > > Right... good catch! will fix should_merge().
> > > > Do you want me to re-post the series or just push to Github?
> > > >
> > >
> > > In the mean while, I pushed the fix to branch fanotify_dirent.
> > > A branch with the same name in LTP tree has a WIP dirent events
> > > test that includes the test for expected merge behavior.
> > > Matthew intends to work this test into shape.
> >
> > OK, thanks!
> >
> > > I did notice another wrinkle.
> > > There is a group of events that this patch set adds support to
> > > that are not dirent events, namely: DELETE_SELF, MOVE_SELF
> > > and ATTRIB.
> > >
> > > The first two never carry the ISDIR flag (in inotify as well).
> > > ATTRIB does usually carry the ISDIR flag, except for the odd case
> > > of fsnotify_link_count(target) being called on rename over an empty
> > > directory.
> > >
> > > If we add FS_ISDIR in those hooks, we risk breaking inotify apps.
> > > If we don't do anything, we will get inconsistent behavior w.r.t
> > > FAN_ONDIR (especially relevant for XXX_SELF).
> >
> > I see. So how about adding ISDIR flag properly to all events and just mask
> > it out in inotify_handle_event() for bug-to-bug compatibility? I think we
> > can start sending ISDIR flag properly for fsnotify_link_count() from because
> > that is unlikely to surprise anybody given other ATTRIB events can have it.
> > Because the fact that ISDIR flag is missing looks like a bug to me.
> >
> 
> Agreed. I will work this into the series and post v5.
> 
> TBH, I think that the ATTRIB event just before renaming over an empty
> dir is grossly uninteresting. Not to mention that there is no such event
> on rmdir() nor on unlink(), even if nlink is decremented to non zero.

But you won't get other event telling you that some dir entry got actually
overwritten by the rename, will you? Note that the inode need not get
deleted if it has other links to it. Actually sending fsnotify_nameremove()
would look like a more sensible choice but that ship has already sailed...

> So I would rather if we just removed the fsnotify_link_count(target)
> call altogether or add the missing calls, but I won't do that now.

I would not remove existing calls - possibility of breaking compatibility
just because we don't find the calls very useful simply is not worth it.
Adding new calls is possible but let's leave that for later once things
settle down a bit.

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

  reply	other threads:[~2019-01-10 11:43 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-02 11:38 [PATCH v4 00/15] fanotify: add support for more event types Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 01/15] fsnotify: annotate directory entry modification events Amir Goldstein
2019-01-03 15:41   ` Jan Kara
2019-01-03 16:31     ` Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 02/15] fsnotify: send all event types to super block marks Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 03/15] fsnotify: move mask out of struct fsnotify_event Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 04/15] fanotify: rename struct fanotify_{,perm_}event_info Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 05/15] fanotify: open code fill_event_metadata() Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 06/15] fanotify: encode file identifier for FAN_REPORT_FID Amir Goldstein
2019-01-03 16:18   ` Jan Kara
2018-12-02 11:38 ` [PATCH v4 07/15] fanotify: copy event fid info to user Amir Goldstein
2019-01-03 17:13   ` Jan Kara
2019-01-04  3:58     ` Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 08/15] fanotify: enable FAN_REPORT_FID init flag Amir Goldstein
2018-12-08  9:26   ` Amir Goldstein
2018-12-10 16:20     ` Jan Kara
2018-12-11  6:12       ` Matthew Bobrowski
2018-12-11  6:58         ` Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 09/15] fanotify: cache fsid in fsnotify_mark_connector Amir Goldstein
2019-01-04  9:38   ` Jan Kara
2019-01-04  9:54     ` Jan Kara
2018-12-02 11:38 ` [PATCH v4 10/15] vfs: add vfs_get_fsid() helper Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 11/15] fanotify: use vfs_get_fsid() helper instead of vfs_statfs() Amir Goldstein
2019-01-04  9:55   ` Jan Kara
2018-12-02 11:38 ` [PATCH v4 12/15] fanotify: check FS_ISDIR flag instead of d_is_dir() Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 13/15] fanotify: support events with data type FSNOTIFY_EVENT_INODE Amir Goldstein
2019-01-04 10:17   ` Jan Kara
2019-01-04 11:12     ` Amir Goldstein
2018-12-02 11:38 ` [PATCH v4 14/15] fanotify: add support for create/attrib/move/delete events Amir Goldstein
2019-01-04 10:26   ` Jan Kara
2018-12-02 11:38 ` [PATCH v4 15/15] fanotify: report FAN_ONDIR to listener with FAN_REPORT_FID Amir Goldstein
2019-01-04 10:57   ` Jan Kara
2019-01-04 11:42     ` Amir Goldstein
2019-01-04 12:18       ` Jan Kara
2019-01-04 12:39         ` Amir Goldstein
2019-01-05  0:34           ` Matthew Bobrowski
2019-01-05  8:18             ` Amir Goldstein
2019-01-07  7:40         ` Amir Goldstein
2019-01-04 12:19       ` Jan Kara
2019-01-04 23:46       ` Matthew Bobrowski
2019-01-05  7:59         ` Amir Goldstein
2019-01-05  9:49           ` Matthew Bobrowski
2019-01-07  7:37             ` Amir Goldstein
2019-01-04 11:00 ` [PATCH v4 00/15] fanotify: add support for more event types Jan Kara
2019-01-07  7:46   ` Amir Goldstein
2019-01-09 14:02     ` Jan Kara
2019-01-09 15:34       ` Amir Goldstein
2019-01-10  7:49         ` Amir Goldstein
2019-01-10  9:22           ` Jan Kara
2019-01-10  9:50             ` Amir Goldstein
2019-01-10 11:43               ` Jan Kara [this message]
2019-01-10 11:55                 ` Amir Goldstein
2019-01-10  8:53         ` Jan Kara
2019-01-10 10:10           ` Amir Goldstein

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=20190110114339.GG15790@quack2.suse.cz \
    --to=jack@suse.cz \
    --cc=amir73il@gmail.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=mbobrowski@mbobrowski.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).