提交 13aa9a6b 编写于 作者: O Oleg Nesterov 提交者: Linus Torvalds

pid_ns: zap_pid_ns_processes: use SEND_SIG_NOINFO instead of force_sig()

zap_pid_ns_processes() uses force_sig(SIGKILL) to ensure SIGKILL will be
delivered to sub-namespace inits as well.  This is correct, but we are
going to change force_sig_info() semantics.  See
http://bugzilla.kernel.org/show_bug.cgi?id=15395#c31

We can use send_sig_info(SEND_SIG_NOINFO) instead, since
614c517d ("signals: SEND_SIG_NOINFO should
be considered as SI_FROMUSER()") SEND_SIG_NOINFO means "from user" and
therefore send_signal() will get the correct from_ancestor_ns = T flag.
Signed-off-by: NOleg Nesterov <oleg@redhat.com>
Acked-by: NSerge Hallyn <serue@us.ibm.com>
Acked-by: NLinus Torvalds <torvalds@linux-foundation.org>
Acked-by: NRoland McGrath <roland@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 6edb6764
...@@ -161,13 +161,12 @@ void zap_pid_ns_processes(struct pid_namespace *pid_ns) ...@@ -161,13 +161,12 @@ void zap_pid_ns_processes(struct pid_namespace *pid_ns)
rcu_read_lock(); rcu_read_lock();
/* /*
* Use force_sig() since it clears SIGNAL_UNKILLABLE ensuring * Any nested-container's init processes won't ignore the
* any nested-container's init processes don't ignore the * SEND_SIG_NOINFO signal, see send_signal()->si_fromuser().
* signal
*/ */
task = pid_task(find_vpid(nr), PIDTYPE_PID); task = pid_task(find_vpid(nr), PIDTYPE_PID);
if (task) if (task)
force_sig(SIGKILL, task); send_sig_info(SIGKILL, SEND_SIG_NOINFO, task);
rcu_read_unlock(); rcu_read_unlock();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册