lkml.org 
[lkml]   [2011]   [Mar]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 3/3] signal, ptrace: Fix delayed CONTINUED notification when ptraced
On 03/29, Tejun Heo wrote:
>
> Fix it by making job control continuation path use signal_wake_up()
> instead of wake_up_state() and recalc_sigpending_tsk() consider
> SIGNAL_CLD_MASK.

I still can't agree with this patch...

For the moment, please forget about ptrace. In this case this patch
is not needed, but it adds the small pessimization. OK, it is really
small, recalc_sigpending_tsk() is not called very often.

Also,

> After this patch, TIF_SIGPENDING is set for cases where it isn't
> strictly necessary; however, the only case which it makes any
> difference is when the SIGCONT is received while group stop is still
> in progress, which hardly is a case to optimize for.

Agreed. But, the current code is simply wrong even if the problem
is minor, and afaics your patch makes the things worse.

> @@ -652,6 +657,21 @@ void signal_wake_up(struct task_struct *t, int sig_type)
> mask = TASK_INTERRUPTIBLE;
> break;
>
> + case SIGCONT:
> + /*
> + * If there is a handler for SIGCONT, we must make sure
> + * that no thread returns to user mode before we post the
> + * signal, in case it was the only thread eligible to run
> + * the signal handler--then it must not do anything between
> + * resuming and running the handler. This is ensured by
> + * setting TIF_SIGPENDING before waking up.
> + */
> + mask = __TASK_STOPPED;
> + if (sig_user_defined(t, SIGCONT) &&
> + !sigismember(&t->blocked, SIGCONT))
> + mask |= TASK_INTERRUPTIBLE;
> + break;
> +
> case SIGTRAP:
> mask = TASK_INTERRUPTIBLE | __TASK_STOPPED | __TASK_TRACED;
> break;
> @@ -821,31 +841,9 @@ static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
> rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
> t = p;
> do {
> [...snip...]
> - wake_up_state(t, state);
> + signal_wake_up(t, SIGCONT);
> } while_each_thread(p, t);

I don't think this logic should be moved into signal_wake_up(). Simply
because it is wrong.

Forget about SIGSTOP. Suppose that the thread group is running, and we
are doing tkill(SIGCONT). Now, why every thread gets TIF_SIGPENDING +
wakeup? This is not correct. Even the kill(SIGCONT) case is not exactly
right. This should be handled by complete_signal(). I think we had to
set TIF_SIGPENDING before, now the locking is different. I'll try to
make the patch.


Now, lets recall about ptrace. But please forget about the lost
notification. We are going to implement the new trap anyway. Ignoring
all details, how we can implement this? I think the most natural and
approach is something like this:

- add the new GROUP_STOP_CONTTRAP (the name is random), it
lives in task->group_stop

- this bit should be considered by recalc_sigpending_tsk()
along with GROUP_STOP_PENDING

- it should be set by prepare_signal(SIGCONT) if the task
is traced

- this bit should be checked by get_signal_to_deliver() to
trigger ptrace_stop()

Does this make any sense?

If yes, then everything works "automagically" after that. The tracee
will call get_signal_to_deliver() if it is running, and check
SIGNAL_CLD_MASK.

What do you think?

Oleg.



\
 
 \ /
  Last update: 2011-03-30 21:33    [W:0.101 / U:0.376 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site