Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1453517 > unrolled thread
| Started by | John Stultz <john.stultz@linaro.org> |
|---|---|
| First post | 2016-08-02 02:20 +0200 |
| Last post | 2016-08-02 02:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/2 v4] proc: Relax /proc/<tid>/timerslack_ns capability requirements John Stultz <john.stultz@linaro.org> - 2016-08-02 02:20 +0200
| From | John Stultz <john.stultz@linaro.org> |
|---|---|
| Date | 2016-08-02 02:20 +0200 |
| Subject | Re: [PATCH 1/2 v4] proc: Relax /proc/<tid>/timerslack_ns capability requirements |
| Message-ID | <s1vB8-5dX-5@gated-at.bofh.it> |
On Thu, Jul 21, 2016 at 1:24 PM, John Stultz <john.stultz@linaro.org> wrote: > When an interface to allow a task to change another tasks > timerslack was first proposed, it was suggested that something > greater then CAP_SYS_NICE would be needed, as a task could be > delayed further then what normally could be done with nice > adjustments. > > So CAP_SYS_PTRACE was adopted instead for what became the > /proc/<tid>/timerslack_ns interface. However, for Android (where > this feature originates), giving the system_server > CAP_SYS_PTRACE would allow it to observe and modify all tasks > memory. This is considered too high a privilege level for only > needing to change the timerslack. > > After some discussion, it was realized that a CAP_SYS_NICE > process can set a task as SCHED_FIFO, so they could fork some > spinning processes and set them all SCHED_FIFO 99, in effect > delaying all other tasks for an infinite amount of time. > > So as a CAP_SYS_NICE task can already cause trouble for other > tasks, using it as a required capability for accessing and > modifying /proc/<tid>/timerslack_ns seems sufficient. > > Thus, this patch loosens the capability requirements to > CAP_SYS_NICE and removes CAP_SYS_PTRACE, simplifying some > of the code flow as well. > > This is technically an ABI change, but as the feature just > landed in 4.6, I suspect no one is yet using it. Ah, drat. I just realized that I missed changing from ptrace_may_access() to capable(CAP_SYS_NICE) means that a task cannot set its *own* timerslack value as is possible via the PR_SET_TIMERSLACK interface. Thus this patch, in trying to loosen the required privileges, actually adds a unnecessary restriction. I'm working on a patch that adds a check if p == current and allows the modification. Andrew: I know you queued this in -mm late, so I didn't think you'd send it to Linus yet, but in case you were considering it, please wait. thanks -john
Back to top | Article view | linux.kernel
csiph-web