其他進程


到目前為止,我們已經討論和學習了進程,建立,父進程和子進程等。但是沒有討論其他相關進程,如孤兒進程,殭屍進程和守護行程,在本節中,我們來看看這些進程。

孤兒進程

如名字所示,孤兒進程表示無父進程。 當我們執行程式或應用程式時,應用程式的父進程是shell。 當使用fork()建立一個進程時,新建立的進程是子進程,建立是父進程的子進程。 反過來,這個父進程就是shell。 當然,所有進程的父進程是初始(init)進程(進程ID等於1)。

以上是一個常見的情況,但是,如果父進程在子進程之前退出,會發生什麼情況。 結果是,子進程現在成為孤兒進程。 那麼它的父進程呢,它的新父進程就是所有進程的父進程,這只不過是初始(init)進程(進程ID等於1)。

讓我們來看看下面的例子來理解孤兒進程的含義。

檔案:orphan_process.c -

#include<stdio.h>
#include<stdlib.h>

int main() {
   int pid;
   system("ps -f");
   pid = fork();
   if (pid == 0) {
      printf("Child: pid is %d and ppid is %d\n",getpid(),getppid());
      sleep(5);
      printf("Child: pid is %d and ppid is %d\n",getpid(),getppid());
      system("ps -f");
   } else {
      printf("Parent: pid is %d and ppid is %d\n",getpid(),getppid());
      sleep(2);
      exit(0);
   }
   return 0;
}

編譯和執行上面程式碼,得到以下結果 -

UID         PID   PPID  C STIME TTY    TIME CMD
4581875  180558      0  0 09:19  ?     00:00:00 sh -c cd /home/cg/root/4581875; 
                                       timeout 10s main
4581875  180564 180558  0 09:19  ?     00:00:00 timeout 10s main
4581875  180565 180564  0 09:19  ?     00:00:00 main
4581875  180566 180565  0 09:19  ?     00:00:00 ps -f
Parent: pid is 180565 and ppid is 180564
UID         PID   PPID  C STIME TTY    TIME CMD
4581875  180567      0  0 09:19  ?     00:00:00 main
4581875  180820 180567  0 09:19  ?     00:00:00 ps -f
Child: pid is 180567 and ppid is 180565
Child: pid is 180567 and ppid is 0

殭屍進程

簡而言之,假設有兩個進程,即父進程和子進程。 父進程負責等待子進程,然後清理進程表中的子進程入口。 如果父進程沒有準備好等待子進程,同時子進程就完成工作並退出呢? 這種情況時,子進程將成為殭屍進程。 當然,在父進程準備好之後,殭屍進程就會被清除。

讓我們通過一個例子來理解這一點。

檔案:zombie_process.c -

#include<stdio.h>
#include<stdlib.h>

int main() {
   int pid;
   pid = fork();
   if (pid == 0) {
      system("ps -f");
      printf("Child: pid is %d and ppid is %d\n",getpid(),getppid());
      exit(0);
   } else {
      printf("Parent: pid is %d and ppid is %d\n",getpid(),getppid());
      sleep(10);
      system("ps aux|grep Z");
   }
   return 0;
}

編譯和執行上面程式碼,得到以下結果 -

UID         PID   PPID  C STIME TTY    TIME CMD
4581875  184946      0  0 09:20  ?     00:00:00 sh -c cd /home/cg/root/4581875; 
                                       timeout 10s main
4581875  184952 184946  0 09:20  ?     00:00:00 timeout 10s main
4581875  184953 184952  0 09:20  ?     00:00:00 main
4581875  184954 184953  0 09:20  ?     00:00:00 main
4581875  184955 184954  0 09:20  ?     00:00:00 ps -f
Child: pid is 184954 and ppid is 184953

守護行程

沒有任何關聯的shell或終端的進程被稱為守護行程。 為什麼這是必要的? 這些是在後台執行的進程,以預定的時間間隔執行操作,並響應某些事件。 守護行程不應該有任何使用者互動,因為它作為後台進程執行。

