]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isis_main.c
isisd: implement sighup handler
[mirror_frr.git] / isisd / isis_main.c
1 /*
2 * IS-IS Rout(e)ing protocol - isis_main.c
3 *
4 * Copyright (C) 2001,2002 Sampo Saaristo
5 * Tampere University of Technology
6 * Institute of Communications Engineering
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <zebra.h>
24
25 #include "getopt.h"
26 #include "thread.h"
27 #include "log.h"
28 #include <lib/version.h>
29 #include "command.h"
30 #include "vty.h"
31 #include "memory.h"
32 #include "memory_vty.h"
33 #include "stream.h"
34 #include "if.h"
35 #include "privs.h"
36 #include "sigevent.h"
37 #include "filter.h"
38 #include "plist.h"
39 #include "zclient.h"
40 #include "vrf.h"
41 #include "qobj.h"
42 #include "libfrr.h"
43
44 #include "isisd/dict.h"
45 #include "isisd/isis_constants.h"
46 #include "isisd/isis_common.h"
47 #include "isisd/isis_flags.h"
48 #include "isisd/isis_circuit.h"
49 #include "isisd/isisd.h"
50 #include "isisd/isis_dynhn.h"
51 #include "isisd/isis_spf.h"
52 #include "isisd/isis_route.h"
53 #include "isisd/isis_routemap.h"
54 #include "isisd/isis_zebra.h"
55 #include "isisd/isis_te.h"
56 #include "isisd/isis_errors.h"
57 #include "isisd/isis_vty_common.h"
58 #include "isisd/isis_bfd.h"
59 #include "isisd/isis_lsp.h"
60 #include "isisd/isis_mt.h"
61 #include "isisd/fabricd.h"
62
63 /* Default configuration file name */
64 #define ISISD_DEFAULT_CONFIG "isisd.conf"
65 /* Default vty port */
66 #define ISISD_VTY_PORT 2608
67 #define FABRICD_VTY_PORT 2618
68
69 /* isisd privileges */
70 zebra_capabilities_t _caps_p[] = {ZCAP_NET_RAW, ZCAP_BIND};
71
72 struct zebra_privs_t isisd_privs = {
73 #if defined(FRR_USER)
74 .user = FRR_USER,
75 #endif
76 #if defined FRR_GROUP
77 .group = FRR_GROUP,
78 #endif
79 #ifdef VTY_GROUP
80 .vty_group = VTY_GROUP,
81 #endif
82 .caps_p = _caps_p,
83 .cap_num_p = sizeof(_caps_p) / sizeof(*_caps_p),
84 .cap_num_i = 0};
85
86 /* isisd options */
87 struct option longopts[] = {{0}};
88
89 /* Master of threads. */
90 struct thread_master *master;
91
92 /*
93 * Prototypes.
94 */
95 void sighup(void);
96 void sigint(void);
97 void sigterm(void);
98 void sigusr1(void);
99
100
101 static __attribute__((__noreturn__)) void terminate(int i)
102 {
103 isis_zebra_stop();
104 exit(i);
105 }
106
107 /*
108 * Signal handlers
109 */
110 #ifdef FABRICD
111 void sighup(void)
112 {
113 zlog_notice("SIGHUP/reload is not implemented for fabricd");
114 return;
115 }
116 #else
117 static struct frr_daemon_info isisd_di;
118 void sighup(void)
119 {
120 zlog_info("SIGHUP received");
121
122 /* Reload config file. */
123 vty_read_config(NULL, isisd_di.config_file, config_default);
124 }
125
126 #endif
127
128 __attribute__((__noreturn__)) void sigint(void)
129 {
130 zlog_notice("Terminating on signal SIGINT");
131 terminate(0);
132 }
133
134 __attribute__((__noreturn__)) void sigterm(void)
135 {
136 zlog_notice("Terminating on signal SIGTERM");
137 terminate(0);
138 }
139
140 void sigusr1(void)
141 {
142 zlog_debug("SIGUSR1 received");
143 zlog_rotate();
144 }
145
146 struct quagga_signal_t isisd_signals[] = {
147 {
148 .signal = SIGHUP,
149 .handler = &sighup,
150 },
151 {
152 .signal = SIGUSR1,
153 .handler = &sigusr1,
154 },
155 {
156 .signal = SIGINT,
157 .handler = &sigint,
158 },
159 {
160 .signal = SIGTERM,
161 .handler = &sigterm,
162 },
163 };
164
165
166 static const struct frr_yang_module_info *isisd_yang_modules[] = {
167 &frr_interface_info,
168 #ifndef FABRICD
169 &frr_isisd_info,
170 #endif /* ifndef FABRICD */
171 };
172
173 #ifdef FABRICD
174 FRR_DAEMON_INFO(fabricd, OPEN_FABRIC, .vty_port = FABRICD_VTY_PORT,
175
176 .proghelp = "Implementation of the OpenFabric routing protocol.",
177 #else
178 FRR_DAEMON_INFO(isisd, ISIS, .vty_port = ISISD_VTY_PORT,
179
180 .proghelp = "Implementation of the IS-IS routing protocol.",
181 #endif
182 .copyright =
183 "Copyright (c) 2001-2002 Sampo Saaristo,"
184 " Ofer Wald and Hannes Gredler",
185
186 .signals = isisd_signals,
187 .n_signals = array_size(isisd_signals),
188
189 .privs = &isisd_privs, .yang_modules = isisd_yang_modules,
190 .n_yang_modules = array_size(isisd_yang_modules), )
191
192 /*
193 * Main routine of isisd. Parse arguments and handle IS-IS state machine.
194 */
195 int main(int argc, char **argv, char **envp)
196 {
197 int opt;
198
199 #ifdef FABRICD
200 frr_preinit(&fabricd_di, argc, argv);
201 #else
202 frr_preinit(&isisd_di, argc, argv);
203 #endif
204 frr_opt_add("", longopts, "");
205
206 /* Command line argument treatment. */
207 while (1) {
208 opt = frr_getopt(argc, argv, NULL);
209
210 if (opt == EOF)
211 break;
212
213 switch (opt) {
214 case 0:
215 break;
216 default:
217 frr_help_exit(1);
218 break;
219 }
220 }
221
222 /* thread master */
223 master = frr_init();
224
225 /*
226 * initializations
227 */
228 isis_error_init();
229 access_list_init();
230 vrf_init(NULL, NULL, NULL, NULL, NULL);
231 prefix_list_init();
232 isis_init();
233 isis_circuit_init();
234 isis_vty_init();
235 #ifndef FABRICD
236 isis_cli_init();
237 #endif /* ifdef FABRICD */
238 isis_spf_cmds_init();
239 isis_redist_init();
240 isis_route_map_init();
241 isis_mpls_te_init();
242 lsp_init();
243 mt_init();
244
245 /* create the global 'isis' instance */
246 isis_new(1);
247
248 isis_zebra_init(master);
249 isis_bfd_init();
250 fabricd_init();
251
252 frr_config_fork();
253 frr_run(master);
254
255 /* Not reached. */
256 exit(0);
257 }