Fix race in pthread_mutex_lock while promoting to PTHREAD_MUTEX_ELISION_NP [BZ #23275]

Message ID f3fc33e5-aa98-f772-a1bf-c02ddf9352c7@linux.ibm.com
State Superseded
Headers

Commit Message

Stefan Liebler June 12, 2018, 2:24 p.m. UTC
  Hi,

The race leads either to pthread_mutex_destroy returning EBUSY or 
triggering an assertion (See description in bugzilla).

This patch is fixing the race by ensuring that the elision path is used 
in all cases if elision is enabled by the GLIBC_TUNABLES framework.

The __kind variable in struct __pthread_mutex_s is accessed 
concurrently. Therefore we are now using the atomic macros.

The new testcase tst-mutex10 is triggering the race on s390x and intel. 
Presumably also on power, but I don't have access to a power machine 
with lock-elision. At least the code for power is the same as on the 
other two architectures. Can somebody test it on power?

Bye
Stefan

ChangeLog:

	[BZ #23275]
	* nptl/tst-mutex10.c: New File.
	* nptl/Makefile (tests): Add tst-mutex10.
	(tst-mutex-ENV): New variable.
	* sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
	Ensure that elision path is used if elision is available.
	* sysdeps/unix/sysv/linux/powerpc/force-elision.h
	(FORCE_ELISION): Likewise.
	* sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
	Likewise.
	* nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
	PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
	Use atomic_load_relaxed.
	* nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
	Likewise.
	* nptl/pthread_mutex_getprioceiling.c
	(pthread_mutex_getprioceiling): Likewise.
	* nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
	__pthread_mutex_cond_lock_adjust): Likewise.
	* nptl/pthread_mutex_setprioceiling.c
	(pthread_mutex_setprioceiling): Likewise.
	* nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
	Likewise.
	* nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
	Likewise.
	* nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
	Likewise.
	* sysdeps/nptl/bits/thread-shared-types.h
	(struct __pthread_mutex_s): Add comments.
	* nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
	Use atomic_load_relaxed and atomic_store_relaxed.
	* nptl/pthread_mutex_init.c (__pthread_mutex_init):
	Use atomic_store_relaxed.
  

Comments

Florian Weimer June 13, 2018, 8:41 a.m. UTC | #1
On 06/12/2018 04:24 PM, Stefan Liebler wrote:
> The new testcase tst-mutex10 is triggering the race on s390x and intel. 
> Presumably also on power, but I don't have access to a power machine 
> with lock-elision. At least the code for power is the same as on the 
> other two architectures. Can somebody test it on power?

I tried the test case on a machine with:

Model:                 2.0 (pvr 004d 0200)
Model name:            POWER8 (raw), altivec supported

AT_HWCAP:        true_le archpmu vsx arch_2_06 dfp ic_snoop smt mmu fpu 
altivec ppc64 ppc32
AT_HWCAP2:       htm-nosc vcrypto tar isel ebb dscr htm arch_2_07

Presumably, that should have lock elision support?

If I apply the test (and only the test) to commit 
a745c837cb51c2efe8900740548cb68ec2a2f7ab, the resulting glibc does not 
show a test failure.

Thanks,
Florian
  
Stefan Liebler June 13, 2018, 9:18 a.m. UTC | #2
On 06/13/2018 10:41 AM, Florian Weimer wrote:
> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>> The new testcase tst-mutex10 is triggering the race on s390x and 
>> intel. Presumably also on power, but I don't have access to a power 
>> machine with lock-elision. At least the code for power is the same as 
>> on the other two architectures. Can somebody test it on power?
> 
> I tried the test case on a machine with:
> 
> Model:                 2.0 (pvr 004d 0200)
> Model name:            POWER8 (raw), altivec supported
> 
> AT_HWCAP:        true_le archpmu vsx arch_2_06 dfp ic_snoop smt mmu fpu 
> altivec ppc64 ppc32
> AT_HWCAP2:       htm-nosc vcrypto tar isel ebb dscr htm arch_2_07
> 
> Presumably, that should have lock elision support?
Unfortunately, I don't know.
@Tulio: Can you answer this question?

To be sure, can you use gdb and step into pthread_mutex_lock in order to 
check if the elision path is used depending on __pthread_force_elision.
Ensure, that elision is enabled:
(gdb) set environment GLIBC_TUNABLES glibc.elision.enable=1

> 
> If I apply the test (and only the test) to commit 
> a745c837cb51c2efe8900740548cb68ec2a2f7ab, the resulting glibc does not 
> show a test failure.
I assume, that nptl/Makefile contains:
tst-mutex10-ENV = GLIBC_TUNABLES=glibc.elision.enable=1

You can use the tst-mutex10 arguments --iterations (default is 1000000) 
and --threads (default is 3). Perhaps we have to increase those values 
for power. At least on my s390x/x86_64 machine, those default values do 
trigger a test failure as pthread_mutex_destroy is returning EBUSY.

Thanks.
Stefan
  
Florian Weimer June 13, 2018, 9:36 a.m. UTC | #3
On 06/13/2018 11:18 AM, Stefan Liebler wrote:
> On 06/13/2018 10:41 AM, Florian Weimer wrote:
>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>> intel. Presumably also on power, but I don't have access to a power 
>>> machine with lock-elision. At least the code for power is the same as 
>>> on the other two architectures. Can somebody test it on power?
>>
>> I tried the test case on a machine with:
>>
>> Model:                 2.0 (pvr 004d 0200)
>> Model name:            POWER8 (raw), altivec supported
>>
>> AT_HWCAP:        true_le archpmu vsx arch_2_06 dfp ic_snoop smt mmu 
>> fpu altivec ppc64 ppc32
>> AT_HWCAP2:       htm-nosc vcrypto tar isel ebb dscr htm arch_2_07
>>
>> Presumably, that should have lock elision support?
> Unfortunately, I don't know.
> @Tulio: Can you answer this question?
> 
> To be sure, can you use gdb and step into pthread_mutex_lock in order to 
> check if the elision path is used depending on __pthread_force_elision.
> Ensure, that elision is enabled:
> (gdb) set environment GLIBC_TUNABLES glibc.elision.enable=1

__pthread_force_elision is 1.

>> If I apply the test (and only the test) to commit 
>> a745c837cb51c2efe8900740548cb68ec2a2f7ab, the resulting glibc does not 
>> show a test failure.

> I assume, that nptl/Makefile contains:
> tst-mutex10-ENV = GLIBC_TUNABLES=glibc.elision.enable=1

Yes it does.

> You can use the tst-mutex10 arguments --iterations (default is 1000000) 
> and --threads (default is 3). Perhaps we have to increase those values 
> for power. At least on my s390x/x86_64 machine, those default values do 
> trigger a test failure as pthread_mutex_destroy is returning EBUSY.

I played around with various settings, but I could not get a test 
failure.  Only a test timeout because the 50-second timeout is 
eventually not large enough.  glibc is compiled with assertions enabled.

Thanks,
Florian
  
Stefan Liebler June 13, 2018, 3:25 p.m. UTC | #4
On 06/13/2018 11:36 AM, Florian Weimer wrote:
> On 06/13/2018 11:18 AM, Stefan Liebler wrote:
>> On 06/13/2018 10:41 AM, Florian Weimer wrote:
>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>> intel. Presumably also on power, but I don't have access to a power 
>>>> machine with lock-elision. At least the code for power is the same 
>>>> as on the other two architectures. Can somebody test it on power?
>>>
>>> I tried the test case on a machine with:
>>>
>>> Model:                 2.0 (pvr 004d 0200)
>>> Model name:            POWER8 (raw), altivec supported
>>>
>>> AT_HWCAP:        true_le archpmu vsx arch_2_06 dfp ic_snoop smt mmu 
>>> fpu altivec ppc64 ppc32
>>> AT_HWCAP2:       htm-nosc vcrypto tar isel ebb dscr htm arch_2_07
>>>
>>> Presumably, that should have lock elision support?
>> Unfortunately, I don't know.
>> @Tulio: Can you answer this question?
>>
>> To be sure, can you use gdb and step into pthread_mutex_lock in order 
>> to check if the elision path is used depending on 
>> __pthread_force_elision.
>> Ensure, that elision is enabled:
>> (gdb) set environment GLIBC_TUNABLES glibc.elision.enable=1
> 
> __pthread_force_elision is 1.
> 
>>> If I apply the test (and only the test) to commit 
>>> a745c837cb51c2efe8900740548cb68ec2a2f7ab, the resulting glibc does 
>>> not show a test failure.
> 
>> I assume, that nptl/Makefile contains:
>> tst-mutex10-ENV = GLIBC_TUNABLES=glibc.elision.enable=1
> 
> Yes it does.
> 
>> You can use the tst-mutex10 arguments --iterations (default is 
>> 1000000) and --threads (default is 3). Perhaps we have to increase 
>> those values for power. At least on my s390x/x86_64 machine, those 
>> default values do trigger a test failure as pthread_mutex_destroy is 
>> returning EBUSY.
> 
> I played around with various settings, but I could not get a test 
> failure.  Only a test timeout because the 50-second timeout is 
> eventually not large enough.  glibc is compiled with assertions enabled.
> 
> Thanks,
> Florian
> 

I've also retested tst-mutex10 without the remaining patch on multiple 
s390x machines. I've found out, that it depends on the used gcc (at 
least on s390x). On one machine, gcc 6 was used. With gcc 7 / 8, the 
type of the mutex was loaded from memory multiple times.
With gcc 6, it is loaded only one time and thus all threads are 
promoting the mutex to PTHREAD_MUTEX_ELISION_NP. Then you don't see a fail.

