* Re: x86: only single-step into signal handlers if the tracer
[not found] <200411150203.iAF23Trb024677@hera.kernel.org>
@ 2004-11-15 2:20 ` Jeff Garzik
2004-11-15 2:44 ` Andrew Morton
2004-11-18 15:42 ` [PATCH 2.6.10-rc2] x86_64: only single-step into signal handlers if the tracer asked for it Tom Rini
1 sibling, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2004-11-15 2:20 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Linus Torvalds, Andrew Morton
Linux Kernel Mailing List wrote:
> ChangeSet 1.2159, 2004/11/15 00:56:31-08:00, torvalds@ppc970.osdl.org
>
> x86: only single-step into signal handlers if the tracer
> asked for it.
This reminds me of a problem I am seeing under recent -bk kernels.
Mozilla (FC2) will freeze (no screen redraws, etc.). 'ps xf' shows
mozilla sleeping. If I strace the process, Mozilla will un-freeze and
continue as expected.
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: x86: only single-step into signal handlers if the tracer
2004-11-15 2:20 ` x86: only single-step into signal handlers if the tracer Jeff Garzik
@ 2004-11-15 2:44 ` Andrew Morton
2004-11-15 12:10 ` Alexander Nyberg
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2004-11-15 2:44 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-kernel, torvalds
Jeff Garzik <jgarzik@pobox.com> wrote:
>
> Linux Kernel Mailing List wrote:
> > ChangeSet 1.2159, 2004/11/15 00:56:31-08:00, torvalds@ppc970.osdl.org
> >
> > x86: only single-step into signal handlers if the tracer
> > asked for it.
>
>
> This reminds me of a problem I am seeing under recent -bk kernels.
>
> Mozilla (FC2) will freeze (no screen redraws, etc.). 'ps xf' shows
> mozilla sleeping. If I strace the process, Mozilla will un-freeze and
> continue as expected.
>
Presumably the futex thing:
diff -puN kernel/futex.c~revert-futex_wait-fix kernel/futex.c
--- 25/kernel/futex.c~revert-futex_wait-fix 2004-11-14 18:43:56.841300400 -0800
+++ 25-akpm/kernel/futex.c 2004-11-14 18:43:56.845299792 -0800
@@ -6,7 +6,7 @@
* (C) Copyright 2003 Red Hat Inc, All Rights Reserved
*
* Removed page pinning, fix privately mapped COW pages and other cleanups
- * (C) Copyright 2003 Jamie Lokier
+ * (C) Copyright 2003, 2004 Jamie Lokier
*
* Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
* enough at me, Linus for the original (flawed) idea, Matthew
@@ -486,22 +486,37 @@ static int futex_wait(unsigned long uadd
if (unlikely(ret != 0))
goto out_release_sem;
+ queue_me(&q, -1, NULL);
+
/*
- * Access the page after the futex is queued.
+ * Access the page AFTER the futex is queued.
+ * Order is important:
+ *
+ * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
+ * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
+ *
+ * The basic logical guarantee of a futex is that it blocks ONLY
+ * if cond(var) is known to be true at the time of blocking, for
+ * any cond. If we queued after testing *uaddr, that would open
+ * a race condition where we could block indefinitely with
+ * cond(var) false, which would violate the guarantee.
+ *
+ * A consequence is that futex_wait() can return zero and absorb
+ * a wakeup when *uaddr != val on entry to the syscall. This is
+ * rare, but normal.
+ *
* We hold the mmap semaphore, so the mapping cannot have changed
- * since we looked it up.
+ * since we looked it up in get_futex_key.
*/
if (get_user(curval, (int __user *)uaddr) != 0) {
ret = -EFAULT;
- goto out_release_sem;
+ goto out_unqueue;
}
if (curval != val) {
ret = -EWOULDBLOCK;
- goto out_release_sem;
+ goto out_unqueue;
}
- queue_me(&q, -1, NULL);
-
/*
* Now the futex is queued and we have checked the data, we
* don't want to hold mmap_sem while we sleep.
@@ -542,10 +557,11 @@ static int futex_wait(unsigned long uadd
WARN_ON(!signal_pending(current));
return -EINTR;
+ out_unqueue:
/* If we were woken (and unqueued), we succeeded, whatever. */
if (!unqueue_me(&q))
ret = 0;
-out_release_sem:
+ out_release_sem:
up_read(¤t->mm->mmap_sem);
return ret;
}
_
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: x86: only single-step into signal handlers if the tracer
2004-11-15 2:44 ` Andrew Morton
@ 2004-11-15 12:10 ` Alexander Nyberg
0 siblings, 0 replies; 5+ messages in thread
From: Alexander Nyberg @ 2004-11-15 12:10 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jeff Garzik, linux-kernel, torvalds
> > This reminds me of a problem I am seeing under recent -bk kernels.
> >
> > Mozilla (FC2) will freeze (no screen redraws, etc.). 'ps xf' shows
> > mozilla sleeping. If I strace the process, Mozilla will un-freeze and
> > continue as expected.
> >
>
> Presumably the futex thing:
>
This patch seems to fix it for me, recently various programs have got
stuck in pthread_condition_wait (this on x86-64).
When that happened I did gdb --pid and then 'continue' which made it
wake up.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2.6.10-rc2] x86_64: only single-step into signal handlers if the tracer asked for it
[not found] <200411150203.iAF23Trb024677@hera.kernel.org>
2004-11-15 2:20 ` x86: only single-step into signal handlers if the tracer Jeff Garzik
@ 2004-11-18 15:42 ` Tom Rini
2004-11-18 20:46 ` [discuss] " Andi Kleen
1 sibling, 1 reply; 5+ messages in thread
From: Tom Rini @ 2004-11-18 15:42 UTC (permalink / raw)
To: discuss, Kernel Mailing List, ak
On Mon, Nov 15, 2004 at 08:56:31AM +0000, torvalds@ppc970.osdl.org wrote:
> ChangeSet 1.2159, 2004/11/15 00:56:31-08:00, torvalds@ppc970.osdl.org
>
> x86: only single-step into signal handlers if the tracer
> asked for it.
x86_64 looks to have the same issue. But I deferr to the experts (and
hope this isn't a dupe).
Signed-off-by: Tom Rini <trini@kernel.crashing.org>
--- 1.28/arch/x86_64/kernel/signal.c 2004-09-08 11:52:55 -07:00
+++ edited/arch/x86_64/kernel/signal.c 2004-11-18 08:27:59 -07:00
@@ -325,7 +325,7 @@
set_fs(USER_DS);
if (regs->eflags & TF_MASK) {
- if (current->ptrace & PT_PTRACED) {
+ if ((current->ptrace & (PT_PTRACED | PT_DTRACE)) == (PT_PTRACED | PT_DTRACE)) {
ptrace_notify(SIGTRAP);
} else {
regs->eflags &= ~TF_MASK;
--
Tom Rini
http://gate.crashing.org/~trini/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [discuss] [PATCH 2.6.10-rc2] x86_64: only single-step into signal handlers if the tracer asked for it
2004-11-18 15:42 ` [PATCH 2.6.10-rc2] x86_64: only single-step into signal handlers if the tracer asked for it Tom Rini
@ 2004-11-18 20:46 ` Andi Kleen
0 siblings, 0 replies; 5+ messages in thread
From: Andi Kleen @ 2004-11-18 20:46 UTC (permalink / raw)
To: Tom Rini; +Cc: discuss, Kernel Mailing List, ak
On Thu, Nov 18, 2004 at 08:42:19AM -0700, Tom Rini wrote:
> On Mon, Nov 15, 2004 at 08:56:31AM +0000, torvalds@ppc970.osdl.org wrote:
>
> > ChangeSet 1.2159, 2004/11/15 00:56:31-08:00, torvalds@ppc970.osdl.org
> >
> > x86: only single-step into signal handlers if the tracer
> > asked for it.
>
> x86_64 looks to have the same issue. But I deferr to the experts (and
> hope this isn't a dupe).
Looks good, thanks.
-Andi
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-11-18 21:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200411150203.iAF23Trb024677@hera.kernel.org>
2004-11-15 2:20 ` x86: only single-step into signal handlers if the tracer Jeff Garzik
2004-11-15 2:44 ` Andrew Morton
2004-11-15 12:10 ` Alexander Nyberg
2004-11-18 15:42 ` [PATCH 2.6.10-rc2] x86_64: only single-step into signal handlers if the tracer asked for it Tom Rini
2004-11-18 20:46 ` [discuss] " Andi Kleen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox