Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

WaitPidDaemonThread() stealing return status and asserting

15 views
Skip to first unread message

Gabriel Beddingfield

unread,
Aug 10, 2018, 5:41:47 PM8/10/18
to dev-te...@lists.mozilla.org, John Thompson
Hello NSPR devs,

TL;DR: If a program spawns a sub-process with a non-NSPR API (e.g.
system(3)), then WaitPidDaemonThread() will sometimes steal the return code
of the program. This sometimes results in a PR_ASSERT() being triggered.

We've noticed a problem with the way that WaitPidDaemonThread()
(mozilla/nsprpub/pr/src/md/unix/uxproces.c) interacts with other parts of
the program that might bypass PR_CreateProcess() for creating a
sub-process. Since the thread is running and regularly calls 'waitpid(-1,
&status, WNOHANG)', it can sometimes steal the return-code of another
thread who may be calling system(3), pclose(3), waitpid(2), etc.

Furthermore, on a system that spawns a lot of PID's and in a program that
spawns a lot of sub-processes, you can sometimes get a PR_ASSERT()
triggered if WaitPidDaemonThread() ever see's the same PID twice for a
non-NSPR sub-process. (Inside ProcessReapedChildInternal()). The first
time, the non-NSPR sub-process is added to pidTable with state
_PR_PID_REAPED. Nobody every removes it from pidTable. The second time,
since it's found to already be in the table the code asserts because the
state is already _PR_PID_REAPED.

I'm pretty sure this is the cause of the following debian icedove bugs:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700639
https://groups.google.com/forum/#!msg/linux.debian.bugs.dist/0sjh8MtJpgk/vfY-qYfoBqMJ

In addition, we've recently discovered this bug in our code.

An example test-case that demonstrates this is pasted below.

I'm mulling over potential solutions, including:

1. For each process that NSPR spawns, spawn a corresponding thread that
will call waitpid() with the actual pid as the argument (in lieu of -1).

2. It looks like NSPR is installing a SIGCHLD handler. Using sigaction(3)
we can probably get the PID of the child process... and queue that to the
WaitPidDaemonThread(). It can then check to see if it's one of the
processes that it cares about before calling waitpid() on that process.

3. Force everyone to use NSPR for creating sub-processes (I wouldn't hold
my breath on that one...)

4. Have the WaitPidDaemonThread() iterate over all the process that it
knows about and explicitly call waitpid(pid, &status, WNOHANG) on each of
those processes.

5. in uxproces.c, it looks like using _PR_NATIVE_THREADS and
_PR_SHARE_CLONES are out-of-date. The code suggests that these
implementations were added for LinuxThreads support in 2005, since
kernel-based threads were unavailable. Since this is no longer true,
(However, this by iteself doesn't resolve the problem because that thread
still calls waitpid(-1, ...). But the code is so old and forgotten, I
figured I would mention it.)

I'm currently working on the last proposal... and plan to upstream the fix.
Thus, let me know what kind of solution you would prefer.

Thanks,
Gabe

--
#include <atomic>
#include <cassert>
#include <cstdlib>
#include <errno.h>
#include <iostream>
#include <prtypes.h>
#include <prproces.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <thread>

using namespace std;
atomic<bool> g_running{};

void create_nspr_detached_process()
{
const char prog[] = "/bin/sleep";
const char* argv[] = { "/bin/sleep", "9999", NULL };

PRProcess* proc = PR_CreateProcess(prog, (char* const*)argv, NULL,
NULL);
assert(proc);

PRStatus s = PR_DetachProcess(proc);
assert(s == PR_SUCCESS);
}

void spawn_and_wait()
{
while (g_running) {
int res = system("/bin/true");
if (res == -1) {
cout << "true returned " << res << " errno=" << errno << endl;
} else if (WIFEXITED(res)) {
int stat = WEXITSTATUS(res);
if (stat == 0) {
// NOP
} else {
cout << "true unexpected: " << stat << endl;
}
} else {
cout << "true bad";
}

res = system("/bin/false");
if (res == -1) {
cout << "false returned " << res << " errno=" << errno << endl;
} else if (WIFEXITED(res)) {
int stat = WEXITSTATUS(res);
if (stat == 1) {
// NOP
} else {
cout << "false unexpected: " << stat << endl;
}
} else {
cout << "false bad";
}
}
}

int main()
{
g_running = true;

create_nspr_detached_process();

thread t1(spawn_and_wait);

t1.join();

return 0;
}

beddin...@google.com

unread,
Aug 14, 2018, 3:03:14 PM8/14/18
to
On Friday, August 10, 2018 at 2:41:47 PM UTC-7, Gabriel Beddingfield wrote:
> Hello NSPR devs,
>
> TL;DR: If a program spawns a sub-process with a non-NSPR API (e.g.
> system(3)), then WaitPidDaemonThread() will sometimes steal the return code
> of the program. This sometimes results in a PR_ASSERT() being triggered.

I filed a bug for this:
https://bugzilla.mozilla.org/show_bug.cgi?id=1483328

-gabe
0 new messages