如何为此守护程序代码添加守护程序停止,启动和报告功能?
#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);
}
答案 0 :(得分:6)
/var/run/mydaemonname.pid
,以便您以后可以轻松查找pid。停止/开始有一些复杂情况,但如果我正确理解这个问题,这应该会让你走上正轨。
修改:在下面的评论中添加了Dummy00001建议的pid文件。
答案 1 :(得分:5)
首先,您可能不需要做太多分叉和自我管理:http://linux.die.net/man/3/daemon
接下来,请记住,您的守护程序与世界的接口可能是通过某种shell脚本编写的,您也可以在/etc/init.d或其他任何发行版定义的位置编写。
因此,对于上述答案,您的shell脚本会将这些信号发送到进程的pid。可能有更好的方法。像上面这样的信令是一个单向过程,你的控制脚本必须跳过易受竞争条件和脆弱的箍,以确认守护进程是否成功停止或重新启动。我会在/etc/init.d中寻找优先级和示例。