All of lore.kernel.org
 help / color / mirror / Atom feed
* + proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch added to -mm tree
@ 2016-07-22 20:13 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2016-07-22 20:13 UTC (permalink / raw)
  To: john.stultz, arjan, ccross, dimitrysh, enh, jmorris, kandoiruchi,
	keescook, kernel-team, nnk, orenl, romlem, serge, tglx, tkjos,
	mm-commits


The patch titled
     Subject: proc: add LSM hook checks to /proc/<tid>/timerslack_ns
has been added to the -mm tree.  Its filename is
     proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: John Stultz <john.stultz@linaro.org>
Subject: proc: add LSM hook checks to /proc/<tid>/timerslack_ns

As requested, this patch checks the existing LSM hooks
task_getscheduler/task_setscheduler when reading or modifying the task's
timerslack value.

Previous versions added new get/settimerslack LSM hooks, but since they
checked the same PROCESS__SET/GETSCHED values as existing hooks, it was
suggested we just use the existing ones.

Link: http://lkml.kernel.org/r/1469132667-17377-2-git-send-email-john.stultz@linaro.org
Signed-off-by: John Stultz <john.stultz@linaro.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: "Serge E. Hallyn" <serge@hallyn.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Oren Laadan <orenl@cellrox.com>
Cc: Ruchi Kandoi <kandoiruchi@google.com>
Cc: Rom Lemarchand <romlem@android.com>
Cc: Todd Kjos <tkjos@google.com>
Cc: Colin Cross <ccross@android.com>
Cc: Nick Kralevich <nnk@google.com>
Cc: Dmitry Shmidt <dimitrysh@google.com>
Cc: Elliott Hughes <enh@google.com>
Cc: James Morris <jmorris@namei.org>
Cc: Android Kernel Team <kernel-team@android.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 fs/proc/base.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff -puN fs/proc/base.c~proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns fs/proc/base.c
--- a/fs/proc/base.c~proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns
+++ a/fs/proc/base.c
@@ -2290,6 +2290,12 @@ static ssize_t timerslack_ns_write(struc
 		goto out;
 	}
 
+	err = security_task_setscheduler(p);
+	if (err) {
+		count = err;
+		goto out;
+	}
+
 	task_lock(p);
 	if (slack_ns == 0)
 		p->timer_slack_ns = p->default_timer_slack_ns;
@@ -2318,6 +2324,10 @@ static int timerslack_ns_show(struct seq
 		goto out;
 	}
 
+	err = security_task_getscheduler(p);
+	if (err)
+		goto out;
+
 	task_lock(p);
 	seq_printf(m, "%llu\n", p->timer_slack_ns);
 	task_unlock(p);
_

Patches currently in -mm which might be from john.stultz@linaro.org are

proc-relax-proc-tid-timerslack_ns-capability-requirements.patch
proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-07-22 20:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-22 20:13 + proc-add-lsm-hook-checks-to-proc-tid-timerslack_ns.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.