From: Peter Zijlstra <peterz@infradead.org>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: Anirban Sinha <ani@anirban.org>, Ingo Molnar <mingo@elte.hu>,
linux-kernel@vger.kernel.org, Darren Hart <dvhltc@us.ibm.com>,
Kaz Kylheku <kaz@zeugmasystems.com>,
Anirban Sinha <asinha@zeugmasystems.com>
Subject: Re: futex question
Date: Mon, 05 Oct 2009 13:58:54 +0200 [thread overview]
Message-ID: <1254743934.26976.42.camel@twins> (raw)
In-Reply-To: <1254738974.26976.24.camel@twins>
On Mon, 2009-10-05 at 12:36 +0200, Peter Zijlstra wrote:
> On Sun, 2009-10-04 at 18:59 +0200, Thomas Gleixner wrote:
>
> > > do. It does not feel right. Currently, with or without my change,
> > > such a thing would indefinitely block other waiters on the same
> > > futex.
> >
> > Right. Which completely defeats the purpose of the robust list. Will
> > have a look tomorrow.
>
> Right, so mm_release() which is meant to destroy the old mm context
> actually does exit_robust_list(), but the problem is that it does so on
> the new mm, not the old one that got passed down to mm_release().
>
> The other detail is that exit_robust_list() doesn't clear
> current->robust_list.
>
> The problem with the patch send my Ani is that it clears the robust
> lists before the point of no return, so on a failing execve() we'd have
> messed up the state.
>
> Making exit_robust_list() deal with an mm that is not the current mm is
> interesting indeed.
Hmm...
static int exec_mmap(struct mm_struct *mm)
{
struct task_struct *tsk;
struct mm_struct * old_mm, *active_mm;
/* Notify parent that we're no longer interested in the old VM */
tsk = current;
old_mm = current->mm;
mm_release(tsk, old_mm);
if (old_mm) {
/*
* Make sure that if there is a core dump in progress
* for the old mm, we get out and die instead of going
* through with the exec. We must hold mmap_sem around
* checking core_state and changing tsk->mm.
*/
down_read(&old_mm->mmap_sem);
if (unlikely(old_mm->core_state)) {
up_read(&old_mm->mmap_sem);
return -EINTR;
}
}
task_lock(tsk);
active_mm = tsk->active_mm;
tsk->mm = mm;
tsk->active_mm = mm;
activate_mm(active_mm, mm);
task_unlock(tsk);
arch_pick_mmap_layout(mm);
if (old_mm) {
up_read(&old_mm->mmap_sem);
BUG_ON(active_mm != old_mm);
mm_update_next_owner(old_mm);
mmput(old_mm);
return 0;
}
mmdrop(active_mm);
return 0;
}
Actually calls mm_release() before the flip, so the below might actually
be sufficient?
---
kernel/fork.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/kernel/fork.c b/kernel/fork.c
index 266c6af..4c20fff 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -570,12 +570,18 @@ void mm_release(struct task_struct *tsk, struct mm_struct *mm)
/* Get rid of any futexes when releasing the mm */
#ifdef CONFIG_FUTEX
- if (unlikely(tsk->robust_list))
+ if (unlikely(tsk->robust_list)) {
exit_robust_list(tsk);
+ tsk->robust_list = NULL;
+ }
#ifdef CONFIG_COMPAT
- if (unlikely(tsk->compat_robust_list))
+ if (unlikely(tsk->compat_robust_list)) {
compat_exit_robust_list(tsk);
+ tsk->compat_robust_list = NULL;
+ }
#endif
+ if (unlikely(!list_empty(&tsk->pi_state_list)))
+ exit_pi_state_list(tsk);
#endif
/* Get rid of any cached register state */
next prev parent reply other threads:[~2009-10-05 11:56 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-30 1:10 Anirban Sinha
2009-10-01 9:22 ` Ingo Molnar
2009-10-01 16:54 ` Anirban Sinha
2009-10-01 23:46 ` Anirban Sinha
2009-10-02 23:38 ` Darren Hart
2009-10-03 0:36 ` Anirban Sinha
2009-10-03 4:14 ` Eric Dumazet
2009-10-04 8:44 ` Thomas Gleixner
[not found] ` <DDFD17CC94A9BD49A82147DDF7D545C501F457C5@exchange.ZeugmaSystems.local>
2009-10-04 16:37 ` Anirban Sinha
2009-10-04 16:59 ` Thomas Gleixner
2009-10-05 10:36 ` Peter Zijlstra
2009-10-05 10:56 ` Thomas Gleixner
2009-10-05 11:16 ` Peter Zijlstra
2009-10-05 11:19 ` Ingo Molnar
2009-10-05 11:50 ` Thomas Gleixner
2009-10-05 11:47 ` Thomas Gleixner
2009-10-05 13:11 ` Anirban Sinha
2009-10-05 13:28 ` Thomas Gleixner
2009-10-05 14:03 ` Anirban Sinha
2009-10-05 18:36 ` Anirban Sinha
2009-10-05 11:58 ` Peter Zijlstra [this message]
2009-10-05 11:59 ` Thomas Gleixner
2009-10-05 12:18 ` Peter Zijlstra
2009-10-05 12:24 ` Ingo Molnar
2009-10-05 14:09 ` Darren Hart
2009-10-05 18:11 ` Anirban Sinha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1254743934.26976.42.camel@twins \
--to=peterz@infradead.org \
--cc=ani@anirban.org \
--cc=asinha@zeugmasystems.com \
--cc=dvhltc@us.ibm.com \
--cc=kaz@zeugmasystems.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome