Re: pthread_mutex_lock hangs on unlocked mutex

Previous thread: RE: UWB, WUSB, and WLP subsystems for 2.6.28 by Law Sie Yong on Friday, November 7, 2008 - 2:02 am. (1 message)

Next thread: linux-next: Tree for November 7 by Stephen Rothwell on Friday, November 7, 2008 - 2:54 am. (10 messages)
From: Michael Dressel
Date: Friday, November 7, 2008 - 1:43 am

Hi,

(I'm not subscribed to the list, please CC me.)

in our software three processes are using several pthread mutexes.
Sometimes a process hangs inside pthread_mutex_lock even though the mutex is
not locked. I can tell it's not locked because another process is still
running and locking and unlocking the mutex.
When I connect with gdb to the hanging process I find:

#0  0xffffe430 in __kernel_vsyscall ()
#1  0xf7d5e7a9 in __lll_lock_wait () from /lib/libpthread.so.0
#2  0xf7d59c75 in _L_lock_288 () from /lib/libpthread.so.0
#3  0xf7d596c5 in pthread_mutex_lock () from /lib/libpthread.so.0
#4  0xf7e444b6 in pthread_mutex_lock () from /lib/libc.so.6
#5  0x080fb338 in <myfunction> (mutexP=0x70f4165c)

And the mutexP looks like this:
$1 = {__data = {__lock = 0, __count = 0, __owner = 0, __kind = 1,
     __nusers = 0, {__spins = 0, __list = {__next = 0x0}}},
   __size = '\0' <repeats 12 times>, "\001\000\000\000\000\000\000\000\000\000\00
0", __align = 0}

I guess the process had to wait for the mutex but when the mutex was unlocked
the signal to the waiting process got lost.

Our software was build on a SUUSE 10.1
 	kernel 2.6.16.13-4-default
 	glibc-32bit-2.4-27
system as 32 bit binary. On This system the problem does not occur.

The system showing the problem is a dual processor SUSE 11.0
 	kernel 2.6.25.18-0.2-default
 	glibc-32bit-2.8-14.1
system. Also if the second core is disabled in the BIOS we have the
problem. Some more details of the system are listed below.

When the system hangs it does not recover from that situation. But if
I send a kill -STOP <pid>; kill -CONT <pid> sequence to the hanging
process it does continue.
The same effect is reached by connecting and disconnecting with gdb.

Is there any way, either in configuring the system or pthread, to prevent
this problem?

Cheers,
Michael

openSUSE 11.0 (X86-64)

Linux 2.6.25.18-0.2-default #1 SMP 2008-10-21 16:30:26 +0200 x86_64 x86_64 x86_64 GNU/Linux

glibc-32bit-2.8-14.1

processor       : ...
From: Bart Van Assche
Date: Friday, November 7, 2008 - 3:47 am

On Fri, Nov 7, 2008 at 9:43 AM, Michael Dressel

LKML is a mailing list to discuss kernel issues. What you report is
most likely a userspace issue. Please check your application with the
Valgrind tools memcheck, helgrind and/or drd first.

Bart.
--

From: Ian Kent
Date: Wednesday, November 12, 2008 - 10:43 pm

pthreads is implemented in glibc.
If you really think there is a bug in the ptheads implementation then 
the glibc maintainers will require you to produce a simple example program 
which demonstrates the bug before it's accepted as a bug.

When you say processes you mean threads, right?

If you can't produce such an example program and you can you prove (to 
yourself) there are no use after free or execution order issues with your 
code then your only option is to develop a workaround.

You code wouldn't happen to be doing thread synchronization with 
--

From: Michael Dressel
Date: Thursday, November 13, 2008 - 1:04 am

Yes.
I have not found any report related exactly to my problem in the
mailing lists or bug reports. But to be sure I didn't overlook something
I posted my problem. It looks like it's unique to me.

I failed to produce a simple example demonstrating the problem. In our
code we use timers and real time signals and we change process masks
with sigprocmask. If there is a bug at all (I don't think so) a
program to demonstrate that bug would potentially have to do all of
these things and would therefore not be simple.

Following Bart Van Assche's suggestion.
I did use valgrind (the default tool and helgrind) but I did not find

No. We don't use threads. The mutexes are used between processes. I used

I found a workaround. We use normal semaphores now. This is possible
because we don't use multiple threads. In order to provide recursion I
had to implement a per process counter. This would not work if the
semaphore was required during signal handler execution. But this dose not

No since we don't use multiple threads.

The reason why I wondered it is an issue (maybe configuration) of the
kernel was that sending a STOP CONT signal sequence to the hanging
process got it going again. So at least it is not a classical dead lock.

Cheers,
 	Michael

--

Previous thread: RE: UWB, WUSB, and WLP subsystems for 2.6.28 by Law Sie Yong on Friday, November 7, 2008 - 2:02 am. (1 message)

Next thread: linux-next: Tree for November 7 by Stephen Rothwell on Friday, November 7, 2008 - 2:54 am. (10 messages)