wwwoffled.c
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:15k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /***************************************
  2.   $Header: /home/amb/wwwoffle/RCS/wwwoffled.c 2.20 1999/12/28 20:05:14 amb Exp $
  3.   WWWOFFLE - World Wide Web Offline Explorer - Version 2.5d.
  4.   A demon program to maintain the database and spawn the servers.
  5.   ******************/ /******************
  6.   Written by Andrew M. Bishop
  7.   This file Copyright 1996,97,98,99 Andrew M. Bishop
  8.   It may be distributed under the GNU Public License, version 2, or
  9.   any higher version.  See section COPYING of the GNU Public license
  10.   for conditions under which this file may be redistributed.
  11.   ***************************************/
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include <ctype.h>
  16. #include <sys/wait.h>
  17. #include <sys/time.h>
  18. #include <sys/types.h>
  19. #include <sys/stat.h>
  20. #include <fcntl.h>
  21. #include <unistd.h>
  22. #include <errno.h>
  23. #include <signal.h>
  24. #include <grp.h>
  25. #include "version.h"
  26. #include "wwwoffle.h"
  27. #include "misc.h"
  28. #include "config.h"
  29. #include "sockets.h"
  30. #include "errors.h"
  31. #if defined (hpux)
  32. /* HP/UX has no `seteuid'. Instead it uses `setresuid' to set `uid', `euid', and `suid' simultaneously. */
  33. #define setegid(egid)   setresgid (-1, (egid), -1)
  34. #define seteuid(euid)   setresuid (-1, (euid), -1)
  35. #endif
  36. static void usage(int verbose);
  37. static void demoninit(void);
  38. static void install_sighandlers(void);
  39. static void sigchild(int signum);
  40. static void sigexit(int signum);
  41. static void sighup(int signum);
  42. /*+ The server sockets that we listen on +*/
  43. int http_fd=-1,                 /*+ for the HTTP connections. +*/
  44.     wwwoffle_fd=-1;             /*+ for the WWWOFFLE connections. +*/
  45. /*+ The online / offline /autodial status. +*/
  46. int online=0;
  47. /*+ The current number active servers +*/
  48. int n_servers=0,                /*+ in total. +*/
  49.     n_fetch_servers=0;          /*+ fetching a page. +*/
  50. /*+ The wwwoffle client file descriptor when fetching. +*/
  51. int fetch_fd=-1;
  52. /*+ The pids of the servers. +*/
  53. int server_pids[MAX_SERVERS];
  54. /*+ The pids of the servers that are fetching. +*/
  55. int fetch_pids[MAX_FETCH_SERVERS];
  56. /*+ The current status, fetching or not. +*/
  57. int fetching=0;
  58. /*+ Set to 1 when the demon is to shutdown. +*/
  59. static int closedown=0;
  60. /*+ Set to 1 when the demon is to re-read config file due to a sighup. +*/
  61. static int readconfig=0;
  62. /*+ Remember that we got a SIGCHLD +*/
  63. static sig_atomic_t got_sigchld=0;
  64. /*+ True if run as a demon +*/
  65. static int detached=1;
  66. /*+ True if the pid of the daemon should be printed at startup +*/
  67. static int print_pid=0;
  68. /*++++++++++++++++++++++++++++++++++++++
  69.   The main program.
  70.   ++++++++++++++++++++++++++++++++++++++*/
  71. int main(int argc, char** argv)
  72. {
  73.  int i;
  74.  int err;
  75.  struct stat buf;
  76.  /* Parse the command line options */
  77.  for(i=1;i<argc;i++)
  78.    {
  79.     if(!strcmp(argv[i],"-h"))
  80.        usage(1);
  81.     if(!strcmp(argv[i],"-d"))
  82.       {
  83.        detached=0;
  84.        if(i<(argc-1) && isdigit(argv[i+1][0]) && !argv[i+1][1])
  85.          {
  86.           DebugLevel=Fatal+1-atoi(argv[++i]);
  87.           if(DebugLevel<0)
  88.              DebugLevel=0;
  89.          }
  90.        continue;
  91.       }
  92.     if(!strcmp(argv[i],"-p"))
  93.       {
  94.        print_pid=1;
  95.        continue;
  96.       }
  97.     if(!strcmp(argv[i],"-c"))
  98.       {
  99.        if(++i>=argc)
  100.          {fprintf(stderr,"wwwoffled: The '-c' option requires a filename.n"); exit(1);}
  101.        ConfigFile=argv[i];
  102.        continue;
  103.       }
  104.     fprintf(stderr,"wwwoffled: Unknown option '%s'.n",argv[i]); exit(1);
  105.    }
  106.  /* Initialise things. */
  107.  for(i=0;i<MAX_FETCH_SERVERS;i++)
  108.     fetch_pids[i]=0;
  109.  for(i=0;i<MAX_SERVERS;i++)
  110.     server_pids[i]=0;
  111.  InitErrorHandler("wwwoffled",1,!detached);
  112.  if(ReadConfigFile(2))
  113.     PrintMessage(Fatal,"Error in configuration file '%s'.",ConfigFile);
  114.  PrintMessage(Important,"WWWOFFLE Demon Version %s started.",WWWOFFLE_VERSION);
  115.  PrintMessage(Inform,"WWWOFFLE Read Configuration File.");
  116.  if(WWWOFFLE_Gid != -1)
  117.    {
  118.     if(getuid()==0)
  119.        if(setgroups(0, NULL)<0)
  120.           PrintMessage(Fatal,"Cannot clear supplementary group list [%!s].");
  121.     if(setgid(WWWOFFLE_Gid)<0)
  122.        PrintMessage(Fatal,"Cannot set group id to %d [%!s].",WWWOFFLE_Gid);
  123.     if(setegid(WWWOFFLE_Gid)<0)
  124.        PrintMessage(Fatal,"Cannot set effective group id to %d [%!s].",WWWOFFLE_Gid);
  125.    }
  126.  if(WWWOFFLE_Uid != -1)
  127.    {
  128.     if(setuid(WWWOFFLE_Uid)<0)
  129.        PrintMessage(Fatal,"Cannot set user id to %d [%!s].",WWWOFFLE_Uid);
  130.     if(seteuid(WWWOFFLE_Uid)<0)
  131.        PrintMessage(Fatal,"Cannot set effective user id to %d [%!s].",WWWOFFLE_Uid);
  132.    }
  133.  if(WWWOFFLE_Gid != -1 || WWWOFFLE_Uid != -1)
  134.     PrintMessage(Inform,"Running with uid=%d, gid=%d.",getuid(),getgid());
  135.  http_fd=OpenServerSocket(HTTP_Port);
  136.  if(http_fd==-1)
  137.     PrintMessage(Fatal,"Cannot create HTTP server socket.");
  138.  wwwoffle_fd=OpenServerSocket(WWWOFFLE_Port);
  139.  if(wwwoffle_fd==-1)
  140.     PrintMessage(Fatal,"Cannot create WWWOFFLE server socket.");
  141.  umask(0);
  142.  if(stat(SpoolDir,&buf))
  143.    {
  144.     err=mkdir(SpoolDir,DirPerm);
  145.     if(err==-1 && errno!=EEXIST)
  146.        PrintMessage(Fatal,"Cannot create spool directory %s [%!s].",SpoolDir);
  147.     stat(SpoolDir,&buf);
  148.    }
  149.  if(!S_ISDIR(buf.st_mode))
  150.     PrintMessage(Fatal,"The spool directory %s is not a directory.",SpoolDir);
  151.  err=chdir(SpoolDir);
  152.  if(err==-1)
  153.     PrintMessage(Fatal,"Cannot change to spool directory %s [%!s].",SpoolDir);
  154.  if(detached)
  155.    {
  156.     demoninit();
  157.     PrintMessage(Important,"Detached from terminal and changed pid to %d.",getpid());
  158.     InitErrorHandler("wwwoffled",1,!detached); /* pid changes after detaching. */
  159.    }
  160.  install_sighandlers();
  161.  /* Loop around waiting for connections. */
  162.  do
  163.    {
  164.     struct timeval tv;
  165.     fd_set readfd;
  166.     int nfds;
  167.     int retval;
  168.     if(http_fd>wwwoffle_fd)
  169.        nfds=http_fd+1;
  170.     else
  171.        nfds=wwwoffle_fd+1;
  172.     FD_ZERO(&readfd);
  173.     FD_SET(wwwoffle_fd,&readfd);
  174.     if(n_servers<MaxServers)
  175.        FD_SET(http_fd,&readfd);
  176.     tv.tv_sec=10;
  177.     tv.tv_usec=0;
  178.     retval=select(nfds,&readfd,NULL,NULL,&tv);
  179.     if(retval!=-1)
  180.       {
  181.        if(FD_ISSET(wwwoffle_fd,&readfd))
  182.          {
  183.           char *host,*ip;
  184.           int port,client;
  185.           client=AcceptConnect(wwwoffle_fd);
  186.           init_buffer(client);
  187.           if(client>=0 && !SocketRemoteName(client,&host,&ip,&port))
  188.             {
  189.              if(IsAllowedConnectHost(host) || IsAllowedConnectHost(ip))
  190.                {
  191.                 PrintMessage(Important,"WWWOFFLE Connection from host %s (%s).",host,ip); /* Used in audit-usage.pl */
  192.                 CommandConnect(client);
  193.                 if(fetch_fd!=client)
  194.                    CloseSocket(client);
  195.                }
  196.              else
  197.                {
  198.                 PrintMessage(Warning,"WWWOFFLE Connection rejected from host %s (%s).",host,ip); /* Used in audit-usage.pl */
  199.                 CloseSocket(client);
  200.                }
  201.             }
  202.          }
  203.        if(FD_ISSET(http_fd,&readfd))
  204.          {
  205.           char *host,*ip;
  206.           int port,client;
  207.           client=AcceptConnect(http_fd);
  208.           init_buffer(client);
  209.           if(client>=0 && !SocketRemoteName(client,&host,&ip,&port))
  210.             {
  211.              if(IsAllowedConnectHost(host) || IsAllowedConnectHost(ip))
  212.                {
  213.                 PrintMessage(Inform,"HTTP Proxy connection from host %s (%s).",host,ip); /* Used in audit-usage.pl */
  214.                 ForkServer(client,1);
  215.                }
  216.              else
  217.                 PrintMessage(Warning,"HTTP Proxy connection rejected from host %s (%s).",host,ip); /* Used in audit-usage.pl */
  218.              CloseSocket(client);
  219.             }
  220.          }
  221.       }
  222.     if(readconfig)
  223.       {
  224.        readconfig=0;
  225.        PrintMessage(Important,"SIGHUP signalled.");
  226.        PrintMessage(Important,"WWWOFFLE Re-reading Configuration File.");
  227.        if(ReadConfigFile(-1))
  228.           PrintMessage(Warning,"Error in configuration file; keeping old values.");
  229.        PrintMessage(Important,"WWWOFFLE Finished Re-reading Configuration File.");
  230.       }
  231.     if(got_sigchld)
  232.       {
  233.        int pid, status;
  234.        int isserver=0;
  235.        /* To avoid race conditions, reset the flag before fetching the status */
  236.        got_sigchld=0;
  237.        while((pid=waitpid(-1,&status,WNOHANG))>0)
  238.         {
  239.          int i;
  240.          int exitval=0;
  241.          if(WIFEXITED(status))
  242.             exitval=WEXITSTATUS(status);
  243.          else if(WIFSIGNALED(status))
  244.             exitval=-WTERMSIG(status);
  245.          for(i=0;i<MaxServers;i++)
  246.             if(server_pids[i]==pid)
  247.               {
  248.                n_servers--;
  249.                server_pids[i]=0;
  250.                isserver=1;
  251.                if(exitval>=0)
  252.                   PrintMessage(Inform,"Child wwwoffles exited with status %d (pid=%d).",exitval,pid);
  253.                else
  254.                   PrintMessage(Important,"Child wwwoffles terminated by signal %d (pid=%d).",-exitval,pid);
  255.                break;
  256.               }
  257.          /* Check if the child that terminated is one of the fetching wwwoffles */
  258.          for(i=0;i<MaxFetchServers;i++)
  259.             if(fetch_pids[i]==pid)
  260.               {
  261.                n_fetch_servers--;
  262.                fetch_pids[i]=0;
  263.                break;
  264.               }
  265.          if(exitval==3)
  266.             fetching=0;
  267.          if(exitval==4 && online==1)
  268.             fetching=1;
  269.          if(online!=1)
  270.             fetching=0;
  271.         }
  272.        if(isserver)
  273.           PrintMessage(Debug,"Currently running: %d servers total, %d fetchers.",n_servers,n_fetch_servers);
  274.       }
  275.     /* The select timed out or we got a signal. If we are currently fetching,
  276.        start fetch servers to look for jobs in the spool directory. */
  277.     while(fetching && n_fetch_servers<MaxFetchServers && n_servers<MaxServers)
  278.        ForkServer(fetch_fd,0);
  279.     if(fetch_fd!=-1 && !fetching && n_fetch_servers==0)
  280.       {
  281.        write_string(fetch_fd,"WWWOFFLE No more to fetch.n");
  282.        CloseSocket(fetch_fd);
  283.        fetch_fd=-1;
  284.        PrintMessage(Important,"WWWOFFLE Fetch finished.");
  285.       }
  286.    }
  287.  while(!closedown);
  288.  /* Close down and exit. */
  289.  CloseSocket(http_fd);
  290.  CloseSocket(wwwoffle_fd);
  291.  if(n_servers)
  292.     PrintMessage(Important,"Exit signalled - waiting for %d child wwwoffles servers.",n_servers);
  293.  else
  294.     PrintMessage(Important,"Exit signalled.");
  295.  while(n_servers)
  296.    {
  297.     int i;
  298.     int pid,status,exitval=0;
  299.     while((pid=waitpid(-1,&status,0))>0)
  300.       {
  301.        if(WIFEXITED(status))
  302.           exitval=WEXITSTATUS(status);
  303.        else if(WIFSIGNALED(status))
  304.           exitval=-WTERMSIG(status);
  305.        for(i=0;i<MaxServers;i++)
  306.           if(server_pids[i]==pid)
  307.             {
  308.              n_servers--;
  309.              server_pids[i]=0;
  310.              if(exitval>=0)
  311.                 PrintMessage(Inform,"Child wwwoffles exited with status %d (pid=%d).",exitval,pid);
  312.              else
  313.                 PrintMessage(Important,"Child wwwoffles terminated by signal %d (pid=%d).",-exitval,pid);
  314.              break;
  315.             }
  316.       }
  317.    }
  318.  PrintMessage(Important,"Exiting.");
  319.  return(0);
  320. }
  321. /*++++++++++++++++++++++++++++++++++++++
  322.   Print the program usage in long or short format.
  323.   int verbose True for long format.
  324.   ++++++++++++++++++++++++++++++++++++++*/
  325. static void usage(int verbose)
  326. {
  327.  fprintf(stderr,
  328.          "n"
  329.          "WWWOFFLED - World Wide Web Offline Explorer (Demon) - Version %sn"
  330.          "n",WWWOFFLE_VERSION);
  331.  if(verbose)
  332.     fprintf(stderr,
  333.             "(c) Andrew M. Bishop 1996,97,98 [       amb@gedanken.demon.co.uk ]n"
  334.             "                                [http://www.gedanken.demon.co.uk/]n"
  335.             "n");
  336.  fprintf(stderr,
  337.          "Usage: wwwoffled [-h] [-c <config-file>] [-d [<log-level>]]n"
  338.          "n");
  339.  if(verbose)
  340.     fprintf(stderr,
  341.             "   -h                  : Display this help.n"
  342.             "n"
  343.             "   -c <config-file>    : The name of the configuration file to use.n"
  344.             "                         (Default %s).n"
  345.             "n"
  346.             "   -d [<log-level>]    : Do not detach from the terminal and use stderr.n"
  347.             "                         0 <= log-level <= %d (default in config file).n"
  348.             "n"
  349.             "   -p                  : Print the pid of wwwoffled on stdout (unless -d).n"
  350.             "n",ConfigFile,Fatal+1);
  351.  exit(0);
  352. }
  353. /*++++++++++++++++++++++++++++++++++++++
  354.   Detach ourself from the controlling terminal.
  355.   ++++++++++++++++++++++++++++++++++++++*/
  356. static void demoninit(void)
  357. {
  358.  pid_t pid=0;
  359.  pid=fork();
  360.  if(pid==-1)
  361.     PrintMessage(Fatal,"Cannot fork() to detach(1) [%!s].");
  362.  else if(pid)
  363.     exit(0);
  364.  setsid();
  365.  pid=fork();
  366.  if(pid==-1)
  367.     PrintMessage(Fatal,"Cannot fork() to detach(2) [%!s].");
  368.  else if(pid)
  369.    {
  370.     /* print the child pid on stdout as requested */
  371.     if(print_pid)
  372.        printf("%dn", pid);
  373.     exit(0);
  374.    }
  375.  /* Close fds */
  376.  close(STDIN_FILENO);
  377.  close(STDOUT_FILENO);
  378.  close(STDERR_FILENO);
  379. }
  380. /*++++++++++++++++++++++++++++++++++++++
  381.   Install the signal handlers.
  382.   ++++++++++++++++++++++++++++++++++++++*/
  383. static void install_sighandlers(void)
  384. {
  385.  struct sigaction action;
  386.  /* SIGCHLD */
  387.  action.sa_handler = sigchild;
  388.  sigemptyset (&action.sa_mask);
  389.  action.sa_flags = 0;
  390.  if(sigaction(SIGCHLD, &action, NULL) != 0)
  391.     PrintMessage(Warning, "Cannot install SIGCHLD handler.");
  392.  /* SIGINT, SIGQUIT, SIGTERM */
  393.  action.sa_handler = sigexit;
  394.  sigemptyset(&action.sa_mask);
  395.  sigaddset(&action.sa_mask, SIGINT);           /* Block all of them */
  396.  sigaddset(&action.sa_mask, SIGQUIT);
  397.  sigaddset(&action.sa_mask, SIGTERM);
  398.  action.sa_flags = 0;
  399.  if(sigaction(SIGINT, &action, NULL) != 0)
  400.     PrintMessage(Warning, "Cannot install SIGINT handler.");
  401.  if(sigaction(SIGQUIT, &action, NULL) != 0)
  402.     PrintMessage(Warning, "Cannot install SIGQUIT handler.");
  403.  if(sigaction(SIGTERM, &action, NULL) != 0)
  404.     PrintMessage(Warning, "Cannot install SIGTERM handler.");
  405.  /* SIGHUP */
  406.  action.sa_handler = sighup;
  407.  sigemptyset(&action.sa_mask);
  408.  action.sa_flags = 0;
  409.  if(sigaction(SIGHUP, &action, NULL) != 0)
  410.     PrintMessage(Warning, "Cannot install SIGHUP handler.");
  411.  /* SIGPIPE */
  412.  action.sa_handler = SIG_IGN;
  413.  sigemptyset (&action.sa_mask);
  414.  action.sa_flags = 0;
  415.  if(sigaction(SIGPIPE, &action, NULL) != 0)
  416.     PrintMessage(Warning, "Cannot ignore SIGPIPE.");
  417. }
  418. /*++++++++++++++++++++++++++++++++++++++
  419.   The signal handler for the child exiting.
  420.   int signum The signal number.
  421.   ++++++++++++++++++++++++++++++++++++++*/
  422. static void sigchild(int signum)
  423. {
  424.  got_sigchld=1;
  425. }
  426. /*++++++++++++++++++++++++++++++++++++++
  427.   The signal handler for the signals to tell us to exit.
  428.   int signum The signal number.
  429.   ++++++++++++++++++++++++++++++++++++++*/
  430. static void sigexit(int signum)
  431. {
  432.  closedown=1;
  433. }
  434. /*++++++++++++++++++++++++++++++++++++++
  435.   The signal handler for the signals to tell us to re-read the config file.
  436.   int signum The signal number.
  437.   ++++++++++++++++++++++++++++++++++++++*/
  438. static void sighup(int signum)
  439. {
  440.  readconfig=1;
  441. }