From: Andrew Morton <akpm@linux-foundation.org>
To: Christian Brauner <christian@brauner.io>
Cc: linux-kernel@vger.kernel.org, linux-api@vger.kernel.org,
luto@kernel.org, arnd@arndb.de, serge@hallyn.com,
keescook@chromium.org, jannh@google.com, oleg@redhat.com,
cyphar@cyphar.com, viro@zeniv.linux.org.uk,
linux-fsdevel@vger.kernel.org, dancol@google.com,
timmurray@google.com, fweimer@redhat.com, tglx@linutronix.de,
x86@kernel.org, ebiederm@xmission.com
Subject: Re: [PATCH v5 RESEND] signal: add pidfd_send_signal() syscall
Date: Fri, 28 Dec 2018 15:20:12 -0800 [thread overview]
Message-ID: <20181228152012.dbf0508c2508138efc5f2bbe@linux-foundation.org> (raw)
In-Reply-To: <20181228224853.26032-1-christian@brauner.io>
On Fri, 28 Dec 2018 23:48:53 +0100 Christian Brauner <christian@brauner.io> wrote:
> The kill() syscall operates on process identifiers (pid). After a process
> has exited its pid can be reused by another process. If a caller sends a
> signal to a reused pid it will end up signaling the wrong process. This
> issue has often surfaced and there has been a push to address this problem [1].
>
> This patch uses file descriptors (fd) from proc/<pid> as stable handles on
> struct pid. Even if a pid is recycled the handle will not change. The fd
> can be used to send signals to the process it refers to.
> Thus, the new syscall pidfd_send_signal() is introduced to solve this
> problem. Instead of pids it operates on process fds (pidfd).
I can't see a description of what happens when the target process has
exited. Is the task_struct pinned by the fd? Does the entire procfs
directory remain visible? Just one entry within it? Does the pid
remain reserved? Do attempts to signal that fd return errors?
etcetera. These behaviors should be described in the changelog and
manipulate please.
The code in signal.c appears to be compiled in even when
CONFIG_PROC_FS=y. Can we add the appropriate ifdefs and an entry in
sys_ni.c?
A selftest in toole/testing/selftests would be nice. And it will be
helpful to architecture maintainers as they wire this up.
The feature doesn't have its own Kconfig setting. Perhaps it should?
It should presumably depend on PROC_FS.
I must say that I dislike the linkage to procfs. procfs is a
high-level thing which is manipulated using syscalls. To turn around
and make a syscall dependent upon the presence of procfs seems just ...
wrong. Is there a cleaner way of obtaining the fd? Another syscall
perhaps.
This fd-for-a-process sounds like a handy thing and people may well
think up other uses for it in the future, probably unrelated to
signals. Are the code and the interface designed to permit such future
applications? I guess "no" - it presently assumes that anything which
is written to that fd is a signal. Perhaps there should be a tag at
the start of the message (which is what it is) which identifies the
message's type?
Now I think about it, why a new syscall? This thing is looking rather
like an ioctl?
next prev parent reply other threads:[~2018-12-28 23:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-28 22:48 Christian Brauner
2018-12-28 23:20 ` Andrew Morton [this message]
2018-12-28 23:37 ` Christian Brauner
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=20181228152012.dbf0508c2508138efc5f2bbe@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=christian@brauner.io \
--cc=cyphar@cyphar.com \
--cc=dancol@google.com \
--cc=ebiederm@xmission.com \
--cc=fweimer@redhat.com \
--cc=jannh@google.com \
--cc=keescook@chromium.org \
--cc=linux-api@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=oleg@redhat.com \
--cc=serge@hallyn.com \
--cc=tglx@linutronix.de \
--cc=timmurray@google.com \
--cc=viro@zeniv.linux.org.uk \
--cc=x86@kernel.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
all inboxes | Powered by JetHome®