On x86_64, I've used gcc 8. Perhaps I can try other gcc versions.
On power, perhaps gcc does also not reload the type of the mutex. I 
don't know.

On s390x, I've build the whole patch and run the testsuite with various 
gcc versions. There was no fail in tst-mutex10.

Bye.
Stefan
  
Tulio Magno Quites Machado Filho June 13, 2018, 9:44 p.m. UTC | #5
Stefan Liebler <stli@linux.ibm.com> writes:

> On 06/13/2018 10:41 AM, Florian Weimer wrote:
>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>> intel. Presumably also on power, but I don't have access to a power 
>>> machine with lock-elision. At least the code for power is the same as 
>>> on the other two architectures. Can somebody test it on power?
>> 
>> I tried the test case on a machine with:
>> 
>> Model:                 2.0 (pvr 004d 0200)
>> Model name:            POWER8 (raw), altivec supported
>> 
>> AT_HWCAP:        true_le archpmu vsx arch_2_06 dfp ic_snoop smt mmu fpu 
>> altivec ppc64 ppc32
>> AT_HWCAP2:       htm-nosc vcrypto tar isel ebb dscr htm arch_2_07
>> 
>> Presumably, that should have lock elision support?
> Unfortunately, I don't know.
> @Tulio: Can you answer this question?

Yes, this server should have lock elision.
  
Stefan Liebler June 14, 2018, 8:02 a.m. UTC | #6
> I've also retested tst-mutex10 without the remaining patch on multiple 
> s390x machines. I've found out, that it depends on the used gcc (at 
> least on s390x). On one machine, gcc 6 was used. With gcc 7 / 8, the 
> type of the mutex was loaded from memory multiple times.
> With gcc 6, it is loaded only one time and thus all threads are 
> promoting the mutex to PTHREAD_MUTEX_ELISION_NP. Then you don't see a fail.
> 
> On x86_64, I've used gcc 8. Perhaps I can try other gcc versions.
I've tried gcc 6, 7, 8 on x86_64:
-gcc 6: the mutex-type is only loaded one time from memory => no fails
-gcc 7/8: the mutex-type is loaded two times from memory => fails
  
Stefan Liebler June 19, 2018, 7:45 a.m. UTC | #7
PING

On 06/12/2018 04:24 PM, Stefan Liebler wrote:
> Hi,
> 
> The race leads either to pthread_mutex_destroy returning EBUSY or 
> triggering an assertion (See description in bugzilla).
> 
> This patch is fixing the race by ensuring that the elision path is used 
> in all cases if elision is enabled by the GLIBC_TUNABLES framework.
> 
> The __kind variable in struct __pthread_mutex_s is accessed 
> concurrently. Therefore we are now using the atomic macros.
> 
> The new testcase tst-mutex10 is triggering the race on s390x and intel. 
> Presumably also on power, but I don't have access to a power machine 
> with lock-elision. At least the code for power is the same as on the 
> other two architectures. Can somebody test it on power?
> 
> Bye
> Stefan
> 
> ChangeLog:
> 
>      [BZ #23275]
>      * nptl/tst-mutex10.c: New File.
>      * nptl/Makefile (tests): Add tst-mutex10.
>      (tst-mutex-ENV): New variable.
>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>      Ensure that elision path is used if elision is available.
>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>      (FORCE_ELISION): Likewise.
>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>      Likewise.
>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>      Use atomic_load_relaxed.
>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>      Likewise.
>      * nptl/pthread_mutex_getprioceiling.c
>      (pthread_mutex_getprioceiling): Likewise.
>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>      __pthread_mutex_cond_lock_adjust): Likewise.
>      * nptl/pthread_mutex_setprioceiling.c
>      (pthread_mutex_setprioceiling): Likewise.
>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>      Likewise.
>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>      Likewise.
>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>      Likewise.
>      * sysdeps/nptl/bits/thread-shared-types.h
>      (struct __pthread_mutex_s): Add comments.
>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>      Use atomic_load_relaxed and atomic_store_relaxed.
>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>      Use atomic_store_relaxed.
  
Stefan Liebler June 26, 2018, 6:45 a.m. UTC | #8
PING

