Re: [RFC 1/3] pidfd: allow pidfd_open() on non-thread-group leaders
From: Jan Kara <jack@suse.cz>
Date: 2023-12-08 17:47:46
Also in:
linux-fsdevel, lkml
On Thu 07-12-23 18:21:18, Christian Brauner wrote:
[Cc fsdevel & Jan because we had some discussions about fanotify returning non-thread-group pidfds. That's just for awareness or in case this might need special handling.]
Thanks!
On Thu, Nov 30, 2023 at 09:39:44AM -0700, Tycho Andersen wrote:quoted
From: Tycho Andersen <redacted> We are using the pidfd family of syscalls with the seccomp userspace notifier. When some thread triggers a seccomp notification, we want to do some things to its context (munge fd tables via pidfd_getfd(), maybe write to its memory, etc.). However, threads created with ~CLONE_FILES or ~CLONE_VM mean that we can't use the pidfd family of syscalls for this purpose, since their fd table or mm are distinct from the thread group leader's. In this patch, we relax this restriction for pidfd_open(). In order to avoid dangling poll() users we need to notify pidfd waiters when individual threads die, but once we do that all the other machinery seems to work ok viz. the tests. But I suppose there are more cases than just this one. Another weirdness is the open-coding of this vs. exporting using do_notify_pidfd(). This particular location is after __exit_signal() is called, which does __unhash_process() which kills ->thread_pid, so we need to use the copy we have locally, vs do_notify_pid() which accesses it via task_pid(). Maybe this suggests that the notification should live somewhere in __exit_signals()? I just put it here because I saw we were already testing if this task was the leader. Signed-off-by: Tycho Andersen <redacted> ---So we've always said that if there's a use-case for this then we're willing to support it. And I think that stance hasn't changed. I know that others have expressed interest in this as well. So currently the series only enables pidfds for threads to be created and allows notifications for threads. But all places that currently make use of pidfds refuse non-thread-group leaders. We can certainly proceed with a patch series that only enables creation and exit notification but we should also consider unlocking additional functionality:
...
* pidfd_prepare() is used to create pidfds for: (1) CLONE_PIDFD via clone() and clone3() (2) SCM_PIDFD and SO_PEERPIDFD (3) fanotify
So for fanotify there's no problem I can think of. All we do is return the pidfd we get to userspace with the event to identify the task generating the event. So in practice this would mean userspace will get proper pidfd instead of error value (FAN_EPIDFD) for events generated by non-thread-group leader. IMO a win. Honza -- Jan Kara [off-list ref] SUSE Labs, CR