New upstream version 1.2.3
[quagga-debian.git] / pimd / pim_main.c
1 /*
2   PIM for Quagga
3   Copyright (C) 2008  Everton da Silva Marques
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful, but
11   WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   General Public License for more details.
14   
15   You should have received a copy of the GNU General Public License
16   along with this program; see the file COPYING; if not, write to the
17   Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
18   MA 02110-1301 USA
19   
20   $QuaggaId: $Format:%an, %ai, %h$ $
21 */
22
23 #include <zebra.h>
24
25 #include "log.h"
26 #include "privs.h" 
27 #include "version.h"
28 #include <getopt.h>
29 #include "command.h"
30 #include "thread.h"
31 #include <signal.h>
32
33 #include "memory.h"
34 #include "vrf.h"
35 #include "filter.h"
36 #include "vty.h"
37 #include "sigevent.h"
38 #include "version.h"
39 #include "prefix.h"
40 #include "plist.h"
41
42 #include "pimd.h"
43 #include "pim_version.h"
44 #include "pim_signals.h"
45 #include "pim_zebra.h"
46
47 #ifdef PIM_ZCLIENT_DEBUG
48 extern int zclient_debug;
49 #endif
50
51 extern struct host host;
52
53 char config_default[] = SYSCONFDIR PIMD_DEFAULT_CONFIG;
54
55 struct option longopts[] = {
56   { "daemon",        no_argument,       NULL, 'd'},
57   { "config_file",   required_argument, NULL, 'f'},
58   { "pid_file",      required_argument, NULL, 'i'},
59   { "vty_addr",      required_argument, NULL, 'A'},
60   { "vty_port",      required_argument, NULL, 'P'},
61   { "version",       no_argument,       NULL, 'v'},
62   { "debug_zclient", no_argument,       NULL, 'Z'},
63   { "help",          no_argument,       NULL, 'h'},
64   { 0 }
65 };
66
67 /* pimd privileges */
68 zebra_capabilities_t _caps_p [] = 
69 {
70   ZCAP_NET_ADMIN,
71   ZCAP_SYS_ADMIN,
72   ZCAP_NET_RAW,
73 };
74
75 /* pimd privileges to run with */
76 struct zebra_privs_t pimd_privs =
77 {
78 #if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
79   .user = QUAGGA_USER,
80   .group = QUAGGA_GROUP,
81 #endif
82 #ifdef VTY_GROUP
83   .vty_group = VTY_GROUP,
84 #endif
85   .caps_p = _caps_p,
86   .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
87   .cap_num_i = 0
88 };
89
90 char* progname;
91 const char *pid_file = PATH_PIMD_PID;
92
93 static void usage(int status)
94 {
95   if (status != 0)
96     fprintf (stderr, "Try `%s --help' for more information.\n", progname);
97   else {    
98     printf ("Usage : %s [OPTION...]\n\
99 Daemon which manages PIM.\n\n\
100 -d, --daemon         Run in daemon mode\n\
101 -f, --config_file    Set configuration file name\n\
102 -i, --pid_file       Set process identifier file name\n\
103 -z, --socket         Set path of zebra socket\n\
104 -A, --vty_addr       Set vty's bind address\n\
105 -P, --vty_port       Set vty's port number\n\
106 -v, --version        Print program version\n\
107 "
108
109 #ifdef PIM_ZCLIENT_DEBUG
110 "\
111 -Z, --debug_zclient  Enable zclient debugging\n\
112 "
113 #endif
114
115 "\
116 -h, --help           Display this help and exit\n\
117 \n\
118 Report bugs to %s\n", progname, PIMD_BUG_ADDRESS);
119   }
120
121   exit (status);
122 }
123
124
125 int main(int argc, char** argv, char** envp) {
126   char *p;
127   char *vty_addr = NULL;
128   int vty_port = -1;
129   int daemon_mode = 0;
130   char *config_file = NULL;
131   char *zebra_sock_path = NULL;
132           
133   umask(0027);
134  
135   progname = ((p = strrchr(argv[0], '/')) ? ++p : argv[0]);
136  
137   zlog_default = openzlog(progname, ZLOG_PIM,
138                           LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
139      
140   /* this while just reads the options */                       
141   while (1) {
142     int opt;
143             
144     opt = getopt_long (argc, argv, "df:i:z:A:P:vZh", longopts, 0);
145                       
146     if (opt == EOF)
147       break;
148     
149     switch (opt) {
150     case 0:
151       break;
152     case 'd':
153       daemon_mode = 1;
154       break;
155     case 'f':
156       config_file = optarg;
157       break;
158     case 'i':
159       pid_file = optarg;
160       break;
161     case 'z':
162       zebra_sock_path = optarg;
163       break;
164     case 'A':
165       vty_addr = optarg;
166       break;
167     case 'P':
168       vty_port = atoi (optarg);
169       break;
170     case 'v':
171       printf(PIMD_PROGNAME " version %s\n", PIMD_VERSION);
172       print_version(QUAGGA_PROGNAME);
173       exit (0);
174       break;
175 #ifdef PIM_ZCLIENT_DEBUG
176     case 'Z':
177       zclient_debug = 1;
178       break;
179 #endif
180     case 'h':
181       usage (0);
182       break;
183     default:
184       usage (1);
185       break;
186     }
187   }
188
189   master = thread_master_create();
190
191   zlog_notice("Quagga %s " PIMD_PROGNAME " %s starting",
192               QUAGGA_VERSION, PIMD_VERSION);
193
194   /* 
195    * Initializations
196    */
197   zprivs_init (&pimd_privs);
198   pim_signals_init();
199   cmd_init(1);
200   vty_init(master);
201   memory_init();
202   vrf_init();
203   access_list_init();
204   prefix_list_init ();
205   pim_route_map_init ();
206   pim_init();
207
208   /*
209    * Initialize zclient "update" and "lookup" sockets
210    */
211   pim_zebra_init (master, zebra_sock_path);
212
213   zlog_notice("Loading configuration - begin");
214
215   /* Get configuration file. */
216   vty_read_config(config_file, config_default);
217
218   /*
219     Starting from here zlog_* functions will log according configuration
220    */
221
222   zlog_notice("Loading configuration - end");
223
224   /* Change to the daemon program. */
225   if (daemon_mode) {
226     if (daemon(0, 0)) {
227       zlog_warn("failed to daemonize");
228     }
229   }
230
231   /* Process ID file creation. */
232   pid_output(pid_file);
233
234   /* Create pimd VTY socket */
235   if (vty_port < 0)
236     vty_port = PIMD_VTY_PORT;
237   vty_serv_sock(vty_addr, vty_port, PIM_VTYSH_PATH);
238
239   zlog_notice("Quagga %s " PIMD_PROGNAME " %s starting, VTY interface at port TCP %d",
240               QUAGGA_VERSION, PIMD_VERSION, vty_port);
241
242 #ifdef PIM_DEBUG_BYDEFAULT
243   zlog_notice("PIM_DEBUG_BYDEFAULT: Enabling all debug commands");
244   PIM_DO_DEBUG_PIM_EVENTS;
245   PIM_DO_DEBUG_PIM_PACKETS;
246   PIM_DO_DEBUG_PIM_TRACE;
247   PIM_DO_DEBUG_IGMP_EVENTS;
248   PIM_DO_DEBUG_IGMP_PACKETS;
249   PIM_DO_DEBUG_IGMP_TRACE;
250   PIM_DO_DEBUG_ZEBRA;
251 #endif
252
253 #ifdef PIM_ZCLIENT_DEBUG
254   zlog_notice("PIM_ZCLIENT_DEBUG: zclient debugging is supported, mode is %s (see option -Z)",
255               zclient_debug ? "ON" : "OFF");
256 #endif
257
258 #ifdef PIM_CHECK_RECV_IFINDEX_SANITY
259   zlog_notice("PIM_CHECK_RECV_IFINDEX_SANITY: will match sock/recv ifindex");
260 #ifdef PIM_REPORT_RECV_IFINDEX_MISMATCH
261   zlog_notice("PIM_REPORT_RECV_IFINDEX_MISMATCH: will report sock/recv ifindex mismatch");
262 #endif
263 #endif
264
265 #ifdef PIM_UNEXPECTED_KERNEL_UPCALL
266   zlog_notice("PIM_UNEXPECTED_KERNEL_UPCALL: report unexpected kernel upcall");
267 #endif
268
269 #ifdef HAVE_CLOCK_MONOTONIC
270   zlog_notice("HAVE_CLOCK_MONOTONIC");
271 #else
272   zlog_notice("!HAVE_CLOCK_MONOTONIC");
273 #endif
274
275   thread_main (master);
276
277   zlog_err("%s %s: thread_fetch() returned NULL, exiting",
278            __FILE__, __PRETTY_FUNCTION__);
279
280   /* never reached */
281   return 0;
282 }