vote up 1 vote down star
1

I have a program which:

  • has a main thread (1) which starts a server thread (2) and another (4).
  • the server thread (2) does an accept(), then creates a new thread (3) to handle the connection.

At some point, thread (4) does a fork/exec to run another program which should connect to the socket that thread (2) is listening to. Occasionally this fails or takes an unreasonably long time, and it's extremely difficult to diagnose. If I strace the system, it appears that the fork/exec has worked, the accept has happened, the new thread (4) has been created .. but nothing happens in that thread (using strace -ff, the file for the relevant pid is blank).

Any ideas?

flag
What is your Main Thread(1) doing after creating (2) and (4)? Is it waiting on (2) forever or until some condition? – Los Sep 11 at 18:13
(1) goes and waits for keyboard input (using something very similar to readline), which it forms into commands that are handed over to (4) via a locked queue. – pjc50 Sep 14 at 9:51

4 Answers

vote up 0 vote down check

I came to the conclusion that it was probably this phenomenon:

http://kerneltrap.org/mailarchive/linux-kernel/2008/8/15/2950234/thread

as the bug is difficult to trigger on our development systems but is generally reported by users running on large shared machines; also the forked application starts a JVM, which itself allocates a lot of threads. The problem is also associated with the machine being loaded, and extensive memory usage (we have a machine with 128Gb of RAM and processes may be 10-100G in size).

I've been reading the O'Reilly pthreads book, which explains pthread_atfork(), and suggests the use of a "surrogate parent" process forked from the main process at startup from which subprocesses are run. It also suggests the use of a pre-created thread pool. Both of these seem like good ideas, so I'm going to implement at least one of them.

link|flag
vote up 0 vote down

Be very careful with multiple threads and fork. Most of glibc/libstdc++ is thread safe. If a thread, other than the forking thread, is holding a lock when the fork executes the forked process will inherit the mutexes in their current locked state. The new process will never see those mutexes unlocked. For more information see man pthread_atfork.

link|flag
vote up 1 vote down

It's look like a deadlock condition. Look for blocking functions, like accept(), the problem should be there.

link|flag
vote up 0 vote down

Decrease the code to the smallest possible size that still has the behavior and post it here. Either you will find the answer or we will be able to track it down.

BTW - http://lists.samba.org/archive/linux/2002-February/002171.html it seems that pthread behavior for exec is not well defined and may depend on your OS.

Do you have any code between fork and exec? This may be a problem.

link|flag
That link seems to describe problems with exec without a fork, which may not be the same thing. There's not a lot of code between fork and exec; the fork/exec is actually done in a Tcl interpreter (using tcl's "exec ... &") Small testcase may be difficult as I can't reliably reproduce it with the huge application. – pjc50 Sep 11 at 16:05
Check out this opengroup.org/onlinepubs/009695399/… . There may be some code injected info fork if there is no your code there. Please prepare the smallest example. – agsamek Sep 11 at 16:13
> Small testcase may be difficult as I can't reliably reproduce it with the huge application. --- pjc50: this is how we debug the code. We don't guess. We track errors. If you have two cases - one large which produces error and one small which doesn't then you are close to finding it. Just remove large chunks of code and check whether error still exists. Take a look here en.wikipedia.org/wiki/Binary_search_algorithm/… , do your homework and let us know what was the problem. – agsamek Sep 12 at 17:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.