ospf_main.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:6k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPFd main routine.
  3.  *   Copyright (C) 1998, 99 Kunihiro Ishiguro, Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.
  21.  */
  22. #include <zebra.h>
  23. #include "version.h"
  24. #include "getopt.h"
  25. #include "thread.h"
  26. #include "prefix.h"
  27. #include "linklist.h"
  28. #include "if.h"
  29. #include "vector.h"
  30. #include "vty.h"
  31. #include "command.h"
  32. #include "filter.h"
  33. #include "plist.h"
  34. #include "stream.h"
  35. #include "log.h"
  36. #include "memory.h"
  37. #include "ospfd/ospfd.h"
  38. #include "ospfd/ospf_interface.h"
  39. #include "ospfd/ospf_asbr.h"
  40. #include "ospfd/ospf_lsa.h"
  41. #include "ospfd/ospf_lsdb.h"
  42. #include "ospfd/ospf_neighbor.h"
  43. #include "ospfd/ospf_dump.h"
  44. #include "ospfd/ospf_zebra.h"
  45. #include "ospfd/ospf_vty.h"
  46. /* Configuration filename and directory. */
  47. char config_current[] = OSPF_DEFAULT_CONFIG;
  48. char config_default[] = SYSCONFDIR OSPF_DEFAULT_CONFIG;
  49. /* OSPFd options. */
  50. struct option longopts[] = 
  51. {
  52.   { "daemon",      no_argument,       NULL, 'd'},
  53.   { "config_file", required_argument, NULL, 'f'},
  54.   { "pid_file",    required_argument, NULL, 'i'},
  55.   { "log_mode",    no_argument,       NULL, 'l'},
  56.   { "help",        no_argument,       NULL, 'h'},
  57.   { "vty_addr",    required_argument, NULL, 'A'},
  58.   { "vty_port",    required_argument, NULL, 'P'},
  59.   { "version",     no_argument,       NULL, 'v'},
  60.   { 0 }
  61. };
  62. /* OSPFd program name */
  63. /* Master of threads. */
  64. struct thread_master *master;
  65. /* Process ID saved for use by init system */
  66. char *pid_file = PATH_OSPFD_PID;
  67. /* Help information display. */
  68. static void
  69. usage (char *progname, int status)
  70. {
  71.   if (status != 0)
  72.     fprintf (stderr, "Try `%s --help' for more information.n", progname);
  73.   else
  74.     {    
  75.       printf ("Usage : %s [OPTION...]n
  76. Daemon which manages OSPF.nn
  77. -d, --daemon       Runs in daemon moden
  78. -f, --config_file  Set configuration file namen
  79. -i, --pid_file     Set process identifier file namen
  80. -A, --vty_addr     Set vty's bind addressn
  81. -P, --vty_port     Set vty's port numbern
  82. -v, --version      Print program versionn
  83. -h, --help         Display this help and exitn
  84. n
  85. Report bugs to %sn", progname, ZEBRA_BUG_ADDRESS);
  86.     }
  87.   exit (status);
  88. }
  89. /* SIGHUP handler. */
  90. void 
  91. sighup (int sig)
  92. {
  93.   zlog (NULL, LOG_INFO, "SIGHUP received");
  94. }
  95. /* SIGINT handler. */
  96. void
  97. sigint (int sig)
  98. {
  99.   zlog (NULL, LOG_INFO, "Terminating on signal");
  100.   ospf_terminate ();
  101.   exit (0);
  102. }
  103. /* SIGUSR1 handler. */
  104. void
  105. sigusr1 (int sig)
  106. {
  107.   zlog_rotate (NULL);
  108. }
  109. /* Signal wrapper. */
  110. RETSIGTYPE *
  111. signal_set (int signo, void (*func)(int))
  112. {
  113.   int ret;
  114.   struct sigaction sig;
  115.   struct sigaction osig;
  116.   sig.sa_handler = func;
  117.   sigemptyset (&sig.sa_mask);
  118.   sig.sa_flags = 0;
  119. #ifdef SA_RESTART
  120.   sig.sa_flags |= SA_RESTART;
  121. #endif /* SA_RESTART */
  122.   ret = sigaction (signo, &sig, &osig);
  123.   if (ret < 0) 
  124.     return (SIG_ERR);
  125.   else
  126.     return (osig.sa_handler);
  127. }
  128. /* Initialization of signal handles. */
  129. void
  130. signal_init ()
  131. {
  132.   signal_set (SIGHUP, sighup);
  133.   signal_set (SIGINT, sigint);
  134.   signal_set (SIGTERM, sigint);
  135.   signal_set (SIGPIPE, SIG_IGN);
  136. #ifdef SIGTSTP
  137.   signal_set (SIGTSTP, SIG_IGN);
  138. #endif
  139. #ifdef SIGTTIN
  140.   signal_set (SIGTTIN, SIG_IGN);
  141. #endif
  142. #ifdef SIGTTOU
  143.   signal_set (SIGTTOU, SIG_IGN);
  144. #endif
  145.   signal_set (SIGUSR1, sigusr1);
  146. }
  147. /* OSPFd main routine. */
  148. int
  149. main (int argc, char **argv)
  150. {
  151.   char *p;
  152.   char *vty_addr = NULL;
  153.   int vty_port = 0;
  154.   int daemon_mode = 0;
  155.   char *config_file = NULL;
  156.   char *progname;
  157.   struct thread thread;
  158.   /* Set umask before anything for security */
  159.   umask (0027);
  160.   /* get program name */
  161.   progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
  162.   /* Invoked by a priviledged user? -- endo. */
  163.   if (getuid () != 0)
  164.     {
  165.       errno = EPERM;
  166.       perror (progname);
  167.       exit (1);
  168.     }
  169.   zlog_default = openzlog (progname, ZLOG_NOLOG, ZLOG_OSPF,
  170.    LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
  171.   /* OSPF master init. */
  172.   ospf_master_init ();
  173.   while (1) 
  174.     {
  175.       int opt;
  176.       opt = getopt_long (argc, argv, "dlf:hA:P:v", longopts, 0);
  177.     
  178.       if (opt == EOF)
  179. break;
  180.       switch (opt) 
  181. {
  182. case 0:
  183.   break;
  184. case 'd':
  185.   daemon_mode = 1;
  186.   break;
  187. case 'f':
  188.   config_file = optarg;
  189.   break;
  190. case 'A':
  191.   vty_addr = optarg;
  192.   break;
  193.         case 'i':
  194.           pid_file = optarg;
  195.           break;
  196. case 'P':
  197.   vty_port = atoi (optarg);
  198.   break;
  199. case 'v':
  200.   print_version (progname);
  201.   exit (0);
  202.   break;
  203. case 'h':
  204.   usage (progname, 0);
  205.   break;
  206. default:
  207.   usage (progname, 1);
  208.   break;
  209. }
  210.     }
  211.   /* Initializations. */
  212.   master = om->master;
  213.   /* Library inits. */
  214.   signal_init ();
  215.   cmd_init (1);
  216.   debug_init ();
  217.   vty_init ();
  218.   memory_init ();
  219.   access_list_init ();
  220.   prefix_list_init ();
  221.   /* OSPFd inits. */
  222.   ospf_init ();
  223.   ospf_if_init ();
  224.   ospf_zebra_init ();
  225.   /* OSPF vty inits. */
  226.   ospf_vty_init ();
  227.   ospf_vty_show_init ();
  228.   ospf_route_map_init ();
  229. #ifdef HAVE_SNMP
  230.   ospf_snmp_init ();
  231. #endif /* HAVE_SNMP */
  232. #ifdef HAVE_OPAQUE_LSA
  233.   ospf_opaque_init ();
  234. #endif /* HAVE_OPAQUE_LSA */
  235.   
  236.   sort_node ();
  237.   /* Get configuration file. */
  238.   vty_read_config (config_file, config_current, config_default);
  239.   /* Change to the daemon program. */
  240.   if (daemon_mode)
  241.     daemon (0, 0);
  242.   /* Process id file create. */
  243.   pid_output (pid_file);
  244.   /* Create VTY socket */
  245.   vty_serv_sock (vty_addr,
  246.  vty_port ? vty_port : OSPF_VTY_PORT, OSPF_VTYSH_PATH);
  247.   /* Print banner. */
  248.   zlog (NULL, LOG_INFO, "OSPFd (%s) starts", ZEBRA_VERSION);
  249.   /* Fetch next active thread. */
  250.   while (thread_fetch (master, &thread))
  251.     thread_call (&thread);
  252.   /* Not reached. */
  253.   exit (0);
  254. }