私は'ed の子供execvp()
で意図的に間違った引数で呼び出しています。fork()
番号は子プロセスでerrno
適切に設定されています。ENOENT
次に、子プロセスを で終了し_exit(errno);
ます。
私のメインプロセスは を呼び出しますwait()
。返されたステータスを調べて、常にWIFEXITED
最初の呼び出しを取得します。他のすべての呼び出しは、正しいコードを返します。WEXITSTATUS
EINVAL
ENOENT
この振る舞いを説明することはできません。以下は、上記のすべてを行う完全な関数ですが、もう少し複雑です。
QVariantMap
System::exec(const QString & prog, const QStringList & args)
{
pid_t pid = fork();
if (pid == 0) {
int cargs_len = args.length() + 2;
char * cargs[cargs_len];
cargs[cargs_len - 1] = NULL;
QByteArrayList as;
as.push_back(prog.toLocal8Bit());
std::transform(args.begin(), args.end(), std::back_inserter(as),
[](const QString & s) { return s.toLocal8Bit(); });
for (int i = 0; i < as.length(); ++i) {
cargs[i] = as[i].data();
}
execvp(cargs[0], cargs);
// in case execvp fails, terminate the child process immediately
qDebug() << "(" << errno << ") " << strerror(errno); // <----------
_exit(errno);
} else if (pid < 0) {
goto fail;
} else {
sigset_t mask;
sigset_t orig_mask;
sigemptyset(&mask);
sigaddset(&mask, SIGCHLD);
if (sigprocmask(SIG_BLOCK, &mask, &orig_mask) < 0) {
goto fail;
}
struct timespec timeout;
timeout.tv_sec = 0;
timeout.tv_nsec = 10 * 1000 * 1000;
while (true) {
int ret = sigtimedwait(&mask, NULL, &timeout);
if (ret < 0) {
if (errno == EAGAIN) {
// timeout
goto win;
} else {
// error
goto fail;
}
} else {
if (errno == EINTR) {
// not SIGCHLD
continue;
} else {
int status = 0;
if (wait(&status) == pid) {
if (WIFEXITED(status)) {
return { { "error", strerror(WEXITSTATUS(status)) } };
} else {
goto fail;
}
} else {
goto fail;
}
}
}
}
}
win:
return {};
fail:
return { { "error", strerror(errno) } };
}
qDebug()
呼び出しで行を削除すると、問題が解決することがわかりました。デバッグ呼び出しを追加すると、プログラムの動作が変わるのはなぜですか?