原文:https://www.cnblogs.com/anker/p/3271773.html

基本概念

我们知道在unix/linux中,正常情况下,子进程是通过父进程创建的,子进程在创建新的进程。子进程的结束和父进程的运行是一个异步过程,即父进程永远无法预测子进程 到底什么时候结束。 当一个 进程完成它的工作终止之后,它的父进程需要调用wait()或者waitpid()系统调用取得子进程的终止状态。

  孤儿进程:一个父进程退出,而它的一个或多个子进程还在运行,那么那些子进程将成为孤儿进程。孤儿进程将被init进程(进程号为1)所收养,并由init进程对它们完成状态收集工作。
  僵尸进程:一个进程使用fork创建子进程,如果子进程退出,而父进程并没有调用wait()或waitpid()获取子进程的状态信息,那么子进程的进程描述符仍然保存在系统中。这种进程称之为僵死进程。
**

问题及危害

  unix提供了一种机制可以保证只要父进程想知道子进程结束时的状态信息,就可以得到。这种机制就是: 在每个进程退出的时候,内核释放该进程所有的资源,包括打开的文件,占用的内存等。但是仍然为其保留一定的信息(包括进程号PID,退出状态the termination status of the process,运行时间the amount of CPU time taken by the process等)。直到父进程通过wait / waitpid来取时才释放。但这样就导致了问题,如果进程不调用wait / waitpid的话,那么保留的那段信息就不会释放,其进程号就会一直被占用,但是系统所能使用的进程号是有限的,如果大量的产生僵死进程,将因为没有可用的进程号而导致系统不能产生新的进程。此即为僵尸进程的危害,应当避免。

  
孤儿进程是没有父进程的进程,孤儿进程这个重任就落到了init进程身上,init进程就好像是一个民政局,专门负责处理孤儿进程的善后工作。每当出现一个孤儿进程的时候,内核就把孤儿进程的父进程设置为init,而init进程会循环地wait()它的已经退出的子进程。这样,当一个孤儿进程凄凉地结束了其生命周期的时候,init进程就会代表党和政府出面处理它的一切善后工作。因此孤儿进程并不会有什么危害。
  
僵尸进程任何一个子进程(init除外)在exit()之后,并非马上就消失掉,而是留下一个称为僵尸进程(Zombie)的数据结构,等待父进程处理。**这是每个子进程在结束时都要经过的阶段。如果子进程在exit()之后,父进程没有来得及处理,这时用ps命令就能看到子进程的状态是“Z”。如果父进程能及时处理,可能用ps命令就来不及看到子进程的僵尸状态,但这并不等于子进程不经过僵尸状态。如果父进程在子进程结束之前退出,则子进程将由init接管。init将会以父进程的身份对僵尸状态的子进程进行处理。
  

僵尸进程危害场景:

  例如有个进程,它定期的产生一个子进程,这个子进程需要做的事情很少,做完它该做的事情之后就退出了,因此这个子进程的生命周期很短。但是,父进程只管生成新的子进程,至于子进程退出之后的事情,则一概不闻不问,这样,系统运行上一段时间之后,系统中就会存在很多的僵死进程,倘若用ps命令查看的话,就会看到很多状态为Z的进程。 严格地来说,僵死进程并不是问题的根源,罪魁祸首是产生出大量僵死进程的那个父进程。因此,当我们寻求如何消灭系统中大量的僵死进程时,答案就是把产生大量僵死进程的那个元凶枪毙掉(也就是通过kill发送SIGTERM或者SIGKILL信号啦)。枪毙了元凶进程之后,它产生的僵死进程就变成了孤儿进程,这些孤儿进程会被init进程接管,init进程会wait()这些孤儿进程,释放它们占用的系统进程表中的资源,这样,这些已经僵死的孤儿进程就能瞑目而去了。

孤儿进程和僵尸进程测试

孤儿进程测试

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <errno.h>
  4. #include <unistd.h>
  5. int main()
  6. {
  7. pid_t pid;
  8. //创建一个进程
  9. pid = fork();
  10. //创建失败
  11. if (pid < 0)
  12. {
  13. perror("fork error:");
  14. exit(1);
  15. }
  16. //子进程
  17. if (pid == 0)
  18. {
  19. printf("I am the child process.\n");
  20. //输出进程ID和父进程ID
  21. printf("pid: %d\tppid:%d\n",getpid(),getppid());
  22. printf("I will sleep five seconds.\n");
  23. //睡眠5s,保证父进程先退出
  24. sleep(5);
  25. printf("pid: %d\tppid:%d\n",getpid(),getppid());
  26. printf("child process is exited.\n");
  27. }
  28. //父进程
  29. else
  30. {
  31. printf("I am father process.\n");
  32. //父进程睡眠1s,保证子进程输出进程id
  33. sleep(1);
  34. printf("father process is exited.\n");
  35. }
  36. return 0;
  37. }

