Re: [PATCH] Yama: turn process ancestry check into function

From: Tetsuo Handa
Date: Tue Jul 13 2010 - 20:19:20 EST


Kees Cook wrote:
> +static int task_is_descendant(struct task_struct *parent,
> + struct task_struct *child)
> +{
> + int rc = 0;
> + struct task_struct *walker = child;
> +
> + if (!parent || !child)
> + return 0;

parent (== current) is !NULL and
child (in original code) is !NULL.
You can remove this check unless you are planning to call
this function from other places.

> + if (mode == PTRACE_MODE_ATTACH &&
> + ptrace_scope &&
> + !task_is_descendant(current, child) &&
> + !capable(CAP_SYS_PTRACE))
> + rc = -EPERM;

I don't know how heavy capable(CAP_SYS_PTRACE) is.
But checking !capable(CAP_SYS_PTRACE) before
!task_is_descendant(current, child) might be lighter.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/