[PATCH 5/9] Allow ptrace from non-init user namespaces

David Howells dhowells at redhat.com
Wed Feb 23 09:11:01 PST 2011


Serge E. Hallyn <serge at hallyn.com> wrote:

> +int same_or_ancestor_user_ns(struct task_struct *task,
> +	struct task_struct *victim)
> +{
> +	struct user_namespace *u1 = task_cred_xxx(task, user)->user_ns;
> +	struct user_namespace *u2 = task_cred_xxx(victim, user)->user_ns;

Hmmm.  task_cred_xxx() uses task->real_cred, which is correct for victim (the
object), but normally you'd use task->cred for task (the subject).  However,
in this case, I think it's probably okay.

David


More information about the Containers mailing list