Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1514185 > unrolled thread
| Started by | Miklos Szeredi <miklos@szeredi.hu> |
|---|---|
| First post | 2016-11-02 23:20 +0100 |
| Last post | 2016-11-10 23:50 +0100 |
| Articles | 11 — 3 participants |
Back to article view | Back to linux.kernel
fsnotify_mark_srcu wtf? Miklos Szeredi <miklos@szeredi.hu> - 2016-11-02 23:20 +0100
Re: fsnotify_mark_srcu wtf? Amir Goldstein <amir73il@gmail.com> - 2016-11-03 11:30 +0100
Re: fsnotify_mark_srcu wtf? Jan Kara <jack@suse.cz> - 2016-11-05 22:50 +0100
Re: fsnotify_mark_srcu wtf? Jan Kara <jack@suse.cz> - 2016-11-05 22:40 +0100
Re: fsnotify_mark_srcu wtf? Amir Goldstein <amir73il@gmail.com> - 2016-11-06 07:50 +0100
Re: fsnotify_mark_srcu wtf? Jan Kara <jack@suse.cz> - 2016-11-09 12:20 +0100
Re: fsnotify_mark_srcu wtf? Amir Goldstein <amir73il@gmail.com> - 2016-11-09 19:30 +0100
Re: fsnotify_mark_srcu wtf? Jan Kara <jack@suse.cz> - 2016-11-10 20:50 +0100
Re: fsnotify_mark_srcu wtf? Amir Goldstein <amir73il@gmail.com> - 2016-11-10 21:10 +0100
Re: fsnotify_mark_srcu wtf? Miklos Szeredi <miklos@szeredi.hu> - 2016-11-10 21:50 +0100
Re: fsnotify_mark_srcu wtf? Amir Goldstein <amir73il@gmail.com> - 2016-11-10 23:50 +0100
| From | Miklos Szeredi <miklos@szeredi.hu> |
|---|---|
| Date | 2016-11-02 23:20 +0100 |
| Subject | fsnotify_mark_srcu wtf? |
| Message-ID | <szc30-3Ly-37@gated-at.bofh.it> |
We've got a report where a fanotify daemon that implements permission checks
screws up and doesn't send a reply. This then causes widespread hangs due to
fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu()
called from e.g. inotify_release()-> fsnotify_destroy_group()->
fsnotify_mark_destroy_list() to block.
Below program demonstrates the issue. It should output a single line:
close(inotify_fd): success
Instead it outputs nothing, which means that close(inotify_fd) got blocked by
the waiting permission event.
Wouldn't making the srcu per-group fix this? Would that be too expensive?
Thanks,
Miklos
---
#include <err.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/fanotify.h>
#include <sys/inotify.h>
int main(void)
{
int fanotify_fd, inotify_fd;
int ret, pid1, pid2;
const char *testfile = "t";
ret = unlink(testfile);
if (ret == -1 && errno != ENOENT)
err(1, "unlink()");
ret = mknod(testfile, S_IFREG | 0666, 0);
if (ret == -1)
err(1, "mknod()");
fanotify_fd = fanotify_init(FAN_CLASS_PRE_CONTENT, O_RDONLY);
if (fanotify_fd == -1)
err(1, "fanotify_init()");
ret = fanotify_mark(fanotify_fd, FAN_MARK_ADD, FAN_OPEN_PERM, AT_FDCWD, testfile);
if (ret == -1)
err(1, "fanotify_mark()");
pid1 = fork();
if (pid1 == -1)
err(1, "fork()");
if (pid1 == 0) {
close(fanotify_fd);
ret = open(testfile, O_RDONLY);
if (ret == -1)
err(1, "open()");
fprintf(stderr, "something went wrong: open succeeded\n");
exit(1);
}
sleep(1);
pid2 = fork();
if (pid2 == -1)
err(1, "fork()");
if (pid2 == 0) {
close(fanotify_fd);
inotify_fd = inotify_init();
if (inotify_fd == -1)
err(1, "inotify_init()");
close(inotify_fd);
fprintf(stderr, "close(inotify_fd): success\n");
exit(0);
}
sleep(1);
kill(pid1, SIGKILL);
kill(pid2, SIGKILL);
return 0;
}
[toc] | [next] | [standalone]
| From | Amir Goldstein <amir73il@gmail.com> |
|---|---|
| Date | 2016-11-03 11:30 +0100 |
| Message-ID | <sznrs-2Dk-39@gated-at.bofh.it> |
| In reply to | #1514185 |
On Thu, Nov 3, 2016 at 12:09 AM, Miklos Szeredi <miklos@szeredi.hu> wrote:
> We've got a report where a fanotify daemon that implements permission checks
> screws up and doesn't send a reply. This then causes widespread hangs due to
> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu()
> called from e.g. inotify_release()-> fsnotify_destroy_group()->
> fsnotify_mark_destroy_list() to block.
>
> Below program demonstrates the issue. It should output a single line:
>
> close(inotify_fd): success
>
> Instead it outputs nothing, which means that close(inotify_fd) got blocked by
> the waiting permission event.
>
> Wouldn't making the srcu per-group fix this? Would that be too expensive?
>
IIUC, the purpose of fsnotify_mark_srcu is to protect the inode and vfsmount
mark lists, which are used to iterate the groups to send events to.
So you cannot make it per group as far as I can tell.
OTOH, specifically, for fanotify, once you can passed
fanotify_should_send_event(),
there is no need to keep a reference to the mark, so it may be safely destroyed,
you only need a reference to the group.
I tested this patch on top of my fanotify super block watch development branch
and it seems to fix the problem you reported, but I am not savvy enough with
srcu to say that this is correct.
Jan, what do you think?
From 28da34cdf9bf71fe9bbac13ded11a19da3b7a48e Mon Sep 17 00:00:00 2001
From: Amir Goldstein <amir73il@gmail.com>
Date: Thu, 3 Nov 2016 11:55:46 +0200
Subject: [PATCH] fanotify: handle permission events without holding
fsnotify_mark_srcu
Handling fanotify events does not entail dereferencing fsnotify_mask
beyond the point of fanotify_should_send_event().
For the case of permission events, which may block indefinetely,
return -EAGAIN and then fsnotify() will call handle_event() again
without a reference to the mark.
Without a reference to the mark, there is no need to call
handle_event() under fsnotify_mark_srcu read side lock
which is protecting the inode/vfsmount mark lists.
We just need to hold a reference to the group
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
---
fs/notify/fanotify/fanotify.c | 14 +++++++++++---
fs/notify/fsnotify.c | 26 ++++++++++++++++++++++----
2 files changed, 33 insertions(+), 7 deletions(-)
diff --git a/fs/notify/fanotify/fanotify.c b/fs/notify/fanotify/fanotify.c
index 604e307..0ffa9ed 100644
--- a/fs/notify/fanotify/fanotify.c
+++ b/fs/notify/fanotify/fanotify.c
@@ -298,9 +298,17 @@ static int fanotify_handle_event(struct
fsnotify_group *group,
BUILD_BUG_ON(FAN_ACCESS_PERM != FS_ACCESS_PERM);
BUILD_BUG_ON(FAN_ONDIR != FS_ISDIR);
- if (!fanotify_should_send_event(inode_mark, vfsmnt_mark, mask, data
- data_type))
- return 0;
+ if (inode_mark || vfsmnt_mark) {
+ if (!fanotify_should_send_event(inode_mark, vfsmnt_mark, mask,
+ data, data_type))
+ return 0;
+
+#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
+ /* Ask to be called again without a reference to mark */
+ if (mask & FAN_ALL_PERM_EVENTS)
+ return -EAGAIN;
+#endif
+ }
pr_debug("%s: group=%p inode=%p mask=%x\n", __func__, group, inode,
mask);
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c
index 34bccbe..dc0c86e 100644
--- a/fs/notify/fsnotify.c
+++ b/fs/notify/fsnotify.c
@@ -199,7 +199,7 @@ int fsnotify(struct inode *to_tell, __u32 mask,
void *data, int data_is,
{
struct hlist_node *inode_node = NULL, *vfsmount_node = NULL;
struct fsnotify_mark *inode_mark = NULL, *vfsmount_mark = NULL;
- struct fsnotify_group *inode_group, *vfsmount_group;
+ struct fsnotify_group *inode_group, *vfsmount_group, *group;
struct mount *mnt;
int idx, ret = 0;
/* global tests shouldn't care about events on child only the
specific event */
@@ -282,15 +282,33 @@ int fsnotify(struct inode *to_tell, __u32 mask,
void *data, int data_is,
ret = send_to_group(to_tell, inode_mark, vfsmount_mark, mask,
data, data_is, cookie, file_name);
- if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
- goto out;
-
if (inode_group)
inode_node = srcu_dereference(inode_node->next,
&fsnotify_mark_srcu);
if (vfsmount_group)
vfsmount_node = srcu_dereference(vfsmount_node->next,
&fsnotify_mark_srcu);
+
+ if (ret != -EAGAIN)
+ continue;
+
+ group = inode_group ? : vfsmount_group;
+ fsnotify_get_group(group);
+ srcu_read_unlock(&fsnotify_mark_srcu, idx);
+ /*
+ * Calling handle_event() again without reference to mark,
+ * so we do not need to call it under fsnotify_mark_srcu
+ * which is protecting the inode/vfsmount mark lists.
+ * We just need to hold a reference to the group
+ */
+ return group->ops->handle_event(group, to_tell, NULL, NULL,
+ mask, data, data_is,
+ file_name, cookie);
+ idx = srcu_read_lock(&fsnotify_mark_srcu);
+ fsnotify_put_group(group);
+
+ if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
+ goto out;
}
ret = 0;
out:
--
2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Jan Kara <jack@suse.cz> |
|---|---|
| Date | 2016-11-05 22:50 +0100 |
| Message-ID | <sAh0B-4Of-9@gated-at.bofh.it> |
| In reply to | #1514442 |
On Thu 03-11-16 12:25:13, Amir Goldstein wrote:
> On Thu, Nov 3, 2016 at 12:09 AM, Miklos Szeredi <miklos@szeredi.hu> wrote:
> > We've got a report where a fanotify daemon that implements permission checks
> > screws up and doesn't send a reply. This then causes widespread hangs due to
> > fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu()
> > called from e.g. inotify_release()-> fsnotify_destroy_group()->
> > fsnotify_mark_destroy_list() to block.
> >
> > Below program demonstrates the issue. It should output a single line:
> >
> > close(inotify_fd): success
> >
> > Instead it outputs nothing, which means that close(inotify_fd) got blocked by
> > the waiting permission event.
> >
> > Wouldn't making the srcu per-group fix this? Would that be too expensive?
> >
>
> IIUC, the purpose of fsnotify_mark_srcu is to protect the inode and vfsmount
> mark lists, which are used to iterate the groups to send events to.
> So you cannot make it per group as far as I can tell.
>
> OTOH, specifically, for fanotify, once you can passed
> fanotify_should_send_event(),
> there is no need to keep a reference to the mark, so it may be safely destroyed,
> you only need a reference to the group.
>
> I tested this patch on top of my fanotify super block watch development branch
> and it seems to fix the problem you reported, but I am not savvy enough with
> srcu to say that this is correct.
> Jan, what do you think?
So the way you've written it is definitely buggy. The inode_node and
vfsmount_node pointers may become invalid once you drop SRCU lock and so
you cannot dereference them even after regaining that lock. Also frankly
your solution looks a bit ugly. I'll think whether we can somehow fix the
problem...
Honza
>
> From 28da34cdf9bf71fe9bbac13ded11a19da3b7a48e Mon Sep 17 00:00:00 2001
> From: Amir Goldstein <amir73il@gmail.com>
> Date: Thu, 3 Nov 2016 11:55:46 +0200
> Subject: [PATCH] fanotify: handle permission events without holding
> fsnotify_mark_srcu
>
> Handling fanotify events does not entail dereferencing fsnotify_mask
> beyond the point of fanotify_should_send_event().
>
> For the case of permission events, which may block indefinetely,
> return -EAGAIN and then fsnotify() will call handle_event() again
> without a reference to the mark.
>
> Without a reference to the mark, there is no need to call
> handle_event() under fsnotify_mark_srcu read side lock
> which is protecting the inode/vfsmount mark lists.
> We just need to hold a reference to the group
>
> Signed-off-by: Amir Goldstein <amir73il@gmail.com>
> ---
> fs/notify/fanotify/fanotify.c | 14 +++++++++++---
> fs/notify/fsnotify.c | 26 ++++++++++++++++++++++----
> 2 files changed, 33 insertions(+), 7 deletions(-)
>
> diff --git a/fs/notify/fanotify/fanotify.c b/fs/notify/fanotify/fanotify.c
> index 604e307..0ffa9ed 100644
> --- a/fs/notify/fanotify/fanotify.c
> +++ b/fs/notify/fanotify/fanotify.c
> @@ -298,9 +298,17 @@ static int fanotify_handle_event(struct
> fsnotify_group *group,
> BUILD_BUG_ON(FAN_ACCESS_PERM != FS_ACCESS_PERM);
> BUILD_BUG_ON(FAN_ONDIR != FS_ISDIR);
>
> - if (!fanotify_should_send_event(inode_mark, vfsmnt_mark, mask, data
> - data_type))
> - return 0;
> + if (inode_mark || vfsmnt_mark) {
> + if (!fanotify_should_send_event(inode_mark, vfsmnt_mark, mask,
> + data, data_type))
> + return 0;
> +
> +#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
> + /* Ask to be called again without a reference to mark */
> + if (mask & FAN_ALL_PERM_EVENTS)
> + return -EAGAIN;
> +#endif
> + }
>
> pr_debug("%s: group=%p inode=%p mask=%x\n", __func__, group, inode,
> mask);
> diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c
> index 34bccbe..dc0c86e 100644
> --- a/fs/notify/fsnotify.c
> +++ b/fs/notify/fsnotify.c
> @@ -199,7 +199,7 @@ int fsnotify(struct inode *to_tell, __u32 mask,
> void *data, int data_is,
> {
> struct hlist_node *inode_node = NULL, *vfsmount_node = NULL;
> struct fsnotify_mark *inode_mark = NULL, *vfsmount_mark = NULL;
> - struct fsnotify_group *inode_group, *vfsmount_group;
> + struct fsnotify_group *inode_group, *vfsmount_group, *group;
> struct mount *mnt;
> int idx, ret = 0;
> /* global tests shouldn't care about events on child only the
> specific event */
> @@ -282,15 +282,33 @@ int fsnotify(struct inode *to_tell, __u32 mask,
> void *data, int data_is,
> ret = send_to_group(to_tell, inode_mark, vfsmount_mark, mask,
> data, data_is, cookie, file_name);
>
> - if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
> - goto out;
> -
> if (inode_group)
> inode_node = srcu_dereference(inode_node->next,
> &fsnotify_mark_srcu);
> if (vfsmount_group)
> vfsmount_node = srcu_dereference(vfsmount_node->next,
> &fsnotify_mark_srcu);
> +
> + if (ret != -EAGAIN)
> + continue;
> +
> + group = inode_group ? : vfsmount_group;
> + fsnotify_get_group(group);
> + srcu_read_unlock(&fsnotify_mark_srcu, idx);
> + /*
> + * Calling handle_event() again without reference to mark,
> + * so we do not need to call it under fsnotify_mark_srcu
> + * which is protecting the inode/vfsmount mark lists.
> + * We just need to hold a reference to the group
> + */
> + return group->ops->handle_event(group, to_tell, NULL, NULL,
> + mask, data, data_is,
> + file_name, cookie);
> + idx = srcu_read_lock(&fsnotify_mark_srcu);
> + fsnotify_put_group(group);
> +
> + if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
> + goto out;
> }
> ret = 0;
> out:
> --
> 2.7.4
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
[toc] | [prev] | [next] | [standalone]
| From | Jan Kara <jack@suse.cz> |
|---|---|
| Date | 2016-11-05 22:40 +0100 |
| Message-ID | <sAgQV-4L1-3@gated-at.bofh.it> |
| In reply to | #1514185 |
On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: > We've got a report where a fanotify daemon that implements permission checks > screws up and doesn't send a reply. This then causes widespread hangs due to > fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() > called from e.g. inotify_release()-> fsnotify_destroy_group()-> > fsnotify_mark_destroy_list() to block. Yes. But if a program implementing permission checks does not reply, your system is likely hosed anyway. We can only try to somewhat limit the damage... > Below program demonstrates the issue. It should output a single line: > > close(inotify_fd): success > > Instead it outputs nothing, which means that close(inotify_fd) got blocked by > the waiting permission event. > > Wouldn't making the srcu per-group fix this? Would that be too expensive? Per-group would be IMHO too expensive. You can have lots of groups and I'm not sure srcu would scale to that. Furthermore the SRCU protects the list of groups that need to get notification so it would not even be easily possible. Also Amir's solution is buggy - I'll comment on that as a reply to his patch. I'll try to find something to improve the situation but so far I have no good idea... Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR
[toc] | [prev] | [next] | [standalone]
| From | Amir Goldstein <amir73il@gmail.com> |
|---|---|
| Date | 2016-11-06 07:50 +0100 |
| Message-ID | <sAprc-1ZO-3@gated-at.bofh.it> |
| In reply to | #1515628 |
On Sat, Nov 5, 2016 at 11:34 PM, Jan Kara <jack@suse.cz> wrote: > On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: >> We've got a report where a fanotify daemon that implements permission checks >> screws up and doesn't send a reply. This then causes widespread hangs due to >> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() >> called from e.g. inotify_release()-> fsnotify_destroy_group()-> >> fsnotify_mark_destroy_list() to block. > > Yes. But if a program implementing permission checks does not reply, your > system is likely hosed anyway. We can only try to somewhat limit the > damage... > That was my initial thought as well, but at least with the sample code Miklos sent the only thing that gets hosed is the one process watching that one file. You could think of a use case of fanotify being used to watch over files in a specific user directory, where the damage on the entire system should/could be limited. No? >> Below program demonstrates the issue. It should output a single line: >> >> close(inotify_fd): success >> >> Instead it outputs nothing, which means that close(inotify_fd) got blocked by >> the waiting permission event. >> >> Wouldn't making the srcu per-group fix this? Would that be too expensive? > > Per-group would be IMHO too expensive. You can have lots of groups and I'm > not sure srcu would scale to that. Furthermore the SRCU protects the list > of groups that need to get notification so it would not even be easily > possible. Also Amir's solution is buggy - I'll comment on that as a reply > to his patch. I'll try to find something to improve the situation but so > far I have no good idea... > Yes, very much buggy indeed :/ Anyway, the reason I drafted it quickly was to highlight the fact that the marks only need to live to the point of decision whether or not the event should be sent to the group and afterwards, its sufficient to grab the group reference, without having impact on the entire system. Yet another possible ugly (but less buggy) solution would be to iterate all marks under SRCU read protection. If any group is about to block (either by suggested return value EAGAIN or another by using a new op should_handle_event_deferred), defer event handling to post marks iteration, by keeping a few group references on stack. But hopefully, you'll find some less ugly solution. Amir.
[toc] | [prev] | [next] | [standalone]
| From | Jan Kara <jack@suse.cz> |
|---|---|
| Date | 2016-11-09 12:20 +0100 |
| Message-ID | <sBz59-6zy-47@gated-at.bofh.it> |
| In reply to | #1515664 |
On Sun 06-11-16 08:45:54, Amir Goldstein wrote: > On Sat, Nov 5, 2016 at 11:34 PM, Jan Kara <jack@suse.cz> wrote: > > On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: > >> We've got a report where a fanotify daemon that implements permission checks > >> screws up and doesn't send a reply. This then causes widespread hangs due to > >> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() > >> called from e.g. inotify_release()-> fsnotify_destroy_group()-> > >> fsnotify_mark_destroy_list() to block. > > > > Yes. But if a program implementing permission checks does not reply, your > > system is likely hosed anyway. We can only try to somewhat limit the > > damage... > > > > That was my initial thought as well, but at least with the sample code > Miklos sent > the only thing that gets hosed is the one process watching that one file. > You could think of a use case of fanotify being used to watch over files > in a specific user directory, where the damage on the entire system > should/could be limited. No? Yes, the damage could at least theoretically be limited only to those files / dirs watched by the buggy process. > >> Below program demonstrates the issue. It should output a single line: > >> > >> close(inotify_fd): success > >> > >> Instead it outputs nothing, which means that close(inotify_fd) got blocked by > >> the waiting permission event. > >> > >> Wouldn't making the srcu per-group fix this? Would that be too expensive? > > > > Per-group would be IMHO too expensive. You can have lots of groups and I'm > > not sure srcu would scale to that. Furthermore the SRCU protects the list > > of groups that need to get notification so it would not even be easily > > possible. Also Amir's solution is buggy - I'll comment on that as a reply > > to his patch. I'll try to find something to improve the situation but so > > far I have no good idea... > > > > Yes, very much buggy indeed :/ > Anyway, the reason I drafted it quickly was to highlight the fact that the > marks only need to live to the point of decision whether or not the event > should be sent to the group and afterwards, its sufficient to grab the > group reference, without having impact on the entire system. Yes, fanotify code as such does not need the marks anymore. But the core fsnotify code does... > Yet another possible ugly (but less buggy) solution would be > to iterate all marks under SRCU read protection. > If any group is about to block (either by suggested return value > EAGAIN or another > by using a new op should_handle_event_deferred), defer event handling to post > marks iteration, by keeping a few group references on stack. And this does not work as well... Fanotify must notify groups by their priority so you cannot arbitrarily reorder ordering in which groups get notified. I'm currently pondering on using mark refcount to pin it when processing permission event but there are still some details to check. Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR
[toc] | [prev] | [next] | [standalone]
| From | Amir Goldstein <amir73il@gmail.com> |
|---|---|
| Date | 2016-11-09 19:30 +0100 |
| Message-ID | <sBFNi-2u3-83@gated-at.bofh.it> |
| In reply to | #1517998 |
On Wed, Nov 9, 2016 at 1:10 PM, Jan Kara <jack@suse.cz> wrote: > On Sun 06-11-16 08:45:54, Amir Goldstein wrote: >> On Sat, Nov 5, 2016 at 11:34 PM, Jan Kara <jack@suse.cz> wrote: >> > On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: >> >> We've got a report where a fanotify daemon that implements permission checks >> >> screws up and doesn't send a reply. This then causes widespread hangs due to >> >> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() >> >> called from e.g. inotify_release()-> fsnotify_destroy_group()-> >> >> fsnotify_mark_destroy_list() to block. >> > >> > Yes. But if a program implementing permission checks does not reply, your >> > system is likely hosed anyway. We can only try to somewhat limit the >> > damage... >> > >> >> That was my initial thought as well, but at least with the sample code >> Miklos sent >> the only thing that gets hosed is the one process watching that one file. >> You could think of a use case of fanotify being used to watch over files >> in a specific user directory, where the damage on the entire system >> should/could be limited. No? > > Yes, the damage could at least theoretically be limited only to those files > / dirs watched by the buggy process. > >> >> Below program demonstrates the issue. It should output a single line: >> >> >> >> close(inotify_fd): success >> >> >> >> Instead it outputs nothing, which means that close(inotify_fd) got blocked by >> >> the waiting permission event. >> >> >> >> Wouldn't making the srcu per-group fix this? Would that be too expensive? >> > >> > Per-group would be IMHO too expensive. You can have lots of groups and I'm >> > not sure srcu would scale to that. Furthermore the SRCU protects the list >> > of groups that need to get notification so it would not even be easily >> > possible. Also Amir's solution is buggy - I'll comment on that as a reply >> > to his patch. I'll try to find something to improve the situation but so >> > far I have no good idea... >> > >> >> Yes, very much buggy indeed :/ >> Anyway, the reason I drafted it quickly was to highlight the fact that the >> marks only need to live to the point of decision whether or not the event >> should be sent to the group and afterwards, its sufficient to grab the >> group reference, without having impact on the entire system. > > Yes, fanotify code as such does not need the marks anymore. But the core > fsnotify code does... > >> Yet another possible ugly (but less buggy) solution would be >> to iterate all marks under SRCU read protection. >> If any group is about to block (either by suggested return value >> EAGAIN or another >> by using a new op should_handle_event_deferred), defer event handling to post >> marks iteration, by keeping a few group references on stack. > > And this does not work as well... Fanotify must notify groups by their > priority so you cannot arbitrarily reorder ordering in which groups get > notified. I'm currently pondering on using mark refcount to pin it when > processing permission event but there are still some details to check. > All right, mark refcount sound like the proper solution. In case this approach doesn't work out for some reason, you may want to consider fsnotify_mark_srcu (and destroy_list) per priority. Or just 2 srcu, one for for priority 0 and one for other. Because priority > 0 may block and priority 0 may not block. The priority set on an inode/vfsmount can be easily encoded into the i_fsnotify_mask/mnt_fsnotify_mask, e.g.: #define FS_GROUP_PRIO_1 0x00040000 /* fanotify content based access control */ #define FS_GROUP_PRIO_2 0x00080000 /* fanotify pre-content access */ in fsnotify(), only need to take the read side srcu of relevant priority groups, but need to take extra care to set the priority bit in the inode/mnt mask *before* adding the mark to the list, with a relevant memory barrier before checking the priority bits in fsnotify(). Amir.
[toc] | [prev] | [next] | [standalone]
| From | Jan Kara <jack@suse.cz> |
|---|---|
| Date | 2016-11-10 20:50 +0100 |
| Message-ID | <sC3wd-2e1-13@gated-at.bofh.it> |
| In reply to | #1518392 |
On Wed 09-11-16 20:26:16, Amir Goldstein wrote: > On Wed, Nov 9, 2016 at 1:10 PM, Jan Kara <jack@suse.cz> wrote: > > On Sun 06-11-16 08:45:54, Amir Goldstein wrote: > >> On Sat, Nov 5, 2016 at 11:34 PM, Jan Kara <jack@suse.cz> wrote: > >> > On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: > >> >> We've got a report where a fanotify daemon that implements permission checks > >> >> screws up and doesn't send a reply. This then causes widespread hangs due to > >> >> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() > >> >> called from e.g. inotify_release()-> fsnotify_destroy_group()-> > >> >> fsnotify_mark_destroy_list() to block. > >> > > >> > Yes. But if a program implementing permission checks does not reply, your > >> > system is likely hosed anyway. We can only try to somewhat limit the > >> > damage... > >> > > >> > >> That was my initial thought as well, but at least with the sample code > >> Miklos sent > >> the only thing that gets hosed is the one process watching that one file. > >> You could think of a use case of fanotify being used to watch over files > >> in a specific user directory, where the damage on the entire system > >> should/could be limited. No? > > > > Yes, the damage could at least theoretically be limited only to those files > > / dirs watched by the buggy process. > > > >> >> Below program demonstrates the issue. It should output a single line: > >> >> > >> >> close(inotify_fd): success > >> >> > >> >> Instead it outputs nothing, which means that close(inotify_fd) got blocked by > >> >> the waiting permission event. > >> >> > >> >> Wouldn't making the srcu per-group fix this? Would that be too expensive? > >> > > >> > Per-group would be IMHO too expensive. You can have lots of groups and I'm > >> > not sure srcu would scale to that. Furthermore the SRCU protects the list > >> > of groups that need to get notification so it would not even be easily > >> > possible. Also Amir's solution is buggy - I'll comment on that as a reply > >> > to his patch. I'll try to find something to improve the situation but so > >> > far I have no good idea... > >> > > >> > >> Yes, very much buggy indeed :/ > >> Anyway, the reason I drafted it quickly was to highlight the fact that the > >> marks only need to live to the point of decision whether or not the event > >> should be sent to the group and afterwards, its sufficient to grab the > >> group reference, without having impact on the entire system. > > > > Yes, fanotify code as such does not need the marks anymore. But the core > > fsnotify code does... > > > >> Yet another possible ugly (but less buggy) solution would be > >> to iterate all marks under SRCU read protection. > >> If any group is about to block (either by suggested return value > >> EAGAIN or another > >> by using a new op should_handle_event_deferred), defer event handling to post > >> marks iteration, by keeping a few group references on stack. > > > > And this does not work as well... Fanotify must notify groups by their > > priority so you cannot arbitrarily reorder ordering in which groups get > > notified. I'm currently pondering on using mark refcount to pin it when > > processing permission event but there are still some details to check. > > > > All right, mark refcount sound like the proper solution. Except it doesn't quite work. We can pin the current marks by a refcount but they can still be removed from the list so after we regain srcu lock, we are not sure their ->next pointers still point to still allocated marks :-| Sadly I realized this only after implementing all this. > In case this approach doesn't work out for some reason, you may want > to consider fsnotify_mark_srcu (and destroy_list) per priority. > Or just 2 srcu, one for for priority 0 and one for other. > Because priority > 0 may block and priority 0 may not block. > > The priority set on an inode/vfsmount can be easily encoded into the > i_fsnotify_mask/mnt_fsnotify_mask, e.g.: > #define FS_GROUP_PRIO_1 0x00040000 /* fanotify content > based access control */ > #define FS_GROUP_PRIO_2 0x00080000 /* fanotify > pre-content access */ > > in fsnotify(), only need to take the read side srcu of relevant priority groups, > but need to take extra care to set the priority bit in the inode/mnt > mask *before* > adding the mark to the list, with a relevant memory barrier before checking > the priority bits in fsnotify(). Well but how would you like to protect the mark list hanging off the inode / mountpoint with two SRCUs? You'd need two lists hanging off the inode & mountpoint (for different priorities) and that's too big cost to pay to accomodate broken userspace... Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR
[toc] | [prev] | [next] | [standalone]
| From | Amir Goldstein <amir73il@gmail.com> |
|---|---|
| Date | 2016-11-10 21:10 +0100 |
| Message-ID | <sC3PA-2DQ-15@gated-at.bofh.it> |
| In reply to | #1519322 |
On Thu, Nov 10, 2016 at 9:46 PM, Jan Kara <jack@suse.cz> wrote: > On Wed 09-11-16 20:26:16, Amir Goldstein wrote: >> On Wed, Nov 9, 2016 at 1:10 PM, Jan Kara <jack@suse.cz> wrote: >> > On Sun 06-11-16 08:45:54, Amir Goldstein wrote: >> >> On Sat, Nov 5, 2016 at 11:34 PM, Jan Kara <jack@suse.cz> wrote: >> >> > On Wed 02-11-16 23:09:26, Miklos Szeredi wrote: >> >> >> We've got a report where a fanotify daemon that implements permission checks >> >> >> screws up and doesn't send a reply. This then causes widespread hangs due to >> >> >> fsnotify_mark_srcu read side lock being held and thus causing synchronize_srcu() >> >> >> called from e.g. inotify_release()-> fsnotify_destroy_group()-> >> >> >> fsnotify_mark_destroy_list() to block. >> >> > >> >> > Yes. But if a program implementing permission checks does not reply, your >> >> > system is likely hosed anyway. We can only try to somewhat limit the >> >> > damage... >> >> > >> >> >> >> That was my initial thought as well, but at least with the sample code >> >> Miklos sent >> >> the only thing that gets hosed is the one process watching that one file. >> >> You could think of a use case of fanotify being used to watch over files >> >> in a specific user directory, where the damage on the entire system >> >> should/could be limited. No? >> > >> > Yes, the damage could at least theoretically be limited only to those files >> > / dirs watched by the buggy process. >> > >> >> >> Below program demonstrates the issue. It should output a single line: >> >> >> >> >> >> close(inotify_fd): success >> >> >> >> >> >> Instead it outputs nothing, which means that close(inotify_fd) got blocked by >> >> >> the waiting permission event. >> >> >> >> >> >> Wouldn't making the srcu per-group fix this? Would that be too expensive? >> >> > >> >> > Per-group would be IMHO too expensive. You can have lots of groups and I'm >> >> > not sure srcu would scale to that. Furthermore the SRCU protects the list >> >> > of groups that need to get notification so it would not even be easily >> >> > possible. Also Amir's solution is buggy - I'll comment on that as a reply >> >> > to his patch. I'll try to find something to improve the situation but so >> >> > far I have no good idea... >> >> > >> >> >> >> Yes, very much buggy indeed :/ >> >> Anyway, the reason I drafted it quickly was to highlight the fact that the >> >> marks only need to live to the point of decision whether or not the event >> >> should be sent to the group and afterwards, its sufficient to grab the >> >> group reference, without having impact on the entire system. >> > >> > Yes, fanotify code as such does not need the marks anymore. But the core >> > fsnotify code does... >> > >> >> Yet another possible ugly (but less buggy) solution would be >> >> to iterate all marks under SRCU read protection. >> >> If any group is about to block (either by suggested return value >> >> EAGAIN or another >> >> by using a new op should_handle_event_deferred), defer event handling to post >> >> marks iteration, by keeping a few group references on stack. >> > >> > And this does not work as well... Fanotify must notify groups by their >> > priority so you cannot arbitrarily reorder ordering in which groups get >> > notified. I'm currently pondering on using mark refcount to pin it when >> > processing permission event but there are still some details to check. >> > >> >> All right, mark refcount sound like the proper solution. > > Except it doesn't quite work. We can pin the current marks by a refcount > but they can still be removed from the list so after we regain srcu lock, > we are not sure their ->next pointers still point to still allocated marks > :-| Sadly I realized this only after implementing all this. > >> In case this approach doesn't work out for some reason, you may want >> to consider fsnotify_mark_srcu (and destroy_list) per priority. >> Or just 2 srcu, one for for priority 0 and one for other. >> Because priority > 0 may block and priority 0 may not block. >> >> The priority set on an inode/vfsmount can be easily encoded into the >> i_fsnotify_mask/mnt_fsnotify_mask, e.g.: >> #define FS_GROUP_PRIO_1 0x00040000 /* fanotify content >> based access control */ >> #define FS_GROUP_PRIO_2 0x00080000 /* fanotify >> pre-content access */ >> >> in fsnotify(), only need to take the read side srcu of relevant priority groups, >> but need to take extra care to set the priority bit in the inode/mnt >> mask *before* >> adding the mark to the list, with a relevant memory barrier before checking >> the priority bits in fsnotify(). > > Well but how would you like to protect the mark list hanging off the inode > / mountpoint with two SRCUs? You'd need two lists hanging off the inode & > mountpoint (for different priorities) and that's too big cost to pay to > accomodate broken userspace... > My idea was to avoid another list on the inode and use the fact that the inode mark mask can indicate which is the largest priority on the list. Theoretically speaking, and I know this is playing close to fire, if you manage find a way to start traversing the first element of the list with the correct set of srcu held, say (0 and 1), then you should not be bothered with reaching higher priority marks (say 2) anymore, because those would be added to the head of the list and never after lower priority marks. Also, with the approach of SRCU per priority, one misbehaved fanotify permission checker will block all other permission checkers, so it's not the best outcome, but at least it would save all the inotify and fanotify passive observers. Amir.
[toc] | [prev] | [next] | [standalone]
| From | Miklos Szeredi <miklos@szeredi.hu> |
|---|---|
| Date | 2016-11-10 21:50 +0100 |
| Message-ID | <sC4sh-2Vb-5@gated-at.bofh.it> |
| In reply to | #1519322 |
On Thu, Nov 10, 2016 at 8:46 PM, Jan Kara <jack@suse.cz> wrote: > Except it doesn't quite work. We can pin the current marks by a refcount > but they can still be removed from the list so after we regain srcu lock, > we are not sure their ->next pointers still point to still allocated marks > :-| Sadly I realized this only after implementing all this. I think the real problem is the synchronous nature of the notification interface, that really doesn't fit the permission events model very well. If it were to be changed around to an async interface then all the marks could be iterated, the permission events queued and then the srcu lock can be released for good. Did I miss something? Thanks, Miklos
[toc] | [prev] | [next] | [standalone]
| From | Amir Goldstein <amir73il@gmail.com> |
|---|---|
| Date | 2016-11-10 23:50 +0100 |
| Message-ID | <sC6kp-4cm-25@gated-at.bofh.it> |
| In reply to | #1519355 |
On Thu, Nov 10, 2016 at 10:44 PM, Miklos Szeredi <miklos@szeredi.hu> wrote: > On Thu, Nov 10, 2016 at 8:46 PM, Jan Kara <jack@suse.cz> wrote: >> Except it doesn't quite work. We can pin the current marks by a refcount >> but they can still be removed from the list so after we regain srcu lock, >> we are not sure their ->next pointers still point to still allocated marks >> :-| Sadly I realized this only after implementing all this. > > I think the real problem is the synchronous nature of the notification > interface, that really doesn't fit the permission events model very > well. > > If it were to be changed around to an async interface then all the > marks could be iterated, the permission events queued and then the > srcu lock can be released for good. > > Did I miss something? > Just one annoying fact - the the spec says that permission events must be delivered before the lower priority class events (i.e. the passive listeners). But unlike fanotify, that doesn't need the marks after they have been iterated, inotify does need the marks further along and dnotify goes further by taking a lock, which is on the mark itself, throughout the emittion of the event. This is the reason I suggested to walk the mark list while taking different SRCUs, but as I said, that's easier said then done, so I am not sure its a feasible idea. Amir.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web