aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2016-11-14 19:48:07 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-01-06 04:40:13 -0500
commite747b4ae3b6bca205d82e86366e140cdcbfb7731 (patch)
treeeb37a1d3d431363778fde364f726e49571ba8ec6 /kernel
parent48466c4772d2cfeb331395043f7edd8c5324ef1b (diff)
ptrace: Capture the ptracer's creds not PT_PTRACE_CAP
commit 64b875f7ac8a5d60a4e191479299e931ee949b67 upstream. When the flag PT_PTRACE_CAP was added the PTRACE_TRACEME path was overlooked. This can result in incorrect behavior when an application like strace traces an exec of a setuid executable. Further PT_PTRACE_CAP does not have enough information for making good security decisions as it does not report which user namespace the capability is in. This has already allowed one mistake through insufficient granulariy. I found this issue when I was testing another corner case of exec and discovered that I could not get strace to set PT_PTRACE_CAP even when running strace as root with a full set of caps. This change fixes the above issue with strace allowing stracing as root a setuid executable without disabling setuid. More fundamentaly this change allows what is allowable at all times, by using the correct information in it's decision. Fixes: 4214e42f96d4 ("v2.4.9.11 -> v2.4.9.12") Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/capability.c20
-rw-r--r--kernel/ptrace.c12
2 files changed, 27 insertions, 5 deletions
diff --git a/kernel/capability.c b/kernel/capability.c
index c020c0047983..4984e1f552eb 100644
--- a/kernel/capability.c
+++ b/kernel/capability.c
@@ -485,3 +485,23 @@ bool capable_wrt_inode_uidgid(const struct inode *inode, int cap)
485 return ns_capable(ns, cap) && privileged_wrt_inode_uidgid(ns, inode); 485 return ns_capable(ns, cap) && privileged_wrt_inode_uidgid(ns, inode);
486} 486}
487EXPORT_SYMBOL(capable_wrt_inode_uidgid); 487EXPORT_SYMBOL(capable_wrt_inode_uidgid);
488
489/**
490 * ptracer_capable - Determine if the ptracer holds CAP_SYS_PTRACE in the namespace
491 * @tsk: The task that may be ptraced
492 * @ns: The user namespace to search for CAP_SYS_PTRACE in
493 *
494 * Return true if the task that is ptracing the current task had CAP_SYS_PTRACE
495 * in the specified user namespace.
496 */
497bool ptracer_capable(struct task_struct *tsk, struct user_namespace *ns)
498{
499 int ret = 0; /* An absent tracer adds no restrictions */
500 const struct cred *cred;
501 rcu_read_lock();
502 cred = rcu_dereference(tsk->ptracer_cred);
503 if (cred)
504 ret = security_capable_noaudit(cred, ns, CAP_SYS_PTRACE);
505 rcu_read_unlock();
506 return (ret == 0);
507}
diff --git a/kernel/ptrace.c b/kernel/ptrace.c
index 282821557183..e82c15cadd6d 100644
--- a/kernel/ptrace.c
+++ b/kernel/ptrace.c
@@ -39,6 +39,9 @@ void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
39 BUG_ON(!list_empty(&child->ptrace_entry)); 39 BUG_ON(!list_empty(&child->ptrace_entry));
40 list_add(&child->ptrace_entry, &new_parent->ptraced); 40 list_add(&child->ptrace_entry, &new_parent->ptraced);
41 child->parent = new_parent; 41 child->parent = new_parent;
42 rcu_read_lock();
43 child->ptracer_cred = get_cred(__task_cred(new_parent));
44 rcu_read_unlock();
42} 45}
43 46
44/** 47/**
@@ -71,12 +74,16 @@ void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
71 */ 74 */
72void __ptrace_unlink(struct task_struct *child) 75void __ptrace_unlink(struct task_struct *child)
73{ 76{
77 const struct cred *old_cred;
74 BUG_ON(!child->ptrace); 78 BUG_ON(!child->ptrace);
75 79
76 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); 80 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
77 81
78 child->parent = child->real_parent; 82 child->parent = child->real_parent;
79 list_del_init(&child->ptrace_entry); 83 list_del_init(&child->ptrace_entry);
84 old_cred = child->ptracer_cred;
85 child->ptracer_cred = NULL;
86 put_cred(old_cred);
80 87
81 spin_lock(&child->sighand->siglock); 88 spin_lock(&child->sighand->siglock);
82 child->ptrace = 0; 89 child->ptrace = 0;
@@ -326,11 +333,6 @@ static int ptrace_attach(struct task_struct *task, long request,
326 333
327 task_lock(task); 334 task_lock(task);
328 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS); 335 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
329 if (!retval) {
330 struct mm_struct *mm = task->mm;
331 if (mm && ns_capable(mm->user_ns, CAP_SYS_PTRACE))
332 flags |= PT_PTRACE_CAP;
333 }
334 task_unlock(task); 336 task_unlock(task);
335 if (retval) 337 if (retval)
336 goto unlock_creds; 338 goto unlock_creds;