lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 16 Mar 2021 11:03:05 -0700
From:   Davidlohr Bueso <dave@...olabs.net>
To:     Peter Zijlstra <peterz@...radead.org>
Cc:     tglx@...utronix.de, mingo@...hat.com, dvhart@...radead.org,
        linux-kernel@...r.kernel.org, Davidlohr Bueso <dbueso@...e.de>
Subject: Re: [PATCH 2/2] futex: Leave the pi lock stealer in a consistent
 state upon successful fault

On Tue, 16 Mar 2021, Peter Zijlstra wrote:
>
>IIRC we made the explicit choice to never loop here. That saves having
>to worry about getting stuck in in-kernel loops.
>
>Userspace triggering the case where the futex goes corrupt is UB, after
>that we have no obligation for anything to still work. It's on them,
>they get to deal with the bits remaining.

I was kind of expecting this answer, honestly. After all, we are warned
about violations to the 10th:

  * [10] There is no transient state which leaves owner and user space
  *      TID out of sync. Except one error case where the kernel is denied
  *      write access to the user address, see fixup_pi_state_owner().

(btw, should we actually WARN_ON_ONCE this case such that the user is
well aware things are screwed up?)

However, as 34b1a1ce145 describes, it was cared enough about users to
protect them against spurious runaway tasks. And this is why I decided
to even send the patch; it fixes, without sacrificing performance or
additional complexity, a potentially user visible issue which could be
due to programming error. And unlike 34b1a1ce145, where a stealer that
cannot fault ends up dropping the lock, here the stealer can actually
amend things and not break semantics because of another task's stupidity.
But yeah, this could also be considered in the category of inept attempts
to fix a rotten situation.

Thanks,
Davidlohr

Powered by blists - more mailing lists