16

我正在尝试让子进程(通过fork())前台访问终端。

在 I 之后fork(),我在子进程中运行以下代码:

setpgid(0, 0);

和:

setpgid(child, child);

在父进程中。

这为子进程提供了自己的进程组。调用setpgid()正常工作。

现在我想让孩子访问终端。

通话后,我向孩子添加了以下内容setpgid()

if (!tcsetpgrp(STDIN_FILENO, getpid())) {
    perror("tcsetpgrp failed");
}

之后,有一个execv()命令 spawn /usr/bin/nano

然而,没有nano出现,什么也没发生,终端看起来好像在等待用户输入。

此外,调用后似乎没有执行任何代码tcsetpgrp()

我在某处读到我需要向SIGCONT子进程发送信号以使其工作。如果该过程停止,我该怎么做?父母必须发送信号吗?

SIGCONT如果这是解决方案,我该如何发送信号?

raise(SIGCONT);

另外,我不确定这是否有帮助,但是nano如果我运行我的程序,代码可以正常工作并产生:

exec ./program

代替:

./program

有任何想法吗?非常感谢!

4

3 回答 3

10

弄清楚了。我必须忽略任何 SIGTTOU 信号。

我通过添加:

signal(SIGTTOU, SIG_IGN);

通话前tcsetpgrp()

于 2011-03-17T17:03:55.177 回答
7

man 3 tcsetpgrp 状态:

如果 tcsetpgrp() 由其会话中的后台进程组的成员调用,并且调用进程没有阻塞或忽略 SIGTTOU,则会向该后台进程组的所有成员发送 SIGTTOU 信号。

您需要在父进程而不是子进程中调用 tcsetpgrp()。但是,如果您的父进程启动并移至后台,它将收到 SIGTTOU 并停止。

于 2011-08-09T18:08:51.370 回答
3

应该调用 tcsetpgrp() 的是父母而不是孩子。在 setpgid() 调用之后,子进程成为后台进程。一个有效的情况是前台组放弃它的权限,让另一个后台组成为前台,自己成为后台。后台组中的进程无法抓取控制终端。示例代码可能如下所示:

/* perror_act.h */
#ifndef PERROR_ACT_H
#define PERROR_ACT_H

#define PERROR_ACT(rtn, act) do { \
    perror(rtn);\
    act; \
} while (0)

#define PERROR_EXIT1(rtn) PERROR_ACT(rtn, exit(1))
#define PERROR_RETN1(rtn) PERROR_ACT(rtn, return -1)

#endif

/* invnano.c */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include "perror_act.h"

void sig_chld(int chld)
{
    exit(0);
}

int main(void)
{
    pid_t child;
    int p2c[2];
    struct sigaction sa = {.sa_handler = sig_chld};

    if (sigaction(SIGCHLD, &sa, NULL))
        PERROR_EXIT1("sigaction");
    if (pipe(p2c))
        PERROR_EXIT1("pipe");
    if ((child = fork()) < 0)
        PERROR_EXIT1("fork");
    if (child == 0) {
        char buff;
        size_t nread;
        if (close(p2c[1])) /* We must make sure this fd is closed. The reason is explained in following comments. */
                        PERROR_EXIT1("close");
        if ((nread = read(p2c[0], &buff, 1)) < 0) /* Just to receive a message from parent indicating its work is done. Content is not important.  */
            PERROR_EXIT1("read");
        if (nread == 0) /* When all the write ends of a pipe are closed, a read() to the read end of this pipe will get a return value of 0. We've closed the child's write end so if 0 as returned, we can sure the parent have exited because of error. */
            exit(1);
        close(p2c[0]);
        execlp("nano", "nano", (char *) 0);
        PERROR_EXIT1("execlp");
    } else {
        if (close(p2c[0]))
            PERROR_EXIT1("close");
        if (setpgid(child, child))
            PERROR_EXIT1("setpgid");
        if (tcsetpgrp(STDIN_FILENO, child))
            PERROR_EXIT1("tcsetpgrp");
        if (write(p2c[1], &child, 1) != 1) /* If all the read ends of a pipe are close, a write() to the write end of this pipe will let the calling process receive a SIGPIPE whose default deposition is to terminate. */
            PERROR_EXIT1("write");
        while (1) /* If parent exit here, login shell will see the news and grab the controlling terminal */
            pause();
    }
    return 0;
}
于 2017-01-02T14:03:55.203 回答