On Wed, 6 Nov 2019, Oleg Nesterov wrote: > But why we can not rely on handle_exit_race() without PF_EXITING check? > > Yes, exit_robust_list() is called before exit_pi_state_list() which (with > this patch) sets PF_EXITPIDONE. But this is fine? handle_futex_death() > doesn't wakeup pi futexes, exit_pi_state_list() does this. I know. You still create inconsistent state because of this: > raw_spin_lock_irq(&p->pi_lock); > - if (unlikely(p->flags & PF_EXITING)) { > + if (unlikely(p->flags & PF_EXITPIDONE)) { > /* > * The task is on the way out. When PF_EXITPIDONE is > * set, we know that the task has finished the > * cleanup: > */ > - int ret = handle_exit_race(uaddr, uval, p); > + int ret = handle_exit_race(uaddr, uval); > > raw_spin_unlock_irq(&p->pi_lock); > put_task_struct(p); Same explanation as before just not prosa this time: exit() lock_pi(futex2) exit_pi_state_list() lock(tsk->pi_lock) tsk->flags |= PF_EXITPIDONE; attach_to_pi_owner() ... // Loop unrolled for clarity while(!list_empty()) lock(tsk->pi_lock); cleanup(futex1) unlock(tsk->pi_lock) ... if (tsk->flags & PF_EXITPIDONE) ret = handle_exit_race() if (uval != orig_uval) return -EAGAIN; return -ESRCH; cleanup(futex2) return to userspace err = -ESRCH update futex2->uval with new owner TID and set OWNER_DIED userspace handles -ESRCH but futex2->uval has a valid TID and OWNER_DIED set. That's inconsistent state, the futex became a SNAFUtex and user space cannot recover from that. At least not existing user space and we cannot break that, right? If the kernel returns -ESRCH then the futex value must be preserved (except for the waiters bit being set, but that's not part of the problem at hand). You cannot just look at the kernel state with futexes. We have to guarantee consistent state between kernel and user space no matter what. And of course we have to be careful about user space creating inconsistent state for stupid or malicious reasons. See the whole state table above attach_to_pi_state(). The only way to fix this live lock issue is to gracefully wait for the cleanup to complete instead of busy looping. Yes, it sucks, but futexes suck by definition. Thanks, tglx