public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Stijn Volckaert <Stijn.Volckaert@elis.ugent.be>
To: Roland McGrath <roland@hack.frob.com>,
	Oleg Nesterov <oleg@redhat.com>,
	Kees Cook <keescook@chromium.org>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH RFC] Allow introspection to already attached ptracer in __ptrace_may_access
Date: Wed, 24 Dec 2014 14:28:39 +0100	[thread overview]
Message-ID: <549ABF87.8060905@elis.ugent.be> (raw)

Hello,

I ran across the following problem recently but I'm not entirely sure 
whether this should be fixed in ptrace or in Yama. I'm working on a 
ptrace-based monitor that forks off its own tracee during startup. The 
monitor attaches to the tracee and then lets the tracee perform an 
execve call. This is much like running a program in gdb.

My monitor is multi-threaded and uses one monitor thread for every 
tracee thread so whenever the tracee forks/vforks/clones, I fire up a 
new monitor thread, detach the old monitor thread from the tracee thread 
and attach the new monitor thread to the tracee thread.

I have recently stumbled upon several applications in which the main 
process A forks off process B and then immediately exits. Under normal 
circumstances the following would happen:

Monitor[0]  ---   FORKS OFF   ---> Monitor[0]'
Monitor[0]  --- PTRACE_ATTACH ---> Monitor[0]'
Monitor[0]' ---    EXECVE     ---> Process A

Process A   ---   FORKS OFF   ---> Process B
Monitor[0]  --- PTRACE_DETACH ---> Process B
Monitor[1]  --- PTRACE_ATTACH ---> Process B

With Yama enabled (and the scope set to YAMA_SCOPE_RELATIONAL) however, 
a few interesting things can (and usually do) happen:

1) If Process A dies before Monitor[1] is attached to Process B, the 
attach will fail since from Yama's point of view, Process B is no longer 
a descendant of Monitor[1]. This problem is probably hard to fix
but I've circumvented it by delaying the death of Process A until 
Process B is attached to Monitor[1].

2) More interestingly though, even if Process B does get attached to 
Monitor[1], as soon as Process A dies, all process_vm_readv and 
process_vm_writev calls on Process B start failing. Any other ptrace 
operations peformed on Process B do succeed.

process_vm_readv|writev use __ptrace_may_access to check whether the 
operation is permitted, whereas other ptrace operations (with the 
exception of PTRACE_ATTACH) use ptrace_check_attach.

To fix this problem, __ptrace_may_access should be forced to return 0 if 
the calling process is already attached to the target process.

The question now is whether or not it's the security module's 
responsibility to check whether a tracee relationship is already in 
place or if ptrace itself should do it. For the latter case, which seems 
more logical to me, you could use the patch below.

What do you guys think?

Regards,
Stijn Volckaert

--

Signed-off-by: Stijn Volckaert <Stijn.Volckaert@elis.ugent.be>

--- a/kernel/ptrace.c	2014-12-24 13:53:23.055346526 +0100
+++ b/kernel/ptrace.c	2014-12-24 14:17:20.617824840 +0100
@@ -232,6 +232,9 @@ static int __ptrace_may_access(struct ta
  	/* Don't let security modules deny introspection */
  	if (same_thread_group(task, current))
  		return 0;
+	/* Don't deny introspection to already attached ptracer */
+	if (!ptrace_check_attach(task, true))
+	        return 0;
  	rcu_read_lock();
  	tcred = __task_cred(task);
  	if (uid_eq(cred->uid, tcred->euid) &&


             reply	other threads:[~2014-12-24 13:28 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-24 13:28 Stijn Volckaert [this message]
2014-12-24 18:06 ` [PATCH RFC] Allow introspection to already attached ptracer in __ptrace_may_access Oleg Nesterov
2015-01-05 23:47 ` Kees Cook
2015-01-06  0:17   ` Casey Schaufler
2015-01-06  9:07     ` Stijn Volckaert
2015-01-06 18:44   ` Oleg Nesterov
2015-01-08 10:40   ` Stijn Volckaert
2015-01-08 19:18     ` Oleg Nesterov

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=549ABF87.8060905@elis.ugent.be \
    --to=stijn.volckaert@elis.ugent.be \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oleg@redhat.com \
    --cc=roland@hack.frob.com \
    /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