僵尸进程测试

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <errno.h>
  4. #include <stdlib.h>
  5. int main()
  6. {
  7. pid_t pid;
  8. pid = fork();
  9. if (pid < 0)
  10. {
  11. perror("fork error:");
  12. exit(1);
  13. }
  14. else if (pid == 0)
  15. {
  16. printf("I am child process.I am exiting.\n");
  17. exit(0);
  18. }
  19. printf("I am father process.I will sleep two seconds\n");
  20. //等待子进程先退出
  21. sleep(2);
  22. //输出进程信息
  23. system("ps -o pid,ppid,state,tty,command");
  24. printf("father process is exiting.\n");
  25. return 0;
  26. }

僵尸进程测试2:父进程循环创建子进程,子进程退出,造成多个僵尸进程,程序如下所示:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <errno.h>
  5. int main()
  6. {
  7. pid_t pid;
  8. //循环创建子进程
  9. while(1)
  10. {
  11. pid = fork();
  12. if (pid < 0)
  13. {
  14. perror("fork error:");
  15. exit(1);
  16. }
  17. else if (pid == 0)
  18. {
  19. printf("I am a child process.\nI am exiting.\n");
  20. //子进程退出,成为僵尸进程
  21. exit(0);
  22. }
  23. else
  24. {
  25. //父进程休眠20s继续创建子进程
  26. sleep(20);
  27. continue;
  28. }
  29. }
  30. return 0;
  31. }

僵尸进程处理方式

通过信号机制

子进程退出时向父进程发送SIGCHILD信号,父进程处理SIGCHILD信号。在信号处理函数中调用wait进行处理僵尸进程。测试程序如下所示:

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <errno.h>
  4. #include <stdlib.h>
  5. #include <signal.h>
  6. static void sig_child(int signo);
  7. int main()
  8. {
  9. pid_t pid;
  10. //创建捕捉子进程退出信号
  11. signal(SIGCHLD,sig_child);
  12. pid = fork();
  13. if (pid < 0)
  14. {
  15. perror("fork error:");
  16. exit(1);
  17. }
  18. else if (pid == 0)
  19. {
  20. printf("I am child process,pid id %d.I am exiting.\n",getpid());
  21. exit(0);
  22. }
  23. printf("I am father process.I will sleep two seconds\n");
  24. //等待子进程先退出
  25. sleep(2);
  26. //输出进程信息
  27. system("ps -o pid,ppid,state,tty,command");
  28. printf("father process is exiting.\n");
  29. return 0;
  30. }
  31. static void sig_child(int signo)
  32. {
  33. pid_t pid;
  34. int stat;
  35. //处理僵尸进程
  36. while ((pid = waitpid(-1, &stat, WNOHANG)) >0)
  37. printf("child %d terminated.\n", pid);
  38. }

fork两次

《Unix 环境高级编程》8.6节说的非常详细。原理是将子进程成为孤儿进程,从而其的父进程变为init进程,通过init进程可以处理僵尸进程。测试程序如下所示:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <errno.h>
  5. int main()
  6. {
  7. pid_t pid;
  8. //创建第一个子进程
  9. pid = fork();
  10. if (pid < 0)
  11. {
  12. perror("fork error:");
  13. exit(1);
  14. }
  15. //第一个子进程
  16. else if (pid == 0)
  17. {
  18. //子进程再创建子进程
  19. printf("I am the first child process.pid:%d\tppid:%d\n",getpid(),getppid());
  20. pid = fork();
  21. if (pid < 0)
  22. {
  23. perror("fork error:");
  24. exit(1);
  25. }
  26. //第一个子进程退出
  27. else if (pid >0)
  28. {
  29. printf("first procee is exited.\n");
  30. exit(0);
  31. }
  32. //第二个子进程
  33. //睡眠3s保证第一个子进程退出,这样第二个子进程的父亲就是init进程里
  34. sleep(3);
  35. printf("I am the second child process.pid: %d\tppid:%d\n",getpid(),getppid());
  36. exit(0);
  37. }
  38. //父进程处理第一个子进程退出
  39. if (waitpid(pid, NULL, 0) != pid)
  40. {
  41. perror("waitepid error:");
  42. exit(1);
  43. }
  44. exit(0);
  45. return 0;
  46. }