使用stop创建一个守护进程,在C中启动功能

时间:2010-09-16 12:14:03

标签: c programming-languages daemon unix

如何为此守护程序代码添加守护程序停止,启动和报告功能?

#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <syslog.h>
#include <string.h>

int main(void) {

        /* Our process ID and Session ID */
        pid_t pid, sid;

        /* Fork off the parent process */
        pid = fork();
        if (pid < 0) {
                exit(EXIT_FAILURE);
        }
        /* If we got a good PID, then
           we can exit the parent process. */
        if (pid > 0) {
                exit(EXIT_SUCCESS);
        }

        /* Change the file mode mask */
        umask(0);

        /* Open any logs here */        

        /* Create a new SID for the child process */
        sid = setsid();
        if (sid < 0) {
                /* Log the failure */
                exit(EXIT_FAILURE);
        }



        /* Change the current working directory */
        if ((chdir("/")) < 0) {
                /* Log the failure */
                exit(EXIT_FAILURE);
        }

        /* Close out the standard file descriptors */
        close(STDIN_FILENO);
        close(STDOUT_FILENO);
        close(STDERR_FILENO);

        /* Daemon-specific initialization goes here */

        /* The Big Loop */
        while (1) {
           /* Do some task here ... */

           sleep(30); /* wait 30 seconds */
        }
   exit(EXIT_SUCCESS);
}

2 个答案:

答案 0 :(得分:6)

  1. 将守护程序的pid写入/var/run/mydaemonname.pid,以便您以后可以轻松查找pid。
  2. 为SIGUSR1和SIGUSR2设置信号处理程序。
  3. 当您获得SIGUSR1时,切换停止标志。
  4. 获得SIGUSR2时,请设置报告标记。
  5. 在你的while循环中,检查每个标志。
  6. 如果设置了停止标志,则停止直到它被清除。
  7. 如果报告标记设置,请清除标记并执行报告。
  8. 停止/开始有一些复杂情况,但如果我正确理解这个问题,这应该会让你走上正轨。

    修改:在下面的评论中添加了Dummy00001建议的pid文件。

答案 1 :(得分:5)

首先,您可能不需要做太多分叉和自我管理:http://linux.die.net/man/3/daemon

接下来,请记住,您的守护程序与世界的接口可能是通过某种shell脚本编写的,您也可以在/etc/init.d或其他任何发行版定义的位置编写。

因此,对于上述答案,您的shell脚本会将这些信号发送到进程的pid。可能有更好的方法。像上面这样的信令是一个单向过程,你的控制脚本必须跳过易受竞争条件和脆弱的箍,以确认守护进程是否成功停止或重新启动。我会在/etc/init.d中寻找优先级和示例。