如何在Linux下用c语言创建守护进程并监控系统运行期间的所有进程

如何在Linux下用c语言创建守护进程并监控系统运行期间的所有进程,第1张

可以分三步来做:

做两个简单的守护进程,并能正常运行

监控进程是否在运行

启动进程

综合起来就可以了,代码如下:

被监控进程thisisatest.c(来自):

#include<unistd.h>

#include<signal.h>

#include<stdio.h>

#include<stdlib.h>

#include<sys/param.h>

#include<sys/types.h>

#include<sys/stat.h>

#include<time.h>

void init_daemon()

{

int pid

int i

pid=fork()

if(pid<0)    

    exit(1) //创建错误,退出

else if(pid>0) //父进程退出

    exit(0)

    

setsid()//使子进程成为组长

pid=fork()

if(pid>0)

    exit(0)//再次退出,使进程不是组长,这样进程就不会打开控制终端

else if(pid<0)    

    exit(1)

//关闭进程打开的文件句柄

for(i=0i<NOFILEi++)

    close(i)

chdir("/root/test") //改变目录

umask(0)//重设文件创建的掩码

return

}

void main()

{

    FILE *fp

    time_t t

    init_daemon()

    while(1)

    {

        sleep(60)//等待一分钟再写入

        fp=fopen("testfork2.log","a")

        if(fp>=0)

        {

            time(&t)

            fprintf(fp,"current time is:%s\n",asctime(localtime(&t))) //转换为本地时间输出

            fclose(fp)

        }

    }

    return

}

监控进程monitor.c:

#include<unistd.h>

#include<signal.h>

#include<stdio.h>

#include<stdlib.h>

#include<sys/param.h>

#include<sys/types.h>

#include<sys/stat.h>

#include<time.h>

#include<sys/wait.h>

#include<fcntl.h>

#include<limits.h>

#define BUFSZ 150

void init_daemon()

{

int pid

int i

pid=fork()

if(pid<0)

    exit(1) //创建错误,退出

else if(pid>0) //父进程退出

    exit(0)

setsid()//使子进程成为组长

pid=fork()

if(pid>0)

    exit(0)//再次退出,使进程不是组长,这样进程就不会打开控制终端

else if(pid<0)

    exit(1)

//关闭进程打开的文件句柄

for(i=0i<NOFILEi++)

    close(i)

chdir("/root/test") //改变目录

umask(0)//重设文件创建的掩码

return

}

void err_quit(char *msg)

{

perror(msg)

exit(EXIT_FAILURE)

}

// 判断程序是否在运行

int does_service_work()

{

FILE* fp

int count

char buf[BUFSZ]

char command[150]

sprintf(command, "ps -ef | grep thisisatest | grep -v grep | wc -l" )

if((fp = popen(command,"r")) == NULL)

err_quit("popen")

if( (fgets(buf,BUFSZ,fp))!= NULL )

{

count = atoi(buf)

}

pclose(fp)

    return count

// exit(EXIT_SUCCESS)

}

void main()

{

    FILE *fp

    time_t t

    int count

    init_daemon()

    while(1)

    {

        sleep(10)//等待一分钟再写入

        fp=fopen("testfork3.log","a")

        if(fp>=0)

        {

            count = does_service_work()

            time(&t)

            if(count>0)

                fprintf(fp,"current time is:%s and the process exists, the count is %d\n",asctime(localtime(&t)), count) //转换为本地时间输出

            else

            {

                fprintf(fp,"current time is:%s and the process does not exist, restart it!\n",asctime(localtime(&t))) //转换为本地时间输出

                system("/home/user/daemon/thisisatest")//启动服务

            }

            fclose(fp)

        }

    }

    return

}

具体CMD命令:

cc thisisatest.c -o thisisatest

./thisisatest

cc monitor.c -o monitor

./monitor

tail -f testfork3.log   -- 查看日志

别用服务做 你可以把这个程序加入到开始菜单的启动文件夹就行了 这样每次用户登录时候就会自动启动

如果要做成服务 start不应该包含任何ui逻辑因为windows对服务启动有一定的时间限制 *** 作限制系统认为服务启动失败。ui是消息循环 显示ui的时候start没法退出。通常的做法是windows服务写个server提供api(如wcf)之后ui通过api同服务交互。这样做的好处有1.可以在登录前执行任务;2.可以将一些高权限的功能放在windows服务里,这样可以避免程序自动启动时d出烦人的UAC确认框。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12032863.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存