Re: [PATCH] user namespace: make signal.c respect user namespaces

From: Serge E. Hallyn
Date: Fri Sep 23 2011 - 17:20:39 EST


Quoting Oleg Nesterov (oleg@xxxxxxxxxx):
> On 09/23, Serge E. Hallyn wrote:
> >
> > It looks like I can fix all the
> > cases
>
> except ptrace_signal(). Although we can simply ignore this case, imho.

ptrace_signal() calls send_signal() though.

But oh, dear. It is sending a signal on behalf of the parent, so what I was
about to send, which does the uid mapping at send_signal() using current_cred()
as the id to send, is not correct.

Which unfortunately means that I'll have to have the caller of send_signal
(when doing SI_USER) either send the signal sender's cred, or do the
mapping. Or special-case ptrace_signal(). This is not as pretty as I'd
hoped.

> > at send_signal()
>
> Yes, I was thinking about this too but didn't have the time to check
> if this can really work.
>
> > by checking whether si_fromuser(info)
>
> I am not sure... sys_rt_queueinfo() is nasty. Plus we have to handle
> the "fromkernel" case too. May be we can ignore this too.

sys_rt_tgsigqueueinfo() still seems to go through send_signal().

thanks,
-serge
--
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/