《Unix環境高級編程》這本書附帶了許多短小精美的小程序,我在閱讀此書的時候,將書上的代碼按照自己的理解重寫了一遍(大部分是抄書上的),加深一下自己的理解(純看書太困了,呵呵)。此例子在Ubuntu 10.04上測試通過。
相關鏈接
- 《UNIX環境高級編程》(第二版)apue.h的錯誤 http://www.linuxidc.com/Linux/2011-04/34662.htm
- Unix環境高級編程 源代碼地址 http://www.linuxidc.com/Linux/2011-04/34826.htm
程序簡介:這個DEMO是按照UNIX守護進程的編程規則實現的一個單實例的守護程序。
- //《APUE》程序13-1:初始化一個守護進程
- //《APUE》程序13-2:保證只運行某個守護進程的一個副本
- //《APUE》程序14-5:在文件整體加鎖
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <time.h>
- #include <signal.h>
- #include <errno.h>
- #include <sys/resource.h>
- #include <sys/syslog.h>
- #include <sys/file.h>
- #include <sys/stat.h>
-
- //創建鎖文件的路徑
- #define LOCKFILE "/var/run/daemon.pid"
- //鎖文件的打開模式
- #define LOCKMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
-
- //輸出錯誤信息並退出
- void error_quit(const char *str)
- {
- fprintf(stderr, "%s\n", str);
- exit(1);
- }
-
- //對文件fd加上記錄鎖
- int lockfile(int fd)
- {
- struct flock fl;
- fl.l_type = F_WRLCK;
- fl.l_start = 0;
- fl.l_whence = SEEK_SET;
- fl.l_len = 0;
- return fcntl(fd, F_SETLK, &fl);
- }
-
- //若程序已經運行,則返回1,否則返回0
- int already_running(void)
- {
- int fd;
- char buf[16];
-
- //打開放置記錄鎖的文件
- fd = open(LOCKFILE, O_RDWR|O_CREAT, LOCKMODE);
- if( fd < 0 )
- {
- syslog(LOG_ERR, "can't open %s: %s", LOCKFILE, strerror(errno));
- exit(1);
- }
- //試圖對文件fd加鎖,
- //如果加鎖失敗的話
- if( lockfile(fd) < 0 )
- {
- //如果是因為權限不夠或資源暫時不可用,則返回1
- if( EACCES == errno ||
- EAGAIN == errno )
- {
- close(fd);
- return 1;
- }
- //否則,程序出錯,寫入一條錯誤記錄後直接退出
- syslog(LOG_ERR, "can't lock %s: %s", LOCKFILE, strerror(errno));
- exit(1);
- }
-
- //先將文件fd清空,然後再向其中寫入當前的進程號
- ftruncate(fd, 0);
- sprintf(buf, "%ld", (long)getpid());
- write(fd, buf, strlen(buf)+1);
- return 0;
- }
-
- //將一個進程變為守護進程
- void daemonize(void)
- {
- int i, fd0, fd1, fd2;
- pid_t pid;
- struct rlimit rl;
- struct sigaction sa;
-
- //見注解1
- umask(0);
-
- //獲取最大的文件描述號
- int temp;
- temp = getrlimit(RLIMIT_NOFILE, &rl);
- if( temp < 0 )
- error_quit("can't get file limit");
-
- //見注解2,
- pid = fork();
- if( pid < 0 )
- error_quit("can't fork");
- else if(pid != 0)
- exit(0);
-
- //見注解3
- setsid();
- sa.sa_handler = SIG_IGN;
- sigemptyset(&sa.sa_mask);
- sa.sa_flags = 0;
- temp = sigaction(SIGHUP, &sa, NULL);
- if( temp < 0 )
- error_quit("can't ignore SIGHUP");
-
- ////確保子進程不會有機會分配到一個控制終端
- pid = fork();
- if( pid < 0 )
- error_quit("can't fork");
- else if(pid != 0)
- exit(0);
-
- //見注解4
- temp = chdir("/");
- if( temp < 0 )
- error_quit("can't change directoy to /");
-
- //見注解5
- if( rl.rlim_max == RLIM_INFINITY )
- rl.rlim_max = 1024;
- for(i=0; i<rl.rlim_max; i++)
- close(i);
-
- //見注解6
- fd0 = open("/dev/null", O_RDWR);
- fd1 = dup(0);
- fd2 = dup(0);
-
- if( fd0 != 0 ||
- fd1 != 1 ||
- fd2 != 2 )
- {
- syslog(LOG_ERR, "unexpected file descriptors %d %d %d",
- fd0, fd1, fd2);
- exit(1);
- }
- }
-
- //該主函數是我原創的,呵呵
- int main(void)
- {
- //打開系統的日志文件
- openlog("my test log: ", LOG_CONS, LOG_DAEMON);
- daemonize();
-
- //如果程序已經運行,則向記錄文件中寫入一句話,然後退出
- if( already_running() )
- {
- syslog(LOG_ERR, "daemon alread running");
- closelog();
- return 1;
- }
-
- //向日志文件寫入程序的開始(當前)時間,
- //過100秒後,再向記錄文件寫入結束時間,然後結束程序
- time_t tt = time(0);
- syslog(LOG_INFO, "the log program start at: %s",
- asctime(localtime(&tt)) );
- sleep(100);
- //pause()
- tt = time(0);
- syslog(LOG_INFO, "the log program end at: %s",
- asctime(localtime(&tt)) );
-
- //關閉日志文件
- //雖然不關也沒事,但為了和openlog配對,還是將它寫上去吧
- closelog();
- return 0;
- }
運行示例(紅色字體的為輸入):
www.linuxidc.com @ubuntu:~/code$ gcc temp.c -o temp
www.linuxidc.com @ubuntu:~/code$ sudo ./temp
www.linuxidc.com @ubuntu:~/code$ sudo ./temp
www.linuxidc.com @ubuntu:~/code$ ps axj | grep temp
1 2648 2647 2647 ? -1 S 0 0:00 ./temp
2127 2673 2672 2127 pts/0 2672 S+ 1000 0:00 grep --color=auto temp
#兩分鐘後,再打開日志文件,查看一下程序的日志
www.linuxidc.com @ubuntu:~/code$ tail -f /var/log/syslog
Sep 24 07:53:58 ubuntu my test log: : the log program start at: Mon Sep 24 07:53:58 2012
Sep 24 07:54:07 ubuntu my test log: : daemon alread running
Sep 24 07:55:38 ubuntu my test log: : the log program end at: Mon Sep 24 07:55:38 2012
注解:守護進程的編程規則
1:首先要調用umask將文件模式創建屏蔽字設置為0.由繼承得來的文件模式創建屏蔽字可能會拒絕設置某些權限。
2:調用fork,然後使父進程退出(exit)。這樣做實現了兩點:第一,如果該守護進程是作為一條簡單shell命令啟動的,那麼父進程終止使得shell認為這條命令已經執行完畢;第二,子進程繼承了父進程的進程組ID,但具有一個新的進程ID,這就保證了子進程不是一個進程組的組長進程。這是setsid調用必要前���條件。
3:調用setsid以創建一個新會話。執行三個操作,(a)成為新會話的首進程,(b)成為一個新進程的組長進程,(c)沒有控制終端。
4:將當前工作目錄更改為根目錄。進程活動時,其工作目錄所在的文件系統不能卸下。一般需要將工作目錄改變到根目錄。對於需要轉儲核心,寫運行日志的進程將工作目錄改變到特定目錄
5:關閉不再需要的文件描述符。進程從創建它的父進程那裡繼承了打開的文件描述符。如不關閉,將會浪費系統資源,造成進程所在的文件系統無法卸下以及引起無法預料的錯誤。
6:重定向0,1,2到/dev/null,使任何一個試圖讀標准輸入,寫標准輸出和標准出錯的程序庫都不會產生任何效果。