mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
nptl: Fix PTHREAD_PRIO_PROTECT timed lock
The878fe624d4
changed lll_futex_timed_wait, which expects a relative timeout, with a __futex_abstimed_wait64, which expects an absolute timeout. However the code still passes a relative timeout. Also, the PTHREAD_PRIO_PROTECT support for clocks different than CLOCK_REALTIME was broken since the inclusion of pthread_mutex_clocklock (9d20e22e46
) since lll_futex_timed_wait always use CLOCK_REALTIME. This patch fixes by removing the relative time calculation. It also adds some xtests that tests both thread and inter-process usage. Checked on x86_64-linux-gnu.
This commit is contained in:
parent
9ff2674ef8
commit
71eeae0325
@ -309,7 +309,8 @@ tests-internal := tst-robustpi8 tst-rwlock19 tst-rwlock20 \
|
|||||||
tst-setgetname \
|
tst-setgetname \
|
||||||
|
|
||||||
xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \
|
xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \
|
||||||
tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 tst-setgroups
|
tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 tst-setgroups \
|
||||||
|
tst-mutexpp5 tst-mutexpp9
|
||||||
|
|
||||||
# This test can run into task limits because of a linux kernel bug
|
# This test can run into task limits because of a linux kernel bug
|
||||||
# and then cause the make process to fail too, see bug 24537.
|
# and then cause the make process to fail too, see bug 24537.
|
||||||
|
@ -547,30 +547,11 @@ __pthread_mutex_clocklock_common (pthread_mutex_t *mutex,
|
|||||||
goto failpp;
|
goto failpp;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct __timespec64 rt;
|
int e = __futex_abstimed_wait64 (
|
||||||
|
(unsigned int *) &mutex->__data.__lock, ceilval | 2,
|
||||||
/* Get the current time. */
|
clockid, abstime, PTHREAD_MUTEX_PSHARED (mutex));
|
||||||
__clock_gettime64 (CLOCK_REALTIME, &rt);
|
if (e == ETIMEDOUT)
|
||||||
|
return ETIMEDOUT;
|
||||||
/* Compute relative timeout. */
|
|
||||||
rt.tv_sec = abstime->tv_sec - rt.tv_sec;
|
|
||||||
rt.tv_nsec = abstime->tv_nsec - rt.tv_nsec;
|
|
||||||
if (rt.tv_nsec < 0)
|
|
||||||
{
|
|
||||||
rt.tv_nsec += 1000000000;
|
|
||||||
--rt.tv_sec;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Already timed out? */
|
|
||||||
if (rt.tv_sec < 0)
|
|
||||||
{
|
|
||||||
result = ETIMEDOUT;
|
|
||||||
goto failpp;
|
|
||||||
}
|
|
||||||
|
|
||||||
__futex_abstimed_wait64 (
|
|
||||||
(unsigned int *) &mutex->__data.__lock, clockid,
|
|
||||||
ceilval | 2, &rt, PTHREAD_MUTEX_PSHARED (mutex));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (atomic_compare_and_exchange_val_acq (&mutex->__data.__lock,
|
while (atomic_compare_and_exchange_val_acq (&mutex->__data.__lock,
|
||||||
|
2
nptl/tst-mutexpp5.c
Normal file
2
nptl/tst-mutexpp5.c
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#define ENABLE_PP 1
|
||||||
|
#include "tst-mutex5.c"
|
2
nptl/tst-mutexpp9.c
Normal file
2
nptl/tst-mutexpp9.c
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#define ENABLE_PP 1
|
||||||
|
#include "tst-mutex9.c"
|
@ -27,6 +27,9 @@
|
|||||||
#include <support/check.h>
|
#include <support/check.h>
|
||||||
#include <support/timespec.h>
|
#include <support/timespec.h>
|
||||||
|
|
||||||
|
#ifdef ENABLE_PP
|
||||||
|
#include "tst-tpp.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef TYPE
|
#ifndef TYPE
|
||||||
# define TYPE PTHREAD_MUTEX_NORMAL
|
# define TYPE PTHREAD_MUTEX_NORMAL
|
||||||
@ -47,8 +50,11 @@ do_test_clock (clockid_t clockid, const char *fnname)
|
|||||||
TEST_COMPARE (pthread_mutexattr_init (&a), 0);
|
TEST_COMPARE (pthread_mutexattr_init (&a), 0);
|
||||||
TEST_COMPARE (pthread_mutexattr_settype (&a, TYPE), 0);
|
TEST_COMPARE (pthread_mutexattr_settype (&a, TYPE), 0);
|
||||||
|
|
||||||
#ifdef ENABLE_PI
|
#if defined ENABLE_PI
|
||||||
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_INHERIT), 0);
|
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_INHERIT), 0);
|
||||||
|
#elif defined ENABLE_PP
|
||||||
|
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_PROTECT), 0);
|
||||||
|
TEST_COMPARE (pthread_mutexattr_setprioceiling (&a, 6), 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int err = pthread_mutex_init (&m, &a);
|
int err = pthread_mutex_init (&m, &a);
|
||||||
@ -110,6 +116,10 @@ do_test_clock (clockid_t clockid, const char *fnname)
|
|||||||
|
|
||||||
static int do_test (void)
|
static int do_test (void)
|
||||||
{
|
{
|
||||||
|
#ifdef ENABLE_PP
|
||||||
|
init_tpp_test ();
|
||||||
|
#endif
|
||||||
|
|
||||||
do_test_clock (CLOCK_USE_TIMEDLOCK, "timedlock");
|
do_test_clock (CLOCK_USE_TIMEDLOCK, "timedlock");
|
||||||
do_test_clock (CLOCK_REALTIME, "clocklock(realtime)");
|
do_test_clock (CLOCK_REALTIME, "clocklock(realtime)");
|
||||||
#ifndef ENABLE_PI
|
#ifndef ENABLE_PI
|
||||||
|
@ -30,6 +30,10 @@
|
|||||||
#include <support/timespec.h>
|
#include <support/timespec.h>
|
||||||
#include <support/xunistd.h>
|
#include <support/xunistd.h>
|
||||||
|
|
||||||
|
#ifdef ENABLE_PP
|
||||||
|
#include "tst-tpp.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* A bogus clock value that tells run_test to use pthread_mutex_timedlock
|
/* A bogus clock value that tells run_test to use pthread_mutex_timedlock
|
||||||
rather than pthread_mutex_clocklock. */
|
rather than pthread_mutex_clocklock. */
|
||||||
@ -73,8 +77,11 @@ do_test_clock (clockid_t clockid)
|
|||||||
|
|
||||||
TEST_COMPARE (pthread_mutexattr_settype (&a, PTHREAD_MUTEX_RECURSIVE), 0);
|
TEST_COMPARE (pthread_mutexattr_settype (&a, PTHREAD_MUTEX_RECURSIVE), 0);
|
||||||
|
|
||||||
#ifdef ENABLE_PI
|
#if defined ENABLE_PI
|
||||||
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_INHERIT), 0);
|
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_INHERIT), 0);
|
||||||
|
#elif defined ENABLE_PP
|
||||||
|
TEST_COMPARE (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_PROTECT), 0);
|
||||||
|
TEST_COMPARE (pthread_mutexattr_setprioceiling (&a, 6), 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int e;
|
int e;
|
||||||
@ -131,6 +138,10 @@ do_test_clock (clockid_t clockid)
|
|||||||
static int
|
static int
|
||||||
do_test (void)
|
do_test (void)
|
||||||
{
|
{
|
||||||
|
#ifdef ENABLE_PP
|
||||||
|
init_tpp_test ();
|
||||||
|
#endif
|
||||||
|
|
||||||
do_test_clock (CLOCK_USE_TIMEDLOCK);
|
do_test_clock (CLOCK_USE_TIMEDLOCK);
|
||||||
do_test_clock (CLOCK_REALTIME);
|
do_test_clock (CLOCK_REALTIME);
|
||||||
#ifndef ENABLE_PI
|
#ifndef ENABLE_PI
|
||||||
|
Loading…
Reference in New Issue
Block a user