Re: [PATCH] proc: allow killing processes via file descriptors
From: Daniel Colascione <hidden>
Date: 2018-11-18 17:24:36
Also in:
linux-fsdevel, lkml
On Sun, Nov 18, 2018 at 9:09 AM, Andy Lutomirski [off-list ref] wrote:
On Sun, Nov 18, 2018 at 8:49 AM Daniel Colascione [off-list ref] wrote:quoted
On Sun, Nov 18, 2018 at 8:33 AM, Randy Dunlap [off-list ref] wrote:quoted
On 11/18/18 8:17 AM, Andy Lutomirski wrote:quoted
On Sun, Nov 18, 2018 at 7:53 AM Daniel Colascione [off-list ref] wrote:quoted
On Sun, Nov 18, 2018 at 7:38 AM, Andy Lutomirski [off-list ref] wrote:quoted
I fully agree that a more comprehensive, less expensive API for managing processes would be nice. But I also think that this patch (using the directory fd and ioctl) is better from a security perspective than using a new file in /proc.That's an assertion, not an argument. And I'm not opposed to an operation on the directory FD, now that it's clear Linus has banned "write(2)-as-a-command" APIs. I just insist that we implement the API with a system call instead of a less-reliable ioctl due to the inherent namespace collision issues in ioctl command names.Linus banned it because of bugs iike the ones in the patch.quoted
quoted
I have an old patch to make proc directory fds pollable: https://lore.kernel.org/patchwork/patch/345098/ That patch plus the one in this thread might make a nice addition to the kernel even if we expect something much better to come along later.I've always commented on that patch. You never addressed my technical objections. Why are you bringing up this patch again as if that discussion had never happened? To review, that patch has various race conditionsI don't think I ever saw that review.quoted
and even if it were technically correct, it'd be an abuse of directory objects (in what other circumstance do we poll directories?) and not logically generalizable to a model in which we expose process exit status via the exit-monitoring API.I agree it's weird. It might be better to have /proc/PID/exit_status and make *that* pollable.If there is a new exit_status file, it could even be more than 8 bits of exit status: See https://lore.kernel.org/lkml/alpine.LSU.2.20.1507091257010.9602@nerf40.vanv.qr/T/#u (local) and http://austingroupbugs.net/view.php?id=594#c1317First of all, as I discussed in [1], we need to first figure out *who* should have access to the process exit information. FreeBSD appears to make it public without disaster, and if we make exit status public, a lot of problems just disappear.I kind of want to go in the other direction of making a lot of process information (especially cmdline) less publicly accessible.
Okay. That has nothing to do with exit status. Please address the points related to the API we're discussing and that I raised in the other thread. Assuming we don't broaden exit status readability (which would make a lot of things simpler), the exit notification mechanism must work like this: if you can see a process in /proc, you should be able to wait on it. If you learn that process's exit status through some other means
--- e.g., you're the process's parent, you can ptrace the process, youhave CAP_WHATEVER_IT_IS_ --- then you should be able to learn the fate of the process. Otherwise you just be able to learn that the process exited.
Windows has an easy time of it because
Windows has an easier time of it because it doesn't use an ad-hoc ambient authority permission model. In Windows, if you can open a handle to do something, that handle lets you do the thing. Period. There's none of this "well, I opened this process FD, but since I opened it, the process called setuid, so now I can't get its exit status" nonsense. Privilege elevation is always accomplished via a separate call to CreateProcessWithToken, which creates a *new* process with the elevated privileges. An existing process can't suddenly and magically become this special thing that you can't inspect, but that has the same PID and identity as this other process that you used to be able to inspect. The model is just better, because permission is baked into the HANDLE. Now, that ship has sailed. We're stuck with setreuid and exec. But let's be clear about what's causing the complexity.