On 06/19/2018 09:45 AM, Stefan Liebler wrote:
> PING
> 
> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>> Hi,
>>
>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>> triggering an assertion (See description in bugzilla).
>>
>> This patch is fixing the race by ensuring that the elision path is 
>> used in all cases if elision is enabled by the GLIBC_TUNABLES framework.
>>
>> The __kind variable in struct __pthread_mutex_s is accessed 
>> concurrently. Therefore we are now using the atomic macros.
>>
>> The new testcase tst-mutex10 is triggering the race on s390x and 
>> intel. Presumably also on power, but I don't have access to a power 
>> machine with lock-elision. At least the code for power is the same as 
>> on the other two architectures. Can somebody test it on power?
>>
>> Bye
>> Stefan
>>
>> ChangeLog:
>>
>>      [BZ #23275]
>>      * nptl/tst-mutex10.c: New File.
>>      * nptl/Makefile (tests): Add tst-mutex10.
>>      (tst-mutex-ENV): New variable.
>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>>      Ensure that elision path is used if elision is available.
>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>      (FORCE_ELISION): Likewise.
>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>      Likewise.
>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>      Use atomic_load_relaxed.
>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>      Likewise.
>>      * nptl/pthread_mutex_getprioceiling.c
>>      (pthread_mutex_getprioceiling): Likewise.
>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>      * nptl/pthread_mutex_setprioceiling.c
>>      (pthread_mutex_setprioceiling): Likewise.
>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>      Likewise.
>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>      Likewise.
>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>      Likewise.
>>      * sysdeps/nptl/bits/thread-shared-types.h
>>      (struct __pthread_mutex_s): Add comments.
>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>      Use atomic_store_relaxed.
>
  
Stefan Liebler July 3, 2018, 6:28 a.m. UTC | #9
PING

On 06/26/2018 08:45 AM, Stefan Liebler wrote:
> PING
> 
> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>> PING
>>
>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>> Hi,
>>>
>>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>>> triggering an assertion (See description in bugzilla).
>>>
>>> This patch is fixing the race by ensuring that the elision path is 
>>> used in all cases if elision is enabled by the GLIBC_TUNABLES framework.
>>>
>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>> concurrently. Therefore we are now using the atomic macros.
>>>
>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>> intel. Presumably also on power, but I don't have access to a power 
>>> machine with lock-elision. At least the code for power is the same as 
>>> on the other two architectures. Can somebody test it on power?
>>>
>>> Bye
>>> Stefan
>>>
>>> ChangeLog:
>>>
>>>      [BZ #23275]
>>>      * nptl/tst-mutex10.c: New File.
>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>      (tst-mutex-ENV): New variable.
>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>>>      Ensure that elision path is used if elision is available.
>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>      (FORCE_ELISION): Likewise.
>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>>      Likewise.
>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>      Use atomic_load_relaxed.
>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>      Likewise.
>>>      * nptl/pthread_mutex_getprioceiling.c
>>>      (pthread_mutex_getprioceiling): Likewise.
>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>      * nptl/pthread_mutex_setprioceiling.c
>>>      (pthread_mutex_setprioceiling): Likewise.
>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>      Likewise.
>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>      Likewise.
>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>      Likewise.
>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>      (struct __pthread_mutex_s): Add comments.
>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>      Use atomic_store_relaxed.
>>
>
  
Stefan Liebler July 10, 2018, 6:33 a.m. UTC | #10
PING

On 07/03/2018 08:28 AM, Stefan Liebler wrote:
> PING
> 
> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>> PING
>>
>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>> PING
>>>
>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>> Hi,
>>>>
>>>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>>>> triggering an assertion (See description in bugzilla).
>>>>
>>>> This patch is fixing the race by ensuring that the elision path is 
>>>> used in all cases if elision is enabled by the GLIBC_TUNABLES 
>>>> framework.
>>>>
>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>> concurrently. Therefore we are now using the atomic macros.
>>>>
>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>> intel. Presumably also on power, but I don't have access to a power 
>>>> machine with lock-elision. At least the code for power is the same 
>>>> as on the other two architectures. Can somebody test it on power?
>>>>
>>>> Bye
>>>> Stefan
>>>>
>>>> ChangeLog:
>>>>
>>>>      [BZ #23275]
>>>>      * nptl/tst-mutex10.c: New File.
>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>      (tst-mutex-ENV): New variable.
>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>>>>      Ensure that elision path is used if elision is available.
>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>      (FORCE_ELISION): Likewise.
>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>>>      Likewise.
>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>      Use atomic_load_relaxed.
>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>      Likewise.
>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>      Likewise.
>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>      Likewise.
>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>      Likewise.
>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>      (struct __pthread_mutex_s): Add comments.
>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>      Use atomic_store_relaxed.
>>>
>>
>
  
Stefan Liebler July 16, 2018, 11:56 a.m. UTC | #11
PING

On 07/10/2018 08:33 AM, Stefan Liebler wrote:
> PING
> 
> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>> PING
>>
>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>> PING
>>>
>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>> PING
>>>>
>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>> Hi,
>>>>>
>>>>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>>>>> triggering an assertion (See description in bugzilla).
>>>>>
>>>>> This patch is fixing the race by ensuring that the elision path is 
>>>>> used in all cases if elision is enabled by the GLIBC_TUNABLES 
>>>>> framework.
>>>>>
>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>
>>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>>> intel. Presumably also on power, but I don't have access to a power 
>>>>> machine with lock-elision. At least the code for power is the same 
>>>>> as on the other two architectures. Can somebody test it on power?
>>>>>
>>>>> Bye
>>>>> Stefan
>>>>>
>>>>> ChangeLog:
>>>>>
>>>>>      [BZ #23275]
>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>      (tst-mutex-ENV): New variable.
>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>>>>>      Ensure that elision path is used if elision is available.
>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>      (FORCE_ELISION): Likewise.
>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>>>>      Likewise.
>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>      Use atomic_load_relaxed.
>>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>>      Likewise.
>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>>      Likewise.
>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>      Likewise.
>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>      Likewise.
>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>      Use atomic_store_relaxed.
>>>>
>>>
>>
>
  
Stefan Liebler July 23, 2018, 6:42 a.m. UTC | #12
PING
Please have a look at the patch posted here:
https://www.sourceware.org/ml/libc-alpha/2018-06/msg00246.html

On 07/16/2018 01:56 PM, Stefan Liebler wrote:
> PING
> 
> On 07/10/2018 08:33 AM, Stefan Liebler wrote:
>> PING
>>
>> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>>> PING
>>>
>>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>>> PING
>>>>
>>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>>> PING
>>>>>
>>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>>> Hi,
>>>>>>
>>>>>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>>>>>> triggering an assertion (See description in bugzilla).
>>>>>>
>>>>>> This patch is fixing the race by ensuring that the elision path is 
>>>>>> used in all cases if elision is enabled by the GLIBC_TUNABLES 
>>>>>> framework.
>>>>>>
>>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>>
>>>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>>>> intel. Presumably also on power, but I don't have access to a 
>>>>>> power machine with lock-elision. At least the code for power is 
>>>>>> the same as on the other two architectures. Can somebody test it 
>>>>>> on power?
>>>>>>
>>>>>> Bye
>>>>>> Stefan
>>>>>>
>>>>>> ChangeLog:
>>>>>>
>>>>>>      [BZ #23275]
>>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>>      (tst-mutex-ENV): New variable.
>>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>>>>>>      Ensure that elision path is used if elision is available.
>>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>>      (FORCE_ELISION): Likewise.
>>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>>>>>      Likewise.
>>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>>      Use atomic_load_relaxed.
>>>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>>>      Likewise.
>>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>>>      Likewise.
>>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>>      Likewise.
>>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>>      Likewise.
>>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>>      Use atomic_store_relaxed.
>>>>>
>>>>
>>>
>>
>
  
Stefan Liebler July 30, 2018, 7:21 a.m. UTC | #13
PING
On 07/23/2018 08:42 AM, Stefan Liebler wrote:
> PING
> Please have a look at the patch posted here:
> https://www.sourceware.org/ml/libc-alpha/2018-06/msg00246.html
> 
> On 07/16/2018 01:56 PM, Stefan Liebler wrote:
>> PING
>>
>> On 07/10/2018 08:33 AM, Stefan Liebler wrote:
>>> PING
>>>
>>> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>>>> PING
>>>>
>>>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>>>> PING
>>>>>
>>>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>>>> PING
>>>>>>
>>>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> The race leads either to pthread_mutex_destroy returning EBUSY or 
>>>>>>> triggering an assertion (See description in bugzilla).
>>>>>>>
>>>>>>> This patch is fixing the race by ensuring that the elision path 
>>>>>>> is used in all cases if elision is enabled by the GLIBC_TUNABLES 
>>>>>>> framework.
>>>>>>>
>>>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>>>
>>>>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>>>>> intel. Presumably also on power, but I don't have access to a 
>>>>>>> power machine with lock-elision. At least the code for power is 
>>>>>>> the same as on the other two architectures. Can somebody test it 
>>>>>>> on power?
>>>>>>>
>>>>>>> Bye
>>>>>>> Stefan
>>>>>>>
>>>>>>> ChangeLog:
>>>>>>>
>>>>>>>      [BZ #23275]
>>>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>>>      (tst-mutex-ENV): New variable.
>>>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: 
>>>>>>> (FORCE_ELISION):
>>>>>>>      Ensure that elision path is used if elision is available.
>>>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>>>      (FORCE_ELISION): Likewise.
>>>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>>>>>>>      Likewise.
>>>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>>>      Use atomic_load_relaxed.
>>>>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>>>>      Likewise.
>>>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>>>>      Likewise.
>>>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>>>      Likewise.
>>>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>>>      Likewise.
>>>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>>>      Use atomic_store_relaxed.
>>>>>>
>>>>>
>>>>
>>>
>>
>
  
Stefan Liebler Aug. 27, 2018, 9:12 a.m. UTC | #14
PING
Can anybody have a look, please?

On 07/30/2018 09:21 AM, Stefan Liebler wrote:
> PING
> On 07/23/2018 08:42 AM, Stefan Liebler wrote:
>> PING
>> Please have a look at the patch posted here:
>> https://www.sourceware.org/ml/libc-alpha/2018-06/msg00246.html
>>
>> On 07/16/2018 01:56 PM, Stefan Liebler wrote:
>>> PING
>>>
>>> On 07/10/2018 08:33 AM, Stefan Liebler wrote:
>>>> PING
>>>>
>>>> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>>>>> PING
>>>>>
>>>>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>>>>> PING
>>>>>>
>>>>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>>>>> PING
>>>>>>>
>>>>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> The race leads either to pthread_mutex_destroy returning EBUSY 
>>>>>>>> or triggering an assertion (See description in bugzilla).
>>>>>>>>
>>>>>>>> This patch is fixing the race by ensuring that the elision path 
>>>>>>>> is used in all cases if elision is enabled by the GLIBC_TUNABLES 
>>>>>>>> framework.
>>>>>>>>
>>>>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>>>>
>>>>>>>> The new testcase tst-mutex10 is triggering the race on s390x and 
>>>>>>>> intel. Presumably also on power, but I don't have access to a 
>>>>>>>> power machine with lock-elision. At least the code for power is 
>>>>>>>> the same as on the other two architectures. Can somebody test it 
>>>>>>>> on power?
>>>>>>>>
>>>>>>>> Bye
>>>>>>>> Stefan
>>>>>>>>
>>>>>>>> ChangeLog:
>>>>>>>>
>>>>>>>>      [BZ #23275]
>>>>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>>>>      (tst-mutex-ENV): New variable.
>>>>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: 
>>>>>>>> (FORCE_ELISION):
>>>>>>>>      Ensure that elision path is used if elision is available.
>>>>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>>>>      (FORCE_ELISION): Likewise.
>>>>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: 
>>>>>>>> (FORCE_ELISION):
>>>>>>>>      Likewise.
>>>>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>>>>      Use atomic_load_relaxed.
>>>>>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>>>>>      Likewise.
>>>>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>>>>>      Likewise.
>>>>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>>>>      Likewise.
>>>>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>>>>      Likewise.
>>>>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>>>>      Use atomic_store_relaxed.
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>
  
Stefan Liebler Sept. 3, 2018, 7:09 a.m. UTC | #15
PING

On 08/27/2018 11:12 AM, Stefan Liebler wrote:
> PING
> Can anybody have a look, please?
> 
> On 07/30/2018 09:21 AM, Stefan Liebler wrote:
>> PING
>> On 07/23/2018 08:42 AM, Stefan Liebler wrote:
>>> PING
>>> Please have a look at the patch posted here:
>>> https://www.sourceware.org/ml/libc-alpha/2018-06/msg00246.html
>>>
>>> On 07/16/2018 01:56 PM, Stefan Liebler wrote:
>>>> PING
>>>>
>>>> On 07/10/2018 08:33 AM, Stefan Liebler wrote:
>>>>> PING
>>>>>
>>>>> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>>>>>> PING
>>>>>>
>>>>>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>>>>>> PING
>>>>>>>
>>>>>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>>>>>> PING
>>>>>>>>
>>>>>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> The race leads either to pthread_mutex_destroy returning EBUSY 
>>>>>>>>> or triggering an assertion (See description in bugzilla).
>>>>>>>>>
>>>>>>>>> This patch is fixing the race by ensuring that the elision path 
>>>>>>>>> is used in all cases if elision is enabled by the 
>>>>>>>>> GLIBC_TUNABLES framework.
>>>>>>>>>
>>>>>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>>>>>
>>>>>>>>> The new testcase tst-mutex10 is triggering the race on s390x 
>>>>>>>>> and intel. Presumably also on power, but I don't have access to 
>>>>>>>>> a power machine with lock-elision. At least the code for power 
>>>>>>>>> is the same as on the other two architectures. Can somebody 
>>>>>>>>> test it on power?
>>>>>>>>>
>>>>>>>>> Bye
>>>>>>>>> Stefan
>>>>>>>>>
>>>>>>>>> ChangeLog:
>>>>>>>>>
>>>>>>>>>      [BZ #23275]
>>>>>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>>>>>      (tst-mutex-ENV): New variable.
>>>>>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: 
>>>>>>>>> (FORCE_ELISION):
>>>>>>>>>      Ensure that elision path is used if elision is available.
>>>>>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>>>>>      (FORCE_ELISION): Likewise.
>>>>>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: 
>>>>>>>>> (FORCE_ELISION):
>>>>>>>>>      Likewise.
>>>>>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>>>>>      Use atomic_load_relaxed.
>>>>>>>>>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>>>>>>>>>      Likewise.
>>>>>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>>>>>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>>>>>>>>>      Likewise.
>>>>>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>>>>>      Likewise.
>>>>>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>>>>>      Likewise.
>>>>>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>>>>>      Use atomic_store_relaxed.
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>
  
Stefan Liebler Sept. 10, 2018, 12:01 p.m. UTC | #16
PING

On 09/03/2018 09:09 AM, Stefan Liebler wrote:
> PING
> 
> On 08/27/2018 11:12 AM, Stefan Liebler wrote:
>> PING
>> Can anybody have a look, please?
>>
>> On 07/30/2018 09:21 AM, Stefan Liebler wrote:
>>> PING
>>> On 07/23/2018 08:42 AM, Stefan Liebler wrote:
>>>> PING
>>>> Please have a look at the patch posted here:
>>>> https://www.sourceware.org/ml/libc-alpha/2018-06/msg00246.html
>>>>
>>>> On 07/16/2018 01:56 PM, Stefan Liebler wrote:
>>>>> PING
>>>>>
>>>>> On 07/10/2018 08:33 AM, Stefan Liebler wrote:
>>>>>> PING
>>>>>>
>>>>>> On 07/03/2018 08:28 AM, Stefan Liebler wrote:
>>>>>>> PING
>>>>>>>
>>>>>>> On 06/26/2018 08:45 AM, Stefan Liebler wrote:
>>>>>>>> PING
>>>>>>>>
>>>>>>>> On 06/19/2018 09:45 AM, Stefan Liebler wrote:
>>>>>>>>> PING
>>>>>>>>>
>>>>>>>>> On 06/12/2018 04:24 PM, Stefan Liebler wrote:
>>>>>>>>>> Hi,
>>>>>>>>>>
>>>>>>>>>> The race leads either to pthread_mutex_destroy returning EBUSY 
>>>>>>>>>> or triggering an assertion (See description in bugzilla).
>>>>>>>>>>
>>>>>>>>>> This patch is fixing the race by ensuring that the elision 
>>>>>>>>>> path is used in all cases if elision is enabled by the 
>>>>>>>>>> GLIBC_TUNABLES framework.
>>>>>>>>>>
>>>>>>>>>> The __kind variable in struct __pthread_mutex_s is accessed 
>>>>>>>>>> concurrently. Therefore we are now using the atomic macros.
>>>>>>>>>>
>>>>>>>>>> The new testcase tst-mutex10 is triggering the race on s390x 
>>>>>>>>>> and intel. Presumably also on power, but I don't have access 
>>>>>>>>>> to a power machine with lock-elision. At least the code for 
>>>>>>>>>> power is the same as on the other two architectures. Can 
>>>>>>>>>> somebody test it on power?
>>>>>>>>>>
>>>>>>>>>> Bye
>>>>>>>>>> Stefan
>>>>>>>>>>
>>>>>>>>>> ChangeLog:
>>>>>>>>>>
>>>>>>>>>>      [BZ #23275]
>>>>>>>>>>      * nptl/tst-mutex10.c: New File.
>>>>>>>>>>      * nptl/Makefile (tests): Add tst-mutex10.
>>>>>>>>>>      (tst-mutex-ENV): New variable.
>>>>>>>>>>      * sysdeps/unix/sysv/linux/s390/force-elision.h: 
>>>>>>>>>> (FORCE_ELISION):
>>>>>>>>>>      Ensure that elision path is used if elision is available.
>>>>>>>>>>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>>>>>>>>>>      (FORCE_ELISION): Likewise.
>>>>>>>>>>      * sysdeps/unix/sysv/linux/x86/force-elision.h: 
>>>>>>>>>> (FORCE_ELISION):
>>>>>>>>>>      Likewise.
>>>>>>>>>>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>>>>>>>>>>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>>>>>>>>>>      Use atomic_load_relaxed.
>>>>>>>>>>      * nptl/pthread_mutex_consistent.c 
>>>>>>>>>> (pthread_mutex_consistent):
>>>>>>>>>>      Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_getprioceiling.c
>>>>>>>>>>      (pthread_mutex_getprioceiling): Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>>>>>>>>>>      __pthread_mutex_cond_lock_adjust): Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_setprioceiling.c
>>>>>>>>>>      (pthread_mutex_setprioceiling): Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_timedlock.c 
>>>>>>>>>> (__pthread_mutex_timedlock):
>>>>>>>>>>      Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>>>>>>>>>>      Likewise.
>>>>>>>>>>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>>>>>>>>>>      Likewise.
>>>>>>>>>>      * sysdeps/nptl/bits/thread-shared-types.h
>>>>>>>>>>      (struct __pthread_mutex_s): Add comments.
>>>>>>>>>>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>>>>>>>>>>      Use atomic_load_relaxed and atomic_store_relaxed.
>>>>>>>>>>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>>>>>>>>>>      Use atomic_store_relaxed.
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>
  
Florian Weimer Sept. 17, 2018, 1:38 p.m. UTC | #17
On 06/12/2018 04:24 PM, Stefan Liebler wrote:

> ChangeLog:
> 
>      [BZ #23275]
>      * nptl/tst-mutex10.c: New File.
>      * nptl/Makefile (tests): Add tst-mutex10.
>      (tst-mutex-ENV): New variable.
>      * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
>      Ensure that elision path is used if elision is available.
>      * sysdeps/unix/sysv/linux/powerpc/force-elision.h
>      (FORCE_ELISION): Likewise.
>      * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
>      Likewise.
>      * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE,
>      PTHREAD_MUTEX_TYPE_ELISION, PTHREAD_MUTEX_PSHARED):
>      Use atomic_load_relaxed.
>      * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent):
>      Likewise.
>      * nptl/pthread_mutex_getprioceiling.c
>      (pthread_mutex_getprioceiling): Likewise.
>      * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
>      __pthread_mutex_cond_lock_adjust): Likewise.
>      * nptl/pthread_mutex_setprioceiling.c
>      (pthread_mutex_setprioceiling): Likewise.
>      * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock):
>      Likewise.
>      * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
>      Likewise.
>      * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full):
>      Likewise.
>      * sysdeps/nptl/bits/thread-shared-types.h
>      (struct __pthread_mutex_s): Add comments.
>      * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
>      Use atomic_load_relaxed and atomic_store_relaxed.
>      * nptl/pthread_mutex_init.c (__pthread_mutex_init):
>      Use atomic_store_relaxed.

I had another look at this.  I think the code changes are okay, but:

There is a reference to “pthread_mutex_destroy()” in the new test.  Per 
GNU style, this should just be “pthread_mutex_destroy”.

There are three places where a comma is used before “that” (as a 
conjunction).  This comma is no longer used in contemporary standard 
English.

The comment in force-elision.h references 
PTHREAD_MUTEX_TIMED_NO_ELISION_NP and not PTHREAD_MUTEX_NO_ELISION_NP. 
Is this deliberate?  I also find the second part of this comment 
confusing (which contains the flag reference) a bit confusing.  I assume 
that PTHREAD_MUTEX_NO_ELISION_NP is somehow checked before FORCE_ELISION 
is called, and that check is not racy because 
PTHREAD_MUTEX_NO_ELISION_NP is unchanged after mutex initialization.  So 
for each particular mutex, we either always enable elision as part of 
the first locking operation, or we never do.

Thanks,
Florian
  

Patch

commit 192eb225a474157bb71029c4f87cc623d7ec17d1
Author: Stefan Liebler <stli@linux.ibm.com>
Date:   Tue Jun 12 16:18:42 2018 +0200

    Fix race in pthread_mutex_lock while promoting to PTHREAD_MUTEX_ELISION_NP [BZ #23275]
    
    The race leads either to pthread_mutex_destroy returning EBUSY
    or triggering an assertion (See description in bugzilla).
    
    This patch is fixing the race by ensuring that the elision path is
    used in all cases if elision is enabled by the GLIBC_TUNABLES framework.
    
    The __kind variable in struct __pthread_mutex_s is accessed concurrently.
    Therefore we are now using the atomic macros.
    
    The new testcase tst-mutex10 is triggering the race on s390x and intel.
    Presumably also on power, but I don't have access to a power machine
    with lock-elision. At least the code for power is the same as on the other
    two architectures.
    
    ChangeLog:
    
    	[BZ #23275]
    	* nptl/tst-mutex10.c: New File.
    	* nptl/Makefile (tests): Add tst-mutex10.
    	(tst-mutex-ENV): New variable.
    	* sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
    	Ensure that elision path is used if elision is available.
    	* sysdeps/unix/sysv/linux/powerpc/force-elision.h (FORCE_ELISION):
    	Likewise.
    	* sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
    	Likewise.
    	* nptl/pthreadP.h (PTHREAD_MUTEX_TYPE, PTHREAD_MUTEX_TYPE_ELISION,
    	PTHREAD_MUTEX_PSHARED): Use atomic_load_relaxed.
    	* nptl/pthread_mutex_consistent.c (pthread_mutex_consistent): Likewise.
    	* nptl/pthread_mutex_getprioceiling.c (pthread_mutex_getprioceiling):
    	Likewise.
    	* nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full,
    	__pthread_mutex_cond_lock_adjust): Likewise.
    	* nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
    	Likewise.
    	* nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Likewise.
    	* nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
    	* nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
    	* sysdeps/nptl/bits/thread-shared-types.h (struct __pthread_mutex_s):
    	Add comments.
    	* nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
    	Use atomic_load_relaxed and atomic_store_relaxed.
    	* nptl/pthread_mutex_init.c (__pthread_mutex_init):
    	Use atomic_store_relaxed.

diff --git a/nptl/Makefile b/nptl/Makefile
index 94be92c..8dcaa5f 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -234,9 +234,9 @@  LDLIBS-tst-minstack-throw = -lstdc++
 
 tests = tst-attr1 tst-attr2 tst-attr3 tst-default-attr \
 	tst-mutex1 tst-mutex2 tst-mutex3 tst-mutex4 tst-mutex5 tst-mutex6 \
-	tst-mutex7 tst-mutex9 tst-mutex5a tst-mutex7a tst-mutex7robust \
-	tst-mutexpi1 tst-mutexpi2 tst-mutexpi3 tst-mutexpi4 tst-mutexpi5 \
-	tst-mutexpi5a tst-mutexpi6 tst-mutexpi7 tst-mutexpi7a \
+	tst-mutex7 tst-mutex9 tst-mutex10 tst-mutex5a tst-mutex7a \
+	tst-mutex7robust tst-mutexpi1 tst-mutexpi2 tst-mutexpi3 tst-mutexpi4 \
+	tst-mutexpi5 tst-mutexpi5a tst-mutexpi6 tst-mutexpi7 tst-mutexpi7a \
 	tst-mutexpi9 \
 	tst-spin1 tst-spin2 tst-spin3 tst-spin4 \
 	tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond7 \
@@ -699,6 +699,8 @@  endif
 
 $(objpfx)tst-compat-forwarder: $(objpfx)tst-compat-forwarder-mod.so
 
+tst-mutex10-ENV = GLIBC_TUNABLES=glibc.elision.enable=1
+
 # The tests here better do not run in parallel
 ifneq ($(filter %tests,$(MAKECMDGOALS)),)
 .NOTPARALLEL:
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h
index 075530c..0cdb2d8 100644
--- a/nptl/pthreadP.h
+++ b/nptl/pthreadP.h
@@ -110,19 +110,23 @@  enum
 };
 #define PTHREAD_MUTEX_PSHARED_BIT 128
 
+/* See concurrency notes regarding __kind in struct __pthread_mutex_s
+   in sysdeps/nptl/bits/thread-shared-types.h.  */
 #define PTHREAD_MUTEX_TYPE(m) \
-  ((m)->__data.__kind & 127)
+  (atomic_load_relaxed (&((m)->__data.__kind)) & 127)
 /* Don't include NO_ELISION, as that type is always the same
    as the underlying lock type.  */
 #define PTHREAD_MUTEX_TYPE_ELISION(m) \
-  ((m)->__data.__kind & (127|PTHREAD_MUTEX_ELISION_NP))
+  (atomic_load_relaxed (&((m)->__data.__kind))	\
+   & (127 | PTHREAD_MUTEX_ELISION_NP))
 
 #if LLL_PRIVATE == 0 && LLL_SHARED == 128
 # define PTHREAD_MUTEX_PSHARED(m) \
-  ((m)->__data.__kind & 128)
+  (atomic_load_relaxed (&((m)->__data.__kind)) & 128)
 #else
 # define PTHREAD_MUTEX_PSHARED(m) \
-  (((m)->__data.__kind & 128) ? LLL_SHARED : LLL_PRIVATE)
+  ((atomic_load_relaxed (&((m)->__data.__kind)) & 128)	\
+   ? LLL_SHARED : LLL_PRIVATE)
 #endif
 
 /* The kernel when waking robust mutexes on exit never uses
diff --git a/nptl/pthread_mutex_consistent.c b/nptl/pthread_mutex_consistent.c
index 85b8e1a..4fbd875 100644
--- a/nptl/pthread_mutex_consistent.c
+++ b/nptl/pthread_mutex_consistent.c
@@ -23,8 +23,11 @@ 
 int
 pthread_mutex_consistent (pthread_mutex_t *mutex)
 {
-  /* Test whether this is a robust mutex with a dead owner.  */
-  if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0
+  /* Test whether this is a robust mutex with a dead owner.
+     See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  if ((atomic_load_relaxed (&(mutex->__data.__kind))
+       & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0
       || mutex->__data.__owner != PTHREAD_MUTEX_INCONSISTENT)
     return EINVAL;
 
diff --git a/nptl/pthread_mutex_destroy.c b/nptl/pthread_mutex_destroy.c
index 5a22611..713ea68 100644
--- a/nptl/pthread_mutex_destroy.c
+++ b/nptl/pthread_mutex_destroy.c
@@ -27,12 +27,17 @@  __pthread_mutex_destroy (pthread_mutex_t *mutex)
 {
   LIBC_PROBE (mutex_destroy, 1, mutex);
 
-  if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0
+  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  if ((atomic_load_relaxed (&(mutex->__data.__kind))
+       & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0
       && mutex->__data.__nusers != 0)
     return EBUSY;
 
-  /* Set to an invalid value.  */
-  mutex->__data.__kind = -1;
+  /* Set to an invalid value.  Relaxed MO is enough as it is undefined behavior
+     if the mutex is used after it has been destroyed.  But you can reinitialize
+     it with pthread_mutex_init.  */
+  atomic_store_relaxed (&(mutex->__data.__kind), -1);
 
   return 0;
 }
diff --git a/nptl/pthread_mutex_getprioceiling.c b/nptl/pthread_mutex_getprioceiling.c
index efa37b0..ee85949 100644
--- a/nptl/pthread_mutex_getprioceiling.c
+++ b/nptl/pthread_mutex_getprioceiling.c
@@ -24,7 +24,9 @@ 
 int
 pthread_mutex_getprioceiling (const pthread_mutex_t *mutex, int *prioceiling)
 {
-  if (__builtin_expect ((mutex->__data.__kind
+  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  if (__builtin_expect ((atomic_load_relaxed (&(mutex->__data.__kind))
 			 & PTHREAD_MUTEX_PRIO_PROTECT_NP) == 0, 0))
     return EINVAL;
 
diff --git a/nptl/pthread_mutex_init.c b/nptl/pthread_mutex_init.c
index d8fe473..5cf290c 100644
--- a/nptl/pthread_mutex_init.c
+++ b/nptl/pthread_mutex_init.c
@@ -101,7 +101,7 @@  __pthread_mutex_init (pthread_mutex_t *mutex,
   memset (mutex, '\0', __SIZEOF_PTHREAD_MUTEX_T);
 
   /* Copy the values from the attribute.  */
-  mutex->__data.__kind = imutexattr->mutexkind & ~PTHREAD_MUTEXATTR_FLAG_BITS;
+  int mutex_kind = imutexattr->mutexkind & ~PTHREAD_MUTEXATTR_FLAG_BITS;
 
   if ((imutexattr->mutexkind & PTHREAD_MUTEXATTR_FLAG_ROBUST) != 0)
     {
@@ -111,17 +111,17 @@  __pthread_mutex_init (pthread_mutex_t *mutex,
 	return ENOTSUP;
 #endif
 
-      mutex->__data.__kind |= PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+      mutex_kind |= PTHREAD_MUTEX_ROBUST_NORMAL_NP;
     }
 
   switch (imutexattr->mutexkind & PTHREAD_MUTEXATTR_PROTOCOL_MASK)
     {
     case PTHREAD_PRIO_INHERIT << PTHREAD_MUTEXATTR_PROTOCOL_SHIFT:
-      mutex->__data.__kind |= PTHREAD_MUTEX_PRIO_INHERIT_NP;
+      mutex_kind |= PTHREAD_MUTEX_PRIO_INHERIT_NP;
       break;
 
     case PTHREAD_PRIO_PROTECT << PTHREAD_MUTEXATTR_PROTOCOL_SHIFT:
-      mutex->__data.__kind |= PTHREAD_MUTEX_PRIO_PROTECT_NP;
+      mutex_kind |= PTHREAD_MUTEX_PRIO_PROTECT_NP;
 
       int ceiling = (imutexattr->mutexkind
 		     & PTHREAD_MUTEXATTR_PRIO_CEILING_MASK)
@@ -145,7 +145,11 @@  __pthread_mutex_init (pthread_mutex_t *mutex,
      FUTEX_PRIVATE_FLAG FUTEX_WAKE.  */
   if ((imutexattr->mutexkind & (PTHREAD_MUTEXATTR_FLAG_PSHARED
 				| PTHREAD_MUTEXATTR_FLAG_ROBUST)) != 0)
-    mutex->__data.__kind |= PTHREAD_MUTEX_PSHARED_BIT;
+    mutex_kind |= PTHREAD_MUTEX_PSHARED_BIT;
+
+  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  atomic_store_relaxed (&(mutex->__data.__kind), mutex_kind);
 
   /* Default values: mutex not used yet.  */
   // mutex->__count = 0;	already done by memset
diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c
index 1519c14..29cc143 100644
--- a/nptl/pthread_mutex_lock.c
+++ b/nptl/pthread_mutex_lock.c
@@ -62,6 +62,8 @@  static int __pthread_mutex_lock_full (pthread_mutex_t *mutex)
 int
 __pthread_mutex_lock (pthread_mutex_t *mutex)
 {
+  /* See concurrency notes regarding mutex type which is loaded from __kind
+     in struct __pthread_mutex_s in sysdeps/nptl/bits/thread-shared-types.h.  */
   unsigned int type = PTHREAD_MUTEX_TYPE_ELISION (mutex);
 
   LIBC_PROBE (mutex_entry, 1, mutex);
@@ -350,8 +352,14 @@  __pthread_mutex_lock_full (pthread_mutex_t *mutex)
     case PTHREAD_MUTEX_PI_ROBUST_NORMAL_NP:
     case PTHREAD_MUTEX_PI_ROBUST_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
-	int robust = mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	int kind, robust;
+	{
+	  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	     in sysdeps/nptl/bits/thread-shared-types.h.  */
+	  int mutex_kind = atomic_load_relaxed (&(mutex->__data.__kind));
+	  kind = mutex_kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	  robust = mutex_kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	}
 
 	if (robust)
 	  {
@@ -502,7 +510,10 @@  __pthread_mutex_lock_full (pthread_mutex_t *mutex)
     case PTHREAD_MUTEX_PP_NORMAL_NP:
     case PTHREAD_MUTEX_PP_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	/* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	   in sysdeps/nptl/bits/thread-shared-types.h.  */
+	int kind = atomic_load_relaxed (&(mutex->__data.__kind))
+	  & PTHREAD_MUTEX_KIND_MASK_NP;
 
 	oldval = mutex->__data.__lock;
 
@@ -607,15 +618,18 @@  hidden_def (__pthread_mutex_lock)
 void
 __pthread_mutex_cond_lock_adjust (pthread_mutex_t *mutex)
 {
-  assert ((mutex->__data.__kind & PTHREAD_MUTEX_PRIO_INHERIT_NP) != 0);
-  assert ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0);
-  assert ((mutex->__data.__kind & PTHREAD_MUTEX_PSHARED_BIT) == 0);
+  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  int mutex_kind = atomic_load_relaxed (&(mutex->__data.__kind));
+  assert ((mutex_kind & PTHREAD_MUTEX_PRIO_INHERIT_NP) != 0);
+  assert ((mutex_kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0);
+  assert ((mutex_kind & PTHREAD_MUTEX_PSHARED_BIT) == 0);
 
   /* Record the ownership.  */
   pid_t id = THREAD_GETMEM (THREAD_SELF, tid);
   mutex->__data.__owner = id;
 
-  if (mutex->__data.__kind == PTHREAD_MUTEX_PI_RECURSIVE_NP)
+  if (mutex_kind == PTHREAD_MUTEX_PI_RECURSIVE_NP)
     ++mutex->__data.__count;
 }
 #endif
diff --git a/nptl/pthread_mutex_setprioceiling.c b/nptl/pthread_mutex_setprioceiling.c
index 8594874..8306cab 100644
--- a/nptl/pthread_mutex_setprioceiling.c
+++ b/nptl/pthread_mutex_setprioceiling.c
@@ -27,9 +27,10 @@  int
 pthread_mutex_setprioceiling (pthread_mutex_t *mutex, int prioceiling,
 			      int *old_ceiling)
 {
-  /* The low bits of __kind aren't ever changed after pthread_mutex_init,
-     so we don't need a lock yet.  */
-  if ((mutex->__data.__kind & PTHREAD_MUTEX_PRIO_PROTECT_NP) == 0)
+  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+     in sysdeps/nptl/bits/thread-shared-types.h.  */
+  if ((atomic_load_relaxed (&(mutex->__data.__kind))
+       & PTHREAD_MUTEX_PRIO_PROTECT_NP) == 0)
     return EINVAL;
 
   /* See __init_sched_fifo_prio.  */
diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c
index 66efd39..40b559f 100644
--- a/nptl/pthread_mutex_timedlock.c
+++ b/nptl/pthread_mutex_timedlock.c
@@ -53,6 +53,8 @@  __pthread_mutex_timedlock (pthread_mutex_t *mutex,
   /* We must not check ABSTIME here.  If the thread does not block
      abstime must not be checked for a valid value.  */
 
+  /* See concurrency notes regarding mutex type which is loaded from __kind
+     in struct __pthread_mutex_s in sysdeps/nptl/bits/thread-shared-types.h.  */
   switch (__builtin_expect (PTHREAD_MUTEX_TYPE_ELISION (mutex),
 			    PTHREAD_MUTEX_TIMED_NP))
     {
@@ -338,8 +340,14 @@  __pthread_mutex_timedlock (pthread_mutex_t *mutex,
     case PTHREAD_MUTEX_PI_ROBUST_NORMAL_NP:
     case PTHREAD_MUTEX_PI_ROBUST_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
-	int robust = mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	int kind, robust;
+	{
+	  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	     in sysdeps/nptl/bits/thread-shared-types.h.  */
+	  int mutex_kind = atomic_load_relaxed (&(mutex->__data.__kind));
+	  kind = mutex_kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	  robust = mutex_kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	}
 
 	if (robust)
 	  {
@@ -509,7 +517,10 @@  __pthread_mutex_timedlock (pthread_mutex_t *mutex,
     case PTHREAD_MUTEX_PP_NORMAL_NP:
     case PTHREAD_MUTEX_PP_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	/* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	   in sysdeps/nptl/bits/thread-shared-types.h.  */
+	int kind = atomic_load_relaxed (&(mutex->__data.__kind))
+	  & PTHREAD_MUTEX_KIND_MASK_NP;
 
 	oldval = mutex->__data.__lock;
 
diff --git a/nptl/pthread_mutex_trylock.c b/nptl/pthread_mutex_trylock.c
index 7de61f4..fa90c1d 100644
--- a/nptl/pthread_mutex_trylock.c
+++ b/nptl/pthread_mutex_trylock.c
@@ -36,6 +36,8 @@  __pthread_mutex_trylock (pthread_mutex_t *mutex)
   int oldval;
   pid_t id = THREAD_GETMEM (THREAD_SELF, tid);
 
+  /* See concurrency notes regarding mutex type which is loaded from __kind
+     in struct __pthread_mutex_s in sysdeps/nptl/bits/thread-shared-types.h.  */
   switch (__builtin_expect (PTHREAD_MUTEX_TYPE_ELISION (mutex),
 			    PTHREAD_MUTEX_TIMED_NP))
     {
@@ -199,8 +201,14 @@  __pthread_mutex_trylock (pthread_mutex_t *mutex)
     case PTHREAD_MUTEX_PI_ROBUST_NORMAL_NP:
     case PTHREAD_MUTEX_PI_ROBUST_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
-	int robust = mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	int kind, robust;
+	{
+	  /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	     in sysdeps/nptl/bits/thread-shared-types.h.  */
+	  int mutex_kind = atomic_load_relaxed (&(mutex->__data.__kind));
+	  kind = mutex_kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	  robust = mutex_kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+	}
 
 	if (robust)
 	  /* Note: robust PI futexes are signaled by setting bit 0.  */
@@ -325,7 +333,10 @@  __pthread_mutex_trylock (pthread_mutex_t *mutex)
     case PTHREAD_MUTEX_PP_NORMAL_NP:
     case PTHREAD_MUTEX_PP_ADAPTIVE_NP:
       {
-	int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP;
+	/* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	   in sysdeps/nptl/bits/thread-shared-types.h.  */
+	int kind = atomic_load_relaxed (&(mutex->__data.__kind))
+	  & PTHREAD_MUTEX_KIND_MASK_NP;
 
 	oldval = mutex->__data.__lock;
 
diff --git a/nptl/pthread_mutex_unlock.c b/nptl/pthread_mutex_unlock.c
index 9ea6294..68d04d5 100644
--- a/nptl/pthread_mutex_unlock.c
+++ b/nptl/pthread_mutex_unlock.c
@@ -35,6 +35,8 @@  int
 attribute_hidden
 __pthread_mutex_unlock_usercnt (pthread_mutex_t *mutex, int decr)
 {
+  /* See concurrency notes regarding mutex type which is loaded from __kind
+     in struct __pthread_mutex_s in sysdeps/nptl/bits/thread-shared-types.h.  */
   int type = PTHREAD_MUTEX_TYPE_ELISION (mutex);
   if (__builtin_expect (type &
 		~(PTHREAD_MUTEX_KIND_MASK_NP|PTHREAD_MUTEX_ELISION_FLAGS_NP), 0))
@@ -222,13 +224,19 @@  __pthread_mutex_unlock_full (pthread_mutex_t *mutex, int decr)
       /* If the previous owner died and the caller did not succeed in
 	 making the state consistent, mark the mutex as unrecoverable
 	 and make all waiters.  */
-      if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) != 0
+      /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	 in sysdeps/nptl/bits/thread-shared-types.h.  */
+      if ((atomic_load_relaxed (&(mutex->__data.__kind))
+	   & PTHREAD_MUTEX_ROBUST_NORMAL_NP) != 0
 	  && __builtin_expect (mutex->__data.__owner
 			       == PTHREAD_MUTEX_INCONSISTENT, 0))
       pi_notrecoverable:
        newowner = PTHREAD_MUTEX_NOTRECOVERABLE;
 
-      if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) != 0)
+      /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	 in sysdeps/nptl/bits/thread-shared-types.h.  */
+      if ((atomic_load_relaxed (&(mutex->__data.__kind))
+	   & PTHREAD_MUTEX_ROBUST_NORMAL_NP) != 0)
 	{
 	continue_pi_robust:
 	  /* Remove mutex from the list.
@@ -251,7 +259,10 @@  __pthread_mutex_unlock_full (pthread_mutex_t *mutex, int decr)
       /* Unlock.  Load all necessary mutex data before releasing the mutex
 	 to not violate the mutex destruction requirements (see
 	 lll_unlock).  */
-      int robust = mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP;
+      /* See concurrency notes regarding __kind in struct __pthread_mutex_s
+	 in sysdeps/nptl/bits/thread-shared-types.h.  */
+      int robust = atomic_load_relaxed (&(mutex->__data.__kind))
+	& PTHREAD_MUTEX_ROBUST_NORMAL_NP;
       private = (robust
 		 ? PTHREAD_ROBUST_MUTEX_PSHARED (mutex)
 		 : PTHREAD_MUTEX_PSHARED (mutex));
diff --git a/nptl/tst-mutex10.c b/nptl/tst-mutex10.c
new file mode 100644
index 0000000..bbbb2d1
--- /dev/null
+++ b/nptl/tst-mutex10.c
@@ -0,0 +1,109 @@ 
+/* Testing race while enabling lock elision.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <getopt.h>
+#include <support/support.h>
+#include <support/xthread.h>
+
+static pthread_barrier_t barrier;
+static pthread_mutex_t mutex;
+static long long int iteration_count = 1000000;
+static unsigned int thread_count = 3;
+
+static void *
+thr_func (void *arg)
+{
+  long long int i;
+  for (i = 0; i < iteration_count; i++)
+    {
+      if ((uintptr_t) arg == 0)
+	{
+	  xpthread_mutex_destroy (&mutex);
+	  xpthread_mutex_init (&mutex, NULL);
+	}
+
+      xpthread_barrier_wait (&barrier);
+
+      /* Test if enabling lock elision works if it is enabled concurrently.
+	 There was a race in FORCE_ELISION macro which leads to either
+	 pthread_mutex_destroy() returning EBUSY as the owner was recorded
+	 by pthread_mutex_lock - in "normal mutex" code path - but was not
+	 resetted in pthread_mutex_unlock - in "elision" code path.
+	 Or it leads to the assertion in nptl/pthread_mutex_lock.c:
+	 assert (mutex->__data.__owner == 0);
+	 Please ensure that the test is run with lock elision:
+	 export GLIBC_TUNABLES=glibc.elision.enable=1  */
+      xpthread_mutex_lock (&mutex);
+      xpthread_mutex_unlock (&mutex);
+
+      xpthread_barrier_wait (&barrier);
+    }
+  return NULL;
+}
+
+static int
+do_test (void)
+{
+  unsigned int i;
+  printf ("Starting %d threads to run %lld iterations.\n",
+	  thread_count, iteration_count);
+
+  pthread_t *threads = xmalloc (thread_count * sizeof (pthread_t));
+  xpthread_barrier_init (&barrier, NULL, thread_count);
+  xpthread_mutex_init (&mutex, NULL);
+
+  for (i = 0; i < thread_count; i++)
+    threads[i] = xpthread_create (NULL, thr_func, (void *) (uintptr_t) i);
+
+  for (i = 0; i < thread_count; i++)
+    xpthread_join (threads[i]);
+
+  xpthread_barrier_destroy (&barrier);
+  free (threads);
+
+  return EXIT_SUCCESS;
+}
+
+#define OPT_ITERATIONS	10000
+#define OPT_THREADS	10001
+#define CMDLINE_OPTIONS						\
+  { "iterations", required_argument, NULL, OPT_ITERATIONS },	\
+  { "threads", required_argument, NULL, OPT_THREADS },
+static void
+cmdline_process (int c)
+{
+  long long int arg = strtoll (optarg, NULL, 0);
+  switch (c)
+    {
+    case OPT_ITERATIONS:
+      if (arg > 0)
+	iteration_count = arg;
+      break;
+    case OPT_THREADS:
+      if (arg > 0 && arg < 100)
+	thread_count = arg;
+      break;
+    }
+}
+#define CMDLINE_PROCESS cmdline_process
+#define TIMEOUT 50
+#include <support/test-driver.c>
diff --git a/sysdeps/nptl/bits/thread-shared-types.h b/sysdeps/nptl/bits/thread-shared-types.h
index 1e2092a..05c94e7 100644
--- a/sysdeps/nptl/bits/thread-shared-types.h
+++ b/sysdeps/nptl/bits/thread-shared-types.h
@@ -124,7 +124,27 @@  struct __pthread_mutex_s
   unsigned int __nusers;
 #endif
   /* KIND must stay at this position in the structure to maintain
-     binary compatibility with static initializers.  */
+     binary compatibility with static initializers.
+
+     Concurrency notes:
+     The __kind of a mutex is initialized either by the static
+     PTHREAD_MUTEX_INITIALIZER or by a call to pthread_mutex_init.
+
+     After a mutex has been initialized, the __kind of a mutex is usually not
+     changed.  BUT it can be set to -1 in pthread_mutex_destroy or elision can
+     be enabled.  This is done concurrently in the pthread_mutex_*lock functions
+     by using the macro FORCE_ELISION. This macro is only defined for
+     architectures which supports lock elision.
+
+     For elision, there are the flags PTHREAD_MUTEX_ELISION_NP and
+     PTHREAD_MUTEX_NO_ELISION_NP which can be set in addition to the already set
+     type of a mutex.
+     Before a mutex is initialized, only PTHREAD_MUTEX_NO_ELISION_NP can be set
+     with pthread_mutexattr_settype.
+     After a mutex has been initialized, the functions pthread_mutex_*lock can
+     enable elision - if the mutex-type and the machine supports it - by setting
+     the flag PTHREAD_MUTEX_ELISION_NP. This is done concurrently. Afterwards
+     the lock / unlock functions are using specific elision code-paths.  */
   int __kind;
   __PTHREAD_COMPAT_PADDING_MID
 #if __PTHREAD_MUTEX_NUSERS_AFTER_KIND
diff --git a/sysdeps/unix/sysv/linux/powerpc/force-elision.h b/sysdeps/unix/sysv/linux/powerpc/force-elision.h
index fe5d6ce..3763ff3 100644
--- a/sysdeps/unix/sysv/linux/powerpc/force-elision.h
+++ b/sysdeps/unix/sysv/linux/powerpc/force-elision.h
@@ -18,9 +18,30 @@ 
 
 /* Automatically enable elision for existing user lock kinds.  */
 #define FORCE_ELISION(m, s)						\
-  if (__pthread_force_elision						\
-      && (m->__data.__kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)	\
+  if (__pthread_force_elision)						\
     {									\
-      mutex->__data.__kind |= PTHREAD_MUTEX_ELISION_NP;			\
-      s;								\
+      /* Enable elision if we haven't enabled it so far.		\
+	 Note: It can happen that multiple threads are calling e.g.	\
+	 pthread_mutex_lock at the same time. Then elision is enabled	\
+	 for this mutex by multiple threads at the same time.		\
+	 Storing with relaxed MO is enough as all threads will store	\
+	 the same new kind.						\
+	 But we have to ensure, that we always use the elision path	\
+	 regardless if this thread has enabled elision or another one.	\
+	 Currently nobody sets PTHREAD_MUTEX_TIMED_NO_ELISION_NP	\
+	 concurrently after the mutex has been initialized.		\
+	 But this flag can be set with __pthread_mutexattr_settype.	\
+	 See concurrency notes regarding __kind in			\
+	 struct __pthread_mutex_s in					\
+	 sysdeps/nptl/bits/thread-shared-types.h.  */			\
+      int mutex_kind = atomic_load_relaxed (&((m)->__data.__kind));	\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)		\
+	{								\
+	  mutex_kind |= PTHREAD_MUTEX_ELISION_NP;			\
+	  atomic_store_relaxed (&((m)->__data.__kind), mutex_kind);	\
+	}								\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_NP) != 0)			\
+	{								\
+	  s;								\
+	}								\
     }
diff --git a/sysdeps/unix/sysv/linux/s390/force-elision.h b/sysdeps/unix/sysv/linux/s390/force-elision.h
index d8a1b99..753f4be 100644
--- a/sysdeps/unix/sysv/linux/s390/force-elision.h
+++ b/sysdeps/unix/sysv/linux/s390/force-elision.h
@@ -18,9 +18,30 @@ 
 
 /* Automatically enable elision for existing user lock kinds.  */
 #define FORCE_ELISION(m, s)						\
-  if (__pthread_force_elision						\
-      && (m->__data.__kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)	\
+  if (__pthread_force_elision)						\
     {									\
-      mutex->__data.__kind |= PTHREAD_MUTEX_ELISION_NP;			\
-      s;								\
+      /* Enable elision if we haven't enabled it so far.		\
+	 Note: It can happen that multiple threads are calling e.g.	\
+	 pthread_mutex_lock at the same time. Then elision is enabled	\
+	 for this mutex by multiple threads at the same time.		\
+	 Storing with relaxed MO is enough as all threads will store	\
+	 the same new kind.						\
+	 But we have to ensure, that we always use the elision path	\
+	 regardless if this thread has enabled elision or another one.	\
+	 Currently nobody sets PTHREAD_MUTEX_TIMED_NO_ELISION_NP	\
+	 concurrently after the mutex has been initialized.		\
+	 But this flag can be set with __pthread_mutexattr_settype.	\
+	 See concurrency notes regarding __kind in			\
+	 struct __pthread_mutex_s in					\
+	 sysdeps/nptl/bits/thread-shared-types.h.  */			\
+      int mutex_kind = atomic_load_relaxed (&((m)->__data.__kind));	\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)		\
+	{								\
+	  mutex_kind |= PTHREAD_MUTEX_ELISION_NP;			\
+	  atomic_store_relaxed (&((m)->__data.__kind), mutex_kind);	\
+	}								\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_NP) != 0)			\
+	{								\
+	  s;								\
+	}								\
     }
diff --git a/sysdeps/unix/sysv/linux/x86/force-elision.h b/sysdeps/unix/sysv/linux/x86/force-elision.h
index dd659c9..c021aad 100644
--- a/sysdeps/unix/sysv/linux/x86/force-elision.h
+++ b/sysdeps/unix/sysv/linux/x86/force-elision.h
@@ -18,9 +18,30 @@ 
 
 /* Automatically enable elision for existing user lock kinds.  */
 #define FORCE_ELISION(m, s)						\
-  if (__pthread_force_elision						\
-      && (m->__data.__kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)	\
+  if (__pthread_force_elision)						\
     {									\
-      mutex->__data.__kind |= PTHREAD_MUTEX_ELISION_NP;			\
-      s;								\
+      /* Enable elision if we haven't enabled it so far.		\
+	 Note: It can happen that multiple threads are calling e.g.	\
+	 pthread_mutex_lock at the same time. Then elision is enabled	\
+	 for this mutex by multiple threads at the same time.		\
+	 Storing with relaxed MO is enough as all threads will store	\
+	 the same new kind.						\
+	 But we have to ensure, that we always use the elision path	\
+	 regardless if this thread has enabled elision or another one.	\
+	 Currently nobody sets PTHREAD_MUTEX_TIMED_NO_ELISION_NP	\
+	 concurrently after the mutex has been initialized.		\
+	 But this flag can be set with __pthread_mutexattr_settype.	\
+	 See concurrency notes regarding __kind in			\
+	 struct __pthread_mutex_s in					\
+	 sysdeps/nptl/bits/thread-shared-types.h.  */			\
+      int mutex_kind = atomic_load_relaxed (&((m)->__data.__kind));	\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_FLAGS_NP) == 0)		\
+	{								\
+	  mutex_kind |= PTHREAD_MUTEX_ELISION_NP;			\
+	  atomic_store_relaxed (&((m)->__data.__kind), mutex_kind);	\
+	}								\
+      if ((mutex_kind & PTHREAD_MUTEX_ELISION_NP) != 0)			\
+	{								\
+	  s;								\
+	}								\
     }