核心守護行程通常以核心守護行程(ksoftirqd,kblockd,kswapd等),列印守護行程(cupsd,lpd等),檔案服務守護行程(smbd,nmbd等)的字母「d」 ,電子郵件守護行程(sendmail,popd,smtpd等),遠端登入和命令執行守護行程(sshd,in.telnetd等),引導和組態守護行程(dhcpd等),管理資料庫守護行程(ypbind,ypserv等) ,udevd等),init進程(init),cron守護行程,atd守護行程等。

現在讓我們看看如何建立一個守護行程。 以下是步驟 -

第1步 - 建立一個子進程。 現在我們有兩個進程 - 父進程和子進程。通常流程是:SHELL -> 父進程 -> 子進程

第2步 - 通過退出終止父進程。 子進程現在成為孤兒進程,由初始(init)進程接管。
現在,這個流程層次是:初始(init)進程 -> 子進程。

第3步 - 如果呼叫進程不是行程群組頭,則呼叫setsid()系統呼叫會建立一個新的對談。 現在呼叫進程成為新對談的組頭。 這個進程將是這個新的行程群組和這個新的進程中唯一的進程。

第4步 - 將行程群組ID和對談ID設定為呼叫進程的PID。

第5步 - 關閉終端和外殼現在與應用程式斷開連線的過程的預設檔案描述符(標準輸入,標準輸出和標準錯誤)。

檔案:daemon_test.c -

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

int main(int argc, char *argv[]) {
   pid_t pid;
   int counter;
   int fd;
   int max_iterations;
   char buffer[100];
   if (argc < 2)
   max_iterations = 5;
   else {
      max_iterations = atoi(argv[1]);
      if ( (max_iterations <= 0) || (max_iterations > 20) )
      max_iterations = 10;
   }
   pid = fork();

   // Unable to create child process
   if (pid < 0) {
      perror("fork error\n");
      exit(1);
   }

   // Child process
   if (pid == 0) {
      fd = open("/tmp/DAEMON.txt", O_WRONLY|O_CREAT|O_TRUNC, 0644);
      if (fd == -1) {
         perror("daemon txt file open error\n");
         return 1;
      }
      printf("Child: pid is %d and ppid is %d\n", getpid(), getppid());
      printf("\nChild process before becoming session leader\n");
      sprintf(buffer, "ps -ef|grep %s", argv[0]);
      system(buffer);
      setsid();
      printf("\nChild process after becoming session leader\n");
      sprintf(buffer, "ps -ef|grep %s", argv[0]);
      system(buffer);
      close(STDIN_FILENO);
      close(STDOUT_FILENO);
      close(STDERR_FILENO);
   } else {
      printf("Parent: pid is %d and ppid is %d\n", getpid(), getppid());
      printf("Parent: Exiting\n");
      exit(0);
   }

   // Executing max_iteration times
   for (counter = 0; counter < max_iterations; counter++) {
      sprintf(buffer, "Daemon process: pid is %d and ppid is %d\n", getpid(), getppid());
      write(fd, buffer, strlen(buffer));
      sleep(2);
   }
   strcpy(buffer, "Done\n");
   write(fd, buffer, strlen(buffer));

   // Can't print this as file descriptors are already closed
   printf("DoneDone\n");
   close(fd);
   return 0;
}

編譯和執行上面範例程式碼,得到以下結果 -

Parent: pid is 193524 and ppid is 193523
Parent: Exiting
4581875  193525      0  0 09:23  ?      00:00:00 main
4581875  193526 193525  0 09:23  ?      00:00:00 sh -c ps -ef|grep main
4581875  193528 193526  0 09:23  ?      00:00:00 grep main
4581875  193525      0  0 09:23  ?      00:00:00 main
4581875  193529 193525  0 09:23  ?      00:00:00 sh -c ps -ef|grep main
4581875  193531 193529  0 09:23  ?      00:00:00 grep main